/* ==========================================
   ROOT & RESET
   ========================================== */
:root {
  --teal: #2dd4bf;
  --yellow: #fbbf24;
  --blue: #3b82f6;
  --pink: #e91e63;
  --purple: #7c5cff;
  --magenta: #e84aa3;

  --ink: #0f1226;
  --ink-soft: #2a2d4a;
  --text: #4a4d6b;
  --muted: #8a8eaa;
  --line: #e6e8f0;

  --bg: #f4f5fb;
  --bg-soft: #ebedf6;
  --bg-card: #ffffff;
  --bg-elevated: #fafbff;

  --shadow-soft:
    20px 20px 40px rgba(174, 174, 192, 0.25),
    -20px -20px 40px rgba(255, 255, 255, 0.95);
  --shadow-pressed:
    inset 8px 8px 16px rgba(174, 174, 192, 0.18),
    inset -8px -8px 16px rgba(255, 255, 255, 0.9);
  --shadow-card:
    10px 10px 30px rgba(174, 174, 192, 0.22),
    -10px -10px 30px rgba(255, 255, 255, 0.85);
  --shadow-card-hover:
    16px 16px 40px rgba(174, 174, 192, 0.28),
    -16px -16px 40px rgba(255, 255, 255, 0.9);
  --shadow-dramatic: 0 30px 80px -20px rgba(15, 18, 38, 0.25);

  --gradient-primary: linear-gradient(135deg, #7c5cff 0%, #e84aa3 100%);
  --gradient-warm: linear-gradient(135deg, #fbbf24 0%, #e91e63 60%, #7c5cff 100%);
  --gradient-cool: linear-gradient(135deg, #2dd4bf 0%, #3b82f6 100%);
  --gradient-bg: linear-gradient(180deg, #f4f5fb 0%, #ebedf6 100%);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-pill: 999px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;

  --max: 1240px;
  --pad: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* Grain overlay (subtle texture) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: backdrop-filter 0.3s, background 0.3s, border-bottom-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 245, 251, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(15, 18, 38, 0.06);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand svg { width: 36px; height: 36px; }
.brand .dot { color: var(--pink); }

.nav-actions { display: flex; gap: 14px; align-items: center; }
.btn-ghost {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad) 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob-drift 20s ease-in-out infinite;
}
.blob-1 { background: var(--teal); width: 400px; height: 400px; top: -120px; left: -100px; }
.blob-2 { background: var(--yellow); width: 320px; height: 320px; top: 20%; left: 35%; opacity: 0.4; animation-delay: -5s; }
.blob-3 { background: var(--blue); width: 380px; height: 380px; bottom: 5%; left: 20%; opacity: 0.45; animation-delay: -10s; }
.blob-4 { background: var(--pink); width: 480px; height: 480px; bottom: -150px; right: -120px; opacity: 0.5; animation-delay: -15s; }

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144;
}
.hero h1 .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .dot { color: var(--pink); }

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 44px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  box-shadow: 0 8px 24px -4px rgba(15, 18, 38, 0.4);
}
.btn-store:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -4px rgba(15, 18, 38, 0.5); }
.btn-store .label { display: flex; flex-direction: column; line-height: 1; gap: 3px; text-align: left; }
.btn-store .small { font-size: 11px; opacity: 0.7; font-weight: 500; }
.btn-store .big { font-size: 16px; font-weight: 700; }
.btn-store svg { width: 26px; height: 26px; flex-shrink: 0; }

.btn-pill {
  padding: 14px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }

.hero-mockup-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stage {
  position: relative;
  perspective: 1500px;
}

.phone-floating {
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(2deg) translateY(-12px); }
}

