/* ==========================================================================
   Rota Labs — paylaşılan tasarım sistemi (site.css)
   Tek stylesheet: tokens + reset + ortak kabuk + tüm bileşenler.
   Sayfalara özel buton/kart/section CSS'i YAZILMAZ; her şey burada.
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Brand */
  --navy-950:#050914; --navy-900:#070d20; --navy-850:#0a1228; --navy-800:#0f1c3d;
  --blue-600:#2f6bff; --blue-500:#4f8bff; --cyan-500:#38bdf8; --cyan-400:#67d3fb;

  /* Light surfaces */
  --bg-page:#f5f7fb; --bg-soft:#eef3fb; --surface:#ffffff;
  --surface-2:#f8fbff; --surface-3:#f1f5fb;

  /* Text */
  --text-strong:#0f172a; --text-main:#243041; --text-muted:#667085;
  --text-soft:#8a94a6; --text-on-dark:#eef2ff; --text-on-dark-muted:#c3cce6;

  /* Borders */
  --border:#e5eaf3; --border-strong:#d7deea; --border-dark:rgba(255,255,255,.12);

  /* States */
  --success:#18b57b; --warning:#f59e0b; --danger:#ef4444; --info:#0ea5e9;

  /* Gradients */
  --hero-glow:radial-gradient(900px 500px at 50% -10%, rgba(79,139,255,.34), transparent 60%);
  --hero-glow-2:radial-gradient(700px 600px at 85% 20%, rgba(56,189,248,.16), transparent 55%);
  --hero-bg:linear-gradient(180deg, var(--navy-850) 0%, var(--navy-900) 100%);

  /* Type */
  --font-sans:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --fs-hero:clamp(2.5rem,6vw,4.5rem);  --fs-h1:clamp(2.125rem,5vw,3.5rem);
  --fs-h2:clamp(1.75rem,3.5vw,2.5rem); --fs-h3:1.125rem;
  --fs-xl:1.25rem; --fs-lg:1.125rem; --fs-base:1rem; --fs-sm:.9375rem; --fs-xs:.8125rem;
  --lh-tight:1.08; --lh-head:1.15; --lh-body:1.65;

  /* Spacing (4px base) */
  --space-1:.25rem; --space-2:.5rem; --space-3:.75rem; --space-4:1rem; --space-5:1.25rem;
  --space-6:1.5rem; --space-7:2rem; --space-8:2.5rem; --space-9:3rem; --space-10:4rem;
  --space-11:5rem; --space-12:6rem;

  /* Radius */
  --radius-sm:.75rem; --radius-md:1rem; --radius-lg:1.25rem; --radius-xl:1.5rem;
  --radius-2xl:2rem; --radius-pill:999px;

  /* Shadows */
  --shadow-sm:0 8px 24px -18px rgba(15,28,61,.22);
  --shadow-md:0 16px 40px -24px rgba(15,28,61,.28);
  --shadow-lg:0 24px 60px -28px rgba(15,28,61,.34);
  --shadow-dark:0 18px 50px -12px rgba(47,107,255,.45);

  /* Motion */
  --dur-fast:140ms; --dur-base:220ms; --dur-slow:360ms;
  --ease-standard:cubic-bezier(.2,.8,.2,1); --ease-out:cubic-bezier(.16,1,.3,1);

  /* Layout */
  --container:1120px; --container-wide:1240px; --header-h:76px;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

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

h1, h2, h3, h4 { margin: 0; color: var(--text-strong); }
p { margin: 0; }

button { font-family: inherit; }

:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------- Utilities */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: 760px; }

.text-center { text-align: center; }
.is-hidden { display: none !important; }

.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;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }

