/* ==========================================================================
   Landing — page layer
   --------------------------------------------------------------------------
   Rebuilt on the design system per LANDING_IMPLEMENTATION.md. Replaces
   css/sayohatchi-v3.css for index.html / index-en.html.

   Lime (#B7EA3C) is reserved. It appears ONLY as: the hero and final CTA
   buttons, the featured-plan CTA, live/now dots, the sparse hero lattice dots,
   and the plane accents. Never as text on white.

   Load order: reset.css -> sayohatchi-tokens.css -> this.
   ========================================================================== */

body.sy-page {
  /* 64px bar + 1px border-bottom. Anything sizing itself against the sticky
     header must use this, or it lands a pixel out. */
  --sy-header-total: 65px;
  margin: 0;
  padding: 0;
  background: var(--neutral-000);
  color: var(--green-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.sy-page *,
body.sy-page *::before,
body.sy-page *::after { box-sizing: border-box; }
/* Controls are excluded: this reset is (0,2,2) and outranks any (0,1,0)
   component rule that sets an anchor's colour. It has now caught two of them —
   first the hero ghost CTA (ink-green text on a dark panel), then the pricing
   cards' outer CTAs (dark green on a dark green card, effectively invisible).
   Any NEW anchor-as-control must be named `sy-btn*` or `*-cta` so it lands in
   the exclusion below; otherwise it inherits body ink and silently disappears
   on a dark surface. */
body.sy-page a:not([class*="sy-btn"]):not([class*="-cta"]) { color: inherit; }
body.sy-page a { text-decoration: none; }
body.sy-page img { max-width: 100%; display: block; }
body.sy-page ::selection { background: var(--green-700); color: #fff; }
body.sy-page :focus-visible { outline: 2px solid var(--green-700); outline-offset: 3px; }

/* The four boundary lines from styles.css fight this layout. */
body.sy-page #page-walls-container { display: none !important; }

.sy-shell {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 44px);
}

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
.sy-eyebrow {
  margin: 0;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-700);
}
.sy-eyebrow--faint { color: var(--neutral-350); }

.sy-h2, .sy-section h2 {
  margin: 12px 0 0;
  font: 800 clamp(26px, 2.8vw, 34px)/1.12 var(--font-sans);
  letter-spacing: -0.02em;
  color: var(--green-900);
  max-width: 720px;
}
.sy-lede {
  margin: 12px 0 0;
  font: 400 14.5px/1.6 var(--font-sans);
  color: var(--neutral-700);
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   Buttons — one scale, lime strictly reserved
   -------------------------------------------------------------------------- */
.sy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-button-lg);
  font: 700 14px/1 var(--font-sans);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-control);
}
.sy-btn--sm { height: 36px; padding: 0 14px; border-radius: var(--radius-button); font-size: 13px; font-weight: 600; }
.sy-btn--block { width: 100%; }

.sy-btn--primary { background: var(--lime-500); color: var(--green-900); }
.sy-btn--primary:hover { background: var(--hover-accent); }

/* On dark panels the quiet control is a hairline ghost. */
.sy-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.sy-btn--ghost:hover { background: rgba(255, 255, 255, 0.07); }

/* Header CTA is the product green, not lime — lime belongs to hero + final. */
.sy-header .sy-btn--primary { background: var(--green-700); color: #fff; }
.sy-header .sy-btn--primary:hover { background: var(--hover-primary); }

/* --------------------------------------------------------------------------
   1. Header
   -------------------------------------------------------------------------- */
.sy-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-default);
}
.sy-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  min-height: 64px;
  padding: 0 clamp(16px, 3vw, 44px);
}
.sy-brand { display: inline-flex; align-items: center; gap: 9px; flex: none; }
.sy-logo { width: 26px; height: 26px; border-radius: var(--radius-control); }
.sy-logo--sm { width: 22px; height: 22px; }
.sy-brand-name { font: 800 16.5px/1 var(--font-sans); letter-spacing: -0.01em; }

.landing-mode-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  background: var(--neutral-075);
  border-radius: var(--radius-control);
  flex: none;
}
.landing-mode-button {
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  height: 26px;
  border-radius: var(--radius-chip);
  font: 600 12.5px/1 var(--font-sans);
  color: var(--neutral-700);
  transition: var(--transition-control);
}
.landing-mode-button.is-active { background: var(--neutral-000); box-shadow: var(--shadow-card); color: var(--green-900); }
.landing-mode-button.is-disabled { color: var(--neutral-350); cursor: not-allowed; }

