/* ═══════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #f4f7fc;
  --dark: #eaeef6;
  --dark2: #e2e8f3;
  --dark3: #d8e0ee;
  --surface: #ffffff;
  --surface2: #f0f4fb;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.13);
  --text: #0a1628;
  --text2: #3a5470;
  --text3: #526b86;
  --orange: #139d99;
  --orange2: #139d99;
  --orange-text: #0f7976;
  --brand-on: #0a1628;
  --amber: #139d99;
  --red: #f43f5e;
  --green: #22d3a0;
  --green-text: #12805f;
  --blue: #3b82f6;
  --blue-text: #2563eb;
  --concrete: #64748b;
  --concrete-text: #596a80;
  --gold: #139d99;
  --grad1: linear-gradient(135deg, #139d99, #0f7976);
  --grad2: linear-gradient(135deg, #f0f4fb, #e2e8f3);
  --radius: 18px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(8px) saturate(115%);
  -webkit-backdrop-filter: blur(8px) saturate(115%);
  border-bottom: 0;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img,
.footer-logo-img {
  display: block;
  width: auto;
  height: 40px;
}

.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--grad1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--brand-on);
  letter-spacing: -1px;
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--orange-text);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  color: rgba(10, 22, 40, 0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0a1628;
}

.nav-cta {
  background: var(--orange);
  color: var(--brand-on) !important;
  padding: 7px 18px;
  border-radius: 20px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange2) !important;
  color: var(--brand-on) !important;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(19, 157, 153, 0.5) !important;
}
/* ═══════════════════════════════════════════
   HERO APP PREVIEW
═══════════════════════════════════════════ */
.hero-app-preview {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(255, 107, 0, 0.08);
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
}

.hero-app-bar {
  background: #1c1c1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-app-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hero-app-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "SF Mono", "Fira Code", monospace;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 3px 12px;
  margin: 0 8px;
}

.hero-app-screen {
  position: relative;
  background: #f0f0f0;
  min-height: 260px;
  overflow: hidden;
}

.hero-app-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.02) contrast(1.01);
}

/* Bottom fade-out — draws eye to content above */
.hero-app-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 80%,
    rgba(0, 0, 0, 0.95) 100%
  );
  pointer-events: none;
}

/* If image fails to load — show placeholder */
.hero-app-screen.no-img {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-app-screen.no-img::after {
  content: "";
  font-size: 14px;
  color: var(--text3);
}

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
section {
  padding: 72px 0;
  position: relative;
}

#roadmap {
  padding-top: 40px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: 1400px;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: stretch;
  padding: 0;
  background:
    radial-gradient(
      ellipse 110% 65% at 50% -5%,
      rgba(19, 157, 153, 0.13) 0%,
      transparent 58%
    ),
    linear-gradient(180deg, #edf1f9 0%, #f4f7fc 55%, #eaf5f4 100%);
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5, 12, 26, 0.62);
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
  pointer-events: none;
}

.hero-bg-canvas {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 400px at 20% 60%,
      rgba(19, 157, 153, 0.04) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle 600px at 80% 30%,
      rgba(19, 157, 153, 0.03) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle 300px at 50% 80%,
      rgba(19, 157, 153, 0.02) 0%,
      transparent 60%
    );
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero-inner {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(54px + 48px) clamp(24px, 5vw, 80px) 48px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  grid-template-rows: 1fr auto auto;
  gap: 32px clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero-product-logo {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.hero-product-logo img {
  height: clamp(88px, 16vw, 150px);
  width: auto;
  display: block;
  filter: invert(1) brightness(1.35);
  mix-blend-mode: screen;
}

.hero-badge {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 157, 153, 0.1);
  border: 1px solid rgba(19, 157, 153, 0.25);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #32d6cf;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

h1.hero-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  text-align: left;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff !important;
  margin: 0;
}

h1.hero-title em {
  font-style: normal;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: #3a5470 !important;
  max-width: 680px;
  margin: 0 auto 20px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-group {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(19, 157, 153, 0.3);
}

.btn-primary:hover {
  background: var(--orange2);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(34, 211, 160, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 22, 40, 0.18);
  color: #0a1628;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.02);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.52);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.72);
}

.hero-stat-number {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text3);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════ */
.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: block;
}

h2.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

h2.section-title em {
  font-style: normal;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text2);
  max-width: 600px;
  line-height: 1.6;
}

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

