/* ==========================================================================
   DJO EDGE — Luxe edition
   Coherent with DJO Assist (near-black canvas, MuseoModerno + DM Sans,
   pill language) but with a refined AZURE accent that matches the hardware.
   Calm, editorial, Apple-grade restraint. No neon. No slop.
   ========================================================================== */

:root {
  /* Canvas — cool near-black, shared lineage with DJO Assist (#050505) */
  --bg:            #050608;
  --bg-2:          #0a0c10;
  --bg-raise:      #0f1217;
  --ink:           #f5f7fa;
  --ink-soft:      #b7bfca;
  --ink-mute:      #7c8593;
  --ink-faint:     #4b5360;
  --line:          rgba(255, 255, 255, 0.08);
  --line-soft:     rgba(255, 255, 255, 0.045);

  /* Royal Blue — official DJO brand color #4169E1; Edge's signature accent */
  --azure:         #4169e1;
  --azure-bright:  #7d97f0;
  --azure-deep:    #2c3f9e;
  --azure-ink:     #16215c;
  --azure-glow:    rgba(65, 105, 225, 0.22);

  /* Rose — official soft pink #fff2f5 + pink-red flourish */
  --rose:          #fff2f5;
  --rose-red:      #ff3e6c;
  --rose-glow:     rgba(255, 62, 108, 0.16);

  --coral:         #ff3e6c; /* brand flourish */

  --font-display: 'MuseoModerno', system-ui, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body.edge-lux {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

::selection { background: var(--azure); color: #ffffff; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1400px; }

/* Ambient — a single, very faint azure field. Restraint over fireworks. */
.amb {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.amb::before {
  content: ""; position: absolute; top: -28vh; left: 50%; transform: translateX(-50%);
  width: 90vw; height: 80vh;
  background: radial-gradient(ellipse at center, var(--azure-glow), transparent 62%);
  opacity: 0.55; filter: blur(20px);
}
.amb::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
}

/* Fine grain to kill banding and add tactility */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

main, header, footer { position: relative; z-index: 2; }

/* ==========================================================================
   Typography primitives
   ========================================================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--azure); display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--azure); opacity: 0.6;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 22px; height: 1px; background: var(--azure); opacity: 0.6;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.035em; line-height: 1.0; }

.display {
  font-size: clamp(2.9rem, 7.2vw, 6.4rem);
  line-height: 0.96; letter-spacing: -0.045em;
}
.h-section {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.0; letter-spacing: -0.04em;
}
.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.62; color: var(--ink-soft); font-weight: 400; letter-spacing: -0.01em;
}
.muted { color: var(--ink-mute); }
.az { color: var(--azure); }
.tnum { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-body); font-size: 0.96rem; font-weight: 600; letter-spacing: -0.01em;
  padding: 0.92em 1.7em; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.4s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.btn-primary {
  background: var(--azure); color: #ffffff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 34px -12px var(--azure-glow);
}
.btn-primary:hover { background: var(--azure-bright); transform: translateY(-2px); box-shadow: 0 16px 44px -14px var(--azure-glow); }
.btn-primary:hover svg { transform: translate(3px, -3px); }
.btn-ghost {
  background: rgba(255,255,255,0.03); color: var(--ink); border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn .price { color: inherit; opacity: 0.6; font-variant-numeric: tabular-nums; padding-left: 0.2em; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s, backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 6, 8, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px; height: 74px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.04em; }
.brand-word b { font-weight: 800; }
.brand-word span { color: var(--azure); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); letter-spacing: -0.01em;
  transition: color 0.25s; position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.assist-link { display: inline-flex; align-items: center; gap: 0.45em; }
.assist-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--azure); box-shadow: 0 0 10px var(--azure); }
.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-cta .btn { padding: 0.62em 1.25em; font-size: 0.88rem; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: 184px 0 60px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 3rem; align-items: center; }

.hero-badges { display: flex; gap: 0.6rem; margin-bottom: 2rem; flex-wrap: wrap; }
.pill {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.5em 0.95em; border-radius: 100px; border: 1px solid var(--line);
  color: var(--ink-soft); background: rgba(255,255,255,0.025); display: inline-flex; align-items: center; gap: 0.5em;
}
.pill.live { color: #ffd2dd; border-color: rgba(255,62,108,0.32); background: rgba(255,62,108,0.1); }
.pill.live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--rose-red);
  box-shadow: 0 0 0 0 var(--rose-glow); animation: ping 2.2s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255,62,108,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255,62,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,62,108,0); }
}

.hero h1 { margin-bottom: 1.7rem; }
.hero h1 .line { display: block; }
.hero .lede { max-width: 30ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.hero-meta { display: flex; gap: 2.4rem; flex-wrap: wrap; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero-meta .m-val { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -0.04em; }
.hero-meta .m-val small { font-size: 0.82rem; color: var(--azure); font-weight: 700; }
.hero-meta .m-lab { font-size: 0.78rem; color: var(--ink-mute); letter-spacing: 0.02em; margin-top: 0.15rem; }

/* Hero product stage */
.hero-stage { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-stage .halo {
  position: absolute; width: 96%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--azure-glow), transparent 60%);
  filter: blur(30px); opacity: 0.9;
}
.hero-stage .ring {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--line); opacity: 0.7;
}
.hero-stage .ring.r2 { width: 100%; opacity: 0.35; }
.hero-device {
  position: relative; width: 100%; max-width: 540px;
  filter: drop-shadow(0 50px 60px rgba(0,0,0,0.65)) drop-shadow(0 0 50px rgba(65,105,225,0.16));
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-device .reflection {
  position: absolute; left: 8%; right: 8%; bottom: -3%; height: 16%;
  background: var(--azure); filter: blur(26px); opacity: 0.16; border-radius: 50%;
}

.hero-tag {
  position: absolute; padding: 0.7rem 0.95rem; border-radius: 12px;
  background: rgba(12,15,20,0.72); border: 1px solid var(--line); backdrop-filter: blur(14px);
  display: flex; align-items: center; gap: 0.65rem; font-size: 0.8rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8);
}
.hero-tag i { color: var(--azure); }
.hero-tag b { font-weight: 700; letter-spacing: -0.01em; }
.hero-tag span { color: var(--ink-mute); font-size: 0.72rem; display: block; }
.hero-tag.t1 { top: 14%; right: -2%; animation: float 7s ease-in-out infinite 0.6s; }
.hero-tag.t2 { bottom: 16%; left: -4%; animation: float 7s ease-in-out infinite 1.2s; }

/* ==========================================================================
   Marquee / kinetic statement strip
   ========================================================================== */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; margin-top: 40px; }
