/* ─── Plus Jakarta Sans (variable 200–800) ──────────────────── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── JetBrains Mono (variable 400–500) ─────────────────────── */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:            #07070e;
  --bg-2:          #0d0d1b;
  --surface:       rgba(255,255,255,0.045);
  --surface-hover: rgba(255,255,255,0.075);
  --border:        rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.16);

  --orange:        #F5891F;
  --orange-dim:    rgba(245,137,31,0.18);
  --orange-glow:   rgba(245,137,31,0.25);
  --amber:         #FEB96A;
  --pink:          #E8527A;

  --text:          #f0f0f7;
  --text-muted:    rgba(240,240,247,0.68);
  --text-dim:      rgba(240,240,247,0.38);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); }

/* ─── Grid Overlay ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,137,31,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,137,31,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Ambient Blobs ─────────────────────────────────────────── */
.blob-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.blob-1 { width:680px;height:680px;background:radial-gradient(circle,rgba(232,82,122,.22),transparent 70%);top:-200px;right:-100px;animation:f1 22s ease-in-out infinite; }
.blob-2 { width:500px;height:500px;background:radial-gradient(circle,rgba(245,137,31,.20),transparent 70%);bottom:-80px;left:-60px;animation:f2 28s ease-in-out infinite; }
.blob-3 { width:400px;height:400px;background:radial-gradient(circle,rgba(254,185,106,.14),transparent 70%);top:40%;left:40%;animation:f3 32s ease-in-out infinite; }

@keyframes f1 { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(-30px,30px) scale(1.04)} }
@keyframes f2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(24px,-28px) scale(1.06)} }
@keyframes f3 { 0%,100%{transform:translate(0,0) scale(1)} 60%{transform:translate(-16px,20px) scale(.96)} }

/* ─── Navigation ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,7,14,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: fixed;
}

.nav-back {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-dim);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.nav-back:hover { color: var(--text-muted); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -.02em;
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
}
.lang-link { color: var(--text-dim); padding: 4px 6px; border-radius: 6px; transition: color .2s, background .2s; }
.lang-link:hover { color: var(--text-muted); }
.lang-link.active { color: var(--text); background: rgba(255,255,255,.08); }
.lang-sep { color: var(--text-dim); user-select: none; }

.btn-nav-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-nav-download:hover {
  background: #e07b14;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,137,31,.40);
}

/* ─── Hero ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  z-index: 1;
}

@keyframes heroFadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes heroSlideIn  { from{opacity:0;transform:translateX(36px) scale(.96)} to{opacity:1;transform:translateX(0) scale(1)} }

.hero-badge    { animation: heroFadeUp .6s ease both .1s; }
.hero-headline { animation: heroFadeUp .6s ease both .25s; }
.hero-subtitle { animation: heroFadeUp .6s ease both .40s; }
.hero-ctas     { animation: heroFadeUp .6s ease both .55s; }
.hero-phone-wrap { animation: heroSlideIn .8s cubic-bezier(.22,1,.36,1) both .3s; }

@media (prefers-reduced-motion:reduce) {
  .hero-badge,.hero-headline,.hero-subtitle,.hero-ctas,.hero-phone-wrap { animation: none; }
  .iphone-frame { animation: none; }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text { flex: 1; max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245,137,31,.28);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--orange);
  background: rgba(245,137,31,.08);
  margin-bottom: 28px;
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero-headline .accent {
  background: linear-gradient(130deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 440px;
  font-weight: 400;
}

.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.appstore-badge { display: inline-block; transition: opacity .2s, transform .15s; }
.appstore-badge:hover { opacity: .82; transform: translateY(-2px); }
.appstore-badge img { display: block; height: 52px; width: auto; }

.btn-hero-ghost {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.btn-hero-ghost:hover { color: var(--text); }

/* ─── iPhone Mockup ─────────────────────────────────────────── */
.hero-phone-wrap { flex-shrink: 0; display: flex; justify-content: center; }

