:root {
  color-scheme: dark;
  --bg: #090a0d;
  --surface: rgba(18, 20, 25, 0.84);
  --surface-strong: #15171c;
  --ink: #f4f5f1;
  --muted: #aeb2ba;
  --quiet: #767b85;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --acid: #b8f34a;
  --amber: #f5b94c;
  --rail: 220px;
  --page-left: clamp(294px, 25vw, 390px);
  --page-right: clamp(24px, 7vw, 120px);
  --radius: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 36px;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body::selection { color: #0a0b0d; background: var(--acid); }

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0b0c0f; }
::-webkit-scrollbar-thumb { background: #333740; border: 2px solid #0b0c0f; border-radius: 10px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #08090b;
  background: var(--acid);
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

#scene,
.scene-scrim {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

#scene { z-index: 0; display: block; }

.scene-scrim {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, .76) 0%, rgba(7, 8, 11, .48) 34%, rgba(7, 8, 11, .06) 67%, rgba(7, 8, 11, .42) 100%),
    linear-gradient(180deg, rgba(7, 8, 11, .08), rgba(7, 8, 11, .7));
}

.glass-rail {
  position: fixed;
  top: 50%;
  left: clamp(20px, 3vw, 52px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: var(--rail);
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .055));
  box-shadow: 0 30px 70px -26px rgba(0, 0, 0, .86), inset 0 1px rgba(255, 255, 255, .42), inset 0 -1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(26px) saturate(175%);
  -webkit-backdrop-filter: blur(26px) saturate(175%);
  transform: translateY(-50%);
}

.glass-rail::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background: linear-gradient(160deg, rgba(255,255,255,.18), transparent 30%, transparent 76%, rgba(255,255,255,.09));
}

.brand,
.footer-brand,
.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  text-decoration: none;
}

.brand { position: relative; padding: 8px 10px; }

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 2px;
  place-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #0b0c0f;
  background: #f7f8f4;
  box-shadow: 0 4px 12px rgba(0,0,0,.36), inset 0 -1px rgba(0,0,0,.18);
}

.brand-mark i { width: 6px; height: 6px; border: 1.5px solid currentColor; border-radius: 1px; }

.hairline { height: 1px; margin: 2px 8px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); }
.dock { position: relative; display: flex; flex-direction: column; gap: 3px; }

.dock-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: rgba(255,255,255,.69);
  text-decoration: none;
  transform-origin: left center;
  transition: color .18s, background .2s, border-color .2s, transform .32s var(--ease), box-shadow .2s;
}

.dock-item svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dock-item:hover,
.dock-item:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  transform: translateX(7px) scale(1.035);
}

.dock-item.is-active {
  color: #0b0c0f;
  border-color: rgba(255,255,255,.72);
  background: linear-gradient(180deg, #fff, #e5e8ee);
  box-shadow: 0 12px 24px -15px rgba(255,255,255,.65), inset 0 -1px rgba(0,0,0,.14);
}

.rail-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 17px;
  color: #0b0c0f;
  background: linear-gradient(180deg, #fff, #dfe3e9);
  box-shadow: 0 14px 30px -17px rgba(255,255,255,.72), inset 0 -1px rgba(0,0,0,.16);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s;
}

.rail-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -17px rgba(255,255,255,.82), inset 0 -1px rgba(0,0,0,.16); }
.rail-cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

main, footer { position: relative; z-index: 2; }
.section { min-height: 100vh; scroll-margin-top: 24px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  gap: 48px;
  align-items: end;
  padding: clamp(92px, 12vh, 150px) var(--page-right) clamp(38px, 6vh, 72px) var(--page-left);
}