.strip-track { display: flex; gap: 3.5rem; width: max-content; animation: slide 38s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-item {
  font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; letter-spacing: -0.03em;
  color: var(--ink-mute); display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap;
}
.strip-item b { color: var(--ink); font-weight: 800; }
.strip-item::after { content: "✺"; color: var(--rose-red); font-size: 0.9rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Section scaffold
   ========================================================================== */
.section { padding: 130px 0; position: relative; }
.section.tight { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 4.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head h2 { margin-bottom: 1.4rem; }

/* ==========================================================================
   Manifesto — full-bleed quiet statement
   ========================================================================== */
.manifesto { padding: 150px 0; text-align: center; }
.manifesto .big {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.045em; line-height: 1.04;
  font-size: clamp(2.1rem, 5.4vw, 4.6rem); max-width: 16ch; margin: 0 auto;
}
.manifesto .big .dim { color: var(--ink-faint); }
.manifesto .big .az { color: var(--azure); }
.manifesto p { margin-top: 2rem; max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Pillars — the three (sovereignty / privacy / offline) + bonus
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pillar {
  position: relative; padding: 38px 36px 42px; border-radius: 20px;
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden; transition: border-color 0.5s var(--ease), transform 0.6s var(--ease);
}
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(65,105,225,0.5), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.pillar:hover { border-color: rgba(65,105,225,0.28); transform: translateY(-4px); }
.pillar:hover::before { opacity: 1; }
.pillar-ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(65,105,225,0.1); border: 1px solid rgba(65,105,225,0.22); color: var(--azure);
  font-size: 1.2rem; margin-bottom: 24px;
}
.pillar h3 { font-size: 1.5rem; letter-spacing: -0.035em; margin-bottom: 0.7rem; }
.pillar p { color: var(--ink-soft); font-size: 1.0rem; line-height: 1.62; }
.pillar .pn {
  position: absolute; top: 30px; right: 34px; font-family: var(--font-display); font-weight: 800;
  font-size: 0.95rem; color: var(--ink-faint); letter-spacing: 0;
}

/* ==========================================================================
   Editorial — full-bleed photo rows
   ========================================================================== */
.editorial { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; }
.editorial img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.editorial .scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,6,8,0.55) 0%, rgba(5,6,8,0.1) 40%, rgba(5,6,8,0.82) 100%);
}
.editorial .scrim.left {
  background: linear-gradient(90deg, rgba(5,6,8,0.88) 0%, rgba(5,6,8,0.4) 45%, rgba(5,6,8,0.08) 100%),
             linear-gradient(180deg, transparent 50%, rgba(5,6,8,0.6) 100%);
}
.editorial .ed-content { position: relative; z-index: 2; padding: 0 0 90px; max-width: 620px; }
.editorial .ed-content .eyebrow { margin-bottom: 1.3rem; }
.editorial .ed-content h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); margin-bottom: 1.3rem; }
.editorial .ed-content p { max-width: 48ch; }

