/* ═══════════════════════════════════════════════════════════════════════
   Koru landing — design tokens
   Mirrors the app's design language: Inter, deep teal #00BFA5, warm amber,
   ink-dark surfaces with multi-layer ladder, light counterpart.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* brand */
  --teal:        #00BFA5;
  --teal-deep:   #00897B;
  --teal-darker: #00695C;
  --teal-mid:    #4DB6AC;
  --amber:       #FFB74D;
  --coral:       #FF7043;
  --purple:      #7C4DFF;
  --green:       #66BB6A;
  --cyan:        #26C6DA;

  /* dark surfaces */
  --ink:        #0F1318;
  --surface:    #161C22;
  --surface-2:  #1E262D;
  --surface-3:  #252F38;
  --surface-4:  #2E3A45;

  /* light surfaces */
  --snow:        #F5F7FB;
  --snow-card:   #FFFFFF;
  --snow-2:      #ECEFF4;

  /* text */
  --text:        #E8ECF0;
  --text-mute:   #8A929A;
  --text-dim:    #5C6670;
  --text-dark:   #10151B;
  --text-dark-mute: #3D4853;

  /* semantic */
  --border:      rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  /* layout */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card:  0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-deep:  0 24px 80px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-glow:  0 0 60px rgba(0,191,165,0.18);
}

/* ═══════════════════════════════════════════════════════════════════════
   reset + base
   ═══════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .85; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
section { position: relative; }

/* utility — gradient text */
.grad-teal {
  background: linear-gradient(120deg, #4FE5CF 0%, #00BFA5 50%, #00897B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════════
   buttons
   ═══════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,191,165,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover { box-shadow: 0 10px 30px rgba(0,191,165,0.45), inset 0 1px 0 rgba(255,255,255,0.18); }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.10); }

.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 14px; }
.btn--xl { padding: 18px 28px; font-size: 16px; border-radius: 16px; }

