:root {
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-navy-900: #0f172a;
  --color-ink: #111826;
  --color-linen: #efe7dc;
  --color-rose: #f8d7d0;
  --color-rose-500: #f3b8ad;
  --color-rose-600: #f29b8f;
  --color-amber-200: #f6e3c7;
  --gradient-rose-sand: linear-gradient(145deg, rgba(248, 215, 208, 0.9), rgba(239, 231, 220, 0.45));
  --gradient-midnight: linear-gradient(165deg, rgba(12, 20, 34, 0.82), rgba(6, 11, 22, 0.72));
  --color-navy-800: #1e293b;
  --color-navy-700: #273449;
  --color-emerald-500: #10b981;
  --color-emerald-600: #059669;
  --color-emerald-700: #047857;
  --color-sand-100: #f5f3ee;
  --color-sand-200: #ece8df;
  --color-sand-300: #d7d0c6;
  --color-slate-200: #e2e8f0;
  --color-slate-400: #94a3b8;
  --color-slate-600: #475569;
  --color-white: #ffffff;
  --color-black: #0b0b0b;
  --shadow-soft: 0 24px 48px rgba(15, 23, 42, 0.25);
  --shadow-card: 0 16px 32px rgba(15, 23, 42, 0.18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --color-blush-50: #fff5f3;
  --color-blush-100: #ffe5e0;
  --color-sky-50: #f4f8ff;
  --color-sky-100: #e5f1ff;
  --shadow-pastel: 0 24px 40px rgba(17, 24, 38, 0.1);
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--color-blush-50) 0%, var(--color-sky-50) 100%);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
}

.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a.link {
  color: var(--color-rose-600);
  text-decoration: none;
}

a.link:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.section {
  position: relative;
  padding: 160px 24px;
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 16px;
}

.section-header p {
  margin: 0;
  color: rgba(17, 24, 38, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.88) 0%, rgba(6, 10, 18, 0.45) 52%, rgba(6, 10, 18, 0) 100%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: calc(var(--max-width) + 96px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  background: rgba(10, 14, 24, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(4, 7, 16, 0.42);
  color: rgba(248, 250, 252, 0.92);
  position: relative;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
}

.nav-brand-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(4, 7, 16, 0.35));
}

.nav-primary {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-primary .nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 6px;
}

.nav-primary .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-primary .nav-link:hover,
.nav-primary .nav-link:focus {
  color: #ffffff;
}

.nav-primary .nav-link:hover::after,
.nav-primary .nav-link:focus::after {
  transform: scaleX(1);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-actions .btn {
  min-height: 44px;
}

.nav-actions .btn-ghost {
  color: rgba(248, 250, 252, 0.9);
  border-color: rgba(248, 250, 252, 0.32);
  background: rgba(248, 250, 252, 0.08);
}

.nav-actions .btn-ghost:hover,
.nav-actions .btn-ghost:focus {
  background: rgba(248, 250, 252, 0.16);
  border-color: rgba(248, 250, 252, 0.5);
}

.nav-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.14);
  border: 1px solid rgba(248, 250, 252, 0.32);
  color: inherit;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(248, 250, 252, 0.2);
  border-color: rgba(248, 250, 252, 0.5);
  outline: none;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 3px;
  background: rgba(248, 250, 252, 0.92);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-icon::after {
  position: absolute;
  top: 6px;
}

.mobile-drawer {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 420px);
  background: rgba(7, 11, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: 0 30px 60px rgba(4, 6, 14, 0.5);
  backdrop-filter: blur(18px);
}

.mobile-drawer[hidden] {
  display: none !important;
}

.mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-links .nav-link {
  display: inline-flex;
  text-decoration: none;
  color: rgba(248, 250, 252, 0.85);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-links .btn {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 48px;
  font-size: 1rem;
  padding: 12px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose-600), var(--color-rose-500));
  color: var(--color-navy-900);
  padding: 14px 30px;
  box-shadow: 0 14px 28px rgba(var(--accent-rgb), 0.35);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(var(--accent-rgb), 0.4);
}