/* ==========================================================================
   Privacy — "nothing in, nothing out" diagram
   ========================================================================== */
.privacy { background: var(--bg); position: relative; }
.privacy-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 5rem; align-items: center; }
.flow-list { margin-top: 2.6rem; display: flex; flex-direction: column; gap: 0; }
.flow-item { display: flex; gap: 1.2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.flow-item:last-child { border-bottom: 1px solid var(--line); }
.flow-item .fi-n { font-family: var(--font-display); font-weight: 800; color: var(--azure); font-size: 1.0rem; width: 2.4rem; flex-shrink: 0; }
.flow-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.flow-item p { color: var(--ink-mute); font-size: 0.95rem; }

/* Orbit diagram */
.orbit { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.orbit .o-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--line);
}
.orbit .o-ring.a { width: 100%; height: 100%; }
.orbit .o-ring.b { width: 70%; height: 70%; border-color: rgba(65,105,225,0.18); }
.orbit .o-ring.c { width: 42%; height: 42%; border-color: rgba(65,105,225,0.3); }
.orbit .o-core {
  width: 40%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 0 64px -6px var(--azure-glow); position: relative;
}
.orbit .o-core .o-emblem { width: 100%; height: 100%; border-radius: 50%; object-fit: contain; }
.orbit .o-label {
  position: absolute; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); background: var(--bg); padding: 0.3em 0.7em; border: 1px solid var(--line); border-radius: 100px;
}
.orbit .o-label.top { top: -2%; }
.orbit .o-label.bottom { bottom: -2%; color: var(--azure-bright); border-color: rgba(65,105,225,0.3); }
.orbit .spin { position: absolute; width: 70%; height: 70%; animation: rot 16s linear infinite; }
.orbit .spin .dot {
  position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--azure); box-shadow: 0 0 14px var(--azure); transform: translateY(-50%);
}
.orbit .spin.s2 { width: 42%; height: 42%; animation-duration: 10s; animation-direction: reverse; }
@keyframes rot { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ==========================================================================
   Specs table
   ========================================================================== */
.specs { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.spec-cell {
  padding: 38px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.spec-cell:hover { background: rgba(65,105,225,0.04); }
.spec-cell .sv {
  font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; letter-spacing: -0.045em;
  margin-bottom: 0.45rem; line-height: 1;
}
.spec-cell .sv small { font-size: 0.95rem; color: var(--azure); }
.spec-cell .sl { font-size: 0.82rem; color: var(--ink-mute); letter-spacing: 0.02em; }

/* ==========================================================================
   Ecosystem — Edge + Assist
   ========================================================================== */
.eco-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2.5rem; align-items: stretch; }
.eco-card {
  padding: 40px 38px; border-radius: 22px; border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg)); position: relative; overflow: hidden;
}
.eco-card .eco-kicker { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.5rem; }
.eco-card h3 { font-size: 1.7rem; margin-bottom: 0.8rem; letter-spacing: -0.035em; }
.eco-card.edge { border-color: rgba(65,105,225,0.3); }
.eco-card.edge .eco-kicker { color: var(--azure); }
.eco-card p { color: var(--ink-soft); font-size: 0.98rem; }
.eco-card .eco-emblem { width: 44px; margin-bottom: 1.8rem; }
.eco-card ul { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.85rem; }
.eco-card li { display: flex; gap: 0.7rem; font-size: 0.95rem; color: var(--ink-soft); align-items: flex-start; }
.eco-card li i { color: var(--azure); font-size: 0.8rem; margin-top: 0.35rem; }
.eco-bridge { display: grid; place-items: center; }
.eco-bridge .eb-line {
  width: 1px; flex: 1; background: linear-gradient(var(--azure), transparent);
}
.eco-bridge .eb-node {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(65,105,225,0.3); background: rgba(65,105,225,0.08); color: var(--azure);
  font-size: 1.1rem;
}