/* ═══════════════════════════════════════════════════════════════════════
   eyebrow / section heads
   ═══════════════════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow__dot--green  { background: var(--green);  box-shadow: 0 0 12px var(--green); }
.eyebrow__dot--purple { background: var(--purple); box-shadow: 0 0 12px var(--purple); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .5; }
}
.eyebrow--solid {
  background: rgba(0,191,165,0.10);
  border-color: rgba(0,191,165,0.25);
  color: var(--teal);
}
.eyebrow--inverse {
  background: rgba(0,105,92,0.10);
  border-color: rgba(0,105,92,0.20);
  color: var(--teal-darker);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head--light { color: var(--text-dark); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-top: 16px;
  letter-spacing: -0.025em;
}
.section-title--light { color: var(--text-dark); }
.section-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  margin-top: 16px;
  color: var(--text-mute);
  line-height: 1.6;
}
.section-lead--light { color: var(--text-dark-mute); }

/* ═══════════════════════════════════════════════════════════════════════
   nav
   ═══════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,19,24,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav__brand img { width: 28px; height: 28px; border-radius: 8px; }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
}
.nav__links a:hover { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
}
.lang-toggle__option {
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--text-mute);
  transition: background .2s, color .2s;
}
.lang-toggle__option.is-active {
  background: var(--teal);
  color: #00231F;
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__inner { gap: 12px; padding: 12px 16px; }
  .btn--ghost { padding: 8px 14px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   hero
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 100px;
}
.hero__radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 25% 20%, rgba(0,191,165,0.18) 0%, transparent 60%),
    radial-gradient(50% 40% at 80% 30%, rgba(124,77,255,0.12) 0%, transparent 60%),
    radial-gradient(80% 50% at 50% 100%, rgba(255,183,77,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__copy { max-width: 580px; }
.hero__title {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 520px;
}
.hero__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mute);
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__bullets svg { color: var(--teal); flex-shrink: 0; }

/* hero device showcase: two phones, layered */
.hero__device {
  position: relative;
  height: 640px;
}
.device {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
  border: 8px solid #0a0d12;
  background: #000;
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform .4s ease;
}
.device img { width: 100%; height: auto; display: block; }
.device--front {
  width: 280px;
  top: 0;
  right: 60px;
  z-index: 2;
  transform: rotate(-3deg);
}
.device--back {
  width: 250px;
  top: 80px;
  right: 270px;
  z-index: 1;
  transform: rotate(4deg);
  opacity: .85;
}
.hero:hover .device--front { transform: rotate(-3deg) translateY(-6px); }
.hero:hover .device--back  { transform: rotate(4deg) translateY(-3px); }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__device { height: 520px; }
  .device--front { right: 50%; transform: translateX(50%) rotate(-3deg); }
  .device--back  { right: calc(50% - 180px); transform: rotate(4deg); }
  .hero:hover .device--front { transform: translateX(50%) rotate(-3deg) translateY(-6px); }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 60px; }
  .hero__device { height: 460px; }
  .device--front { width: 230px; }
  .device--back { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   stat band
   ═══════════════════════════════════════════════════════════════════════ */
.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 32px 24px;
}
.band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.band__num {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #8A929A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.band__label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 500;
}
@media (max-width: 720px) {
  .band__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════════
   features
   ═══════════════════════════════════════════════════════════════════════ */
.features {
  padding: 120px 24px;
}
.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.grid--features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card--feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card--feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.card--feature h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: -0.015em;
}
.card--feature p {
  font-size: 14.5px;
  color: var(--text-mute);
  margin-top: 10px;
  line-height: 1.6;
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #fff;
}
.icon--teal   { background: linear-gradient(135deg, #00BFA5 0%, #00695C 100%); box-shadow: 0 8px 20px rgba(0,191,165,0.3); }
.icon--amber  { background: linear-gradient(135deg, #FFB74D 0%, #F57C00 100%); box-shadow: 0 8px 20px rgba(255,183,77,0.3); }
.icon--purple { background: linear-gradient(135deg, #7C4DFF 0%, #4527A0 100%); box-shadow: 0 8px 20px rgba(124,77,255,0.3); }
.icon--coral  { background: linear-gradient(135deg, #FF7043 0%, #D84315 100%); box-shadow: 0 8px 20px rgba(255,112,67,0.3); }
.icon--cyan   { background: linear-gradient(135deg, #26C6DA 0%, #00838F 100%); box-shadow: 0 8px 20px rgba(38,198,218,0.3); }
.icon--green  { background: linear-gradient(135deg, #66BB6A 0%, #2E7D32 100%); box-shadow: 0 8px 20px rgba(102,187,106,0.3); }

@media (max-width: 980px) {
  .grid--features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--features { grid-template-columns: 1fr; }
  .features { padding: 80px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   showcase — light section
   ═══════════════════════════════════════════════════════════════════════ */
.showcase {
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(178,223,219,0.45) 0%, transparent 60%),
    linear-gradient(180deg, #F5F7FB 0%, #EAEEF4 100%);
  color: var(--text-dark);
  padding: 120px 24px;
}
.showcase__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.grid--showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.phone {
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #0a0d12;
  background: #000;
  box-shadow: 0 20px 60px rgba(31,41,55,0.18), 0 4px 14px rgba(31,41,55,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.phone:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(31,41,55,0.22), 0 8px 20px rgba(31,41,55,0.14);
}
.phone img { display: block; width: 100%; height: auto; }
.phone figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  letter-spacing: 0.02em;
}
.phone--light figcaption { /* identical, just kept selector available */ }

@media (max-width: 980px) {
  .grid--showcase { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .grid--showcase { grid-template-columns: 1fr; }
  .showcase { padding: 80px 20px; }
  .depth    { padding: 80px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   depth — three differentiating screens, dark
   ═══════════════════════════════════════════════════════════════════════ */
.depth {
  padding: 120px 24px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(124,77,255,0.14) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 100%, rgba(0,191,165,0.10) 0%, transparent 60%),
    var(--ink);
}
.depth__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.depth .grid--showcase { margin-top: 56px; }

/* ═══════════════════════════════════════════════════════════════════════
   plans — light section, two pricing cards
   ═══════════════════════════════════════════════════════════════════════ */
.plans {
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(178,223,219,0.45) 0%, transparent 60%),
    linear-gradient(180deg, #F5F7FB 0%, #EAEEF4 100%);
  color: var(--text-dark);
  padding: 120px 24px;
}
.plans__inner { max-width: 1100px; margin: 0 auto; }

.grid--plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.plan {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.plan--pro {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDFA 100%);
  border-color: rgba(0,191,165,0.30);
  box-shadow: 0 24px 70px rgba(0,191,165,0.18), 0 6px 18px rgba(15,23,42,0.06);
}
.plan__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(124,77,255,0.30);
}
.plan__head { display: flex; flex-direction: column; gap: 10px; }
.plan__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal-darker);
}
.plan--pro .plan__name { color: var(--purple); }
.plan__price { display: flex; align-items: baseline; gap: 8px; }
.plan__price-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.plan__price-unit { font-size: 13px; color: var(--text-dark-mute); }
.plan__tag { color: var(--text-dark-mute); font-size: 15px; line-height: 1.55; margin: 0; }
.plan__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(15,23,42,0.06);
  padding-top: 24px;
}
.plan__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.plan__cta { align-self: flex-start; margin-top: 4px; }
.plans__note {
  margin: 40px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dark-mute);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .grid--plans { grid-template-columns: 1fr; }
  .plans { padding: 80px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   privacy
   ═══════════════════════════════════════════════════════════════════════ */
.privacy {
  padding: 120px 24px;
  background:
    radial-gradient(60% 60% at 80% 50%, rgba(102,187,106,0.10) 0%, transparent 60%),
    var(--ink);
}
.privacy__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.privacy__copy h2 { margin-top: 20px; }
.privacy__copy .section-lead { margin-top: 14px; max-width: 520px; }

.checklist {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}
.checklist svg {
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}
.checklist strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.checklist span {
  font-size: 14.5px;
  color: var(--text-mute);
  margin-top: 2px;
}

.privacy__quote {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}
.privacy__quote-mark {
  color: var(--teal);
  opacity: .35;
  margin-bottom: 16px;
}
.privacy__quote p {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text);
}
.privacy__quote-cite {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .privacy__inner { grid-template-columns: 1fr; gap: 40px; }
  .privacy { padding: 80px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   download CTA
   ═══════════════════════════════════════════════════════════════════════ */
.download {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink) 0%, #08090C 100%);
}
.download__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.download__radial {
  position: absolute;
  inset: -120px -200px;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(0,191,165,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.download__title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.download__sub {
  margin: 20px auto 0;
  max-width: 540px;
  font-size: 17px;
  color: var(--text-mute);
}
.download__row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.download__tester {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-dim);
}
.download__tester a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px dashed var(--text-dim);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.download__tester a:hover {
  color: var(--text-soft, #fff);
  border-bottom-color: var(--text-soft, #fff);
}
.download__meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.download__meta .dot { opacity: .5; }
@media (max-width: 600px) {
  .download { padding: 80px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   footer
   ═══════════════════════════════════════════════════════════════════════ */
.foot {
  background: #08090C;
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
}
.foot__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
}
.foot__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.foot__brand img { width: 42px; height: 42px; border-radius: 10px; }
.foot__brand-name { font-weight: 800; font-size: 18px; }
.foot__brand-tag { font-size: 13px; color: var(--text-mute); margin-top: 2px; }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot__cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.foot__cols a {
  font-size: 14px;
  color: var(--text-mute);
}
.foot__cols a:hover { color: var(--text); }

.foot__rule {
  max-width: 1200px;
  margin: 48px auto 24px;
  height: 1px;
  background: var(--border);
}
.foot__legal {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; gap: 32px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Legal pages (privacy, terms) ───────────────────────────────────── */
/* Standalone document layout — no marketing chrome, optimized for
   readability. Used by privacy-en.html and privacy-ru.html. */

.legal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.legal-bar a {
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.legal-bar a:hover { color: var(--accent, #00BFA5); }
.legal-bar__home { font-weight: 700; }

.legal {
  max-width: 720px;
  margin: 32px auto 64px;
  padding: 0 24px;
  color: #1f2937;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
.legal h1 { font-size: 32px; font-weight: 700; margin: 0 0 8px; }
.legal__meta { color: #6b7280; font-size: 13px; margin: 0 0 32px; }
.legal h2 {
  font-size: 22px; font-weight: 700;
  margin: 40px 0 12px;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
}
.legal section:first-of-type h2 { border-top: 0; padding-top: 0; }
.legal h3 {
  font-size: 17px; font-weight: 600;
  margin: 24px 0 8px;
  color: #374151;
}
.legal p, .legal ul { margin: 0 0 16px; }
.legal ul { padding-left: 24px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent, #00BFA5); }
.legal code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}
.legal-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}
.legal-foot {
  text-align: center;
  padding: 24px;
  color: #9ca3af;
  font-size: 12px;
  border-top: 1px solid #e5e7eb;
}