.center-text .section-lead {
  margin: 0 auto;
}
#features > .container > .section-eyebrow,
#features > .container > .section-title,
#features > .container > .section-lead,
#money-leak > .container > .section-eyebrow,
#money-leak > .container > .section-title,
#money-leak > .container > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   MONEY LEAK SECTION
═══════════════════════════════════════════ */
#money-leak {
  background: var(--dark);
}

#money-leak::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.leak-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.leak-card {
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.22);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.leak-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 28, 28, 0.38);
}

.leak-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(185, 28, 28, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.leak-icon {
  width: 100%;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  text-align: center;
}

.leak-icon svg {
  display: block;
  max-height: 44px;
}

.leak-icon--svg {
  font-size: 0;
}

.leak-details {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.leak-problem {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-align: center;
  list-style: none;
  min-height: 56px;
}

.leak-problem::-webkit-details-marker {
  display: none;
}

.leak-problem::marker {
  content: "";
}

.leak-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    margin-top 0.25s ease;
}

.leak-card.is-leak-open .leak-desc {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

.touch-card-toggle {
  display: none;
}

html.touch-device .leak-card {
  padding-bottom: 68px;
}

html.touch-device .touch-card-toggle {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 32px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateX(-50%);
  z-index: 2;
}

html.touch-device .touch-card-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: translateX(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}

html.touch-device .leak-card:hover {
  transform: none;
}

html.touch-device .leak-card.is-leak-open .leak-desc {
  max-height: 320px;
}

html.touch-device .leak-card.is-leak-open .touch-card-toggle::after {
  transform: translateX(-50%) rotate(225deg);
}
.leak-cost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(185, 28, 28, 0.25);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 18px;
}

.leak-solve {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(22, 163, 74, 0.07);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 10px;
  font-size: 15px;
  color: #0a0a0a;
  line-height: 1.55;
}

.leak-solve strong {
  color: #166534;
  font-weight: 600;
}

.leak-solve-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.leak-details:not([open]) > .leak-cost {
  display: inline-flex;
}

.leak-details:not([open]) > .leak-solve {
  display: flex;
}

/* Summary bar */
.leak-summary {
  margin-top: 48px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1),
    rgba(255, 107, 0, 0.05)
  );
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.leak-summary-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.leak-summary-text p {
  font-size: 15px;
  color: var(--text2);
}

.leak-summary-numbers {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.leak-num {
  text-align: center;
}

.leak-num-value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
}

.leak-num-label {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
#features {
  background: var(--black);
}

.features-modules {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.feature-visual-col {
  position: relative;
  align-self: start;
  min-width: 0;
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  margin-bottom: 18px;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tab-btn {
  border: none;
  cursor: pointer;

  padding: 12px 18px;
  border-radius: 12px;

  background: transparent;
  color: var(--text2);

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;

  transition:
    transform 0.2s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.tab-btn:hover {
  background: rgba(19, 157, 153, 0.08);
  color: var(--text);
}

.tab-btn.active {
  background: var(--grad1);
  color: #fff;
  box-shadow:
    0 8px 24px rgba(19, 157, 153, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.dark-mode .feature-tabs,
html.dark-mode .feature-tabs {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .tab-btn,
html.dark-mode .tab-btn {
  color: rgba(255, 255, 255, 0.75);
}

.dark-mode .tab-btn:hover,
html.dark-mode .tab-btn:hover {
  background: rgba(19, 157, 153, 0.12);
  color: var(--text);
}
.feature-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
  border-radius: var(--radius);
  border: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-img-wrap.auto-h {
  aspect-ratio: auto;
  min-height: 0;
}
.feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
}

.feature-img-wrap.auto-h .feat-img {
  position: relative;
  inset: auto;
  height: auto;
  object-fit: initial;
}

.feature-img-wrap .feat-img {
  border-radius: var(--radius);
}

.feature-img-wrap .feat-img,
html.dark-mode .feature-img-wrap .feat-img {
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.feature-module-copy {
  min-height: 560px;
}
.feature-module {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 44px;
  align-items: start;
}

.feature-module.reverse {
  direction: rtl;
}

.feature-module.reverse > * {
  direction: ltr;
}
#moduleMobile {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-items: start;
}

#moduleMobile > * {
  min-width: 0;
}

#moduleMobile .phone-video-visual {
  width: 100%;
  max-width: 100%;
}

#moduleMobile .feature-module-content {
  width: 100%;
  max-width: 100%;
}

.feature-module-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.feature-module-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-module-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 290px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 11px 14px;
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.feature-list li:hover {
  border-color: var(--border2);
}

.feature-list li::before {
  content: "\2713";
  grid-column: 1;
  grid-row: 1 / 3;
  width: 20px;
  height: 20px;
  background: rgba(48, 209, 88, 0.12);
  border: 1px solid rgba(48, 209, 88, 0.25);
  border-radius: 50%;
  color: var(--green-text);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 2px;
}

.feature-list li strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.feat-li-desc {
  grid-column: 2;
  grid-row: 2;
  display: block;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.08) 0%,
    transparent 70%
  );
}