/* split: text + media two-column (collapses on tablet) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.media-center { display: flex; justify-content: center; }
.chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 420px) { .chip-grid { grid-template-columns: 1fr; } }

/* generic intro paragraph on light surfaces */
.text-lead { font-size: var(--fs-lg); color: var(--text-muted); line-height: var(--lh-body); margin: 0 0 22px; }
.text-lead strong { color: var(--text-strong); }
.measure { max-width: 520px; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------- Sections */
.section { padding: 80px 0; }
.section--compact { padding: 56px 0; }
.section--white { background: var(--surface); }
.section--soft  { background: var(--bg-soft); }
.section--page  { background: var(--bg-page); }
.section--dark  { background: var(--hero-bg); color: var(--text-on-dark); }

/* hairline dividers between adjacent light bands */
.section--white + .section--white,
.section--white + .section--page,
.section--page  + .section--white,
.section--soft  + .section--white,
.section--white + .section--soft,
.section--page  + .section--page { border-top: 1px solid var(--border); }

.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { margin: 0 0 12px; }
.section-head p { margin: 0; color: var(--text-muted); font-size: var(--fs-lg); }
.section--dark .section-head p { color: var(--text-on-dark-muted); }

/* ------------------------------------------------------------- Typography */
.eyebrow {
  display: inline-block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-500);
  margin-bottom: 12px;
}
.section--white .eyebrow, .section--page .eyebrow, .section--soft .eyebrow { color: var(--blue-600); }

h1, .h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); font-weight: 900; letter-spacing: -.03em; }
h2, .h2 { font-size: var(--fs-h2); line-height: var(--lh-head); font-weight: 800; letter-spacing: -.02em; }
h3, .h3 { font-size: var(--fs-h3); font-weight: 700; }

.gradient-text {
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ------------------------------------------------------------ Site header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 16px;
}

/* dark variant: sits over a dark hero */
.site-header--dark {
  background: rgba(7,13,32,.55);
  border-bottom: 1px solid var(--border-dark);
}
.site-header--dark.is-scrolled { background: rgba(7,13,32,.92); }
.site-header:not(.site-header--dark).is-scrolled { background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); }

/* brand lockup */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; letter-spacing: -.03em; font-size: 1.12rem; color: var(--text-strong); }
.brand-tag  { font-size: .72rem; font-weight: 500; color: var(--text-muted); letter-spacing: .01em; }
.site-header--dark .brand-name { color: #fff; }
.site-header--dark .brand-tag  { color: var(--text-on-dark-muted); }

/* nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: var(--fs-sm);
  color: var(--text-main); transition: background var(--dur-fast), color var(--dur-fast);
}
.site-nav a:hover { background: var(--surface-3); color: var(--text-strong); }
.site-nav a[aria-current="page"] { color: var(--blue-600); }
.site-header--dark .site-nav a { color: var(--text-on-dark-muted); }
.site-header--dark .site-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.site-header--dark .site-nav a[aria-current="page"] { color: var(--cyan-400); }

.site-nav .nav-cta {
  margin-left: 8px; padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--blue-600); color: #fff;
}
.site-nav .nav-cta:hover { background: var(--blue-500); color: #fff; }

/* hamburger */
.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0; border: 0; cursor: pointer;
  background: transparent; border-radius: 10px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 2px;
  background: var(--text-strong); transition: transform var(--dur-base), opacity var(--dur-base);
}
.site-header--dark .nav-toggle span { background: #fff; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px 20px 18px;
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
  }
  .site-header--dark .site-nav { background: var(--navy-850); border-bottom-color: var(--border-dark); }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 12px 14px; font-size: var(--fs-base); }
  .site-nav .nav-cta { margin: 6px 0 0; text-align: center; }
}

/* No-JS fallback: keep nav usable */
html:not(.js) .nav-toggle { display: none; }
@media (max-width: 960px) {
  html:not(.js) .site-nav {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; background: transparent; border: 0; padding: 8px 0 0;
  }
}

/* ----------------------------------------------------------------- Heroes */
.hero {
  position: relative; overflow: hidden; text-align: center;
  color: var(--text-on-dark);
  background: var(--hero-glow), var(--hero-glow-2), var(--hero-bg);
  padding: 64px 0 80px;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg-page));
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin: 0 0 16px; }
.hero .lead {
  font-size: clamp(1rem, 2.4vw, 1.2rem); color: var(--text-on-dark-muted);
  max-width: 640px; margin: 0 auto 26px;
}
.hero--soft { background: var(--hero-glow), var(--hero-bg); padding: 56px 0 72px; }