.btn-secondary {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--color-ink);
  padding: 12px 28px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 12px 24px rgba(var(--accent-rgb), 0.15);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 16px 32px rgba(var(--accent-rgb), 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  padding: 12px 28px;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: rgba(var(--accent-rgb), 0.55);
  background: rgba(var(--accent-rgb), 0.08);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.08rem;
  min-height: 56px;
}

.btn-full {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.85);
  outline-offset: 3px;
}

.hero {
  padding: clamp(96px, 12vh, 140px) 24px clamp(112px, 16vh, 160px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.hero-cinema-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-cinema-frame {
  position: relative;
  width: min(1180px, 92vw);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: stretch;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 42px 80px rgba(5, 9, 20, 0.55);
  background: radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.12), rgba(6, 10, 18, 0.92));
}

.hero-video-stage {
  grid-area: 1 / 1 / -1 / -1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(12, 20, 34, 0.9), #05070d);
}

.hero-reel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  animation: heroReelCycle 48s infinite;
}

.hero-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(115%);
}

.hero-reel--one {
  opacity: 1;
  animation-delay: 0s;
}

.hero-reel--interlude {
  animation-delay: 12s;
}

.hero-reel--two {
  animation-delay: 24s;
}

.hero-reel--three {
  animation-delay: 36s;
}

.hero-video--interlude {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: saturate(120%);
}

.hero-overlay {
  grid-area: 1 / 1 / -1 / -1;
  position: relative;
  z-index: 3;
  padding: clamp(56px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(248, 250, 252, 0.92);
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.14) 0%, rgba(4, 7, 12, 0.68) 58%, rgba(4, 7, 12, 0.92) 100%);
}

.hero-kicker {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(236, 233, 252, 0.78);
}

.hero-overlay h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin: 0;
  line-height: 1.04;
  color: #ffffff;
}

.hero-lead {
  margin: 0;
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-cta-group .btn-lg {
  width: 100%;
}

.hero-overlay .btn-ghost {
  color: rgba(248, 250, 252, 0.9);
  border-color: rgba(248, 250, 252, 0.32);
  background: rgba(248, 250, 252, 0.08);
}

.hero-overlay .btn-ghost:hover,
.hero-overlay .btn-ghost:focus {
  background: rgba(248, 250, 252, 0.16);
  border-color: rgba(248, 250, 252, 0.5);
}

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

.hero-badges {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.9rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(248, 250, 252, 0.18);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  min-width: 220px;
}

@keyframes heroReelCycle {
  0%,
  20% {
    opacity: 1;
  }
  27%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: clamp(84px, 12vh, 120px) 20px clamp(96px, 14vh, 132px);
  }
  .hero-cinema-frame {
    border-radius: 28px;
  }
  .hero-overlay {
    padding: clamp(48px, 12vw, 72px);
  }
}

@media (max-width: 720px) {
  .hero-cinema-frame {
    width: min(560px, 96vw);
    border-radius: 24px;
  }
  .hero-overlay {
    gap: 20px;
  }
  .hero-cta-group .btn-lg {
    width: 100%;
  }
  .hero-badge {
    min-width: 0;
  }
}


.scarcity {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(248, 250, 252, 0.12);
  border: 1px solid rgba(248, 250, 252, 0.25);
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.88);
}

.scarcity-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.6);
}

