/* ── Reset & base ─────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #020C18;
  --bg-inner:      #040F1D;
  --bg-card:       #061422;
  --blue:          #4A8FFF;
  --blue-bright:   #6AABFF;
  --blue-glass:    rgba(50, 110, 225, 0.55);
  --blue-border:   rgba(120, 185, 255, 0.42);
  --blue-muted:    #7FB8FF;
  --blue-dim:      rgba(127, 184, 255, 0.55);
  --white:         #FFFFFF;
  --white-80:      rgba(255, 255, 255, 0.80);
  --white-55:      rgba(255, 255, 255, 0.55);
  --white-30:      rgba(255, 255, 255, 0.30);
  --white-10:      rgba(255, 255, 255, 0.10);
  --white-06:      rgba(255, 255, 255, 0.06);
  --white-04:      rgba(255, 255, 255, 0.04);
  --glow:          rgba(30, 80, 200, 0.4);
  --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Ambient glow ─────────────────────────────────────────────────────────── */

#glow-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

nav, section, footer, .proof-strip { position: relative; z-index: 1; }


/* ── Nav ──────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 48px;
  background: rgba(2, 12, 24, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(2, 12, 24, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;
}

.nav-logo-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-55);
}

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 10px;
  background: var(--blue-glass);
  border: 1px solid var(--blue-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 4px 16px rgba(30, 80, 200, 0.3);
  transition: background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), transform 0.16s var(--ease-out);
}
.nav-cta:hover {
  background: rgba(60, 130, 240, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 24px rgba(30, 80, 200, 0.45);
}
.nav-cta:active {
  transform: scale(0.97);
}

/* ── Shared ───────────────────────────────────────────────────────────────── */

.section { padding: 110px 48px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-muted);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 60px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 12px;
  background: var(--blue-glass);
  border: 1px solid var(--blue-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 8px 28px rgba(30, 80, 200, 0.35);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.16s var(--ease-out);
}
.btn-primary:hover {
  background: rgba(60, 130, 240, 0.75);
  border-color: rgba(140, 200, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 12px 36px rgba(30, 80, 200, 0.55);
}
.btn-primary:active {
  transform: scale(0.97);
}
.btn-large { padding: 17px 38px; font-size: 14px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  min-height: calc(100vh - 62px);
  padding: 80px 48px 100px;
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-inner { flex: 1; max-width: 500px; }

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-muted);
  background: rgba(50, 110, 225, 0.14);
  border: 1px solid rgba(120, 185, 255, 0.22);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 440px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #9ECFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-req {
  font-size: 12px;
  color: var(--white-30);
  letter-spacing: 0.02em;
}

/* ── App mockup ───────────────────────────────────────────────────────────── */

.hero-mockup {
  flex: 1;
  max-width: 460px;
  animation: float 4.5s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-mockup { animation: none; }
}

.mockup-window {
  width: 100%;
  border-radius: 14px;
  background: #040F1D;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 140px rgba(30, 80, 200, 0.14);
  overflow: hidden;
}