/* Mini UI mockups inside feature visuals */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.mock-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.mock-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(48, 209, 88, 0.1);
  color: var(--green);
  border: 1px solid rgba(48, 209, 88, 0.2);
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.mock-row:hover {
  border-color: var(--border2);
}

.mock-row-label {
  font-size: 12px;
  color: var(--text2);
}

.mock-row-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.mock-row-value.green {
  color: var(--green);
}
.mock-row-value.orange {
  color: var(--orange);
}
.mock-row-value.red {
  color: var(--red);
}

.mock-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--grad1);
  transition: width 1s ease;
}

.mock-gantt {
  margin-top: 16px;
}

.mock-gantt-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mock-gantt-label {
  font-size: 10px;
  color: var(--text3);
  width: 60px;
  flex-shrink: 0;
}

.mock-gantt-track {
  flex: 1;
  height: 24px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.mock-gantt-block {
  position: absolute;
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

/* KPI cards */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kpi-card {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.kpi-value {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.kpi-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   SECURITY
═══════════════════════════════════════════ */
#security {
  background: var(--dark);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.security-card {
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    transform 0.3s,
    border-color 0.3s;
}

.security-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.security-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.security-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.security-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.security-compliance {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.compliance-badge span {
  font-size: 18px;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
#pricing {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  margin-top: 64px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(
    160deg,
    rgba(255, 107, 0, 0.12),
    rgba(255, 107, 0, 0.04)
  );
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.08);
}

.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-plan-name {
  color: var(--orange);
}

.pricing-tagline {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.4;
}

.pricing-features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li .check.yes {
  background: rgba(48, 209, 88, 0.12);
  color: var(--green-text);
  border: 1px solid rgba(48, 209, 88, 0.25);
}

.pricing-features li .check.no {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text3);
  border: 1px solid var(--border);
}

.pricing-features li strong {
  color: var(--text);
  font-weight: 600;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-cta.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.pricing-cta.primary:hover {
  background: var(--orange2);
  box-shadow: 0 4px 30px rgba(255, 107, 0, 0.5);
  transform: translateY(-2px);
}

.pricing-cta.secondary {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border2);
  color: var(--text);
}

.pricing-cta.secondary:hover {
  background: rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.pricing-cta.available {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.pricing-cta.secondary.available,
.pricing-cta.secondary.available:hover,
.pricing-cta.secondary.available:focus,
.pricing-cta.secondary.available:visited {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.pricing-cta.disabled {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: none;
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text3);
}

/* ═══════════════════════════════════════════
   LAUNCH
═══════════════════════════════════════════ */
#launch {
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 50%,
      rgba(34, 211, 160, 0.12) 0%,
      transparent 70%
    ),
    var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#launch::before,
#launch::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 160, 0.08);
  animation: expand 4s ease-in-out infinite;
}

#launch::before {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#launch::after {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

@keyframes expand {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.launch-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.launch-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  text-align: left;
  align-self: center;
}

.launch-layout .launch-form {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.launch-layout .launch-disclaimer {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
}

.launch-layout #successMsg {
  grid-column: 2;
  grid-row: 2;
}

.launch-date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.launch-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.launch-title em {
  font-style: normal;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.launch-sub {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 0;
  max-width: 540px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.launch-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.launch-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.launch-form-row:last-of-type {
  margin-bottom: 24px;
}

.launch-form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text2);
  text-align: left;
}

.launch-input {
  width: 100%;
  background: #f4f7fc;
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.launch-input::placeholder {
  color: var(--text3);
}
.launch-input:focus {
  border-color: var(--orange);
  background: #ffffff;
}

.launch-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  width: 100%;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.2s,
    transform 0.2s;
}

.launch-btn:hover {
  background: var(--orange2);
  transform: scale(1.03);
  box-shadow: 0 4px 40px rgba(19, 157, 153, 0.55);
}

.launch-disclaimer {
  font-size: 12px;
  color: var(--text3);
  position: relative;
  z-index: 1;
}
.contact-consent {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 20px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.contact-consent span {
  cursor: pointer;
}
.form-message {
  display: none;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.form-message.success {
  display: block;
  background: rgba(34, 211, 160, 0.1);
  border: 1px solid rgba(34, 211, 160, 0.3);
  color: var(--green-text);
}

.form-message.error {
  display: block;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: #c0263b;
}

.contact-email {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  
}

.contact-email:hover {
  text-decoration: underline;
}

.roadmap-note {
  margin-top: 28px;
  color: var(--text3);
  font-size: 13px;
  text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

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

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

.footer-copy {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text3);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text2);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}
.fade-up-delay-4 {
  transition-delay: 0.4s;
}
.fade-up-delay-5 {
  transition-delay: 0.5s;
}
.fade-up-delay-6 {
  transition-delay: 0.6s;
}

/* ═══════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  margin: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .roadmap-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roadmap-copy {
    position: static;
    text-align: center;
  }
  .roadmap-copy .section-lead {
    margin-left: auto;
    margin-right: auto;
  }
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 48px 0;
  }
  .container,
  .container-wide {
    padding: 0 20px;
  }
  .hero-inner {
    padding: calc(54px + 32px) 20px 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    justify-items: center;
    gap: 24px;
    text-align: center;
    min-height: 100svh;
    overflow: hidden;
  }
  .hero-product-logo {
    grid-column: 1;
    grid-row: 1;
    align-items: center;
  }
  h1.hero-title {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: clamp(21px, 5.4vw, 26px);
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  h1.hero-title em {
    display: block;
  }
  .hero-cta-group {
    grid-row: 3;
    width: 100%;
    max-width: 280px;
    justify-self: center;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-badge {
    grid-row: 4;
    max-width: 280px;
    text-align: center;
    white-space: normal;
    justify-content: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 14px;
    white-space: normal;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .leak-grid {
    grid-template-columns: 1fr;
  }

  .feature-module {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #moduleMobile {
    width: 100%;
    max-width: 100%;
    align-items: start;
  }
  .feature-module-copy {
    min-height: 0;
  }
  .feature-tabs {
    align-items: flex-start;
  }
  .tab-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
  }
  .feature-img-wrap.auto-h {
    min-height: 260px;
  }
  .feature-module.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .security-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .leak-summary {
    flex-direction: column;
  }
  .leak-summary-numbers {
    flex-direction: row;
  }
  .launch-layout {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .launch-copy,
  .launch-layout .launch-form,
  .launch-layout .launch-disclaimer,
  .launch-layout #successMsg {
    grid-column: 1;
    grid-row: auto;
  }
  .launch-copy {
    text-align: center;
  }
  .launch-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  #floating-cta {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════ */
#floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}
#floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(19, 157, 153, 0.5);
  transition: all 0.3s;
  white-space: nowrap;
}
#floating-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(19, 157, 153, 0.65);
}
@media (max-width: 768px) {
  .roadmap-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roadmap-copy {
    position: static;
    text-align: center;
  }
  .roadmap-copy .section-lead {
    margin-left: auto;
    margin-right: auto;
  }
  #floating-cta {
    bottom: 20px;
    right: 16px;
  }
  #floating-cta a {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/*SCREENSHOT VISUALS*/
.feature-visual-img {
  padding: 0;
  overflow: hidden;
}
.feat-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}
.feat-img-wrap.mobile-wrap {
  aspect-ratio: auto;
  min-height: 420px;
}
.feat-img.contain {
  object-fit: cover;
  object-position: center 20%;
  opacity: 1;
}
.feat-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.15s;
  z-index: 2;
}
.feat-zoom-btn:hover {
  background: rgba(19, 157, 153, 0.85);
  transform: scale(1.08);
}
.feat-zoom-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 92vw;
}
.lightbox-inner img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 14px;
  object-fit: contain;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.92);
}