.iphone-frame {
  width: 270px; height: 585px;
  background: #1C1C1E;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 0 0 2px rgba(0,0,0,.5),
    0 8px 48px rgba(0,0,0,.60),
    0 0 70px rgba(245,137,31,.18),
    inset 0 0 0 1px rgba(255,255,255,.06);
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}

.iphone-screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #000;
}

.iphone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── Value Strip ───────────────────────────────────────────── */
#value-strip {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(245,137,31,.06);
}

.value-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 18px 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 500;
  color: var(--orange);
  padding: 4px 28px;
  letter-spacing: .04em;
  position: relative;
}
.value-item + .value-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 14px; width: 1px;
  background: rgba(245,137,31,.25);
}

.value-check {
  width: 18px; height: 18px;
  background: rgba(245,137,31,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-check svg { width: 10px; height: 10px; }

/* ─── Section helpers ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--text);
}
.section-title .line { display: block; }

/* ─── Fade-in ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Sticky Showcase ───────────────────────────────────────── */
#showcase {
  position: relative;
  z-index: 1;
  padding: 100px 40px 0;
}

.showcase-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  text-align: center;
}

.showcase-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.showcase-phone-col {
  flex: 0 0 auto;
  width: 270px;
  position: sticky;
  top: calc(50vh - 292px);
}

.showcase-iphone {
  width: 270px; height: 585px;
  background: #1C1C1E;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 0 0 2px rgba(0,0,0,.35),
    0 16px 56px rgba(0,0,0,.50),
    0 0 50px rgba(245,137,31,.12);
}

.showcase-screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.showcase-screen img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity .5s ease;
}
.showcase-screen img.active { opacity: 1; }
.showcase-screen img:not(.active) { opacity: 0; }

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}
.dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  position: relative;
}
.dot::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: background .25s, transform .25s;
}
.dot.active::after {
  background: var(--orange);
  transform: translate(-50%,-50%) scale(1.3);
}

.showcase-steps-col { flex: 1; padding-bottom: 100px; }

.showcase-step {
  min-height: 85vh;
  display: flex;
  align-items: center;
  opacity: .2;
  transition: opacity .4s ease;
}
.showcase-step.active { opacity: 1; }

.step-content { max-width: 460px; }

.step-eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.step-title {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.step-desc {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 400;
}

.step-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  color: var(--orange);
  background: rgba(245,137,31,.1);
  border: 1px solid rgba(245,137,31,.2);
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ─── Features Grid ─────────────────────────────────────────── */
#features {
  position: relative;
  z-index: 1;
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  opacity: 0;
  transform: translateY(24px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease, border-color .3s, box-shadow .3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,137,31,.22);
  box-shadow: 0 8px 32px rgba(245,137,31,.08);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(245,137,31,.10);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.015em;
}

.feature-desc {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 400;
}

.feature-card--featured {
  background: rgba(245,137,31,.10);
  border-color: rgba(245,137,31,.22);
  box-shadow: 0 0 0 1px rgba(245,137,31,.08) inset;
}
.feature-card--featured .feature-title { color: var(--text); }
.feature-card--featured .feature-icon  { background: rgba(245,137,31,.15); }
.feature-card--featured:hover {
  border-color: rgba(245,137,31,.4);
  box-shadow: 0 8px 40px rgba(245,137,31,.15);
}

/* ─── Final CTA ─────────────────────────────────────────────── */
#cta {
  position: relative;
  z-index: 1;
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 48px;
}

.cta-phone-thumb {
  width: 88px; height: 190px;
  object-fit: cover; object-position: top;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  opacity: .75;
  transform: rotate(-5deg);
}
.cta-phone-thumb--center {
  width: 100px; height: 217px;
  opacity: 1;
  transform: rotate(0deg) translateY(-14px);
  box-shadow: 0 0 0 1px rgba(245,137,31,.2), 0 16px 48px rgba(0,0,0,.55), 0 0 40px rgba(245,137,31,.2);
}
.cta-phone-thumb--right { transform: rotate(5deg); }

.cta-logo {
  width: 80px; height: 80px;
  border-radius: 20px;
  margin: 0 auto 28px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 30px rgba(245,137,31,.25);
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
}