.scarcity-count {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

.scarcity-note {
  color: rgba(248, 250, 252, 0.65);
  font-size: 0.85rem;
}

.trust-strip {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  backdrop-filter: blur(14px);
}

.trust-heading {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.contrast {
  background: var(--gradient-rose-sand);
}

.contrast-card {
  flex: 1;
  backdrop-filter: blur(26px);
  background: linear-gradient(160deg, rgba(11, 18, 28, 0.78), rgba(var(--accent-rgb), 0.14));
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contrast-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 0;
}

.contrast-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: rgba(17, 24, 38, 0.72);
}

.contrast-card + .contrast-card {
  margin-left: 0;
  margin-top: 24px;
  background: linear-gradient(165deg, rgba(var(--accent-rgb), 0.3), rgba(12, 28, 36, 0.82));
  border-color: rgba(var(--accent-rgb), 0.28);
}
.contrast-card + .contrast-card .btn {
  margin-top: 20px;
}

.section-inner > .contrast-card,
.section-inner > .offer-card {
  margin-bottom: 0;
}

.section .section-inner {
  display: flex;
  flex-direction: column;
}

.section.contrast .section-inner,
.section.offers .section-inner,
.section.partners .section-inner {
  gap: 48px;
}

.contrast .section-inner {
  flex-direction: column;
}

.timeline {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.timeline-step {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(17, 24, 38, 0.08);
  position: relative;
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.timeline-step h3 {
  margin-top: 12px;
  font-family: var(--font-display);
}

.step-number {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 24, 38, 0.55);
}

.step-meta {
  color: rgba(17, 24, 38, 0.6);
  font-size: 0.9rem;
}

.evolution {
  background: var(--color-navy-800);
}

.evolution-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(12, 19, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
  min-height: 380px;
}

.evolution-track {
  display: flex;
  transition: transform 0.6s ease;
}

.evolution-slide {
  min-width: 100%;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
}

.evolution-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.evolution-media img,
.evolution-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 12px;
}

.carousel-btn {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.proof {
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.95), rgba(var(--accent-rgb), 0.12));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
}

.proof-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(18, 26, 40, 0.78), rgba(var(--accent-rgb), 0.12));
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.credit {
  display: block;
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(17, 24, 38, 0.55);
}

