:root {
  --bg: #f4efe2;
  --bg-2: #e9edf4;
  --panel: rgba(255, 251, 242, 0.86);
  --panel-edge: rgba(24, 58, 122, 0.18);
  --ink: #14213f;
  --muted: #60708d;
  --brand: #2636C2;
  --brand-2: #41709B;
  --ok: #1e9b8f;
  --accent: #f5b800;
  --shadow: 0 26px 70px rgba(26, 45, 94, 0.16);
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "SUIT", "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(161, 198, 255, 0.45) 0%, transparent 34%),
    radial-gradient(circle at 92% 2%, rgba(255, 219, 164, 0.35) 0%, transparent 28%),
    linear-gradient(180deg, #eef3fb 0%, #e8effa 46%, #f2f6fc 100%);
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle, rgba(19, 35, 72, 0.09) 1px, transparent 1px),
    radial-gradient(circle, rgba(18, 41, 89, 0.06) 1px, transparent 1px);
  background-size: 9px 9px, 16px 16px;
  background-position: 0 0, 2px 3px;
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background:
    repeating-linear-gradient(120deg, rgba(20, 33, 63, 0.03) 0, rgba(20, 33, 63, 0.03) 1px, transparent 1px, transparent 26px);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(30, 85, 176, 0.2);
  top: -80px;
  right: -90px;
}

.orb-b {
  width: 350px;
  height: 350px;
  background: rgba(239, 155, 56, 0.16);
  bottom: 4%;
  left: -100px;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1600px, calc(100% - 36px));
  z-index: 30;
  border: 1px solid rgba(156, 193, 247, 0.2);
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 20, 50, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(8, 22, 54, 0.3);
}

.topbar-cta {
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.topbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(38, 54, 194, 0.5);
}

.brand {
  text-decoration: none;
  color: #ecf4ff;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.hero-logo {
  height: clamp(60px, 10vw, 100px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}

.brand-logo-footer {
  filter: none;
  height: 32px;
}

.brand-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.top-actions {
  display: inline-flex;
  gap: 8px;
}

.top-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 12px;
}

.top-link {
  position: relative;
  font-size: 0.93rem;
  text-decoration: none;
  color: #d9e8ff;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0.9;
  transition: opacity 160ms ease, color 160ms ease;
}

.top-link::after,
.link-underline::after,
.mobile-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 240ms ease;
  background: linear-gradient(90deg, #9dd1ff, #f5bc69);
}

.top-link:hover,
.top-link:focus-visible {
  opacity: 1;
  color: #f0f7ff;
}

.top-link:hover::after,
.top-link:focus-visible::after,
.link-underline:hover::after,
.link-underline:focus-visible::after,
.mobile-item:hover::after,
.mobile-item:focus-visible::after {
  transform: scaleX(1);
}

button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.primary,
.ghost {
  padding: 10px 14px;
  font-weight: 700;
  color: var(--ink);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.topbar .ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 47, 103, 0.2);
  color: #113266;
}

.topbar .primary {
  background: linear-gradient(130deg, #2636C2, #41709B);
  color: #ffffff;
}

.primary {
  background: linear-gradient(120deg, #2636C2, #41709B);
  color: #ffffff;
}

.primary:hover {
  transform: translateY(-1px);
}

.ghost {
  background: rgba(255, 250, 240, 0.7);
  border: 1px solid rgba(23, 58, 122, 0.2);
  position: relative;
  overflow: hidden;
}

.ghost:hover {
  border-color: rgba(23, 58, 122, 0.58);
}

.large {
  font-size: 1rem;
  padding: 13px 20px;
}

.progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 35;
  background: rgba(37, 87, 214, 0.12);
}

#progressBar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--ok));
}