.orbit-elem {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 5;
}
.orbit-elem .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.orbit-1 {
  top: 12%; left: -12%;
  animation: orbit-bob 5s ease-in-out infinite;
}
.orbit-2 {
  bottom: 18%; right: -15%;
  animation: orbit-bob 5s ease-in-out -2.5s infinite;
}
.orbit-3 {
  top: 50%; right: -8%;
  animation: orbit-bob 5s ease-in-out -1.2s infinite;
}
@keyframes orbit-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.orbit-1 .ico { background: rgba(45, 212, 191, 0.18); color: #0d9488; }
.orbit-2 .ico { background: rgba(233, 30, 99, 0.18); color: #be185d; }
.orbit-3 .ico { background: rgba(59, 130, 246, 0.18); color: #1d4ed8; }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
.scroll-indicator svg { width: 18px; height: 18px; }
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--pad);
  z-index: 2;
}

.container { max-width: var(--max); margin: 0 auto; }

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}
.eyebrow-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144;
  max-width: 16ch;
}
.section-title .it {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 19px;
  color: var(--text);
  max-width: 620px;
  line-height: 1.55;
}

/* ==========================================
   SECTION 2 — REAL
   ========================================== */
.real { background: var(--bg); }
.real-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.real-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.real-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  overflow: hidden;
}
.real-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.real-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.real-card:nth-child(1) { --accent: var(--teal); }
.real-card:nth-child(2) { --accent: var(--blue); }
.real-card:nth-child(3) { --accent: var(--yellow); }
.real-card:nth-child(4) { --accent: var(--pink); }

.real-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  box-shadow: var(--shadow-pressed);
}
.real-icon svg { width: 28px; height: 28px; }
.real-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.real-card p { font-size: 15px; color: var(--text); line-height: 1.55; }

/* ==========================================
   SECTION 3 — STEPS
   ========================================== */
.steps {
  background: var(--bg);
  position: relative;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px; left: 16%; right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--purple) 0, var(--purple) 6px, transparent 6px, transparent 14px);
  opacity: 0.3;
  z-index: 0;
}
.step-card {
  position: relative;
  padding: 44px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 12px 28px -8px rgba(124, 92, 255, 0.5);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.step-card p { font-size: 15px; color: var(--text); }
.step-illust {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================
   SECTION 4 — WATCH
   ========================================== */
.watch {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  margin: 0 var(--pad);
  padding: clamp(80px, 9vw, 130px) clamp(40px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.watch::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.watch-text { position: relative; z-index: 1; }
.watch .eyebrow-tag { color: var(--magenta); }
.watch .eyebrow-tag::before { background: var(--magenta); }
.watch-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.watch-text h2 .it { font-style: italic; color: var(--magenta); }
.watch-text p { color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.6; margin-bottom: 32px; }

.watch-features { display: flex; flex-direction: column; gap: 14px; }
.watch-feat {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.watch-feat .check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.2);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.watch-feat svg { width: 14px; height: 14px; }

.camera-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 50%, #2d3748 100%);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-dramatic);
  border: 1px solid rgba(255,255,255,0.1);
}
.camera-scene {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #4a5568 0%, #2d3748 60%, #1a202c 100%);
}

.bldg {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
  border-radius: 4px 4px 0 0;
}
.bldg::before {
  content: '';
  position: absolute;
  inset: 8px;
  background-image:
    linear-gradient(90deg, rgba(255, 200, 100, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 200, 100, 0.3) 50%, rgba(255, 200, 100, 0.3) 75%, transparent 75%);
  background-size: 14px 14px;
  border-radius: 2px;
  opacity: 0.8;
}
.bldg-1 { left: 10%; width: 18%; height: 65%; }
.bldg-2 { left: 32%; width: 22%; height: 78%; background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%); }
.bldg-3 { left: 58%; width: 16%; height: 55%; }
.bldg-4 { left: 78%; width: 14%; height: 70%; background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%); }

.crane {
  position: absolute;
  top: 8%;
  left: 45%;
  width: 3px;
  height: 50%;
  background: #1a202c;
}
.crane::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 90px;
  height: 3px;
  background: #1a202c;
}
.crane::after {
  content: '';
  position: absolute;
  top: 14px;
  left: -32px;
  width: 1px;
  height: 22px;
  background: #1a202c;
}