/* ═══ APPLE PHONES SHOWCASE ═══ */
.apple-showcase-outer {
  position: relative;
  height: 280vh;
}
.apple-showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.apple-showcase-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(19, 157, 153, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.apple-showcase-text {
  text-align: center;
  margin-bottom: 52px;
  z-index: 1;
}
.apple-showcase-text .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #139d99;
  margin-bottom: 14px;
}
.apple-showcase-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.apple-showcase-text h2 em {
  color: #139d99;
  font-style: normal;
}
.apple-phones-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  justify-content: center;
  perspective: 1400px;
  z-index: 1;
}
.apple-phone-wrap {
  width: clamp(200px, 22vw, 290px);
  will-change: transform;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.9));
}
.apple-phone-frame {
  background: #0a0f1a;
  border-radius: 52px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 80px rgba(19, 157, 153, 0.07);
  padding: 14px 10px 10px;
}
.apple-phone-island {
  width: 82px;
  height: 20px;
  background: #000;
  border-radius: 10px;
  margin: 0 auto 10px;
}
.apple-phone-img {
  width: 100%;
  border-radius: 36px;
  display: block;
}
.apple-phone-home {
  width: 68px;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2.5px;
  margin: 10px auto 0;
}
.apple-showcase-label {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.apple-showcase-bg {
  position: absolute;
  inset: 0;
  background-image: url("mobile.png");
  background-size: cover;
  background-position: center 30%;
  filter: blur(28px) brightness(0.18) saturate(0.5);
  transform: scale(1.12);
  z-index: 0;
  pointer-events: none;
}
.apple-phone-screen-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  display: block;
}
.apple-phone-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 52%
  );
  pointer-events: none;
  z-index: 2;
  will-change: background;
}

