/* ═══════════════════════════════════════════════════════════════════════════
   COMPLII NEXT — Microsite Styles
   Fonts: Syne (headings) + DM Sans (body)
   Palette: Navy #162D52 · Teal #1ABCBE · Royal Blue #1B6BEF
═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Variables ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #162D52;
  --dnav:    #1A3560;
  --dark:    #0D1E38;
  --teal:    #1ABCBE;
  --teal-d:  #13999B;
  --blue:    #1B6BEF;
  --blue-d:  #1456CC;
  --ice:     #EEF5FF;
  --ice2:    #F8FAFF;
  --white:   #FFFFFF;
  --gray:    #5A6478;
  --lgray:   #8A99B0;
  --border:  rgba(26,188,190,0.2);
  --glass:   rgba(255,255,255,0.06);
  --glass-b: rgba(255,255,255,0.12);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 2px 12px rgba(13,30,56,0.12);
  --shadow-md: 0 8px 32px rgba(13,30,56,0.18);
  --shadow-lg: 0 20px 60px rgba(13,30,56,0.28);
  --shadow-teal: 0 8px 32px rgba(26,188,190,0.25);
  --shadow-blue: 0 8px 32px rgba(27,107,239,0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dnav);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 96px 0; }
.section-light { background: var(--white); }
.section-dark  { background: var(--dark); }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label.light { color: var(--teal); opacity: 0.85; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dnav);
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 56px;
}
.section-intro.light { color: rgba(255,255,255,0.65); }

/* ── Animations ─────────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ── Gate Overlay ───────────────────────────────────────────────────────── */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 20, 40, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.gate-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: gateIn 0.6s var(--ease-back) forwards;
}
@keyframes gateIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.gate-logo {
  height: 32px;
  width: auto;
  margin-bottom: 28px;
  display: block;
}

.gate-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dnav);
  margin-bottom: 8px;
}

.gate-sub {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.5;
}

.field-group {
  margin-bottom: 16px;
}
.field-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dnav);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E0E8F4;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dnav);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: var(--ice2);
}
.field-group input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,188,190,0.15);
  background: var(--white);
}
.field-group input.error { border-color: #E53E3E; }

.gate-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gate-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.gate-btn .arrow { transition: transform 0.2s; }
.gate-btn:hover .arrow { transform: translateX(4px); }

.gate-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--lgray);
  margin-top: 14px;
}

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(13,30,56,0.1);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dnav);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dnav);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13,30,56,0.97);
  backdrop-filter: blur(16px);
  padding: 16px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-link:hover, .mobile-link.cta-link { color: var(--teal); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s var(--ease-back), box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(26,188,190,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(26,188,190,0.08);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,188,190,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,188,190,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,107,239,0.25) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: blobFloat1 12s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,188,190,0.2) 0%, transparent 70%);
  top: 50%; right: -80px;
  animation: blobFloat2 15s ease-in-out infinite;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,107,239,0.15) 0%, transparent 70%);
  bottom: 0; left: 40%;
  animation: blobFloat3 10s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px,40px) scale(1.1); }
  66% { transform: translate(-30px,60px) scale(0.95); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-50px,-80px) scale(1.15); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px,-50px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(26,188,190,0.12);
  border: 1px solid rgba(26,188,190,0.3);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  letter-spacing: -0.01em;
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.seei-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.seei-item {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.seei-item em {
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
}
.seei-dot {
  color: rgba(255,255,255,0.25);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 140px;
  line-height: 1.3;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-arrow {
  width: 20px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  80% { top: 16px; opacity: 0.2; }
}

/* ── Reality Section ──────────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pain-card {
  padding: 32px 28px;
  background: var(--ice2);
  border: 1px solid #E8EEF8;
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.pain-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dnav);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
}

.callout-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--ice) 0%, #E8F0FE 100%);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--teal);
}
.callout-line {
  width: 4px;
  min-height: 100%;
  background: var(--teal);
  border-radius: 2px;
  display: none;
}
.callout-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dnav);
  font-style: italic;
}

/* ── SEEI Section ───────────────────────────────────────────────────────── */
.seei-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.seei-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}
.seei-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.seei-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.seei-icon svg { width: 24px; height: 24px; }

.shield-icon { background: rgba(26,188,190,0.15); color: var(--teal); }
.eye-icon    { background: rgba(27,107,239,0.15); color: var(--blue); }
.key-icon    { background: rgba(26,188,190,0.15); color: var(--teal); }
.info-icon   { background: rgba(27,107,239,0.15); color: var(--blue); }

.seei-word {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.seei-who {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.seei-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

/* ── Features Section ───────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid #E8EEF8;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }

.featured-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--ice) 0%, #E8F0FE 100%);
  border-color: rgba(27,107,239,0.2);
}
.featured-card::before { opacity: 1; }

.feature-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dnav);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(26,188,190,0.1);
  color: var(--teal-d);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.teal-tag {
  background: rgba(26,188,190,0.15);
  color: var(--teal-d);
}

.coming-soon-strip {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(27,107,239,0.08);
  border: 1px solid rgba(27,107,239,0.15);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--blue-d);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dnav) 100%);
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,188,190,0.2);
}
.ai-icon {
  width: 44px; height: 44px;
  background: rgba(26,188,190,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.ai-icon svg { width: 22px; height: 22px; }
.ai-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ai-text strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.ai-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── Scenarios / Before-After ───────────────────────────────────────────── */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.scenario-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  padding: 28px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.scenario-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(26,188,190,0.3);
  transform: translateY(-3px);
}
.scenario-card.active {
  border-color: var(--teal);
  background: rgba(26,188,190,0.08);
}

.scenario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.scenario-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.toggle-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.chevron {
  display: inline-block;
  transition: transform 0.3s;
}
.scenario-card.active .chevron { transform: rotate(180deg); }

.scenario-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}
.before-label {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
}
.after-label {
  background: rgba(26,188,190,0.15);
  color: var(--teal);
}

.scenario-before p, .scenario-after p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}
.scenario-after p { color: rgba(255,255,255,0.8); }

