:root {
  --paper: #f4f2eb;
  --paper-2: #ebe9e0;
  --ink: #17201d;
  --ink-2: #27312d;
  --muted: #6b716d;
  --line: rgba(23, 32, 29, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #0c7058;
  --accent-dark: #064a3b;
  --accent-soft: #c8e6d6;
  --amber: #e4a745;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(23, 32, 29, 0.12);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Noto Sans SC", sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Noto Sans SC", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

body::selection { background: var(--accent-soft); }

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

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

button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 235, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner, .site-footer, .page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.brand-mark::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 7px 0 0 -4px var(--accent-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.language-picker { position: relative; }

.language-toggle, .ghost-button {
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.language-toggle {
  min-width: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.language-toggle:hover, .ghost-button:hover {
  border-color: var(--accent);
  background: rgba(200, 230, 214, .35);
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 25;
  width: 174px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(23, 32, 29, .16);
}

.language-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
}

.language-option-leading { min-width: 0; display: inline-flex; align-items: center; gap: 9px; }
.language-flag { flex: 0 0 1.35em; width: 1.35em; font-size: 16px; line-height: 1; }
.language-check { width: 1em; color: var(--accent-dark); opacity: 0; }

.language-menu button:hover,
.language-menu button[aria-checked="true"] {
  color: var(--accent-dark);
  background: rgba(200, 230, 214, .42);
}

.language-menu button[aria-checked="true"] .language-check { opacity: 1; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--accent); box-shadow: 0 10px 24px rgba(12, 112, 88, .2); }
.button-primary:hover { background: var(--accent-dark); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-2); }
.button-quiet { color: var(--ink); border-color: var(--line); background: transparent; }
.button-quiet:hover { background: var(--white); }
.button-small { min-height: 38px; padding: 0 14px; font-size: 12px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
  min-height: 680px;
  padding: 78px 0 86px;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before, .section-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 690px;
  margin: 22px 0 22px;
  font-family: var(--display);
  font-size: clamp(52px, 7.2vw, 98px);
  font-weight: 760;
  letter-spacing: -.085em;
  line-height: .98;
}

.hero h1 .accent-line { color: var(--accent); }

.hero-copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 12px;
}

.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(228, 167, 69, .14); }

.visual-wrap { position: relative; }

.offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: 680px;
  padding: 88px 0 104px;
}

.offer-copy h1 {
  max-width: 610px;
  margin: 23px 0 24px;
  font-family: var(--display);
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 780;
  letter-spacing: -.06em;
  line-height: 1.06;
  text-wrap: balance;
}

