/* ═══════════════════════════════════════════════════
   CRAVLON WEBSITE — style.css  v3
   Theme: Luxury Dark / Editorial / Refined Brutalism
   Fonts: Cormorant Garamond (display) + Outfit (body) + JetBrains Mono (accent)
═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --rust:    #C8401C;
  --peach:   #E8724A;
  --amber:   #F0A050;
  --violet:  #6B4FA0;
  --violet-light: #9B7FCC;

  /* Rich dark palette */
  --bg:        #080608;
  --bg-card:   #0E0B0F;
  --bg-mid:    #0A0810;
  --surface:   #161020;
  --surface-2: #1E1628;

  --ink:     #F2EBE0;
  --ink-2:   #B8A898;
  --ink-3:   #756860;
  --border:  #231A28;
  --border-light: #332540;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --transition: .35s cubic-bezier(.25,.46,.45,.94);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Custom Cursor ─── */
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--peach);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1px solid rgba(232,114,74,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s, border-color .2s;
  opacity: .5;
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--rust) 0%, var(--peach) 45%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--rust) 0%, var(--peach) 60%, var(--amber) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500; font-size: .875rem;
  letter-spacing: .04em;
  padding: .65rem 1.6rem;
  border-radius: 4px;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(200,64,28,.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--ink-2);
  font-family: var(--font-body);
  font-weight: 400; font-size: 1rem;
  border: 1px solid var(--border-light);
  padding: .65rem 1.6rem;
  border-radius: 4px;
  transition: var(--transition);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--peach); color: var(--peach); transform: translateY(-2px); }

.btn-store {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--surface);
  color: var(--ink);
  padding: .85rem 1.8rem;
  border-radius: 10px;
  font-family: var(--font-body);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.btn-store:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(200,64,28,.22); border-color: var(--rust); }
.btn-store svg { flex-shrink: 0; }
.store-label { display: block; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; opacity: .5; }
.store-name { display: block; font-size: 1.1rem; font-weight: 500; line-height: 1.2; }

.btn-store--light {
  background: #fff; color: #111; border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.btn-store--light:hover { background: #f5f5f5; box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.btn-store--light .store-label { opacity: .45; }

/* ─── Section Labels ─── */
.section-label {
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--peach);
  font-weight: 400;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1.visible { transition-delay: .1s; }
.reveal--delay-2.visible { transition-delay: .2s; }
.reveal--delay-3.visible { transition-delay: .32s; }
.reveal--delay-4.visible { transition-delay: .44s; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(8,6,8,.9);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--ink);
}
.nav__logo-img { width: 30px; height: 30px; border-radius: 7px; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-family: var(--font-body); font-weight: 400; font-size: .85rem;
  letter-spacing: .04em;
  color: var(--ink-3);
  transition: color .25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--peach);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--ink); border-radius: 1px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform .45s var(--ease-bounce);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.1rem 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300; letter-spacing: .04em;
  color: var(--ink); transition: color .2s;
}
.mobile-menu a:hover { color: var(--peach); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
  gap: 5rem;
}

.hero__bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 72% 45%, rgba(200,64,28,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(107,79,160,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 45% 10%, rgba(240,160,80,.04) 0%, transparent 40%);
}
.hero__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .8; pointer-events: none;
}

/* Orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(200,64,28,.15) 0%, transparent 70%);
  top: -130px; right: -120px;
  animation: floatOrb 9s ease-in-out infinite;
}
.orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(107,79,160,.12) 0%, transparent 70%);
  bottom: -100px; left: 2%;
  animation: floatOrb 11s ease-in-out infinite reverse;
}
.orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(240,160,80,.06) 0%, transparent 70%);
  top: 35%; left: 38%;
  animation: floatOrb 13s ease-in-out infinite 2s;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(25px,-18px) scale(1.04); }
  66%  { transform: translate(-18px,20px) scale(.96); }
}

.hero__content { position: relative; z-index: 2; flex: 1; max-width: 580px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(200,64,28,.08);
  border: 1px solid rgba(200,64,28,.2);
  color: var(--peach);
  font-family: var(--font-mono); font-size: .66rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 2px;
  margin-bottom: 2.2rem;
}
.badge-dot {
  width: 5px; height: 5px;
  background: var(--rust); border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%  { opacity: .4; transform: scale(1.5); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.hero__headline .gradient-text { font-weight: 400; font-style: italic; }

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem; line-height: 1.8; font-weight: 300;
  color: var(--ink-3);
  margin-bottom: 2.6rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.2rem; }

.hero__stats {
  display: flex; align-items: center; gap: 2.4rem;
  padding: 1.4rem 2rem;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: fit-content;
}
.stat { text-align: center; }
.stat__top { display: flex; align-items: baseline; justify-content: center; gap: .1rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 400;
  letter-spacing: -.02em;
  color: var(--peach);
}
.stat__unit {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 300;
  color: var(--peach); opacity: .8;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: .6rem; font-weight: 400;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: .12em;
  margin-top: .2rem; display: block;
}
.stat__divider { width: 1px; height: 40px; background: var(--border-light); }

/* ─── Phone Mockup ─── */
.hero__phone {
  position: relative; flex-shrink: 0;
  width: 285px; align-self: center;
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(.3deg); }
  50%  { transform: translateY(-20px) rotate(-.3deg); }
}
.phone-frame {
  width: 285px; height: 590px;
  background: #07050A;
  border-radius: 44px;
  box-shadow:
    0 50px 120px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(255,255,255,.03);
  position: relative; overflow: hidden;
}
.phone-notch {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 76px; height: 22px;
  background: #000; border-radius: 20px; z-index: 10;
}
.phone-home-bar {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 76px; height: 4px;
  background: rgba(255,255,255,.12); border-radius: 4px; z-index: 10;
}
.phone-screen {
  position: absolute; inset: 0;
  overflow: hidden; border-radius: 44px;
}
.phone-glow {
  position: absolute; bottom: -70px; left: 50%; transform: translateX(-50%);
  width: 240px; height: 110px;
  background: radial-gradient(ellipse, rgba(200,64,28,.3) 0%, transparent 70%);
  filter: blur(28px);
}

/* ─── Carousel ─── */
.carousel { width: 100%; height: 100%; position: relative; overflow: hidden; }
.carousel__track {
  display: flex; width: 300%; height: 100%;
  transition: transform .6s cubic-bezier(.77,0,.175,1);
  will-change: transform;
}
.carousel__slide {
  width: calc(100% / 3); height: 100%; flex-shrink: 0; overflow: hidden;
}
.carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block; user-select: none; -webkit-user-drag: none;
}
.carousel__dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .3s, width .3s;
  cursor: pointer;
}
.dot.active { background: var(--peach); width: 18px; border-radius: 3px; }

/* ─── Scroll Hint ─── */
.hero__scroll-hint {
  position: absolute; bottom: 44px; left: 5%;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: .62rem; font-weight: 400;
  color: var(--ink-3); letter-spacing: .18em; text-transform: uppercase;
}
.scroll-line {
  width: 48px; height: 1px;
  background: var(--border-light);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--peach);
  transform: translateX(-100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-wrap {
  background: linear-gradient(135deg, #1A0A06 0%, #0C0618 50%, #0A0618 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 1rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 1.8rem;
  animation: marqueeScroll 24s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-mono); font-weight: 400;
  font-size: .7rem; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .2em;
}
.marquee-track .mx { color: var(--rust); font-size: .6rem; opacity: .7; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { padding: 130px 0; background: var(--bg); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  margin-bottom: 90px; align-items: start;
}
.about__right p {
  font-size: 1.02rem; line-height: 1.9; font-weight: 300;
  color: var(--ink-2); margin-bottom: 1.3rem;
}
.about__right strong { color: var(--peach); font-weight: 500; }
.about__quote {
  border-left: 1px solid var(--rust);
  padding-left: 1.4rem; margin-top: 1.8rem;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 300;
  letter-spacing: .02em; font-style: italic;
  color: var(--ink-2);
}

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 1.8rem 1.5rem;
  transition: var(--transition); cursor: default;
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(200,64,28,.1); border-color: rgba(200,64,28,.25); }
.pillar__icon { font-size: 1.6rem; margin-bottom: 1rem; }
.pillar h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.2rem;
  letter-spacing: .02em; color: var(--ink); margin-bottom: .6rem;
  font-style: italic;
}
.pillar p { font-size: .88rem; line-height: 1.75; font-weight: 300; color: var(--ink-3); }