.security {
  background: linear-gradient(180deg, #111827 0%, #0b1221 100%);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 28px;
}

.security-card {
  background: linear-gradient(160deg, rgba(10, 18, 32, 0.85), rgba(var(--accent-rgb), 0.1));
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.security-footer {
  margin-top: 32px;
  text-align: center;
}

.concierge {
  background: var(--color-navy-800);
}

.concierge-flow {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 28px;
}

.flow-step {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(17, 24, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.founder-note {
  margin-top: 48px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 240, 0.78));
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.08);
}

.founder-message {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 18px;
  color: var(--color-ink);
  line-height: 1.45;
}

.founder-signature {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(17, 24, 38, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.founder-signature::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(17, 24, 38, 0.15);
}

.offers {
  background: radial-gradient(circle at center, rgba(var(--accent-rgb), 0.15), rgba(15, 23, 42, 0.95));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
}

.offer-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(17, 24, 38, 0.08);
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.offer-card ul {
  padding-left: 20px;
  color: rgba(17, 24, 38, 0.72);
}

.offer-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(17, 24, 38, 0.6);
}

.partners {
  background: #f7f8fd;
}

.partner-content {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.partner-stats {
  display: grid;
  gap: 18px;
}

.stat {
  background: rgba(13, 20, 32, 0.75);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(17, 24, 38, 0.08);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--color-emerald-500);
}

.stat-label {
  color: rgba(255, 255, 255, 0.65);
}

.partner-details ul {
  padding-left: 20px;
  color: rgba(17, 24, 38, 0.72);
}

.faq {
  background: #ffffff;
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-accordion details {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 38, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
}

.faq-accordion summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  background: #fdf7f2;
  padding: 80px 24px;
  color: rgba(17, 24, 38, 0.78);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.footer-cta {
  text-align: center;
}

.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.footer-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-note {
  color: rgba(17, 24, 38, 0.6);
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 19, 0.72);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: #0f1929;
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content--wide {
  max-width: 900px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: rgba(17, 24, 38, 0.6);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 18px;
}

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.modal-status {
  background: rgba(var(--accent-rgb), 0.18);
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  padding: 12px 16px;
  border-radius: 12px;
}

.card-element {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dotted rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.card-hint {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(17, 24, 38, 0.6);
}
.card-errors {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #fca5a5;
}
[data-status].success {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.6);
}


@media (hover: hover) and (pointer: fine) {
  .contrast-card:hover,
  .timeline-step:hover,
  .proof-card:hover,
  .security-card:hover,
  .flow-step:hover,
  .offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(12, 20, 34, 0.35);
  }

  .proof-card:hover {
    background: linear-gradient(160deg, rgba(18, 26, 40, 0.86), rgba(var(--accent-rgb), 0.2));
  }
}

@media (max-width: 599px) {
  .trust-strip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .trust-badge {
    width: 100%;
    justify-content: center;
  }
  .hero {
    padding: 84px 16px 70px;
  }
  .hero-cinema-frame {
    border-radius: 20px;
  }
  .hero-overlay {
    padding: 52px 20px 44px;
    gap: 18px;
  }
  .hero-overlay h1 {
    font-size: clamp(2rem, 7.4vw, 2.6rem);
  }
  .hero-badges {
    width: 100%;
  }
  .hero-badge {
    width: 100%;
    justify-content: center;
  }
  .hero-cta-group {
    gap: 12px;
  }
  .scarcity {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}


@media (min-width: 600px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .hero-cta-group .btn-lg {
    width: auto;
  }
}

@media (min-width: 768px) {
  .nav-primary {
    display: flex;
    order: 1;
  }
  .nav-actions {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  .nav-brand {
    order: 3;
    margin-left: 24px;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-drawer {
    display: none !important;
  }
  .hero-cta-group {
    gap: 20px;
  }
  .hero-badges {
    flex-direction: row;
  }
  .hero-badge {
    min-width: 180px;
  }
  .trust-strip {
    justify-content: flex-start;
    padding: 16px 26px;
  }
  .contrast .section-inner {
    flex-direction: row;
  }
  .contrast-card + .contrast-card {
    margin-left: 32px;
    margin-top: 0;
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .concierge-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-content {
    grid-template-columns: 320px 1fr;
  }
  .footer-cta-group {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .brand-logo {
    height: 36px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 140px 48px;
  }
  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .security-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .concierge-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .evolution-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 42px;
  }
}

@media (min-width: 1280px) {
  .section {
    padding: 160px 64px;
  }
  .hero-cinema-frame {
    width: min(1280px, 88vw);
    border-radius: 44px;
  }
  .hero-overlay {
    padding: 112px 88px 96px;
  }
  .partner-content {
    grid-template-columns: 360px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-video-stage {
    display: none;
  }
  .hero-cinema-frame {
    background: linear-gradient(160deg, #1a2235, #0c141f);
  }
}

.site-header.is-condensed {
  padding: 16px 0;
  background: rgba(6, 10, 18, 0.94);
  box-shadow: 0 18px 36px rgba(4, 7, 16, 0.48);
}

.site-header.is-condensed .nav-shell {
  background: rgba(10, 14, 24, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 44px rgba(4, 7, 16, 0.52);
}

.site-header.is-condensed .nav-link {
  color: rgba(248, 250, 252, 0.82);
}

.site-header.is-condensed .nav-link:hover {
  color: #ffffff;
}

.evolution-details h3 {
  font-family: var(--font-display);
  margin-top: 0;
}

.evolution-details p {
  color: rgba(17, 24, 38, 0.7);
}

.evolution-stills,
.evolution-modal-stills {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.evolution-stills img,
.evolution-modal-stills img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.evolution-fallback {
  padding: 48px;
  text-align: center;
  width: 100%;
  color: rgba(17, 24, 38, 0.7);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 38, 0.08);
}

.evolution-modal-body {
  display: grid;
  gap: 28px;
}

.evolution-modal-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 38, 0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 28px rgba(17, 24, 38, 0.08);
}

.evolution-modal-media video {
  width: 100%;
  border-radius: 16px;
  margin: 18px 0;
}

details[open] summary {
  color: var(--color-rose-600);
}
/* Bright aesthetic overrides inspired by reliveable.ai */
.section,
.section * {
  color: inherit;
}
.section {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.75) 100%);
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(255,241,236,0.55), transparent 45%),
              radial-gradient(circle at top left, rgba(232,245,255,0.45), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255,244,244,0.4), transparent 60%);
  opacity: 0.9;
}
.section-inner {
  position: relative;
  background: rgba(255,255,255,0.92);
  border-radius: 36px;
  padding: 56px;
  box-shadow: var(--shadow-pastel);
  border: 1px solid rgba(17,24,38,0.06);
}
.section-header h2 {
  color: var(--color-ink);
}
.section-header p,
.lead {
  color: rgba(17, 24, 38, 0.72);
}
.lead {
  margin-bottom: 36px;
}
.contrast {
  background: linear-gradient(145deg, #fdf7f0, #f3f7ff);
}
.contrast-card,
.timeline-step,
.proof-card,
.security-card,
.flow-step,
.offer-card,
.faq-accordion details {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 38, 0.08);
  color: var(--color-ink);
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.08);
}
.contrast-card ul,
.timeline-step .step-meta,
.proof-card p,
.security-card p,
.flow-step p,
.offer-card p,
.faq-accordion summary {
  color: rgba(17, 24, 38, 0.72);
}
.proof {
  background: #f8f7f2;
}
.security {
  background: #f4f9ff;
}
.concierge {
  background: #fff7f3;
}
.offers {
  background: linear-gradient(140deg, #fffdf7, #f5fbff);
}
.partners {
  background: #f7f8fd;
}
.faq {
  background: #ffffff;
}
.site-footer {
  background: #fdf7f2;
  color: rgba(17, 24, 38, 0.78);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.footer-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(17, 24, 38, 0.15));
}

.footer-note,
.footer-links a {
  color: rgba(17, 24, 38, 0.6);
}
.footer-links a:hover {
  color: var(--color-ink);
}
.evolution {
  background: #f6f8ff;
}
.evolution-media {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 38, 0.08);
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.08);
}
.evolution-details h3 {
  color: var(--color-ink);
}
body {
  color: var(--color-ink);
}
.modal-backdrop {
  background: rgba(17, 24, 38, 0.25);
}
.modal-content {
  background: #ffffff;
  color: var(--color-ink);
  border: 1px solid rgba(17, 24, 38, 0.08);
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  background: rgba(17, 24, 38, 0.04);
  border: 1px solid rgba(17, 24, 38, 0.12);
  color: var(--color-ink);
}
.card-element {
  background: rgba(17, 24, 38, 0.04);
  border: 1px solid rgba(17, 24, 38, 0.12);
  color: var(--color-ink);
}
.stat {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 38, 0.08);
  box-shadow: 0 16px 28px rgba(17, 24, 38, 0.08);
  color: var(--color-ink);
}
.stat-value {
  color: var(--color-ink);
}
.stat-label {
  color: rgba(17, 24, 38, 0.6);
}
.partner-details ul,
.partner-details p {
  color: rgba(17, 24, 38, 0.7);
}
.partner-details h3 {
  color: var(--color-ink);
}
.evolution-stills img,
.evolution-modal-stills img {
  border: 1px solid rgba(17, 24, 38, 0.08);
  box-shadow: 0 10px 18px rgba(17, 24, 38, 0.08);
}
.founder-note {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 38, 0.08);
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.08);
}
.founder-message {
  color: var(--color-ink);
}
.founder-signature {
  color: rgba(17, 24, 38, 0.7);
}
.founder-signature::before {
  background: rgba(17, 24, 38, 0.12);
}
  border-color: rgba(49, 130, 196, 0.14);
}
.section-header::after {
  opacity: 0.5;
}
.section-inner {
  background: rgba(255,255,255,0.96);
}
.evolution-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.1) 100%);
  pointer-events: none;
}
.evolution-media {
  position: relative;
  overflow: hidden;
}
.evolution-details {
  color: var(--color-ink);
}
.evolution-details p {
  color: rgba(17, 24, 38, 0.68);
}