.live-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  z-index: 3;
}
.live-badge .live-dot {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.camera-info {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  z-index: 3;
  font-size: 12px;
}
.camera-info .name { color: white; font-weight: 600; }
.camera-info .time { color: rgba(255,255,255,0.6); font-family: monospace; }

.camera-overlay-grain {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
  z-index: 2;
  pointer-events: none;
}

/* ==========================================
   SECTION 5 — REAL m2
   ========================================== */
.realm2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.realm2 .text { order: 1; }
.realm2 .visual { order: 2; }

.realm2 .feat-list {
  list-style: none;
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.realm2 .feat-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px;
  color: var(--text);
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.realm2 .feat-list li strong { color: var(--ink); }
.realm2 .feat-list .num {
  width: 32px; height: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.bldg-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fef3c7 0%, #fde68a 30%, #ddd6fe 100%);
  overflow: hidden;
  box-shadow: var(--shadow-dramatic);
  padding: 60px 40px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.iso-bldg {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  filter: drop-shadow(0 30px 50px rgba(15, 18, 38, 0.25));
}

.m2-badge {
  position: absolute;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px -6px rgba(15, 18, 38, 0.2);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  animation: m2-float 4s ease-in-out infinite;
}
.m2-badge::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
}
.m2-badge.b1 { top: 18%; left: 8%; animation-delay: 0s; }
.m2-badge.b1::before { background: var(--teal); }
.m2-badge.b2 { top: 50%; right: 6%; animation-delay: -1.3s; }
.m2-badge.b2::before { background: var(--pink); }
.m2-badge.b3 { bottom: 12%; left: 12%; animation-delay: -2.6s; }
.m2-badge.b3::before { background: var(--blue); }
@keyframes m2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================
   SECTION 6 — MOVE
   ========================================== */
.move { background: var(--bg); }
.move-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.move-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.move-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: var(--shadow-card-hover); }
.move-card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--bg-soft);
  line-height: 1;
  z-index: 0;
}
.move-card .ico {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: var(--accent-bg);
  color: var(--accent);
}
.move-card:nth-child(1) { --accent: #0d9488; --accent-bg: rgba(45, 212, 191, 0.12); }
.move-card:nth-child(2) { --accent: #be185d; --accent-bg: rgba(233, 30, 99, 0.12); }
.move-card:nth-child(3) { --accent: #1d4ed8; --accent-bg: rgba(59, 130, 246, 0.12); }
.move-card:nth-child(4) { --accent: #b45309; --accent-bg: rgba(251, 191, 36, 0.18); }
.move-card .ico svg { width: 26px; height: 26px; }
.move-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.move-card p { font-size: 15px; color: var(--text); position: relative; z-index: 1; }

/* ==========================================
   SECTION 7 — TRUST
   ========================================== */
.trust { background: var(--bg); }
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.trust-item { text-align: center; }
.trust-item .ico-big {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.trust-item .ico-big::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  opacity: 0.3;
}
.trust-item:nth-child(1) { --accent: var(--teal); }
.trust-item:nth-child(2) { --accent: var(--pink); }
.trust-item:nth-child(3) { --accent: var(--blue); }
.trust-item:nth-child(4) { --accent: var(--yellow); }
.trust-item .ico-big svg { width: 36px; height: 36px; color: var(--accent); }
.trust-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.trust-item p { font-size: 15px; color: var(--text); max-width: 24ch; margin: 0 auto; }

/* ==========================================
   SECTION 8 — TIMELINE
   ========================================== */
.timeline { background: var(--bg); }
.timeline-track {
  position: relative;
  margin-top: 80px;
  padding: 80px 0 40px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 5%; right: 5%;
  top: 50%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--pink), var(--purple));
  border-radius: 2px;
  z-index: 0;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  counter-reset: tl;
}
.tl-step { position: relative; text-align: center; padding: 0 12px; }
.tl-dot {
  width: 56px; height: 56px;
  margin: 0 auto 32px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 4px solid var(--bg);
  color: var(--accent);
}
.tl-dot::before {
  content: counter(tl);
  counter-increment: tl;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.tl-step:nth-child(1) { --accent: var(--teal); }
.tl-step:nth-child(2) { --accent: var(--blue); }
.tl-step:nth-child(3) { --accent: var(--pink); }
.tl-step:nth-child(4) { --accent: var(--purple); }
.tl-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.tl-step p { font-size: 14px; color: var(--text); }

.timeline-note {
  margin-top: 60px;
  padding: 28px 36px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  font-size: 16px;
  color: var(--text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.timeline-note strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; }

/* ==========================================
   SECTION 9 — FAQ
   ========================================== */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}
.faq-side .section-title { margin-bottom: 24px; }
.faq-side .section-sub { font-size: 16px; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--shadow-card-hover); }
.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  cursor: pointer;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s, background 0.3s;
  color: var(--ink-soft);
}
.faq-item.open .faq-toggle {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(45deg);
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 28px 24px;
}
.faq-a p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

/* ==========================================
   SECTION 10 — DOWNLOAD
   ========================================== */
.download {
  margin: 0 var(--pad);
  padding: clamp(80px, 9vw, 130px) clamp(40px, 8vw, 100px);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  border-radius: 50%;
}
.download::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.2), transparent 70%);
  border-radius: 50%;
}
.download-text { position: relative; z-index: 1; }
.download h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144;
}
.download h2 .it { font-style: italic; opacity: 0.9; }
.download p { font-size: 18px; opacity: 0.85; margin-bottom: 32px; line-height: 1.5; max-width: 460px; }