.sy-nav { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 22px); }
.sy-nav a { font: 600 13px/1 var(--font-sans); color: var(--neutral-700); transition: var(--transition-control); }
.sy-nav a:hover { color: var(--green-900); }
.sy-nav-mobile-only { display: none; }

.sy-header-spacer { flex: 1 1 auto; min-width: 0; }

.sy-lang { display: inline-flex; align-items: center; gap: 7px; font: 500 11px/1 var(--font-mono); letter-spacing: 0.13em; }
.sy-lang .is-current { color: var(--green-900); }
.sy-lang a { color: var(--neutral-350); }
.sy-lang a:hover { color: var(--green-900); }

.sy-header-actions { display: inline-flex; align-items: center; gap: 10px; flex: none; }
/* The auth nav injects a legacy button; hold it to the header scale. */
.sy-header-actions .btn,
.sy-header-actions #loginBtn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: var(--radius-button) !important;
  border: 1px solid var(--border-default);
  background: var(--neutral-000);
  color: var(--neutral-700) !important;
  font: 600 13px/1 var(--font-sans) !important;
  min-height: 0 !important;
}
.sy-header-actions .btn:hover { background: var(--surface-canvas); }

.sy-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-button);
  background: var(--neutral-000);
  color: var(--neutral-700);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   2. Hero
   -------------------------------------------------------------------------- */
.sy-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  min-height: calc(100svh - var(--sy-header-total));
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vh, 96px) 0;
}
/* The loop is wallpaper: cover-cropped, inert to the pointer, and never a
   source of scroll. `object-fit` is what lets one 16:9 file serve a portrait
   phone without letterboxing. */
.sy-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  pointer-events: none;
}
/* Scrim. The footage is dark, but the lime crest sweeps left-to-right straight
   through the headline, so unscrimmed the white copy loses contrast for part of
   every loop. A flat wash of the hero's own green — not a gradient, which the
   system bans — holds contrast steady across all 289 frames. */
.sy-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15, 46, 38, 0.55); /* --green-900 at 55% */
  pointer-events: none;
}
.sy-hero-inner { position: relative; z-index: 2; }

/* Centred single column. `ch` on the h1 rather than px so the measure holds
   when the English headline swaps in at a different word length. */
.sy-hero-copy {
  min-width: 0;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.sy-hero h1 {
  margin: 0;
  /* padding-bottom: at 1.04 the descenders of "tasdiqlangan." clip against
     the next block. */
  padding-bottom: 0.08em;
  font: 800 clamp(40px, 5vw, 66px)/1.04 var(--font-sans);
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 17ch;
  margin-inline: auto;
  /* Evens the line lengths so a centred headline doesn't leave a two-word
     orphan; browsers without it just wrap normally. */
  text-wrap: balance;
}
/* The closing phrase in lime — the one word the headline is actually about. */
.sy-hl { color: var(--lime-500); }
.sy-hero-sub {
  margin: 22px auto 0;
  font: 400 16px/1.6 var(--font-sans);
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
}
.sy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   3. Manifest
   -------------------------------------------------------------------------- */
.sy-section { padding: 92px 0; }
.sy-manifest { background: var(--neutral-000); padding: 92px 0 84px; }
.sy-manifest h2 {
  margin: 14px 0 0;
  font: 800 clamp(28px, 3.2vw, 40px)/1.1 var(--font-sans);
  letter-spacing: -0.02em;
  max-width: 720px;
}
.sy-manifest p { margin: 18px 0 0; font: 400 15.5px/1.65 var(--font-sans); color: var(--neutral-700); max-width: 640px; }

/* --------------------------------------------------------------------------
   4. Sticky stack (01–04)
   The dark stage shows only at the card edges during a transition.
   -------------------------------------------------------------------------- */
.sy-stack { position: relative; background: var(--green-900); }
.sy-stack-card {
  position: sticky;
  top: 64px; /* js/landing-motion.js overrides per card: bottom-edge pinning */
  min-height: calc(100svh - var(--sy-header-total));
  padding: clamp(24px, 4.5vh, 56px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--neutral-000);
  border-top: 1px solid var(--border-default);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -14px 34px rgba(15, 46, 38, 0.10);
  transform-origin: center top;
  will-change: transform;
}
.sy-stack-card:nth-child(even) { background: var(--surface-canvas); }

.sy-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
}
.sy-head-split .sy-lede { margin: 0; font-size: 14px; }
.sy-section-head { max-width: 720px; }

