:root {
  --bg-a: #e8f1ff;
  --bg-b: #f4f4ff;
  --bg-c: #eafcf3;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(28, 89, 168, 0.16);
  --text: #081c33;
  --muted: #4a607a;
  --brand-blue: #0c69ff;
  --brand-purple: #6b46ff;
  --brand-green: #15b87b;
  --danger: #c33853;
  --warn: #d18016;
  --ok: #0a8e58;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 8px 24px rgba(7, 34, 74, 0.09);
  --shadow-md: 0 16px 45px rgba(7, 34, 74, 0.14);
  --shadow-lg: 0 26px 70px rgba(7, 34, 74, 0.2);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(12, 105, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(107, 70, 255, 0.16), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(21, 184, 123, 0.16), transparent 35%),
    linear-gradient(140deg, var(--bg-a), var(--bg-b) 45%, var(--bg-c));
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
}

.container {
  width: min(100% - var(--space-4), var(--container));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.section {
  padding: var(--space-5) 0;
}

.section-title {
  font-size: clamp(1.5rem, 3.8vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
}

.section-copy {
  color: var(--muted);
  max-width: 65ch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  font: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.02);
  outline: none;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-purple));
  color: #f6fbff;
  box-shadow: 0 10px 26px rgba(12, 105, 255, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(12, 105, 255, 0.22);
  color: #0b3a6a;
}

.btn.recommended {
  border-color: rgba(12, 105, 255, 0.3);
  box-shadow: 0 10px 30px rgba(12, 105, 255, 0.33);
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #f3fbff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(100deg, rgba(12, 105, 255, 0.88), rgba(21, 184, 123, 0.86));
  backdrop-filter: blur(10px);
}

.notice-bar .container {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.timer-pill {
  display: inline-block;
  min-width: 84px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  letter-spacing: 0.03em;
}

.gate-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--space-3);
}

.gate-card {
  width: min(560px, 100%);
  text-align: center;
  padding: var(--space-4);
}

.gate-tag {
  display: inline-block;
  margin-bottom: var(--space-2);
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(12, 105, 255, 0.2);
  background: rgba(12, 105, 255, 0.1);
  color: #0b4f9d;
  font-size: 0.78rem;
  font-weight: 800;
}

.gate-card h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: var(--space-1);
}

.gate-card p {
  color: var(--muted);
}

.hero {
  padding: var(--space-4) 0 var(--space-5);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-4);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(12, 105, 255, 0.2);
  background: rgba(12, 105, 255, 0.08);
  color: #0a4a95;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, var(--brand-blue), var(--brand-purple), var(--brand-green));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-proof {
  margin-top: var(--space-2);
  color: #47617d;
  font-weight: 600;
  font-size: 0.88rem;
}

.hero-panel {
  padding: var(--space-3);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.metric-item {
  border-radius: 12px;
  border: 1px solid rgba(12, 105, 255, 0.13);
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
}

.metric-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a3563;
}

.metric-label {
  color: #58708a;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase-grid {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: var(--space-4);
  align-items: start;
}

.showcase-card {
  padding: var(--space-4);
}

.showcase-card h3 {
  margin-bottom: var(--space-1);
  font-size: 1.35rem;
}