.offer-lede {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.offer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.offer-note { display: flex; align-items: center; gap: 9px; margin-top: 23px; color: var(--muted); font-size: 12px; }

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(23, 32, 29, .18);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.offer-card:hover, .offer-card:focus-visible { transform: translateY(-4px); border-color: rgba(200,230,214,.36); box-shadow: 0 38px 90px rgba(23,32,29,.24); outline: none; }
.offer-card.is-discounted { border-color: rgba(200,230,214,.42); }

.offer-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -100px;
  border: 1px solid rgba(200, 230, 214, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(200, 230, 214, .05), 0 0 0 45px rgba(200, 230, 214, .04);
}

.offer-card-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.offer-card-label { color: var(--accent-soft); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.offer-stamp { padding: 5px 9px; border: 1px solid rgba(200, 230, 214, .3); border-radius: 999px; color: var(--accent-soft); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.offer-standard-price, .offer-price { display: flex; align-items: baseline; gap: 7px; }
.offer-standard-price { margin: 54px 0 21px; }
.offer-price { margin: 7px 0 0; }
.offer-currency { color: var(--accent-soft); font-size: 34px; font-weight: 700; }
.offer-standard-price strong, .offer-price strong { font-size: clamp(108px, 11vw, 148px); font-weight: 820; letter-spacing: -.11em; line-height: .78; }
.offer-price-unit { color: rgba(255,255,255,.55); font-size: 14px; font-weight: 800; letter-spacing: .1em; }
.offer-deal-price { margin: 38px 0 18px; }
.offer-price-was { display: block; width: max-content; color: rgba(255,255,255,.48); font-size: 15px; font-weight: 700; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.offer-deal-caption { display: inline-flex; margin-top: 13px; padding: 5px 9px; border-radius: 999px; color: var(--ink); background: var(--accent-soft); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.offer-price-copy { max-width: 280px; min-height: 42px; margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }
.offer-divider { height: 1px; margin: 27px 0 18px; background: rgba(255,255,255,.14); }
.offer-list { display: grid; gap: 10px; min-height: 86px; margin: 0 0 24px; padding: 0; list-style: none; color: rgba(255,255,255,.78); font-size: 13px; }
.offer-list li { display: flex; align-items: center; gap: 9px; }
.offer-list li::before { content: "↗"; color: var(--accent-soft); font-size: 12px; }
.offer-buy { width: 100%; min-height: 52px; margin-top: auto; padding-top: 9px; padding-bottom: 9px; color: var(--ink); background: var(--accent-soft); box-shadow: none; line-height: 1.3; }
.offer-buy:hover { background: var(--white); }
.offer-card-foot { margin: 12px 0 0; color: rgba(255,255,255,.45); font-size: 11px; line-height: 1.5; text-align: center; }

/* Search-style comparison landing page. It resembles a result page without pretending to be Google. */
.search-page { color: #202124; background: #fff; }
.search-page .site-header { background: rgba(255,255,255,.94); }
.search-main { min-height: calc(100vh - 160px); border-bottom: 1px solid #dadce0; }
.search-shell { width: min(1040px, calc(100% - 48px)); margin: 0 auto; padding: 25px 0 90px; }
.search-context { margin-bottom: 14px; color: #70757a; font-size: 12px; }
.search-bar { width: min(680px, 100%); min-height: 49px; display: flex; align-items: center; gap: 14px; padding: 0 17px; border: 1px solid #dfe1e5; border-radius: 25px; color: #3c4043; box-shadow: 0 1px 5px rgba(32,33,36,.12); font-size: 16px; }
.search-bar:hover { box-shadow: 0 1px 6px rgba(32,33,36,.18); }
.search-icon, .search-bar-action { color: #5f6368; font-size: 24px; line-height: 1; }
.search-bar-action { margin-left: auto; color: var(--accent); }
.search-tabs { width: min(680px, 100%); display: flex; gap: 27px; margin: 23px 0 17px; padding: 0 10px 10px; border-bottom: 1px solid #dadce0; color: #5f6368; font-size: 13px; }
.search-tabs span { position: relative; }
.search-tabs .active { color: var(--accent-dark); font-weight: 700; }
.search-tabs .active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -11px; height: 3px; border-radius: 2px; background: var(--accent); }
.serp-result { width: min(680px, 100%); padding: 18px 0 24px; }
.serp-source { display: flex; align-items: center; gap: 8px; color: #202124; font-size: 14px; }
.serp-favicon { width: 24px; height: 24px; display: inline-grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--accent-dark); font-size: 13px; font-weight: 800; }
.serp-source-muted { overflow: hidden; color: #5f6368; text-overflow: ellipsis; white-space: nowrap; }
.serp-menu { margin-left: auto; color: #5f6368; font-size: 23px; line-height: 1; }
.serp-result h1 { margin: 8px 0 5px; font-size: clamp(27px, 4vw, 35px); font-weight: 500; letter-spacing: -.035em; line-height: 1.2; }
.serp-result h1 a { color: #5b21b6; }
.serp-result h1 a:hover { text-decoration: underline; }
.serp-description { margin: 0; color: #4d5156; font-size: 16px; line-height: 1.65; }
.serp-sitelinks { margin-top: 23px; border-top: 1px solid #dadce0; }
.serp-sitelink { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid #dadce0; }
.serp-sitelink:hover strong { text-decoration: underline; }
.serp-sitelink strong { display: block; color: #202124; font-size: 18px; font-weight: 650; line-height: 1.3; }
.serp-sitelink small { display: block; margin-top: 3px; color: #70757a; font-size: 14px; line-height: 1.45; }
.serp-arrow { color: #5f6368; font-size: 34px; font-weight: 300; line-height: 1; }
.search-compare { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; margin-top: 62px; padding: 38px 0; border-top: 1px solid #dadce0; }
.search-compare h2 { max-width: 440px; margin: 12px 0 0; color: #202124; font-size: clamp(28px, 4vw, 45px); letter-spacing: -.065em; line-height: 1.08; }
.search-compare-copy { max-width: 510px; padding-top: 27px; }
.search-compare-copy p { margin: 0; color: #5f6368; font-size: 15px; line-height: 1.8; }
.search-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.search-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.search-fact { min-height: 142px; padding: 19px; border: 1px solid #dadce0; border-radius: 12px; background: #fff; }
.search-fact-number { display: block; margin-bottom: 17px; color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.search-fact strong { display: block; color: #202124; font-size: 18px; }
.search-fact p { margin: 6px 0 0; color: #70757a; font-size: 13px; line-height: 1.5; }

.offer-details { padding-top: 40px; }

.panorama-stage {
  position: relative;
  aspect-ratio: 1.04 / 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  color: #e6f3e9;
  background: #1b2825;
  box-shadow: var(--shadow);
}

.panorama-stage::before {
  content: "";
  position: absolute;
  inset: 11% 7% 13%;
  border: 1px solid rgba(200, 230, 214, .22);
  border-radius: 50%;
  transform: scaleX(1.62);
}

.panorama-stage::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 56%;
  height: 1px;
  background: rgba(200, 230, 214, .35);
  box-shadow: 0 -78px 0 rgba(200, 230, 214, .12), 0 70px 0 rgba(200, 230, 214, .12);
}

.panorama-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(200,230,214,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(200,230,214,.28) 1px, transparent 1px);
  background-size: 12.5% 12.5%;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.panorama-sun {
  position: absolute;
  top: 22%;
  left: 23%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(228, 167, 69, .7);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(228, 167, 69, .2);
}

.panorama-label, .panorama-mark, .panorama-annotation { position: absolute; z-index: 2; }
.panorama-label { top: 24px; left: 26px; color: #c8e6d6; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.panorama-mark { right: 26px; top: 23px; color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .11em; }
.panorama-annotation { left: 26px; bottom: 26px; max-width: 210px; color: rgba(255,255,255,.76); font-size: 12px; line-height: 1.5; }

.floating-note {
  position: absolute;
  right: -23px;
  bottom: 42px;
  width: 184px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 16px 35px rgba(23, 32, 29, .12);
}

.floating-note strong { display: block; font-size: 13px; }
.floating-note span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.section { padding: 104px 0; border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section h2, .page-hero h1 { margin: 15px 0 0; font-family: var(--display); font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -.065em; line-height: 1.04; }
.section-lede { max-width: 430px; margin: 0; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.feature-card { min-height: 260px; padding: 26px; background: var(--paper); }
.feature-index { color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.feature-card h3 { margin: 48px 0 10px; font-size: 20px; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.workflow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.workflow-step { position: relative; min-height: 210px; padding: 24px; border-radius: 16px; background: var(--paper-2); }
.workflow-step:nth-child(2) { transform: translateY(26px); background: var(--accent-soft); }
.workflow-step:nth-child(3) { background: var(--ink); color: var(--white); }
.workflow-number { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; opacity: .65; }
.workflow-step h3 { margin: 53px 0 8px; font-size: 21px; letter-spacing: -.04em; }
.workflow-step p { margin: 0; color: var(--muted); font-size: 13px; }
.workflow-step:nth-child(3) p { color: rgba(255,255,255,.65); }

.price-band { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; padding: 34px; border-radius: 22px; color: var(--white); background: var(--ink); }
.price-band h2 { margin: 13px 0 10px; color: var(--white); font-size: clamp(30px, 4vw, 48px); }
.price-band p { max-width: 550px; margin: 0; color: rgba(255,255,255,.65); }
.price-panel { padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.07); }
.price-panel-label { color: rgba(255,255,255,.6); font-size: 12px; }
.price-panel strong { display: block; margin: 8px 0 15px; color: var(--accent-soft); font-size: 23px; }
.price-panel .button { width: 100%; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.trust-card { padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,253,248,.4); }
.trust-card h3 { margin: 0 0 10px; font-size: 19px; }
.trust-card p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding: 42px 0 56px; border-top: 1px solid var(--line); }
.footer-brand p { max-width: 260px; margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.footer-column { display: grid; align-content: start; gap: 8px; font-size: 13px; }
.footer-column strong { margin-bottom: 5px; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.footer-column a { color: var(--muted); }
.footer-column a:hover { color: var(--ink); }
.footer-bottom { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.page-hero { padding: 94px 0 66px; border-bottom: 1px solid var(--line); }
.page-hero-inner { display: grid; grid-template-columns: 1fr .7fr; gap: 40px; align-items: end; }
.page-hero p { max-width: 460px; margin: 0; color: var(--muted); }
.page-content { padding: 66px 0 110px; }

.sandbox-notice { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 22px 0 0; padding: 14px 18px; border: 1px solid rgba(12,112,88,.28); border-radius: 12px; color: var(--accent-dark); background: rgba(12,112,88,.08); font-size: 13px; }
.sandbox-notice strong { font-weight: 800; }
.sandbox-simulate-button { margin-top: 10px; }

.status-card { padding: 18px 20px; border-left: 3px solid var(--amber); background: rgba(228,167,69,.11); color: var(--ink-2); font-size: 14px; }
.status-card strong { display: block; margin-bottom: 4px; }

.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.download-card { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.download-card h2 { margin: 0 0 7px; font-size: 22px; letter-spacing: -.05em; }
.download-card p { margin: 0; color: var(--muted); font-size: 14px; }
.download-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.pill { display: inline-flex; padding: 5px 9px; border-radius: 999px; color: var(--accent-dark); background: var(--accent-soft); font-size: 11px; font-weight: 750; }
.download-release-link { display: inline-block; margin-top: 16px; color: var(--accent-dark); font-size: 13px; font-weight: 750; }
.download-release-link:hover { text-decoration: underline; }
.download-card .button:disabled { color: var(--muted); border-color: var(--line); background: var(--paper-2); cursor: not-allowed; opacity: .9; transform: none; }
.download-note { margin-top: 18px; color: var(--muted); font-size: 13px; }

.release-card { width: min(100%, 960px); margin: 0 auto; padding: 29px 31px 31px; overflow: hidden; border-radius: 20px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.release-card-header { padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.15); }
.release-title-block { display: grid; gap: 8px; min-width: 0; }
.release-title-block .section-kicker { color: var(--accent-soft); }
.release-title-block h2 { margin: 0; color: var(--white); font-size: clamp(32px, 5vw, 53px); letter-spacing: -.07em; line-height: 1; }
.release-title-block time { color: rgba(255,255,255,.54); font-size: 13px; }
.release-notes { padding-top: 5px; }
.release-note-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: release-note; }
.release-note-list li { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.72; }
.release-note-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.release-note-list li::before { counter-increment: release-note; content: counter(release-note, decimal-leading-zero); display: grid; place-items: center; align-self: start; width: 30px; height: 30px; border: 1px solid rgba(200,230,214,.32); border-radius: 50%; color: var(--accent-soft); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 800; }

.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr); gap: 20px; align-items: start; }
.checkout-card, .checkout-summary { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.checkout-card h2, .checkout-summary h2 { margin: 15px 0 10px; font-size: 32px; letter-spacing: -.06em; line-height: 1.08; }
.checkout-intro { max-width: 560px; margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.form-field { display: grid; gap: 8px; margin-top: 20px; color: var(--ink-2); font-size: 13px; font-weight: 750; }
.form-field input { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--paper); font: inherit; outline: none; }
.form-field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(12,112,88,.12); }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.form-check input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--accent); }
.checkout-card .button { width: 100%; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.checkout-summary { color: var(--white); background: var(--ink); }
.checkout-summary .section-kicker { color: var(--accent-soft); }
.checkout-summary h2 { color: var(--white); }
.checkout-summary .checkout-intro { color: rgba(255,255,255,.66); }
.summary-price { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 3px 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.summary-price span, .summary-price del, .summary-price small { color: rgba(255,255,255,.58); font-size: 12px; }
.summary-price strong { grid-row: span 2; color: var(--accent-soft); font-size: 52px; letter-spacing: -.08em; line-height: 1; }
.summary-price small { grid-column: 1 / -1; }
.summary-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); font-size: 13px; }
.summary-list li { position: relative; padding-left: 17px; }
.summary-list li::before { content: "·"; position: absolute; left: 2px; color: var(--accent-soft); font-size: 23px; line-height: 13px; }
.summary-timer { padding: 12px 14px; border-radius: 10px; color: var(--accent-dark); background: var(--accent-soft); font-size: 12px; }
.success-panel { display: grid; grid-template-columns: 76px 1fr; gap: 24px; align-items: start; padding: 34px; border-radius: 20px; color: var(--white); background: var(--ink); }
.success-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: var(--accent-dark); background: var(--accent-soft); font-size: 22px; font-weight: 800; letter-spacing: .1em; }
.success-panel .section-kicker { color: var(--accent-soft); }
.success-panel h2 { margin: 12px 0 10px; color: var(--white); font-size: 34px; letter-spacing: -.06em; }
.success-panel p { max-width: 620px; margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }
.success-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.cancel-panel .success-icon { color: var(--white); background: rgba(255,255,255,.16); }
.delivery-grid { margin-top: 20px; }

.doc-layout { display: grid; grid-template-columns: 230px 1fr; gap: 54px; }
.doc-nav { display: grid; align-content: start; gap: 7px; height: max-content; position: sticky; top: 110px; }
.doc-nav a { padding: 9px 12px; border-radius: 8px; color: var(--muted); font-size: 13px; }
.doc-nav a:hover, .doc-nav a.active { color: var(--ink); background: var(--paper-2); }
.doc-article { max-width: 730px; }
.doc-article h2 { margin: 0 0 18px; font-size: 32px; letter-spacing: -.06em; }
.doc-article h3 { margin: 34px 0 9px; font-size: 19px; }
.doc-article p, .doc-article li { color: var(--muted); font-size: 15px; }
.doc-article ul { padding-left: 21px; }
.doc-article code { padding: 2px 5px; border-radius: 5px; background: var(--paper-2); font-size: .9em; }

.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-weight: 700; }
.faq-question::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 400; }
.faq-item.open .faq-question::after { content: "–"; }
.faq-answer { display: none; max-width: 680px; padding: 0 40px 20px 0; color: var(--muted); font-size: 14px; }
.faq-item.open .faq-answer { display: block; }

.contact-panel { display: grid; grid-template-columns: 1fr .8fr; gap: 20px; padding: 34px; border-radius: 20px; color: var(--white); background: var(--ink); }
.contact-panel h2 { margin: 0 0 10px; font-size: 35px; letter-spacing: -.06em; }
.contact-panel p { max-width: 480px; margin: 0; color: rgba(255,255,255,.65); }
.contact-aside { display: grid; align-content: center; gap: 12px; padding: 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.06); }
.contact-aside span { color: rgba(255,255,255,.55); font-size: 12px; }
.contact-aside strong { color: var(--accent-soft); font-size: 18px; }

.legal-copy { max-width: 760px; }
.legal-copy h2 { margin: 34px 0 10px; font-size: 24px; letter-spacing: -.04em; }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: 14px; }

.coupon-open { overflow: hidden; }
.coupon-modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 22px; background: rgba(13, 21, 18, .62); backdrop-filter: blur(12px); }
.coupon-modal.open { display: grid; }
.coupon-dialog { position: relative; width: min(520px, 100%); max-height: min(760px, calc(100vh - 36px)); overflow: auto; border: 1px solid rgba(255,255,255,.2); border-radius: 26px; background: var(--paper); box-shadow: 0 34px 110px rgba(0,0,0,.32); }
.coupon-top { padding: 33px 34px 26px; background: var(--ink); color: var(--white); }
.coupon-top .eyebrow { color: var(--accent-soft); }
.coupon-top h2 { margin: 20px 0 10px; font-size: clamp(30px, 6vw, 40px); letter-spacing: -.065em; line-height: 1.02; }
.coupon-top p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.coupon-close { position: absolute; right: 18px; top: 16px; z-index: 2; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.04); cursor: pointer; font-size: 21px; line-height: 1; }
.coupon-close:hover { background: rgba(255,255,255,.12); }
.coupon-body { padding: 27px 34px 31px; }
.coupon-reward-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 12px; font-weight: 750; }
.coupon-reward-head strong { padding: 4px 8px; border-radius: 999px; color: var(--accent-dark); background: var(--accent-soft); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.coupon-price { display: flex; align-items: baseline; gap: 13px; margin: 14px 0 7px; }
.old-price { color: var(--muted); font-size: 19px; font-weight: 700; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.coupon-price-arrow { color: var(--muted); font-size: 18px; }
.new-price { color: var(--accent-dark); font-size: 54px; font-weight: 820; letter-spacing: -.09em; line-height: .95; }
.coupon-pro-copy { margin: 0 0 20px; color: var(--ink); font-size: 16px; font-weight: 750; }
.coupon-timer { display: none; margin: 18px 0; padding: 13px 15px; border: 1px solid rgba(12,112,88,.12); border-radius: 12px; color: var(--accent-dark); background: rgba(200,230,214,.65); font-size: 13px; font-weight: 750; }
.coupon-timer.visible { display: block; }
.coupon-disclaimer { margin: 18px 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.coupon-body .button { width: 100%; }
.coupon-note { margin-top: 12px; color: var(--muted); font-size: 11px; text-align: center; }
.coupon-wheel-experience { display: grid; justify-items: center; gap: 16px; padding: 3px 0 5px; text-align: center; }
.coupon-wheel-shell { position: relative; width: min(270px, 72vw); aspect-ratio: 1; padding: 9px; border-radius: 50%; background: var(--ink); box-shadow: 0 20px 50px rgba(23,32,29,.18); }
.coupon-wheel { width: 100%; height: 100%; display: grid; place-items: center; border: 7px solid var(--white); border-radius: 50%; background: conic-gradient(from -22.5deg, #0c7058 0 12.5%, #e4a745 12.5% 25%, #24483f 25% 37.5%, #c8e6d6 37.5% 50%, #0c7058 50% 62.5%, #e4a745 62.5% 75%, #24483f 75% 87.5%, #c8e6d6 87.5% 100%); box-shadow: inset 0 0 0 2px rgba(23,32,29,.12); }
.coupon-wheel::before { content: "$49  ·  PRO  ·  $49  ·  PRO"; position: absolute; inset: 28px; display: grid; place-items: center; border-radius: 50%; color: rgba(255,255,255,.92); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-align: center; }
.coupon-wheel span { position: relative; z-index: 1; display: grid; place-items: center; width: 82px; height: 82px; border: 8px solid var(--paper); border-radius: 50%; color: var(--white); background: var(--ink); font-weight: 820; letter-spacing: -.04em; }
.coupon-wheel-pointer { position: absolute; z-index: 2; left: 50%; top: -8px; width: 0; height: 0; border-left: 13px solid transparent; border-right: 13px solid transparent; border-top: 24px solid var(--ink); transform: translateX(-50%); filter: drop-shadow(0 4px 3px rgba(0,0,0,.16)); }
.coupon-dialog.is-spinning .coupon-wheel { animation: coupon-spin 1.6s cubic-bezier(.18,.75,.2,1) both; }
.coupon-wheel-note { margin: -5px 0 0; color: var(--muted); font-size: 11px; }
@keyframes coupon-spin { from { transform: rotate(0); } to { transform: rotate(1575deg); } }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 120; max-width: 320px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; color: var(--white); background: var(--ink); box-shadow: 0 14px 34px rgba(23,32,29,.2); font-size: 13px; transform: translateY(18px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.visible { opacity: 1; transform: translateY(0); }

.store-home .store-hero { min-height: 720px; padding-top: 96px; padding-bottom: 96px; }
.store-home .offer-copy h1 { max-width: 680px; font-size: clamp(52px, 6.6vw, 88px); line-height: .99; }
.store-home .offer-lede { max-width: 560px; font-size: 20px; }
.store-home .offer-card { min-height: 590px; }

.store-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child { border-right: 0; }
.proof-item span { color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.proof-item strong { font-size: 14px; letter-spacing: -.02em; }

.store-access { padding-top: 80px; }
.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .45fr);
  gap: 40px;
  align-items: end;
  padding: 38px;
  border-radius: 22px;
  color: var(--white);
  background: var(--accent-dark);
}

.access-panel .section-kicker { color: var(--accent-soft); }
.access-panel h2 { margin: 14px 0 12px; color: var(--white); font-family: var(--display); font-size: clamp(30px, 4.2vw, 56px); letter-spacing: -.065em; line-height: 1.04; }
.access-panel p { max-width: 680px; margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.access-actions { display: grid; justify-items: stretch; gap: 14px; }
.access-actions .button { width: 100%; color: var(--ink); background: var(--accent-soft); }
.access-actions .button:hover { background: var(--white); }
.text-link { color: var(--accent-soft); font-size: 13px; font-weight: 750; text-align: center; }
.text-link:hover { color: var(--white); }

.reveal { animation: rise .7s both; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; padding: 15px 0; }
  .nav-links { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 62px 0 76px; }
  .hero h1 { max-width: 680px; }
  .visual-wrap { max-width: 680px; }
  .offer-hero { grid-template-columns: 1fr; min-height: auto; padding: 62px 0 76px; }
  .offer-card { max-width: 680px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .price-band { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .access-panel { grid-template-columns: 1fr; }
  .search-compare { grid-template-columns: 1fr; gap: 10px; }
  .search-compare-copy { padding-top: 0; }
}

@media (max-width: 680px) {
  .header-inner, .site-footer, .page-shell { width: min(100% - 30px, 1180px); }
  .header-actions .button { display: none; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(46px, 15vw, 78px); }
  .hero-copy { font-size: 16px; }
  .offer-hero { padding-top: 42px; }
  .store-home .store-hero { padding-top: 42px; }
  .offer-copy h1 { font-size: clamp(42px, 13vw, 66px); line-height: 1.04; }
  .offer-lede { font-size: 16px; }
  .offer-card { padding: 24px; }
  .offer-standard-price strong, .offer-price strong { font-size: clamp(86px, 24vw, 120px); }
  .offer-currency { font-size: 28px; }
  .search-shell { width: min(100% - 30px, 1040px); padding-top: 18px; }
  .search-context { font-size: 11px; }
  .serp-description { font-size: 15px; }
  .serp-sitelink strong { font-size: 16px; }
  .serp-sitelink small { font-size: 13px; }
  .search-facts { grid-template-columns: 1fr; }
  .floating-note { right: 12px; bottom: 20px; width: 160px; }
  .feature-grid, .workflow, .trust-grid, .site-footer, .contact-panel { grid-template-columns: 1fr; }
  .workflow-step:nth-child(2) { transform: none; }
  .feature-card { min-height: 0; }
  .site-footer { gap: 27px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .download-grid { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; }
  .store-proof { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .access-panel { padding: 26px; }
  .release-card { padding: 24px; }
  .release-note-list li { grid-template-columns: 30px minmax(0, 1fr); gap: 11px; font-size: 13px; }
  .release-note-list li::before { width: 27px; height: 27px; }
  .checkout-card, .checkout-summary, .success-panel { padding: 24px; }
  .success-panel { grid-template-columns: 1fr; }
  .success-panel h2 { font-size: 30px; }
  .doc-layout { grid-template-columns: 1fr; gap: 25px; }
  .doc-nav { position: static; display: flex; overflow-x: auto; }
  .doc-nav a { white-space: nowrap; }
  .coupon-top, .coupon-body { padding-left: 22px; padding-right: 22px; }
  .coupon-top h2 { font-size: 30px; }
  .coupon-wheel-shell { width: min(240px, 70vw); }
}

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