/* 01 Yo'nalishlar ---------------------------------------------------------- */
.sy-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.sy-dest {
  display: flex;
  flex-direction: column;
  background: var(--neutral-000);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  transition: var(--transition-control);
}
a.sy-dest:hover { border-color: var(--neutral-250); }
.sy-dest--muted { opacity: 0.82; }
.sy-dest--muted .sy-dest-media img { filter: saturate(0.75); }

.sy-dest-media { position: relative; display: block; height: clamp(96px, 14vh, 148px); overflow: hidden; }
.sy-dest-media img { width: 100%; height: 100%; object-fit: cover; }
.sy-dest-flag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: var(--radius-chip);
  background: rgba(255, 255, 255, 0.94);
  font: 700 11.5px/1 var(--font-sans);
  color: var(--neutral-700);
}
.sy-dest-flag img { width: 15px; height: 11px; border-radius: 2px; }
.sy-dest-flag--open { background: var(--green-100); color: var(--green-700); }
.sy-dest-flag--muted { background: var(--neutral-075); color: var(--neutral-700); }

.sy-dest-body { display: block; padding: 16px; }
.sy-dest-kicker {
  display: block;
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--neutral-350);
}
.sy-dest-name { display: block; margin-top: 8px; font: 800 17px/1.2 var(--font-sans); color: var(--green-900); }
.sy-dest-note { display: block; margin-top: 8px; font: 400 12.5px/1.5 var(--font-sans); color: var(--neutral-700); }
.sy-dest-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--divider);
}
.sy-dest-meta > span {
  display: block;
  font: 500 9.5px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-350);
}
.sy-dest-meta strong { display: block; margin-top: 5px; font: 700 12px/1.2 var(--font-sans); color: var(--green-900); letter-spacing: 0; text-transform: none; }

/* 02 Imkoniyatlar — a 1px-gap grid, hairlines shared between cells --------- */
/* Exactly three columns, so the six cells read 3×2 and fill the block.
   `auto-fit` packed four across on a wide screen and left a dead grey cell. */
.sy-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
}
.sy-cell { background: var(--neutral-000); padding: 24px; }
.sy-cell-num {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: var(--radius-chip);
  background: var(--neutral-075);
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--neutral-700);
}
.sy-cell h3 { margin: 14px 0 0; font: 700 16px/1.25 var(--font-sans); color: var(--green-900); }
.sy-cell p { margin: 9px 0 0; font: 400 13.5px/1.55 var(--font-sans); color: var(--neutral-700); }

/* 03 Platforma — the board ------------------------------------------------- */
.sy-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.sy-panel { background: var(--neutral-000); border: 1px solid var(--border-default); border-radius: var(--radius-panel); overflow: hidden; }
.sy-panel-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-default);
}
.sy-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-500); flex: none; }
.sy-panel-title { font: 700 13px/1 var(--font-sans); color: var(--green-900); }
.sy-panel-live { margin-left: auto; font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.09em; color: var(--neutral-350); }

.sy-board { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 14px; }
.sy-board-col { background: var(--surface-canvas); border-radius: 12px; padding: 10px; }
.sy-board-col-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-350);
}
.sy-board-stack { display: grid; gap: 8px; margin-top: 10px; }
.sy-ticket { background: var(--neutral-000); border: 1px solid var(--border-default); border-radius: 10px; padding: 10px 12px; }
.sy-ticket--active { background: var(--surface-selected); border: 1.5px solid var(--green-700); }
.sy-ticket-name { font: 600 12.5px/1.3 var(--font-sans); color: var(--green-900); }
.sy-ticket-meta { margin-top: 5px; font: 400 10px/1.3 var(--font-mono); color: var(--neutral-350); }