.mockup-titlebar {
  height: 44px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.mockup-dots { display: flex; gap: 6px; }

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green  { background: #28C840; }

.mockup-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: rgba(80, 128, 192, 0.7);
}

.mockup-body {
  padding: 26px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.mockup-card {
  border-radius: 14px;
  background: rgba(50, 110, 225, 0.16);
  border: 1px solid rgba(120, 185, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 24px rgba(30,80,200,0.16);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mockup-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--white);
}

.mockup-card-desc {
  font-size: 11px;
  color: var(--blue-muted);
  line-height: 1.55;
}

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

.mockup-streak-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.mockup-streak-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.mockup-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mockup-thumb {
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.mockup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Video section ────────────────────────────────────────────────────────── */

.video-section {
  padding: 0 48px 80px;
}

.video-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(30, 80, 200, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(30, 80, 200, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.video-placeholder:hover {
  border-color: rgba(127, 184, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(30, 80, 200, 0.18);
}

.video-placeholder:hover .video-play-btn {
  background: rgba(60, 130, 240, 0.8);
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(30, 80, 200, 0.5);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(50, 110, 225, 0.65);
  border: 1px solid rgba(120, 185, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(30, 80, 200, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  padding-left: 4px; /* optical center for play triangle */
}

.video-placeholder-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-30);
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .video-section { padding: 0 28px 64px; }
}


/* ── Testimonial strip ────────────────────────────────────────────────────── */

.testimonial-strip {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.018);
  padding: 28px 48px;
}

.testimonial-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.testimonial {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(50,110,225,0.2);
  border: 1px solid rgba(120,185,255,0.2);
  overflow: hidden;
}

.testimonial-avatar--1 { background: linear-gradient(135deg, #2a4a8a, #1a2a5a); }
.testimonial-avatar--2 { background: linear-gradient(135deg, #3a5a2a, #1a3a1a); }
.testimonial-avatar--3 { background: linear-gradient(135deg, #5a2a4a, #3a1a2a); }

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-quote {
  font-size: 12px;
  color: var(--white-80);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-name {
  font-size: 11px;
  color: var(--white-30);
  letter-spacing: 0.02em;
}

.testimonial-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .testimonial-strip { padding: 28px; }
  .testimonial-strip-inner { flex-direction: column; gap: 24px; }
  .testimonial-divider { width: 100%; height: 1px; }
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.faq-section { padding: 48px 48px 100px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-muted);
  opacity: 0.6;
  margin-bottom: 12px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-q span {
  font-size: 13px;
  font-weight: 500;
  color: var(--white-80);
  line-height: 1.4;
}

.faq-q:hover span { color: var(--white); }

.faq-chevron {
  color: rgba(127,184,255,0.4);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  font-size: 12px;
  color: var(--blue-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  /* Closing: fast ease-in */
  transition: max-height 0.18s cubic-bezier(0.4, 0, 1, 1), padding 0.18s cubic-bezier(0.4, 0, 1, 1);
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 14px;
  /* Opening: ease-out — starts fast, settles naturally */
  transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}

@media (max-width: 960px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 80px 28px; }
}

/* ── Steps ────────────────────────────────────────────────────────────────── */

.steps-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.steps {
  display: flex;
  align-items: flex-start;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step-connector {
  width: 64px;
  flex-shrink: 0;
  height: 1px;
  align-self: center;
  margin-top: -52px;
  background: linear-gradient(90deg,
    rgba(127,184,255,0.15),
    rgba(127,184,255,0.4),
    rgba(127,184,255,0.15)
  );
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue-muted);
  opacity: 0.45;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(50, 110, 225, 0.1);
  border: 1px solid rgba(127, 184, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(30,80,200,0.18);
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 220px;
}

/* ── Feature showcase ─────────────────────────────────────────────────────── */

.showcase-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.showcase-row:last-child { margin-bottom: 0; }

.showcase-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.showcase-card:hover {
  border-color: rgba(127,184,255,0.22);
  box-shadow: 0 0 0 1px rgba(106,171,255,0.06), 0 8px 32px rgba(30,80,200,0.14);
  transform: translateY(-2px);
}

.showcase-card--large {
  flex: 1.5;
}

.showcase-card--video {
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}

.showcase-video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s;
}

.showcase-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(30, 80, 200, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-card--video:hover .video-play-btn--sm {
  background: rgba(60, 130, 240, 0.8);
  transform: scale(1.08);
  box-shadow: 0 0 36px rgba(30, 80, 200, 0.5);
}

.video-play-btn--sm {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(50, 110, 225, 0.6);
  border: 1px solid rgba(120, 185, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 28px rgba(30,80,200,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  position: relative;
  z-index: 1;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: #6AABFF;
  opacity: 0.18;
  filter: blur(1.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card-art svg {
  width: 100%;
  height: 100%;
}

.card-art--fill {
  padding: 8px;
}

.card-art--fill svg {
  width: 100%;
  height: 100%;
}

.showcase-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-muted);
}

.showcase-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.25;
  margin-top: 4px;
}

.showcase-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Timeline visual */
.showcase-visual { margin-top: 16px; }

.vis-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.vis-track-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 2px;
}

.vis-track {
  display: flex;
  height: 28px;
  gap: 0;
  width: 100%;
}

.vis-clip {
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vis-clip--aroll {
  background: rgba(50,110,225,0.45);
  border: 1px solid rgba(120,185,255,0.4);
  color: rgba(255,255,255,0.7);
}

.vis-clip--broll {
  background: rgba(127,184,255,0.2);
  border: 1px solid rgba(127,184,255,0.3);
}

.vis-gap { height: 100%; }

/* Caption demo */
.showcase-caption-demo {
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cap-line {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  text-align: center;
}
.cap-line--1 { opacity: 0.5; font-size: 12px; }
.cap-line--2 { font-size: 16px; }

/* Prompt card visual */
.showcase-visual--prompt { margin-top: 20px; }

.showcase-prompt-card {
  background: rgba(4, 15, 29, 0.95);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.spc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.spc-sub {
  font-size: 11px;
  color: var(--blue-muted);
  opacity: 0.65;
  margin-bottom: 4px;
}
.spc-divider {
  height: 1px;
  margin: 6px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.5) 15%,
    rgba(255,255,255,0.5) 85%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(255,255,255,0.1);
}
.spc-narration {
  font-size: 13px;
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
}
.spc-filming {
  font-size: 12px;
  color: var(--blue-muted);
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}



/* ── Download ─────────────────────────────────────────────────────────────── */

.download-section { padding: 40px 48px 100px; text-align: center; }

.download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.download-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 8px 24px rgba(30,80,200,0.4));
}

.download-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-muted);
  background: rgba(50,110,225,0.12);
  border: 1px solid rgba(120,185,255,0.2);
  border-radius: 20px;
  padding: 5px 14px;
}

.download-title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.download-sub {
  font-size: 13px;
  color: var(--white-30);
  margin-bottom: 8px;
}

.download-version {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  margin-top: 4px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */

.footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo { display: flex; align-items: center; gap: 10px; }

.footer-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.4;
}

.footer-name {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 60px 28px 80px;
    gap: 48px;
  }
  .hero-inner, .hero-mockup { max-width: 100%; }

  .steps { flex-direction: column; align-items: center; gap: 28px; }
  .step-connector {
    width: 1px; height: 28px; margin: 0;
    background: linear-gradient(rgba(127,184,255,0.15), rgba(127,184,255,0.4), rgba(127,184,255,0.15));
  }

  .showcase-row { flex-direction: column; }
  .showcase-card--large { flex: 1; }

  .proof-strip-inner { flex-wrap: wrap; justify-content: center; gap: 28px 40px; }
  .proof-divider { display: none; }

  .privacy-box { flex-direction: column; text-align: center; padding: 28px; }

  .section { padding: 80px 28px; }
  .privacy-section { padding: 48px 28px; }
  .nav, .footer { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 34px; }
  .section-title { font-size: 26px; }
  .download-title { font-size: 32px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