/* --- Lightened experience overrides --- */
.evolution {
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.88) 0%, rgba(234, 247, 255, 0.8) 55%, rgba(255, 243, 250, 0.88) 100%);
}

.evolution-carousel {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 26px 50px rgba(17, 24, 38, 0.12);
}

.evolution-track {
  border-radius: inherit;
}

.evolution-slide {
  gap: 28px;
}

.evolution-media {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(var(--accent-rgb), 0.12));
  box-shadow: 0 24px 46px rgba(17, 24, 38, 0.16);
}

.evolution-media img,
.evolution-media video {
  border-radius: inherit;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  color: var(--color-rose-600);
  box-shadow: 0 16px 26px rgba(17, 24, 38, 0.12);
}

.carousel-btn:hover,
.carousel-btn:focus {
  background: rgba(var(--accent-rgb), 0.18);
}

.proof {
  background: linear-gradient(180deg, rgba(255, 247, 240, 0.92), rgba(236, 248, 255, 0.88));
}

.proof-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 24px 40px rgba(17, 24, 38, 0.1);
}

.proof-card h3 {
  color: rgba(17, 24, 38, 0.88);
}

.proof-card p,
.proof-card ul {
  color: rgba(17, 24, 38, 0.74);
}

.security {
  background: linear-gradient(180deg, rgba(233, 242, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.security-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 229, 255, 0.4);
  color: rgba(17, 24, 38, 0.78);
  box-shadow: 0 20px 32px rgba(17, 24, 38, 0.1);
}

.concierge {
  background: linear-gradient(180deg, rgba(255, 247, 243, 0.9), rgba(233, 246, 255, 0.9));
}

.flow-step {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.1);
  color: rgba(17, 24, 38, 0.78);
}