.sy-side { display: grid; gap: 16px; align-content: start; }
.sy-side-card { background: var(--neutral-000); border: 1px solid var(--border-default); border-radius: var(--radius-card-lg); padding: 18px; }
.sy-side-label {
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--neutral-350);
}
.sy-trail { display: grid; gap: 14px; margin-top: 14px; }
.sy-trail-row { display: flex; gap: 10px; }
.sy-trail-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neutral-250); margin-top: 5px; flex: none; }
.sy-trail-row--now .sy-trail-dot { background: var(--lime-500); }
.sy-trail-title { font: 600 12.5px/1.35 var(--font-sans); color: var(--green-900); }
.sy-trail-time { margin-top: 4px; font: 400 10px/1 var(--font-mono); color: var(--neutral-350); }

.sy-checklist { margin-top: 12px; }
.sy-checklist > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--divider);
  font: 600 12.5px/1.3 var(--font-sans);
  color: var(--green-900);
}
.sy-checklist > div:first-child { border-top: 0; }
.sy-ok, .sy-pending, .sy-waiting {
  padding: 4px 9px;
  border-radius: var(--radius-chip);
  font: 700 11.5px/1 var(--font-sans);
}
.sy-ok { background: var(--green-100); color: var(--green-700); }
.sy-pending { background: var(--amber-100); color: var(--amber-700); }
.sy-waiting { background: var(--neutral-075); color: var(--neutral-700); }

/* 04 Jarayon --------------------------------------------------------------- */
.sy-steps {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px 32px;
}
.sy-step { border-top: 1px solid var(--border-default); padding-top: 16px; }
.sy-step-num { font: 500 11px/1 var(--font-mono); letter-spacing: 0.13em; color: var(--green-700); }
.sy-step-title { margin-top: 10px; font: 700 15.5px/1.25 var(--font-sans); color: var(--green-900); }
.sy-step p { margin: 8px 0 0; font: 400 13px/1.55 var(--font-sans); color: var(--neutral-700); }

/* --------------------------------------------------------------------------
   5. Tariflar
   -------------------------------------------------------------------------- */
.sy-section--bone { background: var(--surface-canvas); padding: 88px 0; }
.sy-section--tight { padding: 88px 0; }

/* Dark band. 05 and 06 share the same ground so the page reads as one
   continuous dark stretch after the stacked cards — no light flash between. */
.sy-pricing { background: var(--green-900); padding: 110px 0; }

.sy-pricing-head { text-align: center; margin-bottom: 46px; }
.sy-eyebrow--on-dark { color: rgba(255, 255, 255, 0.5); }
.sy-pricing-title {
  margin: 14px auto 0;
  font: 800 clamp(30px, 3.4vw, 44px)/1.08 var(--font-sans);
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 680px;
  text-wrap: balance;
}
.sy-pricing-sub {
  margin: 18px auto 0;
  font: 400 15px/1.6 var(--font-sans);
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
}

/* Billing toggle */
.sy-billing {
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}
.sy-billing-opt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  /* appearance/border stripped: this is a native <button> so it is focusable
     and reachable by keyboard, but it must not inherit the UA chrome. */
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font: 700 13px/1 var(--font-sans);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.sy-billing-opt.is-active { background: var(--lime-500); color: var(--green-900); }
.sy-billing-badge {
  padding: 3px 7px;
  border-radius: 999px;
  font: 700 9.5px/1 var(--font-mono);
  letter-spacing: 0.08em;
  background: rgba(183, 234, 60, 0.16);
  color: var(--lime-500);
}
.sy-billing-opt.is-active .sy-billing-badge { background: rgba(15, 46, 38, 0.16); color: var(--green-900); }