/* ════════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
.features {
  padding: 130px 0;
  background: var(--bg-mid);
  position: relative; overflow: hidden;
}
.features__bg-accent {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 88% 12%, rgba(200,64,28,.14) 0%, transparent 44%),
    radial-gradient(ellipse at 8% 88%, rgba(107,79,160,.1) 0%, transparent 44%);
  pointer-events: none;
}
.features .section-title { margin-bottom: 3.5rem; }
.features__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

.feature-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 16px; padding: 2.6rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,64,28,.06) 0%, rgba(107,79,160,.03) 100%);
  opacity: 0; transition: opacity .35s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(200,64,28,.2); }
.feature-card:hover::before { opacity: 1; }

.feature-card__num {
  font-family: var(--font-mono); font-size: .65rem; font-weight: 400;
  letter-spacing: .18em; color: rgba(255,255,255,.14);
  margin-bottom: 1.3rem;
}
.feature-card__icon {
  color: var(--peach); margin-bottom: 1.3rem;
  width: 44px; height: 44px;
  background: rgba(232,114,74,.07); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  letter-spacing: .01em; font-style: italic;
  color: #fff; line-height: 1.15; margin-bottom: .8rem;
}
.feature-card p { font-size: .92rem; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,.4); }

/* ════════════════════════════════════════
   MISSION
════════════════════════════════════════ */
.mission { padding: 130px 0; background: var(--bg); }
.mission__inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 7rem; align-items: center;
}
.mission__left p {
  font-size: 1.02rem; line-height: 1.9; font-weight: 300;
  color: var(--ink-2); margin-bottom: 1.3rem; margin-top: 1.6rem;
}
.mission__right { display: flex; justify-content: center; }
.mission__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.6rem;
  width: 100%; max-width: 380px;
  box-shadow: 0 24px 64px rgba(200,64,28,.05);
}
.mission__logo-wrap { display: flex; justify-content: center; margin-bottom: 1.6rem; }
.mission__logo {
  width: 80px; height: 80px; border-radius: 20px;
  box-shadow: 0 14px 44px rgba(200,64,28,.28);
}
.mission__card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.3rem;
  letter-spacing: .04em; font-style: italic;
  text-align: center; margin-bottom: 1.6rem; color: var(--ink);
}
.promise-list { display: flex; flex-direction: column; gap: 1rem; }
.promise-list li {
  display: flex; align-items: center; gap: .85rem;
  font-size: .92rem; font-weight: 300; color: var(--ink-2);
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--peach));
  color: #fff; font-size: .68rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 600;
}