.snap-container {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 102px;
  scroll-snap-type: y mandatory;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(181, 212, 255, 0.56);
  background: linear-gradient(165deg, rgba(28, 70, 140, 0.92), rgba(12, 43, 96, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 21px;
  height: 2.2px;
  background: #eef6ff;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(5, 17, 39, 0.42);
  backdrop-filter: blur(3px);
}

.mobile-menu-panel {
  position: fixed;
  top: 16px;
  right: 14px;
  width: min(340px, calc(100% - 28px));
  z-index: 35;
  border-radius: 20px;
  border: 1px solid rgba(176, 207, 255, 0.4);
  background: linear-gradient(145deg, rgba(12, 34, 75, 0.88), rgba(17, 52, 104, 0.82));
  box-shadow: 0 16px 38px rgba(9, 23, 55, 0.48);
  backdrop-filter: blur(12px);
  color: #eaf4ff;
  padding: 18px;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu-panel.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mobile-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(183, 211, 255, 0.42);
  color: #eaf4ff;
  background: rgba(9, 26, 55, 0.52);
}

.mobile-menu-list {
  display: grid;
  gap: 8px;
}

.mobile-item {
  display: inline-flex;
  width: fit-content;
  position: relative;
  text-decoration: none;
  color: #f0f7ff;
  font-size: clamp(1.08rem, 3.8vw, 1.3rem);
  font-weight: 100;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.mobile-menu-panel.open .mobile-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-panel.open .mobile-item:nth-child(1) {
  transition-delay: 60ms;
}

.mobile-menu-panel.open .mobile-item:nth-child(2) {
  transition-delay: 110ms;
}

.mobile-menu-panel.open .mobile-item:nth-child(3) {
  transition-delay: 160ms;
}

.mobile-menu-panel.open .mobile-item:nth-child(4) {
  transition-delay: 210ms;
}

.mobile-menu-panel.open .mobile-item:nth-child(5) {
  transition-delay: 260ms;
}

.mobile-menu-note {
  margin: 16px 0 0;
  color: rgba(229, 240, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.6;
}

.panel {
  min-height: 100vh;
  scroll-snap-align: start;
  padding: 122px 34px 42px;
  display: grid;
  align-content: center;
  gap: 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.92) 0%, rgba(246, 250, 255, 0.9) 100%);
  border: 1px solid var(--panel-edge);
  box-shadow: 0 26px 62px rgba(26, 45, 94, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding: 120px 8vw 60px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(80, 180, 255, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(60, 140, 240, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 90, 180, 0.15) 0%, transparent 70%),
    linear-gradient(145deg, #030d24 0%, #091d4a 45%, #102e6e 100%);
  border-color: rgba(163, 201, 255, 0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='800' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='680' cy='120' r='3' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='140' cy='340' r='2' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='420' cy='60' r='1.5' fill='rgba(255,255,255,0.45)'/%3E%3Ccircle cx='760' cy='440' r='2' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='60' cy='600' r='2.5' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='560' cy='720' r='1.5' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='320' cy='200' r='1' fill='rgba(255,255,255,0.55)'/%3E%3Ccircle cx='200' cy='480' r='1.5' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='620' cy='600' r='1' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E") repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero .eyebrow {
  color: rgba(140, 200, 255, 0.9);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero p {
  color: #f3f8ff;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1d4f9f;
  font-size: 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", "SUIT", sans-serif;
}

h1 {
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 span {
  background: linear-gradient(105deg, #7ec8ff 0%, #ffd492 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
}

.hero .sub {
  color: rgba(237, 246, 255, 0.86);
}

.hero .ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(165, 204, 255, 0.42);
  color: #eaf4ff;
}

.hero .ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero .primary {
  background: linear-gradient(120deg, #f2ad4b, #de7f21);
  color: #1a2a4a;
}

/* ── Hero layout: fullscreen sky ──────────────────────── */
/* (hero base already declared above — only additionals here) */


.hero-copy {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 20px;
  max-width: 660px;
}

.hero .sub {
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(220, 238, 255, 0.82);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons — premium style */
.hero .primary {
  background: linear-gradient(120deg, #f5b84a, #e07c18);
  color: #0f1f3e;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(230, 145, 30, 0.45), 0 1px 0 rgba(255, 220, 130, 0.3) inset;
}

.hero .primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 145, 30, 0.55);
}

.hero .ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(160, 210, 255, 0.38);
  color: rgba(220, 238, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero .ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(160, 210, 255, 0.6);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(150, 205, 255, 0.25);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: rgba(200, 228, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.03em;
}

/* ── Sky Scene (fullscreen hero background) ───────────── */
@keyframes cloudDrift {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0.18;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: translateX(60px) translateY(-12px);
    opacity: 0.18;
  }
}

@keyframes bokehFloat {

  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.25;
  }

  50% {
    transform: scale(1.2) translateY(-20px);
    opacity: 0.45;
  }
}

.sky-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Bokeh blobs */
.sky-bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.sb1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(60, 130, 240, 0.28) 0%, transparent 70%);
  animation: bokehFloat 12s ease-in-out infinite;
}

.sb2 {
  width: 380px;
  height: 340px;
  bottom: -60px;
  left: 30%;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.2) 0%, transparent 70%);
  animation: bokehFloat 9s ease-in-out infinite 3s;
}

.sb3 {
  width: 260px;
  height: 260px;
  top: 30%;
  left: -60px;
  background: radial-gradient(circle, rgba(200, 160, 255, 0.12) 0%, transparent 70%);
  animation: bokehFloat 15s ease-in-out infinite 6s;
}

/* Cloud wisps */
.sky-cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 225, 255, 0.1);
  filter: blur(28px);
  pointer-events: none;
}

.sc1 {
  width: 320px;
  height: 100px;
  top: 20%;
  right: 5%;
  animation: cloudDrift 14s ease-in-out infinite;
}

.sc2 {
  width: 220px;
  height: 70px;
  top: 55%;
  left: 8%;
  animation: cloudDrift 18s ease-in-out infinite 4s;
}

.sc3 {
  width: 180px;
  height: 55px;
  top: 72%;
  right: 25%;
  animation: cloudDrift 11s ease-in-out infinite 7s;
}

/* Scroll-driven contrail */
.scroll-contrail {
  position: absolute;
  top: 50%;
  right: 0;
  height: 3px;
  width: 0%;
  /* JS will expand this */
  transform: translateY(-50%);
  background: linear-gradient(to left,
      rgba(200, 230, 255, 0) 0%,
      rgba(200, 230, 255, 0.6) 40%,
      rgba(255, 255, 255, 0.85) 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px 2px rgba(160, 210, 255, 0.35);
  transition: width 0.05s linear;
  pointer-events: none;
  z-index: 2;
}

.scroll-contrail::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(to left,
      rgba(200, 230, 255, 0) 0%,
      rgba(200, 230, 255, 0.35) 100%);
  border-radius: 2px;
}

/* Scroll-driven plane */
.scroll-plane {
  position: absolute;
  top: 50%;
  /* JS sets transform to move it via translateX + translateY */
  transform: translateX(110vw) translateY(-50%);
  width: clamp(260px, 38vw, 560px);
  height: auto;
  filter:
    drop-shadow(0 24px 48px rgba(0, 10, 40, 0.7)) drop-shadow(0 4px 16px rgba(80, 160, 255, 0.3));
  pointer-events: none;
  z-index: 3;
  will-change: transform;
}

.hero-stage .main-card {
  position: relative;
  margin: 0;
  background: linear-gradient(180deg, rgba(14, 38, 85, 0.78) 0%, rgba(17, 47, 97, 0.74) 100%);
  border-color: rgba(148, 198, 255, 0.34);
  box-shadow: 0 20px 40px rgba(5, 18, 44, 0.46);
  z-index: 1;
}

.hero-mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-mock {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(148, 198, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(195, 222, 255, 0.06) 100%);
  padding: 10px;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.hero-mock img {
  width: 100%;
  max-width: 188px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(4, 16, 40, 0.46));
}

.hero-stat-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-stat-strip span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(150, 192, 255, 0.45);
  background: rgba(15, 42, 91, 0.62);
  color: #d8e7ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 11px;
}