.showcase-card p {
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.laptop-frame {
  margin-top: var(--space-2);
  width: min(100%, 700px);
  margin-inline: auto;
}

.laptop-screen {
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(165deg, #2d425a, #111f30);
  padding: 10px;
  box-shadow: var(--shadow-md);
}

.video-wrap {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: #0a2038;
  aspect-ratio: 16 / 10;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.laptop-frame:hover .video-wrap video {
  transform: scale(1.06);
}

.laptop-base {
  width: 112%;
  margin-left: -6%;
  margin-top: 8px;
  height: 10px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(90deg, #5b6f84, #23364a);
}

.iphone-wrap {
  margin-top: var(--space-2);
  display: grid;
  justify-items: center;
  gap: var(--space-2);
}

.iphone-frame {
  width: min(340px, 94%);
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  background: linear-gradient(150deg, #102e44, #061a2b);
  padding: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.iphone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 20px;
  border-radius: 12px;
  background: #04101d;
  z-index: 3;
}

.iphone-screen {
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
  background: #0b2035;
}

.app-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.app-shot.is-active {
  opacity: 1;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(12, 105, 255, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: #0b3f73;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(11, 63, 115, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.app-dot.is-active {
  transform: scale(1.1);
  background: linear-gradient(110deg, var(--brand-blue), var(--brand-green));
}

.steps-grid {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.step-card {
  padding: var(--space-2);
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-1);
  font-weight: 800;
  color: #0d4888;
  border: 1px solid rgba(12, 105, 255, 0.2);
  background: linear-gradient(120deg, rgba(12, 105, 255, 0.15), rgba(21, 184, 123, 0.15));
}

.step-card h3 {
  margin-bottom: 4px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-grid {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2);
}

.panel {
  padding: var(--space-2);
}

.quotes {
  display: grid;
  gap: var(--space-2);
}

.quote {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(12, 105, 255, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.quote p {
  font-size: 0.94rem;
  color: #173a5d;
}

.quote span {
  display: block;
  margin-top: 5px;
  color: #58708b;
  font-size: 0.8rem;
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.stat {
  border-radius: 12px;
  border: 1px solid rgba(12, 105, 255, 0.13);
  background: rgba(255, 255, 255, 0.85);
  padding: 12px;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  color: #08345f;
}

.stat small {
  color: #55708c;
}

.badges {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.trust-badge {
  border-radius: 999px;
  border: 1px solid rgba(12, 105, 255, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: #145086;
  padding: 6px 11px;
  font-size: 0.75rem;
  font-weight: 700;
}

.disclosure {
  margin-top: var(--space-2);
  border-radius: 12px;
  border: 1px dashed rgba(209, 128, 22, 0.45);
  background: rgba(255, 249, 238, 0.84);
  color: #7f5a21;
  padding: 11px;
  font-size: 0.82rem;
}

.urgency-panel {
  margin-top: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: linear-gradient(130deg, rgba(12, 105, 255, 0.13), rgba(107, 70, 255, 0.1), rgba(21, 184, 123, 0.14));
  border: 1px solid rgba(12, 105, 255, 0.17);
}

.urgency-panel h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-1);
}

.urgency-panel p {
  color: #24496d;
  margin-bottom: var(--space-2);
}

.countdown-box {
  display: inline-block;
  min-width: 110px;
  border-radius: 999px;
  border: 1px solid rgba(12, 105, 255, 0.24);
  background: rgba(255, 255, 255, 0.86);
  color: #0b3f73;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 7px 12px;
}

.final-cta {
  margin-top: var(--space-3);
  padding: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.final-cta p {
  color: #1f4b73;
  font-weight: 700;
}

footer {
  padding: var(--space-4) 0 98px;
  color: #4a617b;
  font-size: 0.84rem;
}

.sticky-cta {
  position: fixed;
  left: var(--space-2);
  right: var(--space-2);
  bottom: var(--space-2);
  max-width: 680px;
  margin-inline: auto;
  z-index: 90;
  border-radius: 16px;
  border: 1px solid rgba(12, 105, 255, 0.21);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 10px;
}

.sticky-cta.is-visible {
  display: flex;
}

.sticky-copy strong {
  display: block;
  font-size: 0.9rem;
  color: #073768;
}

.sticky-copy small {
  color: #53708d;
  font-size: 0.78rem;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.sticky-actions .btn {
  padding: 10px 13px;
  font-size: 0.84rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  place-items: center;
  background: rgba(7, 25, 44, 0.58);
  backdrop-filter: blur(4px);
  padding: var(--space-2);
}

.modal-overlay.is-open {
  display: grid;
}

.modal {
  width: min(460px, 100%);
  padding: var(--space-3);
}

.modal h3 {
  margin-bottom: var(--space-1);
}

.modal p {
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.link-btn {
  border: none;
  background: none;
  color: #5f7690;
  font: inherit;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .showcase-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

  .laptop-frame {
    width: min(100%, 660px);
  }

  .iphone-frame {
    width: min(320px, 92%);
  }
}

@media (max-width: 740px) {
  .container {
    width: min(100% - var(--space-3), var(--container));
  }

  .notice-bar {
    position: static;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .showcase-card {
    padding: var(--space-3);
  }

  .laptop-frame {
    width: min(100%, 560px);
  }

  .iphone-frame {
    width: min(300px, 92%);
  }

  .steps-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    display: none;
  }

  .sticky-actions {
    width: 100%;
  }

  .sticky-actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