/* ═══ Phone video showcase ═══ */
.phone-video-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-video-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.phone-video-wrap {
  display: flex;
  justify-content: center;
}
.phone-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.15s ease;
}
.phone-video-wrap video.switching {
  opacity: 0;
}
.phone-mode-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
}
.dark-mode .phone-mode-toggle,
html.dark-mode .phone-mode-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.mode-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.mode-btn--active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 14px rgba(19, 157, 153, 0.45);
}

/* ═══ ROADMAP V2 ═══ */
#roadmap {
  background: var(--dark);
  padding-top: 72px;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.roadmap-copy {
  position: sticky;
  top: 96px;
  text-align: left;
}

.roadmap-copy .section-lead {
  margin-left: 0;
  margin-right: 0;
}

.roadmapa-col-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.roadmapa-col-badge.inprogress {
  background: rgba(19, 157, 153, 0.12);
  color: var(--orange-text);
  border: 1px solid rgba(19, 157, 153, 0.25);
}

.roadmapa-col-badge.planned {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-text);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.roadmap-v2 {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roadmap-v2-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.roadmap-tabs {
  margin-bottom: 0;
}

.roadmap-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 14px;
  font-family: inherit;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.roadmap-tab:hover {
  background: rgba(0, 0, 0, 0.04);
}

.roadmap-tab:focus-visible {
  outline: 2px solid var(--orange-text);
  outline-offset: 3px;
}

.roadmap-tab.active {
  background: rgba(19, 157, 153, 0.08);
}

.roadmap-tab.active .roadmap-v2-num {
  color: var(--text);
}

.roadmap-v2-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text3);
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.roadmap-v2-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border2), transparent);
}

.roadmap-panel {
  display: none;
  animation: roadmap-fade-in 0.3s ease;
}

.roadmap-panel.active {
  display: block;
}

@keyframes roadmap-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.roadmap-active-card {
  background: linear-gradient(
    160deg,
    rgba(19, 157, 153, 0.07) 0%,
    rgba(19, 157, 153, 0.02) 100%
  );
  border: 1px solid rgba(19, 157, 153, 0.2);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 36px 22px 22px;
  color: var(--text);
  line-height: 1.65;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.roadmap-active-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(19, 157, 153, 0.14);
  border-color: rgba(19, 157, 153, 0.38);
}

.roadmap-active-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(19, 157, 153, 0.18);
  animation: pulse 2s ease-in-out infinite;
}

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

.roadmap-planned-card {
  background: linear-gradient(
    160deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(59, 130, 246, 0.03) 100%
  );
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 36px 22px 22px;
  color: var(--text);
  line-height: 1.65;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.roadmap-planned-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    160deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(59, 130, 246, 0.04) 100%
  );
  border-color: rgba(59, 130, 246, 0.34);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.14);
}

.roadmap-active-card h3,
.roadmap-planned-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--text);
}

.roadmap-active-card p,
.roadmap-planned-card p {
  margin: 0;
  color: var(--text2);
  line-height: 1.65;
  font-size: 14px;
}

html.dark-mode .roadmap-tab:hover {
  background: rgba(255, 255, 255, 0.06);
}

html.dark-mode .roadmap-tab.active {
  background: rgba(19, 157, 153, 0.15);
}