/* ════════════════════════════════════════
   PRIVACY SECTION
════════════════════════════════════════ */
.privacy-section {
  padding: 130px 0;
  background: var(--bg-mid);
  position: relative; overflow: hidden;
}
.privacy-section__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107,79,160,.12) 0%, transparent 55%);
  pointer-events: none;
}
.privacy-section__intro {
  text-align: center; font-size: 1rem; line-height: 1.75; font-weight: 300;
  color: rgba(255,255,255,.38); max-width: 500px; margin: 0 auto 3.5rem;
}
.privacy-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  margin-bottom: 3rem;
}
.privacy-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 14px; padding: 2.2rem;
  transition: var(--transition);
}
.privacy-card:hover { border-color: rgba(107,79,160,.3); transform: translateY(-3px); }
.privacy-card__icon { font-size: 1.6rem; margin-bottom: 1.1rem; }
.privacy-card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.25rem;
  font-style: italic; letter-spacing: .02em;
  color: #fff; margin-bottom: .75rem;
}
.privacy-card p { font-size: .9rem; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,.4); }
.privacy-card p em { color: var(--peach); font-style: normal; }

.privacy-cta {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.privacy-cta p {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.privacy-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .88rem;
  color: var(--peach);
  border-bottom: 1px solid rgba(232,114,74,.25);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.privacy-link:hover { color: #fff; border-color: rgba(255,255,255,.35); }

/* ════════════════════════════════════════
   DOWNLOAD
════════════════════════════════════════ */
.download {
  padding: 130px 0;
  background: #050307;
  position: relative; overflow: hidden;
  text-align: center;
}
.download__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.download__orb-left {
  position: absolute; width: 520px; height: 520px;
  border-radius: 50%; filter: blur(110px);
  background: rgba(200,64,28,.18); top: -120px; left: -120px;
}
.download__orb-right {
  position: absolute; width: 420px; height: 420px;
  border-radius: 50%; filter: blur(100px);
  background: rgba(107,79,160,.15); bottom: -90px; right: -90px;
}
.download__inner { position: relative; z-index: 2; }
.download__logo {
  width: 88px; height: 88px; border-radius: 22px;
  box-shadow: 0 22px 64px rgba(200,64,28,.4);
  margin: 0 auto 2.2rem;
}
.download__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 300; letter-spacing: -.02em;
  line-height: 1.0;
  color: #fff; margin-bottom: 1.3rem;
}
.download__sub {
  font-size: .98rem; line-height: 1.8; font-weight: 300;
  color: rgba(255,255,255,.38); margin-bottom: 2.6rem;
}
.download__actions { display: flex; justify-content: center; margin-bottom: 1.6rem; }
.download__note {
  font-family: var(--font-mono);
  font-size: .65rem; color: rgba(255,255,255,.22); letter-spacing: .12em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: #050307; padding: 0 0 3rem; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 3rem 0 2rem;
}
.footer__logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 400; font-size: 1.35rem;
  letter-spacing: .06em; color: rgba(255,255,255,.5);
}
.footer__logo img { width: 26px; height: 26px; border-radius: 6px; }
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__nav a {
  font-family: var(--font-body); font-size: .82rem; font-weight: 300;
  letter-spacing: .03em;
  color: rgba(255,255,255,.25); transition: color .2s;
}
.footer__nav a:hover { color: var(--peach); }
.footer__divider { height: 1px; background: var(--border); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
}
.footer__bottom p {
  font-family: var(--font-mono); font-size: .65rem;
  color: rgba(255,255,255,.18); letter-spacing: .06em;
}
.footer__tagline { font-style: italic; font-family: var(--font-display); font-size: .9rem !important; letter-spacing: .04em !important; color: rgba(255,255,255,.25) !important; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 130px; gap: 3rem; }
  .hero__content { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { margin: 0 auto; }
  .hero__scroll-hint { display: none; }
  .hero__phone { width: 250px; }
  .phone-frame { width: 250px; height: 520px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; }
  .mission__inner { grid-template-columns: 1fr; gap: 3rem; }
  .privacy-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .footer__top { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; padding: 1.1rem; gap: 1rem; }
  .stat__divider { display: none; }
  .mission__card { padding: 1.8rem 1.5rem; }
  .privacy-cards { grid-template-columns: 1fr; }
  .footer__nav { justify-content: center; gap: 1rem; }
}