.mini-title {
  font-size: 0.88rem;
  color: #a8cbff;
}

.bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bars>div {
  text-align: center;
  display: grid;
  gap: 8px;
}

.bar {
  display: block;
  border-radius: 16px 16px 6px 6px;
  width: 100%;
}

.old {
  height: 130px;
  background: linear-gradient(180deg, #9cb0d7, #7c93c0);
}

.new {
  height: 58px;
  background: linear-gradient(180deg, #1b72d8, #173a7a);
}

.bars em {
  color: #6c7da7;
  font-style: normal;
  font-size: 0.85rem;
}

.bars b {
  font-size: 1.3rem;
}

.mini-desc {
  color: #c0daff;
  font-size: 0.88rem;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.12;
}

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

.pain-card,
.metric-card {
  background: rgba(251, 253, 255, 0.94);
  border: 1px solid rgba(74, 118, 223, 0.17);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(24, 52, 102, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.pain-card:hover,
.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(18, 41, 89, 0.12);
}

.pain-card p,
.metric-card p {
  color: var(--muted);
  line-height: 1.55;
}

.flow-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.flow-copy {
  display: grid;
  gap: 14px;
}

.flow-step {
  border-left: 3px solid rgba(27, 114, 216, 0.26);
  padding: 8px 0 8px 14px;
  opacity: 0.48;
  transform: translateX(-4px);
  transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.flow-step.active {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--brand);
}

.flow-step p {
  color: var(--muted);
  line-height: 1.55;
}

.device-stage {
  display: flex;
  justify-content: center;
}

.ui-preview {
  min-height: auto;
  align-content: start;
}

.hstory {
  position: relative;
  height: auto;
}

.hstory-sticky {
  position: static;
  height: auto;
  display: grid;
  gap: 20px;
}

.hstory-head {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(66, 77, 175, 0.16);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.hstory-head h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.7vw, 2.3rem);
  line-height: 1.14;
}

.hstory-head p {
  margin: 0;
  color: #606b93;
  line-height: 1.6;
}

.hstory-window {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(74, 118, 223, 0.17);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(241, 246, 255, 0.88));
  padding: 14px;
}

.hstory-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform 90ms linear;
  will-change: transform;
}