/* app icon in hero */
.app-icon {
  width: 104px; height: 104px; border-radius: 24px; margin: 0 auto 22px;
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(255,255,255,.06);
}
/* monogram tile sized for the hero (apps without a real icon yet) */
.app-icon--mono {
  display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: 2.6rem; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
}

/* --------------------------------------------------------------- Badges */
.badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.badge {
  font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: var(--radius-pill);
  color: var(--text-on-dark); background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.section--white .badge, .section--page .badge, .section--soft .badge {
  color: var(--text-main); background: var(--surface-2); border-color: var(--border);
}
.badge--status { display: inline-flex; align-items: center; gap: 7px; }
.badge--status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge--live    { color: var(--success); background: rgba(24,181,123,.1);  border-color: rgba(24,181,123,.25); }
.badge--soon    { color: var(--warning); background: rgba(245,158,11,.1);  border-color: rgba(245,158,11,.25); }
.badge--legacy  { color: var(--text-soft); background: var(--surface-3);    border-color: var(--border); }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 22px; border-radius: var(--radius-md);
  font-weight: 700; font-size: var(--fs-base); letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-standard), background var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }

.btn--primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-dark); }
.btn--primary:hover { background: var(--blue-500); }
.btn--secondary { background: var(--surface); color: var(--text-strong); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn--secondary:hover { border-color: var(--blue-500); }
.btn--ghost { background: transparent; color: var(--blue-600); }
.btn--ghost:hover { background: var(--surface-3); }
.btn--light { background: #fff; color: var(--navy-850); }
.btn--light:hover { background: #f1f5ff; }
/* outline button for dark surfaces (hero / final CTA) */
.btn--outline { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-row--start { justify-content: flex-start; }

/* store buttons (canonical: cografya-kampi) */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; min-height: 58px;
  background: #fff; color: var(--navy-850); padding: 13px 24px; border: 0;
  border-radius: var(--radius-md); box-shadow: 0 12px 30px -10px rgba(0,0,0,.5); cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(0,0,0,.55); }
.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; fill: var(--navy-850); }
.store-btn .lbl { text-align: left; line-height: 1.1; }
.store-btn .l1 { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #5b6478; }
.store-btn .l2 { display: block; font-size: 1.08rem; font-weight: 800; letter-spacing: -.01em; }
/* light-surface store buttons get a hairline so they read on white */
.section--white .store-btn, .section--page .store-btn, .section--soft .store-btn {
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}

/* soft "coming soon" store chips */
.store-soon {
  display: inline-flex; align-items: center; gap: 10px; min-height: 58px;
  padding: 13px 22px; border-radius: var(--radius-md); font-weight: 600;
  color: var(--text-on-dark); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.store-soon svg { width: 24px; height: 24px; fill: currentColor; opacity: .9; }
.section--white .store-soon, .section--page .store-soon, .section--soft .store-soon {
  color: var(--text-main); background: var(--surface-2); border-color: var(--border);
}

/* ----------------------------------------------------- Instagram banner */
.ig-banner {
  display: none; align-items: center; gap: 12px; justify-content: center;
  max-width: 560px; margin: 26px auto -4px; padding: 13px 18px;
  font-size: .92rem; font-weight: 500; text-align: left; color: #fdf3d6;
  background: rgba(250,204,21,.12); border: 1px solid rgba(250,204,21,.35); border-radius: 14px;
}
.ig-banner.show { display: flex; }
.ig-banner .dot { font-size: 1.2rem; flex-shrink: 0; }

/* ------------------------------------------------------------ Trust strip */
.trust { background: var(--surface); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; padding: 26px 24px; }
.trust-item { text-align: center; }
.trust-item b { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue-600); letter-spacing: -.02em; }
.trust-item span { font-size: .82rem; color: var(--text-muted); font-weight: 500; }

/* ------------------------------------------------------------- App cards */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

.app-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base), border-color var(--dur-base);
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.app-card__top { display: flex; align-items: center; gap: 14px; }
.app-card__icon { width: 56px; height: 56px; border-radius: 15px; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.app-card__mono {
  width: 56px; height: 56px; border-radius: 15px; flex-shrink: 0; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.25rem;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
}
.app-card__name { font-weight: 800; font-size: 1.08rem; color: var(--text-strong); letter-spacing: -.01em; }
.app-card__meta { font-size: var(--fs-sm); color: var(--text-muted); }
.app-card__desc { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); flex: 1; }
.app-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 2px; }
.app-card__link { font-weight: 700; font-size: var(--fs-sm); color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; }
.app-card__link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform var(--dur-fast); }
.app-card:hover .app-card__link svg { transform: translateX(3px); }