.scenario-before, .scenario-after {
  transition: opacity 0.3s, transform 0.3s;
}
.scenario-after.hidden { display: none; }
.scenario-card.active .scenario-after { color: rgba(26,188,190,0.9); }

.impact-callout {
  text-align: center;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(26,188,190,0.2);
  border-radius: var(--r-lg);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
.impact-callout strong { color: var(--teal); font-style: normal; }

/* ── SaaS Section ───────────────────────────────────────────────────────── */
.saas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.saas-benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--ice2);
  border: 1px solid #E8EEF8;
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.saas-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.benefit-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dnav);
  margin-bottom: 8px;
  line-height: 1.3;
}
.benefit-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
}

.saas-callout {
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dnav) 100%);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--teal);
}
.saas-callout p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  margin-bottom: 16px;
}
.saas-callout em { font-style: normal; color: var(--teal); }
.saas-pricing {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Security Section ───────────────────────────────────────────────────── */
.security-hero { margin-bottom: 36px; }

.sa-flag-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(26,188,190,0.12), rgba(27,107,239,0.08));
  border: 1px solid rgba(26,188,190,0.25);
  border-radius: var(--r-lg);
}
.sa-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.sa-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sa-text strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.sa-text span {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.sec-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-md);
  transition: background 0.3s, border-color 0.3s;
}
.sec-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(26,188,190,0.25);
}

.sec-check {
  width: 28px; height: 28px;
  background: rgba(26,188,190,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sec-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sec-body strong {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.sec-body span {
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.sec-note {
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── About Section ──────────────────────────────────────────────────────── */
.about-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.about-text .section-title { margin-bottom: 20px; }
.about-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 14px;
}
.about-text strong { color: var(--dnav); }

.about-logo-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}
.about-ss-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}
.about-tag {
  padding: 7px 14px;
  background: var(--ice);
  border: 1px solid #D8E8F8;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dnav);
  text-align: center;
  white-space: nowrap;
}

/* ── CTA Section ────────────────────────────────────────────────────────── */
.section-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.cta-bg { position: absolute; inset: 0; }
.blob-cta-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,107,239,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: blobFloat1 14s ease-in-out infinite;
}
.blob-cta-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,188,190,0.15) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation: blobFloat2 18s ease-in-out infinite;
}

.cta-container { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-xl);
  padding: 48px;
  backdrop-filter: blur(12px);
}

