:root {
  --argus-bg: #f4eee6;
  --argus-surface: #ffffff;
  --argus-surface-warm: #fdf9f4;
  --argus-border: #d8cdc1;
  --argus-ink: #231f1a;
  --argus-muted: #685e54;
  --argus-soft: #ebe1d6;
  --argus-accent: #c96f4f;
  --argus-accent-hover: #a9563c;
  --argus-accent-soft: #f3dfd3;
  --argus-green: #435f4c;
  --argus-green-soft: #e6ece2;
  --argus-success-bg: rgba(47, 106, 61, 0.08);
  --argus-success-text: #2f6a3d;
  --argus-warning-bg: rgba(217, 119, 87, 0.1);
  --argus-warning-text: #b35639;
  --argus-danger-bg: rgba(229, 57, 53, 0.08);
  --argus-danger-text: #8a3d2d;
  --argus-info-bg: #e8efe9;
  --argus-info-text: #35574a;
  --argus-panel-shadow: 0 18px 44px rgba(48, 35, 24, 0.07);
  --argus-panel-shadow-soft: 0 10px 28px rgba(48, 35, 24, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--argus-bg);
}

body.argus-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  background:
    linear-gradient(180deg, #faf6f1 0%, #f4eee6 44%, #efe6db 100%);
  color: var(--argus-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.argus-serif {
  font-family: "Noto Serif SC", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.argus-shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.argus-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 205, 193, 0.95);
  background: rgba(252, 248, 242, 0.92);
  box-shadow: 0 6px 24px rgba(48, 35, 24, 0.04);
  backdrop-filter: blur(18px);
}

.argus-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.argus-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--argus-ink);
  text-decoration: none;
}

.argus-brand-name {
  font-size: 21px;
  font-weight: 800;
}

.argus-token-highlight {
  display: inline-block;
  margin-left: 0.04em;
  padding: 0 0.16em 0.06em;
  border-radius: 0.14em;
  background: var(--argus-accent);
  color: #fffaf3;
  line-height: 0.92;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.argus-token-highlight-brand {
  margin-left: 0.03em;
  padding: 0 0.13em 0.05em;
  border-radius: 0.12em;
}

.argus-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.argus-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 80px;
  color: #5f554b;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  transition: color 160ms ease;
}

.argus-nav-promo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 7px;
  overflow: hidden;
  border: 1px solid rgba(222, 160, 72, 0.52);
  border-radius: 999px;
  background: linear-gradient(120deg, #f4e1d6, #ffe8a8 48%, #f4e1d6);
  color: #a9563c;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(169, 86, 60, 0.12), 0 0 0 1px rgba(255, 230, 157, 0.38) inset;
}

.argus-nav-promo-badge::after {
  position: absolute;
  inset: -40% auto -40% -80%;
  width: 60%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  animation: argus-promo-sheen 2.8s ease-in-out infinite;
  pointer-events: none;
}

.argus-nav-link:hover,
.argus-nav-link.is-active {
  color: var(--argus-ink);
}

.argus-nav-link.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--argus-accent);
}

.argus-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.argus-avatar {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(216, 205, 193, 0.95);
  background: #fffdf9;
  color: #5f554b;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 0 4px rgba(252, 248, 242, 0.95);
}

.argus-avatar.is-active {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
}

.argus-mobile-menu {
  display: block;
  position: relative;
}