/* Cards */
.sy-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}
.sy-plan {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 28px;
}
.sy-plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sy-plan-tier {
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.sy-plan h3 { margin: 12px 0 0; font: 800 19px/1.2 var(--font-sans); color: #fff; }
.sy-plan-desc { margin: 9px 0 0; font: 400 13px/1.55 var(--font-sans); color: rgba(255, 255, 255, 0.6); }

.sy-plan-list { list-style: none; margin: 18px 0 0; padding: 0; }
.sy-plan-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font: 400 13px/1.5 var(--font-sans);
  color: rgba(255, 255, 255, 0.72);
}
.sy-plan-list li::before { content: '✓'; color: var(--lime-500); font: 700 12px/1.5 var(--font-sans); }
.sy-plan-spacer { flex: 1 1 auto; min-height: 18px; }

.sy-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  font: 600 13.5px/1 var(--font-sans);
  color: #fff;
  transition: border-color 0.18s, background 0.18s;
}
.sy-plan-cta:hover { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.06); }
.sy-plan-cta--solid {
  height: 44px;
  border: 0;
  background: var(--lime-500);
  color: var(--green-900);
  font-weight: 700;
}
.sy-plan-cta--solid:hover { background: #C6F252; }

/* Featured */
.sy-plan--featured {
  background: rgba(183, 234, 60, 0.07);
  border: 1px solid var(--lime-500);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}
.sy-plan--featured .sy-plan-list li { border-top-color: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.8); }
.sy-plan--featured .sy-price-value { font-size: 34px; }
.sy-plan-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lime-500);
  color: var(--green-900);
  font: 700 9.5px/1 var(--font-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Price + slot-machine reels */
.sy-price { display: flex; align-items: baseline; gap: 7px; margin-top: 18px; }
.sy-price-value {
  display: inline-flex;
  font: 800 32px/1.1 var(--font-sans);
  letter-spacing: -0.02em;
  color: #fff;
  /* tabular figures are what make `1ch` a correct reel width for every digit */
  font-variant-numeric: tabular-nums;
}
.sy-price-suffix { font: 400 12px/1 var(--font-mono); color: rgba(255, 255, 255, 0.45); }
.sy-price-char { display: block; height: 1.1em; line-height: 1.1em; }
/* The window a digit column is read through: exactly one digit tall. */
.sy-reel { display: block; width: 1ch; height: 1.1em; overflow: hidden; }
.sy-reel-col {
  display: flex;
  flex-direction: column;
  /* fast start, soft landing — the reel settling rather than easing */
  transition: transform 0.85s cubic-bezier(0.18, 0.85, 0.25, 1);
}
.sy-reel-digit { height: 1.1em; line-height: 1.1em; text-align: center; }
@media (prefers-reduced-motion: reduce) {
  .sy-reel-col { transition: none; }
}

.sy-pricing-fine {
  margin: 30px auto 0;
  font: 400 12.5px/1.6 var(--font-sans);
  color: rgba(255, 255, 255, 0.45);
  max-width: 720px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Savollar — one open at a time
   -------------------------------------------------------------------------- */
.faq-container { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 44px); }
.faq-list { background: var(--neutral-000); border: 1px solid var(--border-default); border-radius: var(--radius-card-lg); overflow: hidden; }
.faq-item { border-top: 1px solid var(--divider); }
.faq-item:first-child { border-top: 0; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  font: 600 14.5px/1.4 var(--font-sans);
  color: var(--green-900);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-control);
}
.faq-question:hover { background: var(--surface-canvas); }
/* KNOWN ISSUE: the plus→cross rotation does not render. The rule below and the
   pre-existing `.faq-item.active .faq-icon` in styles.css both compute to the
   identity matrix on this inline <svg>, including with an inline style, so it
   is not a cascade problem and it predates this rebuild. Open/close itself
   works (answer toggles, one-at-a-time, aria-expanded tracks). The likely fix
   is wrapping the glyph in a <span> and rotating that instead of the <svg>,
   which needs a markup change in both index files. */
.faq-icon {
  flex: none;
  display: block;
  color: var(--neutral-500);
  transform-box: border-box;
  transform-origin: 50% 50%;
  transition: transform 180ms cubic-bezier(.4, 0, .2, 1);
}
/* Scoped under body.sy-page: a legacy sheet also targets this icon, and the
   plain (0,2,0) selector lost to it. */
body.sy-page .faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 46px 18px 22px; }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin: 0; font: 400 13.5px/1.65 var(--font-sans); color: var(--neutral-700); }

/* --------------------------------------------------------------------------
   8. Final CTA
   -------------------------------------------------------------------------- */