@media (max-width: 768px) {
  .roadmap-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roadmap-copy {
    position: static;
    text-align: center;
  }
  .roadmap-copy .section-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .roadmap-tabs {
    flex-wrap: wrap;
  }
  .roadmap-tabs .roadmap-v2-line {
    display: none;
  }
  .roadmap-tab {
    flex: 1 1 100%;
    justify-content: center;
  }
  .roadmap-active-grid,
  .roadmap-planned-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════════════ */
#theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: rgba(10, 22, 40, 0.72);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
#theme-toggle:hover {
  background: rgba(0, 0, 0, 0.16);
  color: #0a1628;
}
.theme-icon {
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 768px) {
  #theme-toggle .theme-label {
    display: none;
  }
}
/* ═══ Logo switching ═══ */
.nav-logo-white {
  display: none !important;
}
html.dark-mode .nav-logo-black {
  display: none !important;
}
html.dark-mode .nav-logo-white {
  display: block !important;
}

/* ═══════════════════════════════════════════
   DARK MODE OVERRIDES  (html.dark-mode)
═══════════════════════════════════════════ */
html.dark-mode {
  --black: #050c1a;
  --dark: #071020;
  --dark2: #0a1628;
  --dark3: #0f1e35;
  --surface: #132040;
  --surface2: #1a2d50;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.11);
  --text: #f0f4ff;
  --text2: #8fa8cc;
  --text3: #4d6a8a;
}
html.dark-mode body {
  background: #050c1a;
  color: #f0f4ff;
}

/* — Nav dark — */
html.dark-mode nav {
  background: transparent !important;
  border-bottom: 0;
}
html.dark-mode .nav-logo img {
  filter: none;
}
html.dark-mode .nav-links a {
  color: #8fa8cc;
}
html.dark-mode .nav-links a:hover {
  color: #f0f4ff;
}

/* — Theme toggle dark skin — */
html.dark-mode #theme-toggle {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(240, 244, 255, 0.72);
}
html.dark-mode #theme-toggle:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #f0f4ff;
}

/* — Hero — */
html.dark-mode #hero {
  background:
    radial-gradient(
      ellipse 110% 65% at 50% -5%,
      rgba(19, 157, 153, 0.16) 0%,
      transparent 58%
    ),
    linear-gradient(180deg, #050c1a 0%, #071020 55%, #071a1a 100%);
}
html.dark-mode #hero::before {
  background: rgba(5, 12, 26, 0.68);
}
html.dark-mode h1.hero-title {
  color: #f0f4ff !important;
}
html.dark-mode .hero-sub {
  color: #8fa8cc !important;
}
html.dark-mode .hero-logo {
  filter: invert(1) !important;
  mix-blend-mode: screen;
}
html.dark-mode .btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.11);
  color: #f0f4ff;
}
html.dark-mode .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
html.dark-mode .hero-stat {
  background: rgba(255, 255, 255, 0.03);
}
html.dark-mode .hero-stat:hover {
  background: rgba(255, 255, 255, 0.06);
}
html.dark-mode .hero-stat-label {
  color: #4d6a8a;
}

html.dark-mode .leak-problem,
html.dark-mode .leak-desc,
html.dark-mode .leak-cost,
html.dark-mode .leak-solve {
  color: #f0f4ff;
}
html.dark-mode .leak-solve strong {
  color: #22d3a0;
}
/* — Cards / surfaces — */
html.dark-mode .feature-list li {
  background: rgba(255, 255, 255, 0.03);
}
html.dark-mode .mock-row {
  background: rgba(255, 255, 255, 0.03);
}
html.dark-mode .mock-gantt-track {
  background: rgba(255, 255, 255, 0.03);
}
html.dark-mode .kpi-card {
  background: rgba(255, 255, 255, 0.03);
}
html.dark-mode .security-card {
  background: rgba(255, 255, 255, 0.03);
}
html.dark-mode .compliance-badge {
  background: rgba(255, 255, 255, 0.04);
}
html.dark-mode .pricing-cta.secondary {
  background: rgba(255, 255, 255, 0.06);
}
html.dark-mode .pricing-cta.secondary.available,
html.dark-mode .pricing-cta.secondary.available:hover,
html.dark-mode .pricing-cta.secondary.available:focus,
html.dark-mode .pricing-cta.secondary.available:visited {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* — Forms — */
html.dark-mode .launch-form {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}
html.dark-mode .launch-input {
  background: rgba(255, 255, 255, 0.06);
}
html.dark-mode .launch-input:focus {
  background: rgba(255, 255, 255, 0.09);
}