/* compact chip variant */
.app-chip { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px; }
.app-chip .mark { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--navy-800), var(--blue-600)); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.app-chip img.mark { object-fit: cover; }
.app-chip .nm { font-weight: 700; color: var(--text-strong); font-size: .98rem; line-height: 1.2; }
.app-chip .st { font-size: .78rem; color: var(--text-muted); }

/* --------------------------------------------------------- Feature cards */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.feature {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base), border-color var(--dur-base);
}
.feature::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-600), var(--cyan-500)); opacity: 0; transition: opacity var(--dur-base); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature:hover::before { opacity: 1; }
.feature .ic {
  width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(47,107,255,.14), rgba(56,189,248,.14));
}
.feature .ic svg { width: 24px; height: 24px; stroke: var(--blue-600); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin: 0 0 8px; font-size: 1.125rem; font-weight: 700; color: var(--text-strong); }
.feature p { margin: 0; font-size: .9375rem; color: var(--text-muted); }

/* steps / principles (numbered) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.step__n { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; margin-bottom: 16px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); }
.step h3 { margin: 0 0 8px; font-size: 1.0625rem; color: var(--text-strong); }
.step p { margin: 0; font-size: .9375rem; color: var(--text-muted); }

/* --------------------------------------------------------------- Gallery */
.gallery-wrap { position: relative; }
.gallery { display: flex; gap: 18px; overflow-x: auto; padding: 6px 24px 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: #cdd4e3; border-radius: var(--radius-pill); }
.shot {
  flex: 0 0 auto; width: clamp(220px, 64vw, 280px); aspect-ratio: 1242 / 2688;
  border-radius: 22px; overflow: hidden; scroll-snap-align: center;
  box-shadow: 0 16px 40px -16px rgba(15,28,61,.5); background: var(--navy-850);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot--lg { width: clamp(220px, 70vw, 300px); }
.gallery-wrap::before, .gallery-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 30px; width: 48px; pointer-events: none; z-index: 2;
}
.gallery-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-page), rgba(245,247,251,0)); }
.gallery-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg-page), rgba(245,247,251,0)); }
/* on white sections, fade to white */
.section--white .gallery-wrap::before { background: linear-gradient(90deg, var(--surface), rgba(255,255,255,0)); }
.section--white .gallery-wrap::after  { background: linear-gradient(270deg, var(--surface), rgba(255,255,255,0)); }

.scroll-hint { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .85rem; color: var(--text-muted); margin-top: 4px; }
.scroll-hint svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; stroke-width: 2; }

/* 3-up grid option on wide screens */
@media (min-width: 980px) {
  .gallery--grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; padding: 6px 0 8px; }
  .gallery--grid .shot { width: 100%; }
  .gallery--grid + .scroll-hint { display: none; }
  .gallery--grid ~ .gallery-wrap::before, .gallery--grid ~ .gallery-wrap::after { display: none; }
}