.download-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.download .btn-store { background: var(--ink); }

.qr-row { display: flex; align-items: center; gap: 18px; }
.qr-box {
  width: 110px; height: 110px;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.2);
}
.qr-box svg { width: 100%; height: 100%; }
.qr-text {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 500;
  max-width: 200px;
  line-height: 1.45;
}

.download-mockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   SECTION 11 — FORM
   ========================================== */
.form-section { background: var(--bg); }
.form-card {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 56px clamp(28px, 5vw, 72px);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 14px;
}
.form-card .lead { text-align: center; color: var(--text); margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { position: relative; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 22px 22px 14px;
  background: var(--bg-soft);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: all 0.25s;
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: 28px;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
}
.form-field label {
  position: absolute;
  top: 18px; left: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.25s;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 8px; font-size: 11px;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.form-field.error input,
.form-field.error textarea {
  border-color: var(--pink);
  background: rgba(233, 30, 99, 0.04);
}
.field-error {
  display: block;
  margin-top: 6px;
  margin-left: 6px;
  font-size: 12px;
  color: var(--pink);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 14px 30px -10px rgba(124, 92, 255, 0.5);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(124, 92, 255, 0.6); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-submit .loader {
  display: none;
  width: 16px; height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
  animation: spin 0.8s linear infinite;
}
.form-submit.is-loading .loader { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.form-result {
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 600;
  display: none;
}
.form-result.show { display: block; }
.form-result.success {
  background: rgba(45, 212, 191, 0.12);
  color: #0f766e;
  border: 1px solid rgba(45, 212, 191, 0.3);
}
.form-result.error {
  background: rgba(233, 30, 99, 0.08);
  color: #be185d;
  border: 1px solid rgba(233, 30, 99, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px var(--pad) 40px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.footer-brand .dot { color: var(--pink); }
.footer-tag { font-size: 14px; max-width: 320px; line-height: 1.55; }
.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: var(--max);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; min-height: auto; }
  .hero-mockup-wrap { order: -1; }
  .real-grid, .move-grid, .trust-list { grid-template-columns: repeat(2, 1fr); }
  .real-head { grid-template-columns: 1fr; gap: 28px; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 24px; }
  .timeline-track::before { display: none; }
  .watch { grid-template-columns: 1fr; gap: 50px; margin: 0 16px; }
  .download { grid-template-columns: 1fr; gap: 50px; margin: 0 16px; }
  .realm2 { grid-template-columns: 1fr; gap: 50px; }
  .realm2 .visual { order: -1; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .hero { padding: 110px 20px 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-store, .btn-pill { justify-content: center; }
  .real-grid, .move-grid, .trust-list { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .steps-grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .orbit-elem { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