.sy-final {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  padding: 110px 0;
  text-align: center;
}
.sy-cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.sy-final .sy-shell { position: relative; z-index: 1; }
.sy-final h2 {
  margin: 0 auto;
  font: 800 clamp(30px, 3.4vw, 44px)/1.1 var(--font-sans);
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 620px;
}
.sy-final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.sy-footer { background: var(--neutral-000); border-top: 1px solid var(--border-default); padding-top: 56px; overflow: hidden; }
.sy-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 44px);
}
.sy-footer-brand { display: flex; align-items: center; gap: 9px; font: 800 16px/1 var(--font-sans); }
.sy-footer-tag { margin: 14px 0 0; font: 400 13px/1.6 var(--font-sans); color: var(--neutral-500); }
.sy-footer-heading {
  margin: 0 0 14px;
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--neutral-350);
}
.sy-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.sy-footer-links a { font: 500 13px/1.4 var(--font-sans); color: var(--neutral-700); }
.sy-footer-links a:hover { color: var(--green-900); }
.sy-footer-legal {
  max-width: 1160px;
  margin: 40px auto 0;
  padding: 18px clamp(16px, 3vw, 44px);
  border-top: 1px solid var(--divider);
  font: 400 11px/1 var(--font-mono);
  color: var(--neutral-350);
}
/* Centred: the wordmark sits under a centred 1160px footer, so left-aligning it
   against the full viewport left a large gap on the right. When it is wider
   than the screen, centring also clips it evenly on both sides. */