/* ==========================================================================
   Reserve / pricing
   ========================================================================== */
.reserve { position: relative; }
.reserve-card {
  max-width: 920px; margin: 0 auto; border-radius: 28px; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-raise), var(--bg)); overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
}
.reserve-card::before {
  content: ""; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure), transparent);
}
.reserve-left { padding: 52px 48px; }
.reserve-left h3 { font-size: 1.9rem; letter-spacing: -0.035em; margin-bottom: 0.6rem; }
.reserve-left .r-sub { color: var(--ink-mute); margin-bottom: 2rem; font-size: 0.98rem; }
.reserve-feats { list-style: none; display: flex; flex-direction: column; gap: 0.95rem; }
.reserve-feats li { display: flex; gap: 0.75rem; font-size: 0.97rem; color: var(--ink-soft); align-items: flex-start; }
.reserve-feats i { color: var(--azure); font-size: 0.82rem; margin-top: 0.32rem; }
.reserve-right {
  padding: 52px 48px; border-left: 1px solid var(--line); background: rgba(255,255,255,0.012);
  display: flex; flex-direction: column; justify-content: center;
}
.reserve-right .r-strike { color: var(--ink-faint); text-decoration: line-through; font-size: 1.05rem; }
.reserve-right .r-price { font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; letter-spacing: -0.05em; line-height: 1; margin: 0.3rem 0; }
.reserve-right .r-price span { font-size: 1.3rem; color: var(--ink-mute); }
.reserve-right .r-save {
  display: inline-block; align-self: flex-start; font-size: 0.78rem; font-weight: 600; color: #ffd2dd;
  background: rgba(255,62,108,0.1); border: 1px solid rgba(255,62,108,0.28); padding: 0.35em 0.8em; border-radius: 100px; margin-bottom: 1.8rem;
}
.reserve-right .btn { width: 100%; margin-bottom: 1rem; }
.reserve-right .r-note { font-size: 0.8rem; color: var(--ink-mute); display: flex; gap: 0.5em; align-items: center; justify-content: center; }
.reserve-right .r-note i { color: var(--azure); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding: 80px 0 44px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .brand { margin-bottom: 1.4rem; }
.footer-brand p { color: var(--ink-mute); font-size: 0.92rem; max-width: 30ch; line-height: 1.6; }
.footer-soc { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.footer-soc a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--ink-mute); transition: 0.3s;
}
.footer-soc a:hover { color: var(--azure); border-color: rgba(65,105,225,0.4); transform: translateY(-2px); }
.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col a { font-size: 0.92rem; color: var(--ink-soft); transition: color 0.25s; }
.footer-col a:hover { color: var(--azure); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-mute);
}
.footer-bottom .coral { color: var(--coral); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal.in { opacity: 1; transform: none; }
/* Hidden state only applies when JS is alive to reveal it — content can never get stuck invisible */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-device, .hero-tag, .strip-track, .orbit .spin, .pill.live::before { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-stage { order: -1; max-width: 440px; margin: 0 auto; }
  .hero .lede { max-width: 46ch; }
  .privacy-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .orbit { max-width: 360px; margin: 0 auto; width: 100%; }
  .eco-grid { grid-template-columns: 1fr; }
  .eco-bridge { transform: rotate(90deg); height: 60px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve-card { grid-template-columns: 1fr; }
  .reserve-right { border-left: none; border-top: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 1.4rem; padding: 28px 32px; background: rgba(5,6,8,0.96);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--line);
  }
  .pillars { grid-template-columns: 1fr; }
  .section { padding: 92px 0; }
  .manifesto { padding: 100px 0; }
  .hero-meta { gap: 1.6rem; }
  .hero-tag { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .spec-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .reserve-left, .reserve-right { padding: 38px 30px; }
  .editorial .ed-content { padding-bottom: 60px; }
  .hero-meta .m-val { font-size: 1.3rem; }
}

/* Language Selector Dropdown */
.lang-selector-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.lang-selected-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
}

.lang-selected-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.lang-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
}

.lang-selected-btn .dropdown-chevron {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.7;
}

.lang-selector-dropdown.active .lang-selected-btn .dropdown-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(10px);
  width: 140px;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(65, 105, 225, 0.02);
  z-index: 155;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lang-selector-dropdown.active .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(6px);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.lang-option.active {
  background: rgba(65, 105, 225, 0.12);
  color: var(--azure-bright);
}

.lang-flag-opt {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