.cta-card-left h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-card-left p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.cta-link:hover { color: #fff; }
.contact-icon { font-size: 1rem; }

.cta-btn { align-self: flex-start; }

.cta-promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.promise-item span {
  width: 22px; height: 22px;
  background: rgba(26,188,190,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: #F8FAFF;
  border-top: 1px solid #E8EEF8;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { height: 24px; width: auto; }
.footer-copy { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-ss-logo { height: auto; width: 140px; object-fit: contain; }
.footer-hosted { font-size: 0.75rem; color: var(--lgray); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-column: span 2; }
  .pain-grid { grid-template-columns: 1fr; }
  .seei-grid { grid-template-columns: 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .saas-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .about-container { grid-template-columns: 1fr; }
  .about-logo-side { align-items: flex-start; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-promise { min-width: auto; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 64px; }
  .hero-title {
  letter-spacing: -0.01em; font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .stat-div { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .featured-card { grid-column: span 1; }
  .seei-tagline { gap: 8px; }
  .seei-dot { display: none; }
  .seei-item { font-size: 0.82rem; }
  .gate-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-card { padding: 28px 20px; }
}


/* ── Light Nav ──────────────────────────────────────────────────────────── */
.nav-light,
.nav-light.scrolled {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 #E8EEF8, 0 2px 16px rgba(13,30,56,0.06) !important;
}
.nav-light .nav-links a { color: var(--dnav) !important; }
.nav-light .nav-links a:hover { color: var(--teal) !important; }
.nav-light .nav-hamburger span { background: var(--dnav) !important; }

/* ── Light Footer ─────────────────────────────────────────────────────── */
.footer-light {
  background: #F8FAFF !important;
  border-top: 1px solid #E8EEF8 !important;
}
.footer-light .footer-copy { color: var(--gray) !important; }
.footer-light .footer-hosted { color: var(--lgray) !important; }

/* ── Material Icons ──────────────────────────────────────────────────── */
.material-icons-outlined {
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pain-icon .material-icons-outlined {
  font-size: 32px;
  color: var(--teal);
}
.seei-icon .material-icons-outlined {
  font-size: 26px;
}
.sec-check .material-icons-outlined {
  font-size: 14px;
}
.promise-item .material-icons-outlined {
  font-size: 15px;
  color: var(--teal);
  width: 22px;
  height: 22px;
  background: rgba(26,188,190,0.12);
  border-radius: 50%;
  flex-shrink: 0;
}
.ai-icon .material-icons-outlined { font-size: 22px; }
.sa-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.sa-icon .material-icons-outlined {
  font-size: 22px;
  color: var(--teal);
}
.sa-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.coming-soon-strip .material-icons-outlined {
  font-size: 16px;
  color: var(--blue-d);
}
.cta-link .material-icons-outlined {
  font-size: 18px;
  color: var(--teal);
}



/* ── Screenshots Section ─────────────────────────────────────────────── */
.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.featured-frame {
  grid-row: span 2;
}
.screenshots-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.browser-frame {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,30,56,0.1), 0 1px 4px rgba(13,30,56,0.06);
  border: 1px solid #E8EEF8;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.browser-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,30,56,0.15);
}
.browser-bar {
  background: #F4F6FA;
  border-bottom: 1px solid #E8EEF8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA40; }
.browser-url {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--lgray);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #E8EEF8;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-content {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--ice2);
}
.featured-frame .browser-content {
  aspect-ratio: 16/12;
}
.browser-content img,
.browser-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.screenshot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ice) 0%, #E8F0FE 100%);
}
.screenshot-placeholder .material-icons-outlined {
  font-size: 36px;
  color: var(--teal);
  opacity: 0.6;
}
.screenshot-placeholder strong {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dnav);
}
.screenshot-placeholder small {
  font-size: 0.72rem;
  color: var(--lgray);
}
.browser-caption {
  padding: 12px 16px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray);
  border-top: 1px solid #F0F4FA;
  background: var(--white);
}

@media (max-width: 900px) {
  .screenshots-grid { grid-template-columns: 1fr; }
  .featured-frame { grid-row: span 1; }
  .screenshots-side { gap: 16px; }
}


}

/* ── FAIS Network ───────────────────────────────────────────────────────── */
.network-wrap {
  display: block;
  width: 100%;
  margin: 0 0 44px;
  border: 1px solid rgba(26,188,190,0.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(0,0,0,0.25);
}
.network-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(26,188,190,0.08);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.network-label .material-icons-outlined { font-size: 13px; color: var(--teal); }

@media (max-width: 700px) {
  
}

/* ── Hero network variant ────────────────────────────────────────────────── */
.hero-network {
  margin: 44px 0 0;
  position: relative;
  z-index: 1;
}
.hero-network #fais-network,
.hero-network ~ #fais-network,
.hero .network-wrap #fais-network {
  height: 300px !important;
}
#fais-network {
  display: block !important;
  width: 100% !important;
  height: 300px !important;
  cursor: crosshair;
}

/* Hero needs enough room for the network */
.hero {
  padding-bottom: 60px;
}
.hero-content {
  width: 100%;
}
@media (max-width: 700px) {
  #fais-network { height: 200px !important; }
  .hero-network { margin-top: 28px; }
}

/* ── Logo on dark — microsite ───────────────────────────────────────────── */
.logo-on-dark-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 8px 12px;
}