.offer-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 22px 36px rgba(17, 24, 38, 0.1);
  color: rgba(17, 24, 38, 0.78);
}

.partners {
  background: linear-gradient(180deg, rgba(236, 248, 255, 0.92), rgba(255, 248, 242, 0.92));
}

.testimonial-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 229, 255, 0.3);
  box-shadow: 0 18px 32px rgba(17, 24, 38, 0.1);
  color: rgba(17, 24, 38, 0.78);
}

.footer {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.95), rgba(236, 248, 255, 0.95));
  color: rgba(17, 24, 38, 0.7);
}

.footer a {
  color: rgba(17, 24, 38, 0.78);
}
.section.contrast .section-inner,
.section.creation .section-inner,
.section.proof .section-inner,
.section.security .section-inner,
.section.concierge .section-inner,
.section.offers .section-inner,
.section.partners .section-inner,
.section.faq .section-inner {
  background: transparent;
}

.timeline-step .step-number {
  color: rgba(17, 24, 38, 0.45);
}

.site-footer {
  border-top: 1px solid rgba(17, 24, 38, 0.08);
}

.footer-meta {
  border-top: 1px solid rgba(17, 24, 38, 0.1);
}

.trust-badge {
  box-shadow: 0 12px 24px rgba(17, 24, 38, 0.08);
}

.hero-cta-group .btn-primary {
  box-shadow: 0 20px 36px rgba(var(--accent-rgb), 0.35);
}

.hero-cta-group .btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.hero-cta-group .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
}

.stat-value {
  color: var(--color-rose-600);
}

.stat-label {
  color: rgba(17, 24, 38, 0.6);
}

.faq-accordion summary {
  color: var(--color-ink);
}

.section-header {
  position: relative;
}

.section-header::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: -70px;
  right: -70px;
  background: radial-gradient(circle, rgba(242, 215, 213, 0.42), transparent 70%);
  z-index: -1;
}
