:root {
  color-scheme: dark;
  --canvas: #090a0b;
  --canvas-soft: #0c0e13;
  --surface: #0f111a;
  --surface-raised: #141722;
  --glass: rgb(27 29 39 / 68%);
  --text: #ededed;
  --text-secondary: rgb(255 255 255 / 72%);
  --text-muted: rgb(255 255 255 / 61%);
  --border: rgb(255 255 255 / 12%);
  --border-subtle: rgb(255 255 255 / 6%);
  --blue-deep: #003e8e;
  --blue: #338cff;
  --blue-highlight: #4c9aff;
  --blue-pale: #a3cbff;
  --green: #4cd69b;
  --amber: #f3bd63;
  --red: #ff7f88;
  --action-gradient: linear-gradient(-45deg, var(--blue-deep), var(--blue), var(--blue-highlight));
  --accent-gradient: linear-gradient(-90deg, #0a66df, var(--blue-pale));
  --font: "Gabarito", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --radius-control: 999px;
  --radius-panel: 20px;
  --radius-input: 12px;
  --content: 1200px;
  --focus: 0 0 0 2px var(--canvas), 0 0 0 5px var(--blue-pale);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 760px;
  background-image:
    radial-gradient(circle at 50% 32%, transparent 0 12%, var(--canvas) 70%),
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  content: "";
  pointer-events: none;
}

button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { overflow-wrap: anywhere; }
p { margin: 0; color: var(--text-secondary); }
h1, h2, h3 { margin: 0; color: var(--text); line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.4vw, 5.25rem); font-weight: 780; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 740; }
h3 { font-size: 1.35rem; font-weight: 680; }
h1 span, h2 span { background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
[hidden] { display: none !important; }

:focus-visible { outline: 0; box-shadow: var(--focus); }
::selection { background: rgb(51 140 255 / 42%); color: white; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius-control);
  background: white;
  color: #061832;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.page-aura {
  position: fixed;
  z-index: -1;
  top: -180px;
  right: -220px;
  width: min(780px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(20 106 223 / 24%), rgb(0 62 142 / 7%) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.page-aura--quiet { opacity: .55; }

.site-header { position: relative; z-index: 20; padding-top: 20px; }
.site-header__inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%), 0 16px 48px rgb(0 0 0 / 22%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; min-height: 44px; align-items: center; gap: 10px; border-radius: var(--radius-control); font-size: 1.08rem; font-weight: 760; letter-spacing: -.02em; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav > a:not(.button) { min-height: 44px; padding: 11px 14px; border-radius: var(--radius-control); color: var(--text-secondary); font-weight: 620; transition: color 180ms ease, background 180ms ease; }
.primary-nav > a:not(.button):hover { background: rgb(255 255 255 / 5%); color: white; }
.primary-nav a[aria-current="page"] { color: white; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; background: transparent; color: white; }
.nav-toggle > span:not(.sr-only) { width: 18px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform 180ms ease; }
.nav-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.test-mode-banner { display: flex; min-height: 38px; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; padding: 7px 14px; border: 1px solid rgb(243 189 99 / 28%); border-radius: var(--radius-control); background: rgb(243 189 99 / 7%); text-align: center; }
.test-mode-banner span { padding: 3px 8px; border-radius: var(--radius-control); background: rgb(243 189 99 / 14%); color: #ffdc9f; font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.test-mode-banner p { color: #efd4a8; font-size: .8rem; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 23px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius-control);
  color: white;
  font-weight: 680;
  line-height: 1.25;
  text-align: center;
  transition: filter 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
button.button { appearance: none; }
.button--primary { background: var(--action-gradient); box-shadow: inset 0 1px 0 rgb(255 255 255 / 30%), 0 12px 30px rgb(0 72 165 / 22%); }
.button--quiet { background: rgb(255 255 255 / 4%); }
.button--compact { min-height: 42px; padding: 9px 18px; font-size: .92rem; }
.button:hover:not(:disabled) { filter: brightness(1.14); border-color: rgb(255 255 255 / 36%); }
.button:active:not(:disabled) { transform: scale(.97); filter: brightness(.95); }
.button:disabled { cursor: wait; filter: saturate(.35); opacity: .58; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; border-radius: 8px; color: var(--text); font-weight: 680; }
.text-link span { color: var(--blue-pale); transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow { margin-bottom: 12px; color: var(--text-muted); font-size: .76rem; font-weight: 750; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow--blue { color: var(--blue-pale); }
.tag { display: inline-flex; min-height: 28px; align-items: center; padding: 5px 10px; border: 1px solid rgb(76 154 255 / 20%); border-radius: var(--radius-control); background: rgb(51 140 255 / 9%); color: var(--blue-pale); font-size: .76rem; font-weight: 680; line-height: 1.2; white-space: nowrap; }
.tag--accent { border-color: rgb(163 203 255 / 34%); background: rgb(51 140 255 / 16%); color: white; }
.tag--neutral { border-color: var(--border); background: rgb(255 255 255 / 4%); color: var(--text-secondary); }

.hero { display: grid; min-height: 710px; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: clamp(48px, 7vw, 96px); padding-block: 90px 112px; }
.hero__copy { max-width: 690px; animation: reveal-left 680ms var(--ease-out) both; }
.hero__lede { max-width: 640px; margin-top: 28px; font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.55; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; margin-top: 34px; }
.hero__assurance { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--text-muted); font-size: .9rem; }
.hero__assurance span { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid rgb(76 214 155 / 28%); border-radius: 50%; color: var(--green); font-size: .75rem; }

.flow-panel {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgb(27 29 39 / 78%), rgb(10 12 18 / 90%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%), 0 38px 100px rgb(0 0 0 / 34%);
  animation: reveal-right 700ms 80ms var(--ease-out) both;
}
.flow-panel::before { position: absolute; inset: -45% -20% auto 30%; height: 330px; border-radius: 50%; background: rgb(38 121 244 / 14%); filter: blur(55px); content: ""; pointer-events: none; }
.flow-panel__topline, .flow-panel__stats { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.flow-panel__pulse { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: .78rem; font-weight: 650; }
.flow-panel__pulse > span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgb(76 214 155 / 8%); }
.flow-steps { position: relative; margin: 34px 0; padding: 0; list-style: none; }
.flow-steps::before { position: absolute; top: 27px; bottom: 27px; left: 22px; border-left: 1px dashed rgb(163 203 255 / 27%); content: ""; }
.flow-steps li { position: relative; display: flex; align-items: center; gap: 16px; min-height: 80px; }
.flow-step__number { position: relative; z-index: 1; display: grid; flex: 0 0 46px; height: 46px; place-items: center; border: 1px solid rgb(255 255 255 / 14%); border-radius: 50%; background: #111521; color: var(--blue-pale); font-size: .75rem; font-weight: 760; }
.flow-steps li:nth-child(2) .flow-step__number { border-color: rgb(76 154 255 / 48%); background: linear-gradient(145deg, #0c3d7c, #1d6fd6); color: white; box-shadow: 0 0 26px rgb(51 140 255 / 28%); }
.flow-steps strong, .flow-steps small { display: block; }
.flow-steps strong { margin-bottom: 3px; font-size: 1rem; }
.flow-steps small { color: var(--text-muted); font-size: .84rem; line-height: 1.35; }
.flow-panel__stats { align-items: stretch; padding-top: 22px; border-top: 1px solid var(--border-subtle); }
.flow-panel__stats > div { min-width: 0; }
.flow-panel__stats strong, .flow-panel__stats span { display: block; }
.flow-panel__stats strong { font-size: 1.45rem; letter-spacing: -.04em; }
.flow-panel__stats span { max-width: 110px; margin-top: 3px; color: var(--text-muted); font-size: .72rem; line-height: 1.25; }

.catalog-section { padding-block: 70px 128px; }
.section-heading { max-width: 760px; }
.section-heading--split { display: grid; max-width: none; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); align-items: end; gap: 48px; }
.section-heading--split > p { max-width: 500px; justify-self: end; font-size: 1.05rem; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding: 10px; border: 1px solid var(--border); border-radius: 18px; background: rgb(20 23 34 / 70%); }
.search-field { display: flex; min-width: 240px; flex: 1; align-items: center; gap: 10px; padding-inline: 8px; color: var(--text-muted); }
.search-field input { width: 100%; min-height: 44px; border: 0; outline: 0; background: transparent; color: var(--text); }
.search-field input::placeholder { color: rgb(255 255 255 / 43%); }
.search-field:focus-within { border-radius: 8px; box-shadow: var(--focus); }
.filter-field { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: .85rem; font-weight: 650; }
.filter-field select { min-height: 44px; padding: 8px 38px 8px 13px; border: 1px solid var(--border); border-radius: var(--radius-input); background: #11141e; color: var(--text); }
.catalog-live { min-height: 22px; margin: 16px 2px; color: var(--text-muted); font-size: .82rem; }
.catalog-live:has(.notice) { margin-block: 20px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: linear-gradient(145deg, rgb(18 21 31 / 88%), rgb(12 14 20 / 94%));
  transition: border-color 220ms ease, transform 220ms var(--ease-out), background 220ms ease;
}
.product:hover { border-color: rgb(255 255 255 / 14%); background: linear-gradient(145deg, rgb(21 25 37 / 90%), rgb(12 14 20 / 96%)); transform: translateY(-2px); }
.product__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.product__header h3 { font-size: clamp(1.55rem, 3vw, 2rem); }
.product__description { max-width: 58ch; margin-top: 16px; color: var(--text-muted); }
.offer-list { display: grid; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.offer { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px; min-width: 0; padding: 12px 12px 12px 14px; border: 1px solid var(--border-subtle); border-radius: 14px; background: rgb(255 255 255 / 2.5%); }
.offer--recommended { border-color: rgb(76 154 255 / 25%); background: rgb(28 91 178 / 10%); }
.offer__details { min-width: 0; }
.offer__label { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.offer__label strong { text-transform: capitalize; }
.offer__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-top: 3px; }
.offer__price span { font-size: 1.05rem; font-weight: 720; }
.offer__price small, .offer__note { color: var(--text-muted); font-size: .75rem; }
.offer__note { display: block; margin-top: 3px; }
.free-product { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 30px; }
.free-product__price { font-size: 2.2rem; font-weight: 760; letter-spacing: -.04em; }
.free-product p { max-width: 250px; color: var(--text-muted); font-size: .86rem; text-align: right; }

.notice { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 13px; padding: 14px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-raised); color: var(--text-secondary); }
.notice--danger { border-color: rgb(255 127 136 / 26%); background: rgb(113 27 38 / 15%); }
.notice__mark { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgb(76 154 255 / 25%); border-radius: 50%; color: var(--blue-pale); font-weight: 760; }
.notice--danger .notice__mark { border-color: rgb(255 127 136 / 35%); color: var(--red); }
.notice strong { display: block; color: var(--text); }
.notice p { margin-top: 2px; color: var(--text-muted); font-size: .86rem; }

.empty-state { grid-column: 1 / -1; display: grid; min-height: 300px; place-items: center; align-content: center; gap: 12px; padding: 44px; border: 1px dashed var(--border); border-radius: var(--radius-panel); background: radial-gradient(circle at 50% 20%, rgb(51 140 255 / 9%), transparent 55%); text-align: center; }
.empty-state__icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgb(76 154 255 / 25%); border-radius: 50%; color: var(--blue-pale); font-size: 1.25rem; }
.empty-state p { max-width: 480px; }
.empty-state .button { margin-top: 8px; }
.empty-state--error .empty-state__icon { border-color: rgb(255 127 136 / 32%); color: var(--red); }

.product--skeleton, .purchase--skeleton { gap: 18px; min-height: 330px; }
.product--skeleton span, .purchase--skeleton span { display: block; height: 16px; border-radius: 7px; background: linear-gradient(90deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 9%), rgb(255 255 255 / 4%)); background-size: 220% 100%; animation: shimmer 1.6s linear infinite; }
.product--skeleton span:first-child { width: 36%; height: 28px; }
.product--skeleton span:nth-child(2) { width: 92%; }
.product--skeleton span:nth-child(3) { width: 72%; }
.product--skeleton span:last-child { height: 86px; margin-top: auto; }

.refund-section { border-block: 1px solid var(--border-subtle); background: linear-gradient(135deg, rgb(6 27 58 / 72%), rgb(9 10 11 / 95%) 60%); }
.refund-layout { display: grid; grid-template-columns: .52fr 1fr 1.05fr; align-items: center; gap: clamp(32px, 5vw, 72px); padding-block: 108px; }
.refund-number { background: linear-gradient(150deg, white 10%, var(--blue-highlight) 55%, var(--blue-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-size: clamp(7rem, 17vw, 13rem); font-weight: 850; line-height: .75; letter-spacing: -.1em; }
.refund-copy h2 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); }
.refund-copy > p:not(.eyebrow) { margin-block: 22px 28px; font-size: 1.05rem; }
.refund-terms { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-panel); background: rgb(11 15 23 / 68%); }
.refund-terms h3 { margin-bottom: 22px; }
.check-list { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 12px; }
.check-list li > span { color: var(--blue-pale); font-size: .75rem; font-weight: 760; }
.check-list p { color: var(--text-muted); font-size: .9rem; }
.check-list strong { color: var(--text); }
.fine-print { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border-subtle); color: var(--text-muted); font-size: .78rem; }

.trust-section { padding-block: 128px; }
.trust-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; border-block: 1px solid var(--border); }
.trust-rail article { padding: 28px 30px 32px 0; }
.trust-rail article + article { padding-left: 30px; border-left: 1px solid var(--border); }
.trust-rail article > span { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 30px; border: 1px solid rgb(76 154 255 / 22%); border-radius: 50%; color: var(--blue-pale); }
.trust-rail h3 { margin-bottom: 10px; }
.trust-rail p { color: var(--text-muted); font-size: .92rem; }

.site-footer { border-top: 1px solid var(--border-subtle); }
.site-footer__inner, .state-footer { display: flex; min-height: 104px; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer__inner > p, .state-footer > p { color: var(--text-muted); font-size: .78rem; }
.powered-by { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; border-radius: 10px; color: var(--text-muted); font-size: .86rem; }
.powered-by img { width: 28px; height: 28px; object-fit: contain; }
.powered-by strong { color: var(--text); }
.powered-by > span:last-child { color: var(--blue-pale); transition: transform 180ms ease; }
.powered-by:hover > span:last-child { transform: translate(2px, -2px); }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 20px; }
.site-footer__links a { min-height: 40px; padding-block: 9px; border-radius: 6px; color: var(--text-muted); font-size: .84rem; }
.site-footer__links a:hover { color: white; }

/* Policies */
.policy-main { width: min(calc(100% - 48px), 980px); padding-block: 96px 128px; }
.policy-hero { max-width: 820px; padding-bottom: 54px; border-bottom: 1px solid var(--border); }
.policy-hero h1 { font-size: clamp(3rem, 7vw, 5.3rem); }
.policy-summary { max-width: 720px; margin-top: 24px; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6; }
.policy-meta { margin-top: 22px; color: var(--text-muted); font-size: .8rem; }
.policy-document { display: grid; gap: 0; }
.policy-document section { display: grid; grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr); gap: 36px; padding-block: 34px; border-bottom: 1px solid var(--border-subtle); }
.policy-document h2 { font-size: 1.25rem; letter-spacing: -.02em; }
.policy-document p, .policy-document ul { max-width: 68ch; margin: 0; color: var(--text-secondary); line-height: 1.72; }
.policy-document p + p, .policy-document p + ul, .policy-document ul + p { margin-top: 14px; }
.policy-document section > :not(h2) { grid-column: 2; }
.policy-document section > h2 + * { grid-row: 1; }
.policy-document ul { display: grid; gap: 12px; padding-left: 20px; }
.policy-document strong { color: var(--text); }
.policy-document a { color: var(--blue-pale); text-decoration: underline; text-decoration-color: rgb(163 203 255 / 38%); text-underline-offset: 3px; }
.policy-document a:hover { color: white; text-decoration-color: currentColor; }

/* Account */
.account-main { padding-block: 96px 120px; }
.account-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 48px; }
.account-heading h1 { font-size: clamp(3rem, 6vw, 5rem); }
.account-heading > div > p:last-child { max-width: 700px; margin-top: 22px; font-size: 1.1rem; }
.account-status { min-height: 24px; margin-block: 42px 18px; color: var(--text-muted); font-size: .86rem; }
.account-status:has(.notice) { margin-block: 28px 18px; }
.account-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 20px; }
.purchases-panel { min-width: 0; padding: 26px; border: 1px solid var(--border); border-radius: 24px; background: rgb(15 17 26 / 76%); }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.panel-heading h2 { font-size: 1.85rem; }
.purchases-list { display: grid; gap: 12px; }
.purchase { padding: 20px; border: 1px solid var(--border-subtle); border-radius: 16px; background: rgb(255 255 255 / 2.5%); }
.purchase__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.purchase__heading h2 { font-size: 1.45rem; }
.purchase__meta { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 24px 0 0; padding: 18px 0; border-block: 1px solid var(--border-subtle); }
.purchase__meta div { min-width: 0; }
.purchase__meta dt { color: var(--text-muted); font-size: .72rem; font-weight: 650; text-transform: uppercase; }
.purchase__meta dd { margin: 5px 0 0; color: var(--text); font-size: .86rem; font-weight: 620; overflow-wrap: anywhere; }
.purchase__refund { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 16px; }
.purchase__refund p { color: var(--text-muted); font-size: .82rem; }
.status { display: inline-flex; min-height: 29px; align-items: center; padding: 5px 10px; border: 1px solid var(--border); border-radius: var(--radius-control); color: var(--text-secondary); font-size: .74rem; font-weight: 720; white-space: nowrap; }
.status--success { border-color: rgb(76 214 155 / 23%); background: rgb(76 214 155 / 7%); color: #86edc1; }
.status--warning { border-color: rgb(243 189 99 / 24%); background: rgb(243 189 99 / 7%); color: #ffd591; }
.status--danger { border-color: rgb(255 127 136 / 24%); background: rgb(255 127 136 / 7%); color: #ffadb3; }
.account-policy { position: sticky; top: 24px; padding: 28px; overflow: hidden; border: 1px solid rgb(76 154 255 / 23%); border-radius: 24px; background: linear-gradient(150deg, rgb(21 73 146 / 24%), rgb(15 17 26 / 94%) 55%); }
.account-policy__number { position: absolute; top: -28px; right: -8px; color: rgb(163 203 255 / 9%); font-size: 9rem; font-weight: 850; line-height: 1; letter-spacing: -.1em; }
.account-policy > *:not(.account-policy__number) { position: relative; }
.account-policy h2 { font-size: 1.9rem; }
.account-policy > p:not(.eyebrow) { margin-top: 18px; color: var(--text-muted); }
.account-policy ul { display: grid; gap: 12px; margin: 24px 0; padding: 20px 0 20px 19px; border-block: 1px solid var(--border-subtle); color: var(--text-secondary); font-size: .86rem; }

.refund-dialog { width: min(calc(100% - 32px), 600px); max-height: min(90vh, 760px); padding: 0; overflow: auto; border: 1px solid rgb(255 255 255 / 18%); border-radius: 24px; background: #10131c; color: var(--text); box-shadow: 0 34px 100px rgb(0 0 0 / 65%); }
.refund-dialog::backdrop { background: rgb(1 4 9 / 78%); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.refund-form { padding: 28px; }
.dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.dialog-heading h2 { font-size: 1.8rem; }
.icon-button { display: grid; flex: 0 0 44px; height: 44px; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: transparent; color: white; font-size: 1.45rem; }
.refund-form > p:not(.eyebrow) { margin-top: 16px; color: var(--text-muted); }
.form-field { display: grid; gap: 8px; margin-top: 24px; color: var(--text); font-weight: 650; }
.form-field textarea { width: 100%; resize: vertical; padding: 14px; border: 1px solid var(--border); border-radius: var(--radius-input); outline: 0; background: #0b0d13; color: var(--text); line-height: 1.45; }
.form-field textarea:focus { border-color: var(--blue-highlight); box-shadow: var(--focus); }
.form-field textarea::placeholder { color: rgb(255 255 255 / 37%); }
.form-field small { color: var(--text-muted); font-weight: 500; }
.form-feedback { min-height: 22px; margin-top: 14px !important; color: var(--blue-pale) !important; font-size: .85rem; }
.dialog-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* Checkout return states */
.state-page { display: grid; min-height: 100vh; grid-template-rows: auto 1fr auto; }
.simple-header { display: flex; min-height: 98px; align-items: center; justify-content: space-between; gap: 20px; }
.state-main { display: grid; place-items: center; padding-block: 56px 80px; }
.state-card { width: min(100%, 760px); padding: clamp(28px, 6vw, 58px); border: 1px solid var(--border); border-radius: 28px; background: linear-gradient(145deg, rgb(20 23 34 / 88%), rgb(11 13 19 / 94%)); box-shadow: 0 34px 100px rgb(0 0 0 / 32%); text-align: center; }
.state-card__icon { display: grid; width: 66px; height: 66px; place-items: center; margin: 0 auto 26px; border: 1px solid var(--border); border-radius: 50%; color: var(--text-secondary); font-size: 1.6rem; }
.state-card__icon--pending { border-color: rgb(76 154 255 / 34%); background: rgb(51 140 255 / 8%); color: var(--blue-pale); }
.state-card h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
.state-card > p:not(.eyebrow) { max-width: 630px; margin: 24px auto 0; font-size: 1.06rem; }
.state-notice { margin-top: 28px; padding: 13px 16px; border: 1px solid var(--border); border-radius: 12px; background: rgb(255 255 255 / 3%); color: var(--text-muted); font-size: .87rem; }
.state-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.state-card > small { display: block; max-width: 560px; margin: 24px auto 0; color: var(--text-muted); line-height: 1.45; }

@keyframes reveal-left { from { opacity: 0; transform: translateX(-46px); } to { opacity: 1; transform: none; } }
@keyframes reveal-right { from { opacity: 0; transform: translateX(46px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { to { background-position: -220% 0; } }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 84px 104px; }
  .hero__copy { max-width: 760px; }
  .flow-panel { width: min(100%, 680px); }
  .refund-layout { grid-template-columns: .45fr 1fr; }
  .refund-terms { grid-column: 1 / -1; }
  .account-layout { grid-template-columns: 1fr; }
  .account-policy { position: relative; display: grid; grid-template-columns: minmax(220px, .75fr) minmax(300px, 1.25fr); column-gap: 36px; }
  .account-policy .eyebrow, .account-policy h2, .account-policy > p { grid-column: 1; }
  .account-policy ul, .account-policy .text-link { grid-column: 2; }
  .account-policy ul { grid-row: 1 / span 4; margin: 0 0 16px; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 32px), var(--content)); }
  .site-header { padding-top: 12px; }
  .site-header__inner { position: relative; min-height: 60px; padding-block: 7px; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: none; padding: 10px; border: 1px solid var(--border); border-radius: 20px; background: #12151f; box-shadow: 0 24px 52px rgb(0 0 0 / 54%); }
  .primary-nav[data-open="true"] { display: grid; }
  .primary-nav a { width: 100%; justify-content: flex-start; }
  .hero { gap: 58px; padding-block: 72px 88px; }
  .hero__lede { margin-top: 22px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .section-heading--split > p { justify-self: start; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .search-field { min-width: 0; }
  .filter-field { justify-content: space-between; padding-left: 8px; }
  .filter-field select { max-width: 70%; }
  .product-grid { grid-template-columns: 1fr; }
  .refund-layout { grid-template-columns: 1fr; padding-block: 88px; }
  .refund-number { font-size: 8rem; }
  .refund-terms { grid-column: auto; }
  .trust-rail { grid-template-columns: 1fr; }
  .trust-rail article { padding: 26px 0; }
  .trust-rail article + article { padding-left: 0; border-top: 1px solid var(--border); border-left: 0; }
  .trust-rail article > span { margin-bottom: 18px; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; padding-block: 30px; }
  .site-footer__links { justify-content: flex-start; }
  .policy-main { width: min(calc(100% - 32px), 980px); padding-block: 72px 92px; }
  .policy-hero { padding-bottom: 38px; }
  .policy-document section { grid-template-columns: 1fr; gap: 14px; padding-block: 28px; }
  .policy-document section > :not(h2) { grid-column: 1; }
  .policy-document section > h2 + * { grid-row: auto; }
  .account-main { padding-block: 72px 90px; }
  .account-heading { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .account-heading .button { justify-self: start; }
  .purchase__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-policy { display: block; }
  .account-policy ul { margin-block: 24px; }
}

@media (max-width: 500px) {
  h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero__actions, .state-actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button, .state-actions .button { width: 100%; }
  .flow-panel { padding: 20px; }
  .flow-panel__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .flow-panel__stats strong { font-size: 1.2rem; }
  .product { padding: 20px; }
  .product__header { align-items: flex-start; flex-direction: column-reverse; gap: 10px; }
  .offer { grid-template-columns: 1fr; }
  .offer .button { width: 100%; }
  .free-product { align-items: flex-start; flex-direction: column; }
  .free-product p { text-align: left; }
  .notice { grid-template-columns: auto minmax(0, 1fr); }
  .notice > .button { grid-column: 1 / -1; width: 100%; }
  .refund-number { font-size: 6.5rem; }
  .refund-terms, .purchases-panel, .account-policy { padding: 21px; }
  .panel-heading { align-items: flex-start; flex-direction: column; }
  .purchase__heading { align-items: flex-start; flex-direction: column-reverse; }
  .purchase__meta { grid-template-columns: 1fr; }
  .purchase__refund { align-items: stretch; flex-direction: column; }
  .purchase__refund .button { width: 100%; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions .button { width: 100%; }
  .simple-header { min-height: 84px; }
  .simple-header .brand span { display: none; }
  .state-footer { align-items: flex-start; flex-direction: column; padding-block: 28px; }
  .test-mode-banner { align-items: flex-start; flex-direction: column; border-radius: 14px; text-align: left; }
}

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

@media (forced-colors: active) {
  .button, .tag, .status, .product, .flow-panel, .refund-terms, .purchases-panel, .purchase, .account-policy, .policy-document section { border: 1px solid CanvasText; }
  h1 span, h2 span, .refund-number { background: none; color: LinkText; -webkit-text-fill-color: currentColor; }
}