.argus-mobile-menu summary {
  list-style: none;
  cursor: pointer;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.argus-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.argus-mobile-panel {
  position: absolute;
  right: 0;
  top: 38px;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(216, 205, 193, 0.95);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: var(--argus-panel-shadow);
}

.argus-mobile-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.argus-mobile-panel a:hover,
.argus-mobile-panel a.is-active {
  background: #f8fafc;
  color: #0f172a;
}

.argus-main {
  flex: 1;
}

.argus-page-title {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.argus-scan-hero-title {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.argus-scan-title {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.argus-price-figure {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.argus-tool-page {
  padding-block: 20px 44px;
}

.argus-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.argus-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.argus-breadcrumbs a:hover {
  color: #0f172a;
}

.argus-breadcrumb-sep {
  color: #cbd5e1;
}

.argus-tool-title {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.argus-lead {
  color: #5f554b;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 560;
}

@media (min-width: 640px) {
  .argus-lead {
    font-size: 18px;
    line-height: 1.78;
  }
}

.argus-home-hero {
  position: relative;
  padding-block: 80px 66px;
}

.argus-home-hero::before {
  content: "";
  position: absolute;
  inset: 0 24px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 31, 26, 0.22), transparent);
}

.argus-kicker-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--argus-green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.argus-kicker-line::before,
.argus-kicker-line::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(67, 95, 76, 0.42);
}

.argus-search-card {
  border: 1px solid rgba(35, 31, 26, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: var(--argus-panel-shadow);
}

.argus-search-input {
  color: var(--argus-ink);
  caret-color: var(--argus-accent);
}

.argus-search-input::placeholder {
  color: #a2978b;
}

.argus-home-band {
  border-block: 1px solid rgba(216, 205, 193, 0.86);
  background: rgba(255, 251, 246, 0.7);
}

.argus-promo-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 111, 79, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(244, 225, 214, 0.74)),
    linear-gradient(115deg, transparent 0%, rgba(255, 232, 168, 0.42) 46%, transparent 64%);
  box-shadow: 0 22px 60px rgba(169, 86, 60, 0.1), 0 0 0 1px rgba(255, 232, 168, 0.22) inset;
}

.argus-promo-band::before {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 28%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  filter: blur(1px);
  transform: skewX(-16deg);
  animation: argus-promo-band-sheen 5.2s ease-in-out infinite;
  pointer-events: none;
}

.argus-promo-band > * {
  position: relative;
}

.argus-promo-tile {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 111, 79, 0.22);
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.88);
  color: var(--argus-ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  animation: argus-promo-glow 3.8s ease-in-out infinite;
}

.argus-promo-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 18% 0%, rgba(255, 232, 168, 0.34), transparent 34%);
  opacity: 0.78;
  pointer-events: none;
}

.argus-promo-tile > * {
  position: relative;
}

.argus-promo-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 111, 79, 0.42);
  background: #fffdfa;
  box-shadow: 0 16px 38px rgba(169, 86, 60, 0.12);
}

.argus-promo-tile strong {
  color: #a9563c;
  font-size: 17px;
  font-weight: 900;
}

.argus-promo-tile span {
  color: #6f665c;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.6;
}

.argus-step-card,
.argus-story-card {
  border: 1px solid rgba(35, 31, 26, 0.13);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.92);
  color: var(--argus-ink);
  box-shadow: var(--argus-panel-shadow-soft);
}

.argus-step-card {
  display: block;
  padding: 22px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.argus-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 111, 79, 0.34);
  background: #fffdfa;
  box-shadow: 0 18px 42px rgba(64, 43, 30, 0.09);
}

.argus-step-number {
  color: var(--argus-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 850;
}

.argus-home-eyebrow {
  color: #85786b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.argus-wechat-qr {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 0;
}

.argus-wechat-qr-code {
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 31, 26, 0.14);
  border-radius: 12px;
  background: #fffdf9;
  overflow: hidden;
  color: #a1a1a1;
  font-size: 12px;
  font-weight: 900;
}

.argus-wechat-qr-code svg,
.argus-wechat-qr-code canvas {
  display: block;
  width: 132px;
  height: 132px;
}

.argus-card {
  border: 1px solid var(--argus-border);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: var(--argus-panel-shadow);
}

.argus-card-soft {
  border: 1px solid rgba(35, 31, 26, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.argus-mobile-collapse > summary {
  display: none;
}

.argus-card-pad {
  padding: 28px;
}

.argus-site-table th,
.argus-site-table td {
  vertical-align: top;
}

.argus-site-row.is-selected {
  background: #fff8f1;
}

.argus-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5f554b;
  font-size: 13px;
  font-weight: 700;
}

.argus-inline-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--argus-accent);
}

.argus-table-primary {
  display: grid;
  gap: 6px;
}

.argus-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.argus-compare-cell {
  min-width: 230px;
  vertical-align: top;
}

.argus-price-stack {
  display: grid;
  gap: 8px;
}

.argus-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.argus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.argus-btn:hover {
  transform: translateY(-1px);
}