/* ─── Footer ────────────────────────────────────────────────── */
#footer {
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-logo { width: 28px; height: 28px; border-radius: 7px; object-fit: cover; }
.footer-name { font-family: var(--font-display); font-size: .88rem; font-weight: 700; color: var(--text); }

.footer-copy { font-size: .78rem; color: var(--text-dim); }

.footer-links { display: flex; gap: 20px; }
.footer-link  { font-size: .78rem; color: var(--text-dim); transition: color .2s; }
.footer-link:hover { color: var(--text-muted); }

.footer-back {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--text-dim);
  letter-spacing: .06em;
  transition: color .2s;
}
.footer-back:hover { color: var(--text-muted); }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-name { display: none; }
  .nav-brand { position: static; transform: none; }
  .nav-back span { display: none; }
  .btn-nav-download { font-size: .75rem; padding: 7px 14px; }

  #hero { padding: 90px 24px 60px; }
  .hero-inner { flex-direction: column-reverse; align-items: center; gap: 40px; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-badge, .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }

  #value-strip { padding: 0 24px; }
  .value-item { padding: 4px 14px; font-size: .72rem; }

  #showcase { padding: 80px 24px 0; }
  .showcase-header { margin-bottom: 48px; }
  .showcase-layout { flex-direction: column; align-items: center; gap: 40px; }
  .showcase-phone-col { position: relative; top: unset; width: 220px; }
  .showcase-iphone { width: 220px; height: 477px; }
  .showcase-steps-col { padding-bottom: 60px; width: 100%; }
  .showcase-step { min-height: 0; padding: 48px 0; opacity: 1; }

  #features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }

  #cta { padding: 80px 24px; }
  .cta-phones { gap: 8px; }
  .cta-phone-thumb { width: 72px; height: 156px; }
  .cta-phone-thumb--center { width: 84px; height: 182px; }

  #footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .value-item + .value-item::before { display: none; }
  .value-strip-inner { flex-direction: column; gap: 4px; }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-layout { gap: 48px; }
  .hero-text { max-width: 420px; }
}

@media (min-width: 1440px) {
  .iphone-frame, .showcase-iphone { width: 310px; height: 672px; }
  .iphone-screen, .showcase-screen { border-radius: 44px; }
  .hero-inner { gap: 100px; }
  .hero-text { max-width: 600px; }
  .showcase-phone-col { width: 310px; top: calc(50vh - 336px); }
  .showcase-layout { gap: 120px; }
  .step-content { max-width: 560px; }
  .step-title { font-size: 2.2rem; }
}

/* ─── Privacy Pages ─────────────────────────────────────────── */
#privacy-hero {
  position: relative;
  z-index: 1;
  padding: 140px 40px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.privacy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.privacy-hero-inner .section-label { margin-bottom: 16px; justify-content: center; }

.privacy-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.privacy-updated {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--text-dim);
  letter-spacing: .06em;
}

#privacy-content {
  position: relative;
  z-index: 1;
  padding: 80px 40px 100px;
}

.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-lead {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.privacy-lead p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0 0 12px;
  font-weight: 400;
}
.privacy-lead p:last-child { margin-bottom: 0; }

.privacy-lead ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
  font-weight: 400;
}

.privacy-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(245,137,31,.07);
  border: 1px solid rgba(245,137,31,.22);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--orange);
}

.privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color .3s;
}
.privacy-section:hover { border-color: var(--border-bright); }

.privacy-section--contact {
  background: rgba(245,137,31,.06);
  border-color: rgba(245,137,31,.18);
}
.privacy-section--contact:hover { border-color: rgba(245,137,31,.3); }

.privacy-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(245,137,31,.12);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-section-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.015em;
  margin-bottom: 7px;
}

.privacy-section-body p {
  font-size: .9rem;
  line-height: 1.68;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
}

.privacy-section-body a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  #privacy-hero  { padding: 110px 24px 60px; }
  #privacy-content { padding: 60px 24px 80px; }
  .privacy-lead  { padding: 22px 20px; }
  .privacy-section { padding: 20px 18px; gap: 14px; }
}