.mobile-brand { display: none; }
.hero-copy { max-width: 780px; align-self: center; }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 8vw, 114px);
  font-weight: 650;
  line-height: .94;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.hero h1 span { color: rgba(244,245,241,.54); }

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #d0d3d8;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 7px; font-weight: 750; text-decoration: none; }
.button-primary { color: #101207; background: var(--acid); box-shadow: 0 12px 24px -16px rgba(0,0,0,.72); transition: transform .2s var(--ease), background .2s; }
.button-primary:hover { background: #cbff65; transform: translateY(-2px); }
.text-link { color: #e6e8e3; text-underline-offset: 6px; }
.text-link:hover { color: var(--acid); }

.hero-pricing {
  align-self: center;
  display: grid;
  min-width: 220px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero-pricing div { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 16px 0; }
.hero-pricing div + div { border-top: 1px solid var(--line); }
.hero-pricing strong { font-size: 32px; font-variant-numeric: tabular-nums; }
.hero-pricing span { color: var(--muted); }

.content-section {
  min-height: auto;
  padding: clamp(96px, 12vw, 160px) var(--page-right) clamp(96px, 12vw, 160px) var(--page-left);
  border-top: 1px solid var(--line);
  background: rgba(9,10,13,.84);
  backdrop-filter: blur(12px);
}

.section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .65fr); gap: clamp(36px, 8vw, 120px); align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 680px; margin: 0; font-size: clamp(42px, 6vw, 82px); font-weight: 620; line-height: 1.02; letter-spacing: -.035em; }
.section-heading p { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.compact-heading h2 { font-size: clamp(38px, 4vw, 62px); }
.heading-single { grid-template-columns: 1fr; }

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

.plan {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22,24,29,.88);
}

.plan-featured { background: linear-gradient(150deg, rgba(184,243,74,.045), rgba(22,24,29,.9) 42%); }
.plan.is-selected { border-color: var(--acid); background: linear-gradient(150deg, rgba(184,243,74,.09), rgba(22,24,29,.92) 46%); box-shadow: inset 0 0 0 1px rgba(184,243,74,.12); }
.plan-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.plan-name { font-size: 19px; font-weight: 720; }
.pill { padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); font-size: 12px; }
.pill-accent { color: #161b09; border-color: transparent; background: var(--acid); }
.plan-duration { margin: 46px 0 0; color: var(--muted); }
.plan-duration strong { color: var(--ink); font-size: 58px; line-height: 1; }
.plan-price { margin: 14px 0 30px; font-size: clamp(66px, 8vw, 108px); font-weight: 650; line-height: .9; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.plan-price span { margin-right: 8px; color: var(--quiet); font-size: .32em; vertical-align: top; }
.plan ul { display: grid; gap: 12px; margin: 0 0 34px; padding: 24px 0 0; border-top: 1px solid var(--line); color: #c5c8ce; list-style: none; }
.plan li::before { margin-right: 10px; color: var(--acid); content: "✓"; }

.plan-button {
  min-height: 48px;
  margin-top: auto;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255,255,255,.06);
  font-weight: 720;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.plan-button:hover { color: #111509; border-color: var(--acid); background: var(--acid); }
.plan-button[aria-pressed="true"] { color: #111509; border-color: var(--acid); background: var(--acid); }
.plan-button[aria-pressed="true"]:hover { background: #cbff65; }

.selection-status {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(245,185,76,.28);
  border-radius: 6px;
  color: #f4e2bc;
  background: rgba(245,185,76,.07);
}

.status-icon { display: grid; flex: 0 0 auto; place-items: center; width: 22px; height: 22px; border: 1px solid currentColor; border-radius: 50%; font-size: 13px; font-weight: 800; }
.selection-status strong { color: #fff4de; }
.selection-status p { margin: 5px 0 0; color: #cbbd9f; line-height: 1.55; }
.selection-status.is-selected { color: #deffc2; border-color: rgba(184,243,74,.34); background: rgba(184,243,74,.08); }

.checkout-flow {
  margin-top: 22px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #121419;
}

.checkout-heading { display: flex; align-items: start; justify-content: space-between; gap: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.checkout-heading h3, .payment-summary h3 { margin: 0 0 7px; font-size: 24px; }
.checkout-heading p { margin: 0; color: var(--muted); line-height: 1.6; }
.checkout-heading > p { max-width: 310px; text-align: right; }
.checkout-heading > p strong { color: var(--acid); }
.checkout-form { display: grid; gap: 18px; max-width: 760px; padding-top: 26px; }
.checkout-form > label, .checkout-form legend { color: #d7dadf; font-size: 14px; font-weight: 720; }
.checkout-form input[type="text"] { min-height: 50px; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--ink); background: #0d0f13; }
.checkout-form input[type="text"]::placeholder { color: #8c929d; }
.checkout-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.checkout-form legend { margin-bottom: 10px; }
.payment-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.payment-option { position: relative; display: flex; align-items: center; min-height: 70px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 6px; background: #17191f; cursor: pointer; }
.payment-option:hover { border-color: rgba(184,243,74,.64); }
.payment-option:has(input:checked) { border-color: var(--acid); background: rgba(184,243,74,.08); box-shadow: inset 0 0 0 1px rgba(184,243,74,.12); }
.payment-option.is-disabled { opacity: .44; cursor: not-allowed; }
.payment-option input { width: 17px; height: 17px; margin: 0 12px 0 0; accent-color: var(--acid); }
.payment-option span { display: grid; gap: 3px; }
.payment-option strong { color: var(--ink); }
.payment-option small { color: var(--muted); font-weight: 500; }
.payment-empty { grid-column: 1 / -1; margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); background: #17191f; }
.checkout-note { max-width: 70ch; margin: 0; color: #c4b58e; font-size: 13px; line-height: 1.65; }
.checkout-submit { min-height: 50px; border: 1px solid var(--acid); border-radius: 5px; color: #101407; background: var(--acid); font-weight: 760; cursor: pointer; }
.checkout-submit:hover { background: #cbff65; }
.checkout-submit:disabled { border-color: #353941; color: var(--quiet); background: #262930; cursor: wait; }

.payment-result { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(180px, 260px); gap: 26px 44px; align-items: start; padding-top: 28px; }
.payment-summary p { margin: 0; color: var(--muted); }
.payment-state { display: inline-flex; min-height: 27px; align-items: center; margin-bottom: 14px; padding: 0 10px; border: 1px solid rgba(245,185,76,.35); border-radius: 999px; color: #ffd98b; background: rgba(245,185,76,.07); font-size: 12px; font-weight: 720; }
.payment-state.is-paid { color: #dfffab; border-color: rgba(184,243,74,.42); background: rgba(184,243,74,.08); }
.payment-state.is-review { color: #ffd98b; }
.payment-state.is-expired { color: #ffaaa2; border-color: rgba(255,121,121,.35); background: rgba(255,121,121,.07); }
.countdown { color: var(--acid); font-size: 20px; font-variant-numeric: tabular-nums; }
.payment-qr { grid-column: 2; grid-row: 1 / span 3; width: 100%; aspect-ratio: 1; padding: 10px; border-radius: 6px; background: #fff; object-fit: contain; }
.payment-details { display: grid; gap: 0; margin: 8px 0 0; border-top: 1px solid var(--line); }
.payment-details div { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.payment-details dt { color: var(--muted); }
.payment-details dd { min-width: 0; margin: 0; color: var(--ink); font-weight: 700; overflow-wrap: anywhere; }
.payment-details dd button { margin-left: 10px; padding: 3px 7px; border: 1px solid var(--line-strong); border-radius: 4px; color: var(--muted); background: transparent; cursor: pointer; }
.payment-details dd button:hover { color: var(--acid); border-color: var(--acid); }
.query-key-notice { grid-column: 1 / -1; margin: 0; padding: 12px 14px; border: 1px solid rgba(184,243,74,.36); border-radius: 5px; color: #dbe8c1; background: rgba(184,243,74,.06); font-size: 13px; line-height: 1.55; }
.payment-warning { margin: 0; color: #c4b58e; font-size: 13px; line-height: 1.65; }
.payment-critical { margin: -10px 0 0; color: #ff8c86; font-size: 14px; font-weight: 720; line-height: 1.65; }
.secondary-action { width: fit-content; min-height: 42px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--ink); background: #20232a; cursor: pointer; }
.secondary-action:hover { border-color: var(--acid); color: var(--acid); }
.secondary-action:disabled { color: var(--quiet); cursor: wait; }

.order-section { color: var(--ink); background: rgba(9,10,13,.94); }
.order-section .section-heading p { color: var(--muted); }
.order-form { max-width: 880px; }
.order-form label { display: grid; gap: 10px; font-weight: 750; }
.lookup-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .52fr) auto; gap: 10px; align-items: end; }
.lookup-grid input { width: 100%; min-width: 0; min-height: 54px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--ink); background: #15171c; caret-color: var(--acid); }
.lookup-grid input::placeholder { color: #9297a1; }
.lookup-grid button { min-height: 54px; padding: 0 25px; border: 0; border-radius: 5px; color: #111317; background: var(--ink); font-weight: 750; cursor: pointer; }
.lookup-grid button:hover { background: var(--acid); }
.lookup-grid button:disabled { color: var(--quiet); background: #2b2e34; cursor: wait; }
.lookup-help { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.field-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.field-row input { min-width: 0; min-height: 54px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--ink); background: #15171c; caret-color: var(--acid); }
.field-row input::placeholder { color: #9297a1; }
.field-row button { min-height: 54px; padding: 0 25px; border: 0; border-radius: 5px; color: #111317; background: var(--ink); font-weight: 750; cursor: pointer; }
.field-row button:hover { background: var(--acid); }
.field-row button:disabled { color: var(--quiet); background: #2b2e34; cursor: wait; }
.form-message { min-height: 24px; margin: 12px 0 0; color: #f1c56c; }
.form-message.is-success { color: var(--acid); }
.order-results { display: grid; gap: 8px; margin-top: 18px; }
.order-results article { display: grid; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 5px; color: var(--ink); background: #15171c; }
.order-result-main { display: grid; grid-template-columns: minmax(180px, .85fr) minmax(220px, 1.2fr) minmax(210px, 1fr) auto; gap: 16px; align-items: center; }
.order-results strong { overflow-wrap: anywhere; }
.order-results span, .order-results time { color: var(--muted); font-size: 13px; line-height: 1.5; }
.order-results time { text-align: right; }
.order-account { display: flex; align-items: baseline; gap: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.order-account span { min-width: 72px; color: var(--quiet); }
.order-account strong { color: var(--ink); }
.customer-receipt { padding: 14px 0 0; border-top: 1px solid var(--line); }
.customer-receipt strong { color: #ffcb74; font-size: 13px; }
.customer-receipt p { margin: 7px 0 0; color: #e5e7e2; line-height: 1.65; white-space: pre-wrap; }
.refund-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding-top: 16px; border-top: 1px solid var(--line); }
.refund-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; grid-column: 1 / -1; }
.refund-heading strong { color: var(--ink); font-size: 17px; }
.refund-form label { display: grid; gap: 7px; color: #cfd2d7; font-size: 13px; font-weight: 700; }
.refund-form .refund-reason-field, .refund-form button, .refund-message { grid-column: 1 / -1; }
.refund-form input, .refund-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--ink); background: #0e1014; font: inherit; }
.refund-form input { min-height: 46px; padding: 0 12px; }
.refund-form textarea { padding: 12px; resize: vertical; line-height: 1.55; }
.refund-form button { min-height: 46px; border: 1px solid var(--acid); border-radius: 5px; color: #101407; background: var(--acid); font-weight: 780; cursor: pointer; }
.refund-form button:hover { background: #cbff65; }
.refund-form button:disabled { border-color: var(--line-strong); color: var(--quiet); background: #2b2e34; cursor: wait; }
.refund-message { min-height: 18px; margin: 0; color: #ff9b8f; font-size: 13px; }
.refund-progress { display: grid; gap: 5px; padding: 13px 14px; border: 1px solid rgba(245,185,76,.38); color: #ffd98b; background: rgba(245,185,76,.06); }
.refund-progress.is-complete { border-color: rgba(184,243,74,.38); color: var(--acid); background: rgba(184,243,74,.06); }
.refund-progress span { color: #c8cbbf; }

.notice-list { border-top: 1px solid var(--line-strong); }
.notice-list article { display: grid; grid-template-columns: 140px minmax(0, 1fr) auto; gap: 28px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line); }
.notice-list time { color: var(--quiet); font-variant-numeric: tabular-nums; }
.notice-list h3 { margin: 0 0 8px; font-size: 19px; }
.notice-list p { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.65; }
.notice-state { color: var(--acid); }
.notice-state.pending { color: var(--amber); }
.empty-content { margin: 0; padding: 28px 0; border-bottom: 1px solid var(--line); color: var(--quiet); }
.plan-grid > .empty-content { grid-column: 1 / -1; }

.help-section { background: rgba(14,15,18,.94); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; font-size: 19px; font-weight: 690; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 18px; height: 18px; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 8px; left: 2px; width: 14px; height: 1.5px; background: currentColor; content: ""; transition: transform .2s; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 68ch; margin: -4px 0 26px; color: var(--muted); line-height: 1.75; }
.faq-link { color: var(--acid); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.faq-link:hover { color: #cbff65; }

footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 38px var(--page-right) 38px var(--page-left);
  border-top: 1px solid var(--line);
  color: var(--quiet);
  background: #090a0d;
  font-size: 13px;
}

.footer-brand { color: var(--ink); font-size: 18px; }
.footer-brand, footer p { margin: 0; }

@media (max-width: 920px) {
  :root { --page-left: 28px; --page-right: 28px; }

  body { padding-bottom: 88px; }
  .glass-rail {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 8px;
    border-radius: 22px;
    transform: none;
  }

  .glass-rail .brand, .glass-rail .hairline { display: none; }
  .dock { flex: 1; flex-direction: row; justify-content: space-around; }
  .dock-item { flex-direction: column; gap: 3px; min-width: 58px; min-height: 52px; padding: 6px 8px; border-radius: 14px; font-size: 10px; }
  .dock-item:hover, .dock-item:focus-visible { transform: translateY(-3px); }
  .dock-item svg { width: 17px; height: 17px; }
  .rail-cta { min-width: 52px; min-height: 52px; padding: 0; justify-content: center; border-radius: 14px; }
  .rail-cta span { display: none; }

  .hero { min-height: 100svh; padding-top: 30px; }
  .mobile-brand { display: inline-flex; position: absolute; top: 28px; left: var(--page-left); }
  .hero-copy { padding-top: 86px; }
  .hero h1 { font-size: clamp(52px, 12vw, 86px); }
  .hero-pricing { min-width: 190px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .order-result-main { grid-template-columns: 1fr 1fr; }
  .order-results time { text-align: left; }
  footer { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 680px) {
  :root { --page-left: 18px; --page-right: 18px; }

  .scene-scrim { background: linear-gradient(180deg, rgba(7,8,11,.26), rgba(7,8,11,.76)); }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 28px; align-items: end; padding-bottom: 116px; }
  .hero-copy { align-self: end; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .hero-actions { margin-top: 26px; }
  .hero-pricing { align-self: auto; min-width: 0; width: 100%; }
  .content-section { padding-top: 86px; padding-bottom: 86px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .compact-heading h2 { font-size: 40px; }
  .section-heading p { font-size: 15px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan { min-height: 430px; }
  .plan-price { font-size: 82px; }
  .checkout-flow { padding: 22px 16px; }
  .checkout-heading { flex-direction: column; gap: 10px; }
  .checkout-heading > p { text-align: left; }
  .payment-options { grid-template-columns: 1fr; }
  .payment-result { grid-template-columns: 1fr; gap: 22px; }
  .payment-result { padding-bottom: 88px; }
  .payment-qr { grid-column: 1; grid-row: auto; width: min(100%, 280px); }
  .payment-details div { grid-template-columns: 78px minmax(0, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .lookup-grid { grid-template-columns: 1fr; }
  .order-result-main, .refund-form { grid-template-columns: 1fr; }
  .refund-form .refund-reason-field, .refund-form button, .refund-message { grid-column: auto; }
  .notice-list article { grid-template-columns: 1fr auto; gap: 10px 20px; }
  .notice-list article div { grid-column: 1 / -1; }
  .notice-state { grid-column: 2; grid-row: 1; }

  .dock-item { min-width: 0; }
  .dock-item span { display: none; }
  .rail-cta { min-width: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