.argus-btn:active {
  transform: translateY(0);
}

.argus-btn[aria-disabled="true"] {
  opacity: 0.46;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.argus-btn:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.argus-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 250, 245, 0.45);
  border-top-color: #fffaf5;
  border-radius: 999px;
  animation: argus-spin 720ms linear infinite;
}

.argus-field-is-busy {
  background: #f6f6f6;
  opacity: 0.72;
}

.argus-field-is-busy input {
  cursor: wait;
}

@keyframes argus-spin {
  to { transform: rotate(360deg); }
}

@keyframes argus-promo-sheen {
  0%, 46% { left: -80%; }
  74%, 100% { left: 135%; }
}

@keyframes argus-promo-band-sheen {
  0%, 42% { left: -35%; opacity: 0; }
  50% { opacity: 0.9; }
  72%, 100% { left: 112%; opacity: 0; }
}

@keyframes argus-promo-glow {
  0%, 100% { box-shadow: 0 12px 30px rgba(169, 86, 60, 0.08); }
  50% { box-shadow: 0 18px 44px rgba(222, 160, 72, 0.2); }
}

@media (prefers-reduced-motion: reduce) {
  .argus-nav-promo-badge::after,
  .argus-chip-promo::after,
  .argus-promo-band::before,
  .argus-promo-tile {
    animation: none;
  }
}

.argus-btn-compact {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
}

.argus-watchlist-nav .argus-btn-compact {
  min-height: 32px;
  padding: 5px 11px;
}

.argus-btn-primary {
  background: var(--argus-accent);
  color: #fffaf3;
  box-shadow: 0 10px 22px rgba(169, 86, 60, 0.18);
}

.argus-btn-primary:hover {
  background: var(--argus-accent-hover);
  box-shadow: 0 12px 26px rgba(169, 86, 60, 0.24);
  transform: translateY(-1px);
}

.argus-btn-dark {
  background: #231f1a;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(35, 31, 26, 0.16);
}

.argus-btn-secondary {
  border-color: rgba(216, 205, 193, 0.95);
  background: rgba(255, 252, 247, 0.92);
  color: #463f37;
}

.argus-btn-secondary:hover {
  background: #ffffff;
}

.argus-payment-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.argus-payment-btn {
  width: 100%;
  justify-content: flex-start;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--argus-border);
  background: #fffdf9;
  color: var(--argus-ink);
  box-shadow: var(--argus-panel-shadow-soft);
}

.argus-payment-btn:hover {
  border-color: rgba(201, 111, 79, 0.32);
  background: #fffaf3;
}

.argus-payment-btn-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.argus-payment-btn-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.argus-payment-btn-copy strong {
  font-size: 15px;
  font-weight: 800;
}

.argus-payment-btn-copy span {
  color: var(--argus-muted);
  font-size: 12px;
  font-weight: 700;
}

.argus-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.argus-sort-button-right {
  justify-content: flex-end;
  width: 100%;
}

.argus-sort-button:hover {
  color: #1a1a1a;
}

.argus-sort-button:focus-visible {
  outline: 2px solid rgba(201, 111, 79, 0.45);
  outline-offset: 4px;
  border-radius: 6px;
}

.argus-sort-indicator {
  display: inline-block;
  min-width: 1em;
  color: #c96f4f;
  text-align: center;
}

.argus-account-link {
  color: #685e54;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: color 160ms ease;
}

.argus-account-link:hover {
  color: #231f1a;
}

@media (max-width: 640px) {
  .argus-payment-actions {
    grid-template-columns: 1fr;
  }
}

.argus-btn-danger {
  border-color: rgba(138, 61, 45, 0.22);
  background: #fff;
  color: var(--argus-danger-text);
}

.argus-field label {
  display: block;
  margin-bottom: 10px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}

.argus-input,
.argus-select {
  width: 100%;
  border: 1px solid rgba(216, 205, 193, 0.96);
  border-radius: 12px;
  background: #fffdf9;
  color: var(--argus-ink);
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.argus-input,
.argus-select {
  min-height: 56px;
  padding: 0 18px;
}

.argus-input:focus,
.argus-select:focus {
  border-color: var(--argus-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 111, 79, 0.14);
}

.argus-help {
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.65;
}

.argus-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(35, 31, 26, 0.08);
}