/* ----------------------------------------------------------------- Prose */
.prose { color: var(--text-main); }
.prose p { font-size: var(--fs-lg); margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { margin: 0 0 16px; }
.prose strong { color: var(--text-strong); }

/* reading card (privacy / legal) */
.reading-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: clamp(24px, 5vw, 48px); box-shadow: var(--shadow-sm); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--blue-600); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-soft); }
.breadcrumb [aria-current="page"] { color: var(--text-main); font-weight: 600; }

/* reading-card legal/long-form typography (shared — no page-level CSS) */
.reading-card > :first-child { margin-top: 0; }
.reading-card h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); line-height: var(--lh-head); font-weight: 800; letter-spacing: -.02em; color: var(--text-strong); margin: 0 0 8px; }
.reading-card h2 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 700; color: var(--text-strong); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.reading-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-strong); margin: 24px 0 10px; }
.reading-card p { font-size: var(--fs-base); line-height: var(--lh-body); color: var(--text-main); margin: 0 0 16px; }
.reading-card ul { margin: 0 0 18px; padding-left: 1.4em; }
.reading-card li { font-size: var(--fs-base); line-height: var(--lh-body); color: var(--text-main); margin-bottom: 8px; }
.reading-card a:not(.btn) { color: var(--blue-600); font-weight: 600; text-decoration: none; word-break: break-word; }
.reading-card a:not(.btn):hover { text-decoration: underline; }
.reading-card strong { color: var(--text-strong); font-weight: 700; }
.reading-card code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; background: var(--surface-3); padding: .1em .4em; border-radius: 6px; word-break: break-word; }
.reading-card .last-updated { display: block; font-size: var(--fs-sm); color: var(--text-muted); margin: 0 0 28px; }
.reading-card .contact-box { background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--blue-600); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 22px; margin-top: 32px; }
.reading-card .contact-box p { margin: 0; }

/* language switch (multilingual legal pages, e.g. Tabu) */
.lang-switch { display: inline-flex; gap: 6px; background: var(--surface-3); padding: 6px; border-radius: var(--radius-pill); margin-bottom: 28px; }
.lang-btn { padding: 8px 18px; border: 0; border-radius: var(--radius-pill); cursor: pointer; background: transparent; color: var(--text-muted); font-weight: 600; font-family: inherit; font-size: var(--fs-sm); transition: background var(--dur-fast), color var(--dur-fast); }
.lang-btn.active { background: var(--blue-600); color: #fff; }
.lang-content { display: none; }
.lang-content.active { display: block; }

/* ------------------------------------------------------------- Accordion */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.faq details[open] { border-color: #cdd9f7; box-shadow: var(--shadow-md); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 600; color: var(--text-strong); font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--blue-600); fill: none; stroke-width: 2; transition: transform var(--dur-base); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .ans { padding: 0 20px 20px; color: var(--text-muted); font-size: .98rem; }

/* --------------------------------------------------------------- Final CTA */
.final-cta { text-align: center; color: #fff; background: radial-gradient(700px 360px at 50% 0%, rgba(79,139,255,.3), transparent 60%), linear-gradient(180deg, var(--navy-850), var(--navy-900)); padding: 80px 0; }
.final-cta h2 { color: #fff; }
.final-cta p { color: var(--text-on-dark-muted); margin: 12px auto 28px; max-width: 560px; }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: var(--navy-900); color: #8b96b5; padding: 64px 0 28px; font-size: var(--fs-sm); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px 24px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: #8b96b5; }
.footer-about { margin-top: 14px; max-width: 320px; color: #8b96b5; line-height: 1.6; }
.footer-col h4 { color: #c7d0e8; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #b9c4e2; font-weight: 500; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #7c87a6; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------- Scroll reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------- Responsive rhythm */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .final-cta { padding: 56px 0; }
  .site-footer { padding: 48px 0 24px; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 64px; }
  .cta-row { flex-direction: column; align-items: stretch; max-width: 340px; margin-left: auto; margin-right: auto; }
  .store-btn, .store-soon { width: 100%; justify-content: center; }
  .section-head { margin-bottom: 32px; }
}