.sy-wordmark { overflow: hidden; text-align: center; }
.sy-wordmark span {
  display: block;
  font: 800 clamp(90px, 14.5vw, 205px)/0.78 var(--font-sans);
  letter-spacing: -0.05em;
  color: var(--neutral-075);
  transform: translateY(14%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   10. Cookie card
   -------------------------------------------------------------------------- */
.cookie-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  width: 360px;
  max-width: calc(100vw - 40px);
  padding: 18px;
  background: var(--neutral-000);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-lifted);
  display: none;
}
.cookie-consent.show, .cookie-consent.is-visible { display: block; }
/* styles.css paints .cookie-consent-content a dark slate; the card is white. */
.cookie-consent-content {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: none;
}
.cookie-consent-text { background: transparent; }
.cookie-consent-title { margin: 0; font: 700 14px/1.3 var(--font-sans); color: var(--green-900); }
.cookie-consent-description { margin: 9px 0 0; font: 400 12.5px/1.55 var(--font-sans); color: var(--neutral-700); }
.cookie-consent-actions { display: flex; gap: 8px; margin-top: 14px; }
.cookie-consent-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-control);
  font: 600 12.5px/1 var(--font-sans);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 0;
}
.cookie-btn-accept { background: var(--green-700); color: #fff; }
.cookie-btn-accept:hover { background: var(--hover-primary); }
.cookie-btn-decline { background: var(--neutral-000); color: var(--neutral-700); border-color: var(--border-default); }
.cookie-btn-decline:hover { background: var(--surface-canvas); }

/* --------------------------------------------------------------------------
   Motion — the only keyframes on this page
   -------------------------------------------------------------------------- */
@keyframes syPing{0%{transform:translate(-50%,-50%) scale(.32);opacity:.5}70%{opacity:.12}100%{transform:translate(-50%,-50%) scale(2.1);opacity:0}}
@keyframes syRotate{from{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(360deg)}}
.sy-ping{position:absolute;left:50%;top:50%;width:230px;height:230px;border-radius:50%;border:1px solid rgba(255,255,255,.22);opacity:0;transform:translate(-50%,-50%) scale(.32);animation:syPing 5.2s cubic-bezier(.22,.61,.36,1) infinite}
.sy-ping:nth-of-type(2){animation-delay:1.7s}
.sy-ping:nth-of-type(3){animation-delay:3.4s}

/* --------------------------------------------------------------------------
   Responsive — no horizontal scroll at any width ≥360px
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .sy-board-layout { grid-template-columns: minmax(0, 1fr); }
  /* Six cells become 2×3 before they get too narrow to read. */
  .sy-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sy-head-split { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .sy-footer-grid { grid-template-columns: 1fr 1fr; }
  /* Three plans stop fitting well before the phone breakpoint. */
  .sy-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tablet landscape. At 1024 the bar's six children need ~1116px inside 992px,
   so the actions wrapped onto a second row and the header grew to 86px. The
   mode switch is the cheapest thing to drop: it is already hidden on phones,
   and its "Oddiy" half is a disabled coming-soon tab. */
@media (max-width: 1100px) {
  .landing-mode-switch { display: none; }
}

@media (max-width: 860px) {
  .sy-nav, .sy-lang, .landing-mode-switch { display: none; }
  .sy-nav-mobile-only { display: block; }
  .sy-burger { display: inline-flex; }
  .sy-header-actions { margin-left: auto; }

  /* Sticky stacking is a desktop affordance; on a phone the cards simply flow. */
  .sy-stack-card {
    position: static;
    min-height: 0;
    transform: none !important;
    filter: none !important;
    border-radius: 0;
    box-shadow: none;
  }
  .sy-stack-card + .sy-stack-card { border-top: 1px solid var(--border-default); }

  .sy-grid--3 { grid-template-columns: 1fr; }
  .sy-section, .sy-section--bone, .sy-section--tight, .sy-manifest { padding: 64px 0; }
  .sy-final { padding: 78px 0; }
  /* Two up rather than a single stack: four blocks in one column made the
     footer taller than the section above it. */
  .sy-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }

  /* The hero fills the screen on a phone, as it does on desktop. `svh` is the
     viewport with the browser chrome *shown*, so the hero doesn't get clipped
     behind the URL bar on first paint or jump when it retracts; the plain vh
     line above it is the fallback for browsers without svh. The 64px is the
     sticky header, which sits in flow — so header + hero is exactly one screen. */
  .sy-hero {
    min-height: calc(100vh - var(--sy-header-total));
    min-height: calc(100svh - var(--sy-header-total));
    padding: 40px 0;
  }

  /* One plan per row. At 3-up a phone gave each card ~125px, which laddered the
     copy one word per line and pushed "$1,500+" off-screen. */
  .sy-plans { grid-template-columns: minmax(0, 1fr); }
  .sy-pricing { padding: 76px 0; }
  .sy-pricing-head { margin-bottom: 32px; }

  /* The board keeps its three columns and becomes a swipeable rail, rather than
     shrinking to 115px each and going unreadable. Collapsing it to one column
     would cost the "everything on one board" read that the section is about. */
  .sy-board {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .sy-board-col { scroll-snap-align: start; }
}

/* Phones. 600px, not the 420px this used to be: an iPhone 16 Pro Max is 440
   CSS px and every rule below missed it entirely, which is why the CTAs stayed
   side by side and the header wrapped onto a second row. */
@media (max-width: 600px) {
  /* Scoped to the action rows: a blanket `.sy-btn { width: 100% }` also caught
     the header's small CTA and blew the top bar apart. */
  .sy-hero-actions .sy-btn,
  .sy-final-actions .sy-btn { width: 100%; }
  .sy-hero-actions, .sy-final-actions { flex-direction: column; align-items: stretch; }

  /* Keep the top bar on one row. The login link is cloned into the burger menu
     by js/main.js, so hiding it here loses no route. */
  .sy-header-inner { flex-wrap: nowrap; gap: 8px; }
  #nav-auth-container { display: none; }
  .sy-header-actions .sy-btn--sm { padding: 0 11px; }
  .sy-burger { width: 44px; height: 44px; }  /* 36px was under the touch minimum */

  .sy-hero h1 { font-size: clamp(28px, 7.4vw, 40px); }
  .sy-hero-sub { font-size: 15px; }
  .sy-plan { padding: 22px; }
  .sy-board { grid-auto-columns: 84%; }

  /* Touch targets. These are all comfortable with a mouse but under the 44px
     minimum for a finger — the billing toggle worst of all at 30px, and it is
     the one control this section exists to be tapped. */
  .sy-brand { min-height: 44px; }
  .sy-header-actions .sy-btn--sm { height: 44px; }
  .sy-billing-opt { min-height: 44px; padding: 0 18px; }
  .sy-plan-cta { min-height: 46px; }

  /* The base clamp floors at 90px, but "Sayohatchi" renders about 5× its
     font-size wide (453px at 90px), so on any phone the floor was wider than
     the screen and `overflow: hidden` sliced the last letters off. Drive it
     straight off the viewport here instead. */
  .sy-wordmark span { font-size: 19vw; }
}

/* Very small phones. Brand (125) + actions (138) + burger (44) + gaps needs
   ~331px against the 288px available at 320, which crushed the burger to 22px
   and pushed it past the edge. The mark alone still identifies the site. */
@media (max-width: 359px) {
  .sy-brand-name { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *{animation-duration:.01ms!important;animation-iteration-count:1!important}
}