.argus-ui-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.argus-ui-icon-sm {
  width: 13px;
  height: 13px;
}

.argus-label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.argus-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.argus-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.argus-feature-list .argus-ui-icon {
  margin-top: 0.22em;
}

.argus-kpi-card {
  border: 1px solid rgba(216, 205, 193, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--argus-panel-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.argus-kpi-label {
  color: #60574d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.argus-kpi-value {
  color: #231f1a;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
}

.argus-kpi-value-compact {
  color: #231f1a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.argus-kpi-meta {
  color: #564d45;
  font-size: 13px;
  font-weight: 700;
}

.argus-data-table-head {
  color: #5f554b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.argus-data-table-subtle {
  color: #4f473f;
  font-size: 14px;
  font-weight: 700;
}

.argus-data-table-subtle-code {
  color: #61584f;
  font-size: 12px;
  font-weight: 700;
}

.argus-chip-success {
  background: var(--argus-success-bg);
  color: var(--argus-success-text);
}

.argus-chip-warning {
  background: var(--argus-warning-bg);
  color: var(--argus-warning-text);
}

.argus-chip-danger {
  background: var(--argus-danger-bg);
  color: var(--argus-danger-text);
}

.argus-chip-info {
  background: var(--argus-green-soft);
  color: var(--argus-green);
}

.argus-chip-promo {
  position: relative;
  overflow: hidden;
  border-color: rgba(222, 160, 72, 0.52);
  background: linear-gradient(120deg, #f4e1d6, #ffe8a8 48%, #f4e1d6);
  color: #a9563c;
  box-shadow: 0 8px 20px rgba(169, 86, 60, 0.1), 0 0 0 1px rgba(255, 230, 157, 0.36) inset;
}

.argus-chip-promo::after {
  position: absolute;
  inset: -45% auto -45% -80%;
  width: 62%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: skewX(-18deg);
  animation: argus-promo-sheen 2.8s ease-in-out infinite;
  pointer-events: none;
}

.argus-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.argus-metric {
  font-variant-numeric: tabular-nums;
}

.argus-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.argus-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(14px);
}

.argus-dialog-backdrop.is-open {
  display: flex;
}

.argus-dialog {
  width: min(100%, 620px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(216, 205, 193, 0.98);
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: 0 28px 80px rgba(32, 24, 18, 0.2);
}

.argus-dialog-lg {
  width: min(100%, 860px);
}

.argus-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 0;
}

.argus-dialog-body {
  padding: 28px;
}

.argus-icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--argus-border);
  border-radius: 999px;
  background: #fffdf9;
  color: #685e54;
  cursor: pointer;
}

.argus-footer {
  border-top: 1px solid rgba(216, 205, 193, 0.96);
  background: rgba(244, 237, 228, 0.92);
}

.argus-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block: 18px;
  color: #685e54;
  font-size: 13px;
  font-weight: 760;
}

.argus-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.argus-footer-links a {
  color: inherit;
  text-decoration: none;
}

.argus-footer-links a:hover {
  color: #231f1a;
}

@media (min-width: 640px) {
  .argus-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.argus-hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .argus-nav {
    display: flex;
  }

  .argus-mobile-menu {
    display: none;
  }

  .argus-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width: 1100px) {
  .argus-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .argus-shell {
    padding-inline: 18px;
  }

  .argus-header-inner {
    min-height: 72px;
  }

  .argus-card-pad {
    padding: 20px;
  }

  .argus-tool-page {
    padding-block: 14px 28px;
  }

  .argus-mobile-collapse > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 850;
    list-style: none;
    cursor: pointer;
  }

  .argus-mobile-collapse > summary::-webkit-details-marker {
    display: none;
  }

  .argus-mobile-collapse > summary::after {
    content: "+";
    flex: 0 0 auto;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1;
  }

  .argus-mobile-collapse[open] > summary::after {
    content: "-";
  }

  .argus-mobile-collapse > summary span:last-child {
    min-width: 0;
    color: #737373;
    font-size: 12px;
    font-weight: 750;
    text-align: right;
  }

  .argus-mobile-collapse[open] > summary {
    margin-bottom: 10px;
  }

}