:root {
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --surface: #ffffff;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --text: #1e293b;
  --text-2: #334155;
  --muted: #64748b;
  --primary: #3b82f6;
  --primary-deep: #2563eb;
  --primary-soft: #dbeafe;
  --success: #10b981;
  --success-soft: #d1fae5;
  --warning: #f59e0b;
  --warning-soft: #fef3c7;
  --danger: #ef4444;
  --danger-soft: #fee2e2;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.brand-copy span {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
}

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

.hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-main {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.hero-main h1 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.hero-desc {
  margin: 0 0 24px;
  font-size: 1.125rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-side {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.user-card {
  min-height: 120px;
}

.user-guest {
  text-align: center;
  padding: 20px 0;
}

.user-guest p {
  margin: 0 0 16px;
  color: var(--muted);
}

.user-info {
  margin-bottom: 16px;
}

.user-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.user-balance {
  color: var(--muted);
  font-size: 0.875rem;
}

.user-actions {
  display: flex;
  gap: 8px;
}

.loading {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

.section {
  margin-bottom: 40px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.tabs {
  display: flex;
  gap: 8px;
}

.tab {
  padding: 8px 20px;
  border: none;
  background: var(--bg-2);
  color: var(--muted);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.tab:hover {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

.tab.active {
  background: var(--primary);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card.active {
  border-color: var(--primary);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.product-badge {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.product-body {
  margin-bottom: 16px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-tag {
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: var(--radius);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.checkout-panel, .result-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.checkout-info {
  margin-bottom: 20px;
}

.checkout-product h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
}

.checkout-product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-top: 16px;
}

.checkout-total span {
  color: var(--muted);
}

.checkout-total strong {
  font-size: 1.5rem;
  color: var(--primary);
}

.checkout-methods {
  margin-bottom: 20px;
}

.checkout-methods h4 {
  margin: 0 0 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.method-option:hover {
  border-color: var(--primary-soft);
  background: var(--primary-soft);
}

.method-option.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.method-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.method-option input {
  margin: 0;
}

.method-label {
  font-weight: 500;
}

.result-content {
  min-height: 200px;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.result-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.result-info {
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.info-row span:first-child {
  color: var(--muted);
}

.info-row .mono {
  font-size: 0.875rem;
}

.result-extra {
  margin-top: 16px;
  padding: 16px;
  background: var(--success-soft);
  border-radius: var(--radius);
}

.redeem-code {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.redeem-code span {
  color: var(--success);
  font-weight: 500;
}

.redeem-code strong {
  font-size: 1.25rem;
  font-family: monospace;
}

.result-qr {
  text-align: center;
  margin-top: 16px;
}

.result-qr p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.qr-box {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.help-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.help-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.help-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.primary:hover {
  background: var(--primary-deep);
}

.button.secondary {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

.button.ghost {
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
}

.status.success {
  background: var(--success-soft);
  color: var(--success);
}

.status.warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.status.error {
  background: var(--danger-soft);
  color: var(--danger);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

.empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-strong);
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.alert-error {
  background: var(--danger-soft);
  color: var(--danger);
}

.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
}

/* Shared blocks for user/orders/admin templates */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.inline.space {
  justify-content: space-between;
}

.divider {
  border-top: 1px solid var(--line);
}

.hero-copy {
  padding: 32px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.25;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.selling-points {
  margin: 0;
  padding-left: 18px;
  color: var(--text-2);
}

.selling-points li {
  margin: 4px 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.metric {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.metric span {
  font-size: 0.75rem;
  color: var(--muted);
}

.notice {
  background: var(--warning-soft);
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 12px 14px;
}

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text-2);
  border: 1px solid transparent;
}

.nav-link:hover {
  background: var(--bg-2);
  border-color: var(--line);
}

.panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.product-card.featured {
  border-color: var(--primary);
}

.product-card.accent-ocean {
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.product-card.accent-forest {
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
}

.product-card.accent-midnight {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.product-card.accent-crimson {
  background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
}

.product-card.accent-amber {
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.marketing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.field,
.textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
}

.field:focus,
.textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.field-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.product-editor {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
}

.table-wrap {
  overflow: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
}

th {
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
}

.status.tone-success,
.status.success {
  background: var(--success-soft);
  color: var(--success);
}

.status.tone-warning,
.status.warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.status.tone-danger,
.status.error {
  background: var(--danger-soft);
  color: var(--danger);
}

.status.tone-muted {
  background: var(--bg-2);
  color: var(--muted);
}

.landing-body {
  background:
    radial-gradient(circle at 18% 12%, rgba(16, 185, 129, 0.10), transparent 42%),
    radial-gradient(circle at 82% 30%, rgba(59, 130, 246, 0.10), transparent 45%),
    linear-gradient(180deg, #f7fafc 0%, #f1f5f9 100%);
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7e9df;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.86);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.product-grid.product-grid-landing {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.product-card.product-card-landing {
  border: 1px solid #dbeafe;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card.product-card-landing:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.product-type-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.pay-method-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pay-method-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.meta {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.preline {
  white-space: pre-line;
}

.pay-modal[hidden] {
  display: none;
}

.pay-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1200;
}

.pay-modal-card {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  padding: 18px;
}

.modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .admin-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .actions {
    justify-content: center;
  }

  .hero-main {
    padding: 24px;
  }

  .hero-main h1 {
    font-size: 1.5rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .method-option {
    padding: 10px;
  }

  .nav-links {
    width: 100%;
  }

  .pay-modal {
    padding: 10px;
  }
}

/* Guide-inspired spacing and visual rhythm polish */
.shell {
  max-width: 1360px;
  padding: 20px 18px 34px;
}

.topbar {
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 1px solid #d6dce5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.nav-link {
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.76);
}

.section {
  margin-bottom: 24px;
}

.section:last-child {
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 14px;
  gap: 12px;
}

.section-head h2 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.3;
}

.hero {
  gap: 16px;
  margin-bottom: 24px;
}

.hero-copy {
  padding: 24px 26px;
}

.hero-copy h1 {
  margin-bottom: 8px;
}

.hero-desc {
  margin-bottom: 14px;
}

.hero-side {
  padding: 20px;
}

.card,
.panel,
.table-wrap,
.product-card,
.faq-item,
.feature-card,
.pay-modal-card {
  border: 1px solid #d6dce5;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.feature-grid,
.checkout-grid,
.admin-grid,
.product-grid.product-grid-landing {
  gap: 12px;
}

.product-grid {
  gap: 12px;
}

.product-card {
  border-radius: 14px;
  padding: 16px;
}

.order-grid {
  gap: 12px;
}

.metrics {
  gap: 10px;
}

.metric {
  border-radius: 10px;
  padding: 10px 11px;
}

.faq-item {
  padding: 14px 16px;
}

.table-wrap {
  border-radius: 14px;
}

@media (max-width: 900px) {
  .shell {
    padding: 14px 12px 28px;
  }

  .topbar {
    margin-bottom: 16px;
  }

  .section {
    margin-bottom: 18px;
  }
}

/* Compact section framing and stronger heading anchors */
.section {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d6dce5;
  border-radius: 14px;
  padding: 12px 14px 14px;
}

.section > .section-head {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.section-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eyebrow {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  letter-spacing: 0.03em;
  text-transform: none;
}

.section-head h2 {
  margin: 0;
}

.stack {
  gap: 10px;
}

.section .card:first-child,
.section .panel:first-child,
.section .table-wrap:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .section {
    padding: 10px 10px 12px;
  }
}

/* Guide-like color and typography scale */
:root {
  --bg: #f2f4f7;
  --bg-2: #edf1f6;
  --surface: #ffffff;
  --line: #d6dce5;
  --line-strong: #c2ccd9;
  --text: #1f2937;
  --text-2: #475569;
  --muted: #64748b;
  --primary: #1d4ed8;
  --primary-deep: #1e40af;
  --primary-soft: #dbeafe;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 34px rgba(15, 23, 42, 0.14);
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.landing-body {
  background:
    radial-gradient(circle at 8% 8%, rgba(59, 130, 246, 0.12), transparent 35%),
    radial-gradient(circle at 92% 12%, rgba(15, 118, 110, 0.1), transparent 40%),
    repeating-linear-gradient(
      -20deg,
      rgba(148, 163, 184, 0.08) 0 1px,
      transparent 1px 32px
    ),
    linear-gradient(180deg, #f2f4f7 0%, #edf1f6 100%);
}

.brand-copy strong {
  font-size: 0.94rem;
}

.brand-copy span {
  font-size: 0.78rem;
}

.hero-copy h1 {
  font-size: clamp(1.45rem, 2.15vw, 1.9rem);
  line-height: 1.3;
}

.hero-desc {
  font-size: 0.96rem;
}

.section-head h2 {
  font-size: clamp(1.2rem, 1.55vw, 1.42rem);
  line-height: 1.32;
}

.eyebrow {
  font-size: 0.72rem;
}

.nav-link {
  font-size: 0.84rem;
  padding: 7px 11px;
}

.button {
  font-size: 0.84rem;
  padding: 9px 16px;
}

.chip {
  font-size: 0.74rem;
  padding: 5px 10px;
}

.meta,
.field-hint,
th,
td,
.faq-item p {
  font-size: 0.84rem;
}

.product-card strong,
.feature-card h3,
.faq-item h3 {
  font-size: 0.97rem;
}

.metric strong {
  font-size: 1.04rem;
}

@media (max-width: 900px) {
  body {
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 1.12rem;
  }
}