.hstory-card {
  width: clamp(300px, 63vw, 760px);
  border-radius: 20px;
  border: 1px solid rgba(70, 91, 189, 0.15);
  background: #ffffff;
  padding: 18px;
  display: grid;
  gap: 12px;
  opacity: 0.65;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.hstory-card.active {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(44, 60, 132, 0.14);
}

.hstory-card-label {
  margin: 0;
  color: #2d5b9f;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hstory-card h4 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.hstory-shot {
  min-height: 460px;
  border-radius: 16px;
  border: 1px solid #e4e9f8;
  background: linear-gradient(180deg, #f5f7ff 0%, #edf2ff 100%);
  display: grid;
  place-items: center;
  padding: 14px;
}

.hstory-shot img {
  width: min(100%, 360px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(39, 62, 133, 0.22));
}

.hstory-shot.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.hstory-shot.split img {
  width: 100%;
}

.story-kicker {
  margin: 0;
  color: #2d5b9f;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.story-dots {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.story-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(84, 97, 166, 0.25);
  transition: width 220ms ease, background-color 220ms ease;
}

.story-dots span.active {
  width: 30px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}

.hstory.is-enhanced {
  height: 360vh;
}

.hstory.is-enhanced .hstory-sticky {
  position: sticky;
  top: 82px;
  height: calc(100vh - 108px);
  display: grid;
  align-content: start;
}

.device-shell {
  width: 320px;
  height: 640px;
  border-radius: 42px;
  border: 1px solid rgba(27, 114, 216, 0.24);
  background: linear-gradient(180deg, #f8fbff, #edf3ff);
  box-shadow: inset 0 0 0 8px #dfebff;
  position: relative;
  overflow: hidden;
}

.device-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 120px;
  height: 24px;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  background: #b6cbe9;
  z-index: 4;
}

.device-screen {
  position: absolute;
  inset: 0;
  padding: 54px 20px 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 320ms ease, transform 320ms ease;
}

.device-screen.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.screen-tag {
  color: #2d5b9f;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  font-weight: 700;
}

.device-screen h4 {
  font-size: 1.5rem;
}

.device-screen ul {
  margin: 0;
  padding-left: 18px;
  color: #5d6f99;
  display: grid;
  gap: 8px;
}

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

.metric-card strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Outfit", sans-serif;
  color: var(--brand-2);
}

.reserve {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.reserve-form {
  display: grid;
  gap: 12px;
}

.reserve-form label {
  display: grid;
  gap: 8px;
  font-size: 0.93rem;
  color: #4f6287;
}

input,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(27, 114, 216, 0.24);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(30, 155, 143, 0.8);
  outline-offset: 1px;
}

.check {
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.check input {
  width: 18px;
  height: 18px;
}

.form-message {
  min-height: 24px;
  color: #13846f;
}

.data-note {
  margin: -4px 0 0;
  font-size: 0.84rem;
  color: #7e88aa;
}

.footer {
  padding: 20px 16px 30px;
  text-align: center;
  color: #6175a8;
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .top-links {
    display: none;
  }

  .top-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    visibility: visible;
    opacity: 1;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .panel {
    min-height: auto;
    padding-top: 94px;
  }

  .hero,
  .flow-wrap,
  .reserve {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    min-height: 470px;
    grid-template-rows: minmax(250px, 286px) auto auto;
  }

  .hero-plane-wrap {
    height: 100%;
  }

  .hero-mock {
    min-height: 184px;
  }

  .hstory {
    height: auto !important;
  }

  .hstory-sticky {
    position: static !important;
    height: auto !important;
  }

  .hstory-window {
    padding: 12px;
    overflow: visible;
  }

  .hstory-track {
    transform: none !important;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .hstory-card {
    width: min(82vw, 540px);
    scroll-snap-align: start;
    opacity: 1;
  }

  .hstory-shot {
    min-height: 420px;
  }

  .device-shell {
    width: 300px;
    height: 600px;
  }
}

@media (max-width: 720px) {
  .topbar {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 16px);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .panel {
    padding: 96px 16px 18px;
    border-radius: 22px;
  }

  .hero {
    padding-top: 92px;
    gap: 16px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .pain-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hstory-head {
    padding: 16px;
  }

  .hstory-head h3 {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .hstory-card {
    width: calc(100vw - 64px);
    min-width: 260px;
    padding: 14px;
  }

  .hstory-shot {
    min-height: 320px;
    padding: 10px;
  }

  .hstory-shot img {
    width: min(100%, 300px);
  }

  .hero-stage {
    min-height: auto;
    grid-template-rows: 212px auto auto;
    gap: 10px;
  }

  .hero-plane-wrap {
    height: 100%;
    min-height: 212px;
  }

  .hero-stage .main-card {
    position: relative;
    margin: 0;
  }

  .hero-mock-grid {
    grid-template-columns: 1fr;
  }

  .hero-mock {
    min-height: 160px;
  }

  .hero-mock img {
    max-width: 160px;
  }

  .hero-stat-strip {
    left: 0;
    gap: 6px;
  }

  .hero-stat-strip span {
    font-size: 0.72rem;
    padding: 6px 9px;
  }

  .device-shell {
    width: 100%;
    max-width: 320px;
    height: 560px;
  }

  .hero-card {
    padding: 16px;
  }

  .large {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .snap-container {
    width: calc(100% - 12px);
  }


  .mobile-menu-panel {
    top: 62px;
    right: 8px;
    width: calc(100% - 16px);
  }
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — new copy elements
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(220, 240, 255, 0.9);
  font-size: 0.97rem;
  font-weight: 500;
}

.hb-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(100, 200, 120, 0.25);
  border: 1px solid rgba(100, 200, 120, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #7de8a0;
  flex-shrink: 0;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(160, 210, 255, 0.2);
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.sp-avatars {
  display: flex;
  gap: -4px;
}

.sp-avatars span {
  font-size: 1.2rem;
  margin-right: -4px;
}

.social-proof p {
  font-size: 0.86rem;
  color: rgba(210, 235, 255, 0.88);
  margin: 0;
}

.social-proof strong {
  color: #7ec8ff;
}

.cta-glow {
  box-shadow: 0 4px 28px rgba(230, 145, 30, 0.5), 0 1px 0 rgba(255, 220, 130, 0.25) inset;
}

.cta-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(230, 145, 30, 0.65);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-bar {
  background: var(--surface, #fff);
  border: 1px solid var(--panel-edge, rgba(200, 220, 255, 0.35));
  border-radius: var(--radius-lg, 28px);
  margin: 0 20px 20px;
  box-shadow: 0 4px 24px rgba(20, 60, 140, 0.08);
  scroll-snap-align: none;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 36px 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-item strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-small {
  font-size: 0.6em;
  opacity: 0.7;
}

.stat-item span:last-child {
  font-size: 0.85rem;
  color: var(--muted, #6b7c9a);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(180, 210, 255, 0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROBLEM — upgraded pain cards
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pain-card {
  background: rgba(240, 246, 255, 0.7);
  border: 1px solid rgba(180, 210, 255, 0.4);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20, 60, 140, 0.12);
}

.pain-icon {
  font-size: 2rem;
  line-height: 1;
}

.pain-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0e2a5c;
}

.pain-card p {
  font-size: 0.9rem;
  color: #4a5f80;
  line-height: 1.55;
}

.problem-bridge {
  margin-top: 32px;
  padding: 28px 36px;
  background: linear-gradient(120deg, #0c1a3a, var(--brand));
  border-radius: 20px;
  text-align: center;
  color: rgba(220, 238, 255, 0.82);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.problem-bridge strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features {
  background: linear-gradient(170deg, rgba(245, 249, 255, 0.96) 0%, rgba(235, 244, 255, 0.92) 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(180, 210, 255, 0.45);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(20, 60, 140, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: 0;
  transition: opacity 0.22s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(20, 60, 140, 0.13);
}

.feature-card:hover::before {
  opacity: 1;
}

.fc-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0e2a5c;
}

.feature-card p {
  font-size: 0.9rem;
  color: #4a5f80;
  line-height: 1.6;
}

.fc-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.fc-tags li {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(43, 130, 232, 0.09);
  border: 1px solid rgba(43, 130, 232, 0.22);
  border-radius: 999px;
  padding: 3px 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPARISON TABLE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.compare {
  background: linear-gradient(170deg, rgba(5, 18, 58, 0.97) 0%, rgba(14, 42, 100, 0.95) 100%);
  color: #f0f6ff;
}

.compare .section-heading h2,
.compare .section-heading p {
  color: #f0f6ff;
}

.compare .eyebrow {
  color: #7ec8ff;
}

.compare .sub {
  color: rgba(200, 225, 255, 0.75);
}

.compare-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 480px;
}

.compare-table th {
  padding: 18px 24px;
  font-weight: 700;
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table th:first-child {
  text-align: left;
  color: rgba(200, 225, 255, 0.7);
  font-size: 0.78rem;
}

.col-holijob {
  background: rgba(43, 130, 232, 0.18);
  color: #7ec8ff;
}

.col-general {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(200, 225, 255, 0.55);
}

.logo-chip {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.compare-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.15s;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.compare-table td {
  padding: 16px 24px;
  color: rgba(200, 225, 255, 0.7);
}

.compare-table td:first-child {
  font-weight: 600;
  color: rgba(220, 238, 255, 0.88);
}

.col-holijob.good {
  color: #6de8a8;
  text-align: center;
}

.col-general.bad {
  color: rgba(200, 225, 255, 0.45);
  text-align: center;
}

.compare-cta {
  margin-top: 32px;
  text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.howitworks {
  background: linear-gradient(170deg, rgba(248, 251, 255, 0.97) 0%, rgba(238, 247, 255, 0.94) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(180, 210, 255, 0.4);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 3px 16px rgba(20, 60, 140, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20, 60, 140, 0.13);
}

.step-num {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  background: linear-gradient(135deg, #c8deff 0%, #e8f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0e2a5c;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.83rem;
  color: #4a5f80;
  line-height: 1.55;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESERVE — enhanced
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reserve {
  background: linear-gradient(145deg, #030d24 0%, #091d4a 50%, #102e6e 100%);
}

.reserve-inner {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.reserve .section-heading h2,
.reserve .section-heading p {
  color: #f0f6ff;
}

.reserve .eyebrow {
  color: #7ec8ff;
}

.reserve .sub {
  color: rgba(200, 225, 255, 0.75);
}

.reserve-perks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(160, 210, 255, 0.22);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: rgba(210, 235, 255, 0.88);
  backdrop-filter: blur(8px);
}

.perk span:first-child {
  font-size: 1.1rem;
}

.reserve-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(160, 210, 255, 0.18);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reserve-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(200, 225, 255, 0.88);
}

.reserve-form input,
.reserve-form select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(160, 210, 255, 0.28);
  border-radius: 12px;
  padding: 12px 16px;
  color: #f0f6ff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.reserve-form input::placeholder {
  color: rgba(180, 210, 255, 0.4);
}

.reserve-form input:focus,
.reserve-form select:focus {
  border-color: #4a9eff;
  background: rgba(255, 255, 255, 0.12);
}

.reserve-form select option {
  background: #0e2a5c;
  color: #f0f6ff;
}

.reserve-form .check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: rgba(190, 220, 255, 0.78);
  cursor: pointer;
}

.reserve-form .check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.data-note {
  font-size: 0.75rem;
  color: rgba(180, 210, 255, 0.45);
  text-align: center;
  margin: 0;
}

.form-message {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  min-height: 1.4em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — enhanced
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: #020b1e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 40px 32px;
}

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

.footer p {
  color: rgba(180, 210, 255, 0.45);
  font-size: 0.82rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(180, 210, 255, 0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #7ec8ff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — new sections
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {

  .pain-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-inner {
    padding: 24px 20px;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item strong {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reserve-form {
    padding: 24px 18px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .reserve-perks {
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INTERVIEW SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.highlight-yellow {
  color: #f5b800;
}

.interview-panel {
  background: linear-gradient(160deg, #1a2a6c 0%, #2636C2 40%, #41709B 100%);
  border-color: rgba(163, 201, 255, 0.2);
  color: #f0f6ff;
}

.interview-panel .section-heading h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
}

.interview-panel .sub {
  color: rgba(220, 238, 255, 0.8);
}

.interview-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Stat Cards ─────────────────────────────────── */
.interview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.interview-stat-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease;
}

.interview-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.isc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 225, 255, 0.9);
  margin-bottom: 4px;
}

.isc-value {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #f5b800;
  line-height: 1;
}

.isc-label {
  font-size: 0.78rem;
  color: rgba(200, 228, 255, 0.7);
  font-weight: 500;
  margin-bottom: 4px;
}

.isc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.isc-desc {
  font-size: 0.84rem;
  color: rgba(210, 232, 255, 0.75);
  line-height: 1.55;
}

/* ── Interview Process Card ─────────────────────── */
.interview-process-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.ipc-left {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ipc-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.ipc-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ipc-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ipc-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #f5b800;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.ipc-steps li>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ipc-steps strong {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.ipc-steps p {
  font-size: 0.85rem;
  color: rgba(210, 232, 255, 0.72);
  line-height: 1.5;
  margin: 0;
}

.ipc-right {
  position: relative;
  min-height: 340px;
}

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

.ipc-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #f5b800, #e09000);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(245, 184, 0, 0.5);
}

.ipc-badge-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.ipc-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(30, 30, 50, 0.8);
  white-space: nowrap;
}




/* ── Responsive Interview section ───────────────── */
@media (max-width: 1024px) {
  .interview-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .interview-process-card {
    grid-template-columns: 1fr;
  }

  .ipc-right {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .interview-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .interview-stat-card {
    padding: 18px 14px;
  }

  .isc-value {
    font-size: 1.5rem;
  }

  .ipc-left {
    padding: 24px 20px;
  }

  .ipc-title {
    font-size: 1.3rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FONT: Pretendard override
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
  font-family: "Pretendard", "SUIT", sans-serif;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — beta badge / launch note
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 184, 0, 0.15);
  border: 1px solid rgba(245, 184, 0, 0.4);
  border-radius: 999px;
  padding: 6px 16px 6px 12px;
  color: #f5d060;
  font-size: 0.83rem;
  font-weight: 600;
  width: fit-content;
}

.badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(200, 225, 255, 0.6);
  font-size: 0.82rem;
  font-style: italic;
}

.note-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.note-icon-sm {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LUCIDE icon wrappers for pain / feature cards
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pain-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(38, 54, 194, 0.1), rgba(65, 112, 155, 0.12));
  border: 1px solid rgba(38, 54, 194, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2636C2;
  flex-shrink: 0;
}

.pain-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.fc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2636C2, #41709B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(38, 54, 194, 0.35);
}

.fc-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.check-ico {
  width: 12px;
  height: 12px;
}

/* ── hero bullets override ─── */
.hb-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(100, 200, 120, 0.2);
  border: 1px solid rgba(100, 200, 120, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7de8a0;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS — steps flow (new vertical layout)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-left: 2px solid transparent;
}

.step-item:hover {
  border-left-color: rgba(38, 54, 194, 0.3);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2636C2 0%, #41709B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(38, 54, 194, 0.3);
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-connector {
  display: flex;
  justify-content: flex-start;
  padding-left: 15px;
  color: rgba(38, 54, 194, 0.35);
}

.step-connector svg {
  width: 20px;
  height: 20px;
}

.step-num-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #41709B;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e2a5c;
  margin: 0 0 6px;
}

.step-content p {
  font-size: 0.88rem;
  color: #4a5f80;
  line-height: 1.6;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESERVE — centered form
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reserve {
  background: linear-gradient(145deg, #030d24 0%, #091d4a 50%, #102e6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserve-centered {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.reserve-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38, 54, 194, 0.3);
  border: 1px solid rgba(100, 140, 255, 0.4);
  border-radius: 999px;
  padding: 6px 18px;
  color: #a8c8ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.reserve-tag svg {
  width: 14px;
  height: 14px;
}

.reserve-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  font-family: "Outfit", sans-serif;
}

.reserve-desc {
  font-size: 0.92rem;
  color: rgba(200, 225, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

.reserve-form-center {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(160, 210, 255, 0.2);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(200, 228, 255, 0.85);
}

.optional-label {
  font-weight: 400;
  color: rgba(180, 210, 255, 0.5);
  font-size: 0.78rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(160, 210, 255, 0.25);
  border-radius: 12px;
  padding: 13px 16px;
  color: #f0f6ff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder {
  color: rgba(180, 210, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus {
  border-color: #4a9eff;
  background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
  background: #0e2a5c;
  color: #f0f6ff;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: rgba(190, 220, 255, 0.72);
  font-size: 0.84rem;
}

.check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #2636C2;
}

.reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(120deg, #2636C2, #41709B);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(38, 54, 194, 0.5);
}

.reserve-btn svg {
  width: 18px;
  height: 18px;
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(38, 54, 194, 0.65);
}

.data-note {
  font-size: 0.76rem;
  color: rgba(180, 210, 255, 0.4);
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

/* mobile reserve */
@media (max-width: 720px) {
  .reserve-form-center {
    padding: 24px 20px;
  }

  .reserve-title {
    font-size: 1.6rem;
  }
}