@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Nohemi';
  src: url('fonts/Nohemi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

/* ==========================================================================
   BIZBOT — DEEP DARK DESIGN SYSTEM
   Near-black canvas with subtle blue hints (references: peachweb / haoqi /
   risk.film / smrithi). Accents sparingly — never a blue wash.
   ========================================================================== */

:root {
  /* Canvas */
  --bg0: #050507;
  --bg1: #0a0a0e;
  --bg2: #12131a;
  --panel: rgba(18, 20, 28, 0.72);
  --panel-solid: #12141c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Type */
  --ink: #f2f2f4;
  --muted: #9a9aab;
  --faint: #6a6a7a;

  /* Accents — used sparingly */
  --accent: #5d6dff;
  --accent-2: #8eb8ff;
  --accent-3: #43a4ff;
  --glow: rgba(93, 109, 255, 0.18);

  /* Fonts */
  --font-hero: 'Nohemi', Arial, sans-serif;
  --font-brand: 'Nohemi', Arial, sans-serif;
  --font-display: 'Nohemi', Arial, sans-serif;
  --font-body: 'Nohemi', Arial, sans-serif;
  --font-tech: 'Nohemi', Arial, sans-serif;

  /* Legacy variable aliases used across components */
  --black: var(--ink);
  --white: var(--bg1);
  --cream: var(--bg2);
  --mid: var(--muted);
  --border: var(--line);
  --card: var(--panel-solid);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg0);
  overscroll-behavior-y: none;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 70% 45% at 80% 10%, rgba(93, 109, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 40% at 10% 90%, rgba(116, 211, 255, 0.04), transparent 50%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
  background-attachment: fixed;
  background-color: var(--bg0);
  color: var(--ink);
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

body.robot-hover { cursor: grab; }
body.robot-grabbing { cursor: grabbing; }
body.robot-grabbing * { user-select: none; }

/* Subtle film grain over everything */
.page-noise {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 9s steps(6) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ==========================================================================
   SPLASH INTRO
   ========================================================================== */
.splash-container {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--bg0);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeOutSplash 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: 2.5s;
  pointer-events: none;
}

.splash-bg-glow {
  position: absolute;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(93, 109, 255, 0.12) 0%, rgba(116, 211, 255, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: floatAmbientGlow 6s ease-in-out infinite;
}

.splash-logo {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #fff;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: scaleLogoReveal 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.splash-logo span {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #0a1020;
  padding: 4px 20px;
  border-radius: 12px;
  box-shadow: 0 0 50px var(--glow);
  animation: splashPulse 2s ease-in-out infinite alternate;
}

.splash-tag {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--faint);
  animation: splashTagIn 1.2s ease 0.6s both;
}

@keyframes fadeOutSplash {
  0% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; transform: translateY(-30px); }
}
@keyframes floatAmbientGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}
@keyframes scaleLogoReveal {
  0% { opacity: 0; transform: scale(0.85) translateY(24px); filter: blur(10px); }
  40% { opacity: 1; filter: blur(0); }
  100% { transform: scale(1) translateY(0); }
}
@keyframes splashPulse {
  0% { box-shadow: 0 0 18px rgba(93, 109, 255, 0.22); }
  100% { box-shadow: 0 0 32px rgba(116, 211, 255, 0.28); transform: scale(1.02); }
}
@keyframes splashTagIn {
  from { opacity: 0; letter-spacing: 0.6em; }
  to { opacity: 1; letter-spacing: 0.32em; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(4, 8, 18, 0.62);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.nav-logo {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: flex; align-items: center; gap: 9px;
}

.nav-logo-mark { height: 38px; width: 38px; display: block; border-radius: 10px; flex-shrink: 0; }

.nav-logo span {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #0a1020;
  padding: 2px 8px;
  border-radius: 5px;
}

.nav-right-container { display: flex; align-items: center; gap: 2rem; }

.nav-links {
  display: flex; align-items: center; gap: 2.1rem;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #f5f8ff !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 6px 22px var(--glow);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(93, 109, 255, 0.28); }

/* The product film becomes a clean, full-screen cinema: the navigation slides
   away only while the sticky stop-motion sequence is active, then returns. */
body.film-active #mainNav {
  transform: translate3d(0, calc(-100% - 12px), 0);
  opacity: 0;
  pointer-events: none;
}
body.film-active .mobile-menu { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  body.film-active #mainNav { transition: none; }
}


.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: 0; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(4, 8, 18, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  flex-direction: column; padding: 1.5rem 2rem; gap: 1.25rem; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--ink); text-decoration: none; cursor: pointer; }

/* ==========================================================================
   PAGE WRAPPERS & SHARED PARTS
   ========================================================================== */
.page { display: none; padding-top: 68px; min-height: 100vh; }
.page.active { display: block; }
#page-home { padding-top: 0; position: relative; }

section { padding: 6rem 2rem; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
}

/* Editorial section header: big chapter index beside the title */
.editorial-section { position: relative; z-index: 6; background: transparent; }
.editorial-section.alt {
  background: linear-gradient(180deg, rgba(10, 18, 38, 0.5), rgba(10, 18, 38, 0.0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1rem;
}
.chapter-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(116, 211, 255, 0.35);
  user-select: none;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(120deg, #4f5fe8, #3d7fd4);
  color: #f5f8ff;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(93, 109, 255, 0.28); }
.btn-primary.big { padding: 16px 36px; font-size: 16px; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent-2); background: rgba(93, 109, 255, 0.08); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(9, 15, 34, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); transform: translateY(-2px); }

/* ==========================================================================
   3D ROBOT STAGE (fixed, travels with scroll on the home page)
   ========================================================================== */
.robot-stage {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.robot-stage canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: auto;
}
/* stage only lives on the home page */
body:not(.on-home) .robot-stage { display: none; }

/* ==========================================================================
   CHAPTER 00 · HERO
   ========================================================================== */
.hero-cine {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  z-index: 2; /* below the robot stage — the mech floats over the type */
}

.hero-glow {
  position: absolute;
  top: 58%; left: 62%;
  transform: translate(-50%, -50%);
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(93, 109, 255, 0.10) 0%, rgba(116, 211, 255, 0.03) 45%, transparent 70%);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
  animation: robotGlowPulse 7s ease-in-out infinite;
}
@keyframes robotGlowPulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.06); }
}

.hero-grid-lines {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38vh;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.03), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 96px);
  -webkit-mask-image: linear-gradient(to top, black 28%, transparent);
  mask-image: linear-gradient(to top, black 28%, transparent);
  pointer-events: none;
}

.hero-frame {
  position: relative;
  height: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 64px 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.15rem;
}

.hero-mega {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: clamp(0.6rem, 2.2vh, 2rem);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(2.4rem, 7vw, 7rem);
  color: var(--ink);
  user-select: none;
}
.hero-mega .line { display: block; }
.hero-mega .l2 em {
  font-style: normal;
  color: var(--accent-2);
}
.hero-mega .stroke {
  color: transparent;
  -webkit-text-stroke: clamp(1.2px, 0.16vw, 2.2px) rgba(255, 255, 255, 0.28);
}
.hero-mega .accent-dot { color: var(--accent-2); }

/* staggered rise-in */
.hero-mega .line {
  opacity: 0;
  transform: translateY(46px);
  animation: heroLineUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-mega .l1 { animation-delay: 2.7s; }
.hero-mega .l2 { animation-delay: 2.82s; }
.hero-mega .l3 { animation-delay: 2.94s; }
.hero-mega .l4 { animation-delay: 3.06s; }
@keyframes heroLineUp { to { opacity: 1; transform: translateY(0); } }

.hero-bottomline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding-bottom: 0.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 7;
}
.hero-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 1rem;
  gap: 1rem;
  flex-shrink: 0;
  margin-top: auto;
}
.hero-stats div { display: flex; flex-direction: column; gap: 3px; }
.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--accent-2);
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Speech bubble shown while the robot waves hello */
.robot-bubble {
  position: absolute;
  left: 50%;
  top: min(12vh, 110px);
  z-index: 8;
  background: rgba(8, 16, 36, 0.92);
  border: 1px solid rgba(116, 211, 255, 0.55);
  border-radius: 18px 18px 18px 5px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #e8f4ff;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 44px rgba(0, 0, 8, 0.55), 0 0 18px rgba(93, 109, 255, 0.15);
  opacity: 0;
  transform: translate(72px, 14px) scale(0.82);
  transform-origin: bottom left;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
}
.robot-bubble.show { opacity: 1; transform: translate(72px, 0) scale(1); }
.robot-bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: rgba(8, 16, 36, 0.92);
  border-right: 1px solid rgba(116, 211, 255, 0.55);
  border-bottom: 1px solid rgba(116, 211, 255, 0.55);
  transform: rotate(45deg);
}

/* ==========================================================================
   CHAPTER 01 · PRODUCT TOUR (pinned robot + safe-zone copy)
   Camera crops the mech; content fills the leftover canvas.
   ========================================================================== */
.explode-section {
  position: relative;
  height: 580vh; /* seamless runway from hero park into zoomed crops */
  z-index: 2;
}

.explode-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.tour-eyebrow {
  position: absolute;
  top: 11vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 6;
  width: min(90vw, 520px);
  pointer-events: none;
  opacity: 0;
}
.tour-eyebrow .chapter-tag { margin-bottom: 0.55rem; }
.tour-eyebrow p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.chapter-tag {
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-block;
  margin-bottom: 1rem;
}

/* Beat copy — composition around the current camera crop, low chrome */
.tour-beat {
  position: absolute;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  max-width: min(400px, 38vw);
}
.tour-beat .beat-label {
  display: block;
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.7rem;
}
.tour-beat h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.tour-beat p {
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--muted);
  max-width: 34ch;
}

/* A — head zoom: lower-left band, optics own the right/upper frame */
.tour-beat.beat-a {
  left: max(3.5vw, 1.75rem);
  bottom: 14vh;
  max-width: min(380px, 34vw);
}
/* B — torso: right safe zone */
.tour-beat.beat-b {
  right: max(3vw, 1.5rem);
  top: 26vh;
  text-align: left;
}
/* C — core open: left safe zone */
.tour-beat.beat-c {
  left: max(3vw, 1.5rem);
  top: 28vh;
}
/* D — full figure: bottom center under the bot */
.tour-beat.beat-d {
  left: 50%;
  bottom: 9vh;
  transform: translateX(-50%);
  text-align: center;
  max-width: min(460px, 70vw);
}
.tour-beat.beat-d p { max-width: none; margin: 0 auto; }

.explode-progress {
  position: absolute;
  bottom: 3.6vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 42vw);
  height: 2px;
  background: rgba(148, 170, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
  z-index: 6;
}
.explode-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
}

/* ==========================================================================
   CHAPTERS 02–04 · SCROLL STORY PANELS
   ========================================================================== */
.story-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  position: relative;
  z-index: 2; /* content sits under the robot stage during the cinema */
}
.story-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 6;
}
.story-text { max-width: 500px; }
.story-text.align-right { margin-left: auto; }

.story-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(116, 211, 255, 0.4);
  line-height: 1;
  display: block;
  margin-bottom: 1.25rem;
}
.story-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.story-text h2 em { font-style: normal; color: var(--accent-2); }
.story-text p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.story-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.story-chips span {
  border: 1px solid rgba(116, 211, 255, 0.4);
  background: rgba(93, 109, 255, 0.10);
  color: #bfe6ff;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.story-split .story-text { max-width: none; }
.story-visual-col { width: 100%; }

/* ── Live chat demo card ── */
.chat-mockup {
  background: var(--panel-solid);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0, 0, 5, 0.6);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}
.chat-mockup.demo:hover { transform: translateY(-6px); }

.mock-header {
  background: rgba(4, 8, 18, 0.85);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.mock-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-3)); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.mock-hname { font-size: 13px; font-weight: 600; color: #fff; }
.mock-hsub { font-size: 11px; color: var(--faint); }
.mock-online { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; margin-left: auto; }

.mock-body {
  padding: 16px;
  background: rgba(5, 9, 20, 0.7);
  display: flex; flex-direction: column; gap: 10px;
  height: min(34vh, 320px);
  overflow-y: auto;
}
.mock-msg { padding: 9px 13px; border-radius: 14px; font-size: 12.5px; line-height: 1.55; max-width: 80%; }
.mock-msg.bot {
  background: rgba(20, 32, 66, 0.8);
  border: 1px solid var(--line);
  color: #dbe4ff;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.mock-msg.user {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.mock-footer {
  background: rgba(4, 8, 18, 0.85);
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px;
}
.mock-input {
  flex: 1;
  background: rgba(10, 18, 38, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 7px 13px;
  font-size: 11px;
  color: var(--faint);
}
.mock-sendbtn { width: 30px; height: 30px; background: linear-gradient(120deg, var(--accent), var(--accent-3)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mock-sendbtn svg { stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.mock-msg.typing { display: flex; gap: 4px; align-items: center; min-height: 19px; }
.mock-msg.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: typingDot 1s infinite;
}
.mock-msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.mock-msg.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-4px); opacity: 0.9; }
}

/* ── Scroll-reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
[data-reveal].in { opacity: 1; transform: none; }
.steps > [data-reveal]:nth-child(2),
.features-grid > [data-reveal]:nth-child(2),
.testi-grid > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.steps > [data-reveal]:nth-child(3),
.features-grid > [data-reveal]:nth-child(3),
.testi-grid > [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.features-grid > [data-reveal]:nth-child(4) { transition-delay: 0.12s; }
.features-grid > [data-reveal]:nth-child(5) { transition-delay: 0.24s; }
.features-grid > [data-reveal]:nth-child(6) { transition-delay: 0.36s; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  overflow: hidden;
  background: rgba(6, 11, 24, 0.8);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  position: relative;
  z-index: 6;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeMove 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--faint);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--accent-2); }
.marquee-track i { color: var(--accent); font-style: normal; font-size: 12px; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; perspective: 1000px; }
.step-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s ease;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 20% 0%, rgba(93, 109, 255, 0.13), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover {
  transform: translateY(-8px) rotateX(3deg) scale(1.01);
  box-shadow: 0 24px 50px rgba(0, 0, 6, 0.55);
  border-color: rgba(116, 211, 255, 0.4);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(148, 170, 255, 0.5);
  line-height: 1;
  margin-bottom: 1rem;
  transition: -webkit-text-stroke-color 0.3s ease, transform 0.4s ease;
}
.step-card:hover .step-num {
  transform: translateZ(25px);
  -webkit-text-stroke-color: var(--accent-2);
}
.step-icon { font-size: 28px; margin-bottom: 0.75rem; transition: transform 0.3s ease; }
.step-card:hover .step-icon { transform: translateZ(15px) scale(1.1); }
.step-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ==========================================================================
   FEATURES — BENTO GRID
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; perspective: 1000px; }
.features-grid.bento { grid-template-columns: repeat(3, 1fr); }
.features-grid.bento .span2 { grid-column: span 2; }

.feature-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at 0% 0%, rgba(116, 211, 255, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(116, 211, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 6, 0.5);
}

.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(93, 109, 255, 0.14);
  border: 1px solid rgba(93, 109, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(6deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}
.feature-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.testi-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.3s;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 6, 0.5);
  border-color: rgba(116, 211, 255, 0.3);
}
.testi-stars { color: var(--accent-2); font-size: 14px; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testi-text { font-size: 14px; line-height: 1.75; color: var(--ink); opacity: 0.88; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  z-index: 6;
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
  background: rgba(4, 7, 16, 0.75);
}
.cta-glow {
  position: absolute;
  left: 50%; bottom: -320px;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(93, 109, 255, 0.28), rgba(67, 164, 255, 0.10) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.cta-band h2 em { font-style: normal; color: var(--accent-2); }
.cta-band p { position: relative; font-size: 16px; color: var(--muted); margin-bottom: 2.2rem; font-weight: 300; }
.cta-band .btn-primary { position: relative; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  position: relative;
  z-index: 6;
  background: rgba(2, 4, 10, 0.9);
  color: var(--muted);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-inner { max-width: 1160px; margin: 0 auto; position: relative; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-brand); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 8px; }
.footer-brand span { background: linear-gradient(120deg, var(--accent-2), var(--accent)); color: #0a1020; padding: 2px 8px; border-radius: 5px; }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; color: var(--faint); }
.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 1rem; font-family: var(--font-tech); text-transform: uppercase; letter-spacing: 0.14em; }
.footer-col a { display: block; font-size: 13px; color: var(--faint); text-decoration: none; margin-bottom: 0.6rem; cursor: pointer; transition: color 0.15s, transform 0.2s ease; }
.footer-col a:hover { color: var(--accent-2); transform: translateX(4px); }

.footer-mega {
  font-family: 'Bodoni 72', Didot, 'Times New Roman', Georgia, serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 12.5vw, 12rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(148, 170, 255, 0.16);
  user-select: none;
  margin: 1rem 0 2rem;
  background: linear-gradient(to bottom, rgba(93, 109, 255, 0.14), transparent 85%);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 12px; color: var(--faint); }
.footer-mini-link { color: var(--faint); cursor: pointer; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-mini-link:hover { color: var(--accent-2); }

/* ==========================================================================
   SUBPAGE HERO (How / Pricing / About / FAQ / Contact)
   ========================================================================== */
.subpage-hero {
  padding: 6.5rem 2rem 4rem;
  position: relative;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.page-title em { font-style: normal; color: var(--accent-2); }

/* ==========================================================================
   PRICING
   ========================================================================== */
#page-pricing .subpage-hero { padding: clamp(4.5rem, 8vh, 6rem) 2rem clamp(1.5rem, 3vh, 2.25rem); }
#page-pricing section[style*="padding-top:0"] { padding-bottom: clamp(2.5rem, 5vh, 4rem); }

.pricing-toggle {
  display: inline-flex;
  background: rgba(10, 18, 38, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 1.25rem auto 0;
}
.toggle-btn {
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  transition: all 0.25s;
}
.toggle-btn.active {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #fff;
  box-shadow: 0 4px 16px var(--glow);
}
.save-note { color: var(--accent-2); font-size: 11px; }
.toggle-btn.active .save-note { color: #d8f3ff; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.25rem; perspective: 1000px; align-items: stretch; }
.pricing-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem 1.75rem;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0, 0, 6, 0.55);
  border-color: rgba(116, 211, 255, 0.35);
}
.pricing-card.featured {
  border-color: rgba(93, 109, 255, 0.65);
  background: linear-gradient(180deg, rgba(93, 109, 255, 0.12), rgba(13, 22, 46, 0.55) 40%);
  box-shadow: 0 0 60px rgba(93, 109, 255, 0.14);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 14px; border-radius: 999px;
  box-shadow: 0 6px 18px var(--glow);
}

.plan-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 0.4rem; }
.plan-desc { font-size: 12.5px; color: var(--muted); margin-bottom: 1.1rem; line-height: 1.55; min-height: 2.4em; }
.plan-price { margin-bottom: 1rem; }
.price-top { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem 0.5rem; min-height: 1.35rem; margin-bottom: 0.3rem; }
.price-main { display: flex; align-items: baseline; gap: 0.3rem; }
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.plan-price .currency { font-size: 15px; font-weight: 600; display: inline-block; color: var(--accent-2); }
.plan-price .period { font-size: 13px; color: var(--muted); }

.plan-features { list-style: none; margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-features li { font-size: 12.8px; display: flex; align-items: flex-start; gap: 8px; color: var(--ink); }
.plan-features li::before { content: '✓'; color: var(--accent-2); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-features li.no::before { content: '✗'; color: var(--faint); }
.plan-features li.no { color: var(--faint); }

.setup-fee-note {
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 18, 38, 0.6);
  border: 1px solid rgba(142, 184, 255, 0.25);
  border-radius: 12px;
  font-size: 13px;
  color: var(--muted);
}
.setup-fee-note strong { color: var(--accent-2); }

.compare-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 0.5rem;
}
.compare-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.compare-table th {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  padding: 1rem; text-align: center;
  border-bottom: 2px solid var(--line-strong);
  color: var(--ink);
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 0.875rem 1rem;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  color: var(--ink);
}
.compare-table td:first-child { text-align: left; color: var(--muted); }
.compare-table tr:hover td { background: rgba(93, 109, 255, 0.06); }
.check { color: var(--accent-2); font-weight: 700; }
.cross { color: var(--faint); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-story { max-width: 720px; margin: 0 auto; }
.about-story p { font-size: 16px; line-height: 1.85; color: var(--ink); opacity: 0.85; margin-bottom: 1.5rem; font-weight: 300; }
.about-story strong { font-weight: 600; color: var(--accent-2); }

.about-head { margin-top: 4.5rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.value-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0, 0, 6, 0.5); border-color: rgba(116, 211, 255, 0.3); }
.value-icon { font-size: 28px; margin-bottom: 0.75rem; }
.value-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0, 0, 6, 0.5); border-color: rgba(116, 211, 255, 0.3); }
.team-av { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #fff; box-shadow: 0 10px 26px var(--glow); }
.team-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--accent-2); margin-bottom: 0.75rem; }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ==========================================================================
   PROCESS (HOW IT WORKS)
   ========================================================================== */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.process-step:hover { transform: translateX(8px); }

.process-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(148, 170, 255, 0.45);
  line-height: 1;
  transition: -webkit-text-stroke-color 0.3s ease, transform 0.4s ease;
}
.process-step:hover .process-num {
  -webkit-text-stroke-color: var(--accent-2);
  transform: scale(1.05);
}

.process-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 0.75rem; }
.process-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.process-tip {
  background: rgba(93, 109, 255, 0.08);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  color: #a9c6f0;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }

.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(93, 109, 255, 0.12);
  border: 1px solid rgba(93, 109, 255, 0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-item p { font-size: 13px; color: var(--muted); margin: 0; }

.contact-form {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--ink); }

.form-group input, .form-group textarea, .form-group select {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  background: rgba(5, 9, 20, 0.6);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--faint); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(93, 109, 255, 0.18);
}
.form-group select option { background: var(--bg2); color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(25, 195, 125, 0.1);
  border: 1px solid rgba(25, 195, 125, 0.4);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 14px;
  color: #7ce8b8;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 780px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(116, 211, 255, 0.35); }
.faq-q {
  padding: 1.15rem 1.4rem;
  font-size: 15px; font-weight: 500;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--accent-2); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.4rem 1.25rem; font-size: 14px; color: var(--muted); line-height: 1.8; font-weight: 300; }
.faq-item.open .faq-a { display: block; }

.faq-cta-box {
  margin-top: 3rem;
  padding: 2.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}
.faq-cta-box p { font-size: 15px; margin-bottom: 1rem; color: var(--muted); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .features-grid.bento { grid-template-columns: repeat(2, 1fr); }
  .features-grid.bento .span2 { grid-column: span 2; }
  .tour-beat { max-width: min(340px, 36vw); }
}

@media (max-width: 768px) {
  nav { padding: 0 1rem; padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
  .nav-links { display: none; }
  .nav-right-container { gap: 0.75rem; }
  .hamburger { display: flex; }

  section { padding: 3.5rem 1.25rem; }

  /* Robot stays inside the hero on mobile — MUST paint above hero copy or it vanishes */
  .robot-stage { position: absolute; top: 0; left: 0; right: 0; bottom: auto; height: 100svh; z-index: 8; }
  .hero-cine {
    height: 100svh;
    min-height: 580px;
    z-index: 2;
  }
  .hero-frame,
  .hero-bottomline { position: relative; z-index: 9; }
  .hero-frame { padding: 76px 1.25rem 0; }
  .hero-mega { font-size: clamp(1.9rem, 9.6vw, 3.2rem); line-height: 0.98; margin-top: 1rem; }
  .hero-bottomline { align-items: stretch; gap: 0.9rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; text-align: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding-bottom: 1.2rem; }
  .robot-bubble { display: none; }

  /* Product tour becomes a static stacked section on mobile */
  .explode-section { height: auto; }
  .explode-sticky { position: static; height: auto; overflow: visible; padding: 4rem 1.25rem; display: flex; flex-direction: column; gap: 1.75rem; }
  .tour-eyebrow { position: static; transform: none; text-align: left; width: auto; opacity: 1 !important; margin-bottom: 0.25rem; }
  .tour-beat {
    position: static;
    max-width: none;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }
  .tour-beat.beat-d { transform: none; text-align: left; }
  .tour-beat.beat-d p { margin: 0; }
  .explode-progress { display: none; }

  .story-panel { min-height: unset; padding: 4rem 1.25rem; }
  .story-text, .story-text.align-right { max-width: none; margin-left: 0; }
  .story-split { grid-template-columns: 1fr; gap: 2.5rem; }

  .section-head { grid-template-columns: 1fr; gap: 0.75rem; }
  .chapter-index { font-size: 3.2rem; }

  .steps, .features-grid, .features-grid.bento, .testi-grid, .pricing-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .features-grid.bento .span2 { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .process-step { grid-template-columns: 4.25rem minmax(0, 1fr); gap: 1rem; }
  .process-num { font-size: 40px; text-align: right; width: 100%; }
  .process-content { min-width: 0; }

  .subpage-hero { padding: 5rem 1.25rem 3rem; }
}

@media (max-width: 560px) {
  .nav-logo { font-size: 17px; }
  .nav-logo-mark { height: 32px; width: 32px; }
  .hero-mega { font-size: clamp(1.7rem, 9.6vw, 2.8rem); }
  .hero-cine { min-height: 540px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats strong { font-size: 1.15rem; }
}

/* Reduced motion: kill the heavy animation, keep everything readable */
@media (prefers-reduced-motion: reduce) {
  .hero-mega .line { animation: none; opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .page-noise { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .explode-section { height: auto; }
  .explode-sticky { position: static; height: auto; padding: 4rem 1.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .tour-eyebrow, .tour-beat { position: static; transform: none !important; opacity: 1 !important; width: 100%; text-align: left; max-width: none; }
  .explode-progress { display: none; }
}

/* Fallback when WebGL is unavailable */
body.no-3d .explode-section { height: auto; }
body.no-3d .explode-sticky { position: static; height: auto; padding: 4rem 1.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
body.no-3d .tour-eyebrow, body.no-3d .tour-beat { position: static; transform: none !important; opacity: 1 !important; width: 100%; text-align: left; max-width: none; }
body.no-3d .explode-progress { display: none; }

#robotFailNote {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 10000;
  max-width: min(92vw, 420px);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(20, 24, 40, 0.92);
  border: 1px solid rgba(116, 211, 255, 0.35);
  color: #e8eefc;
  font: 500 13px/1.45 'Nohemi', sans-serif;
  text-align: center;
  pointer-events: none;
}




/* ==========================================================================
   CHAPTER 00 · FULL-SCREEN INTRO
   The message stays pinned over frame 001. Its content fades first, the black
   layer holds for a beat, then the stop-motion is revealed at full viewport.
   ========================================================================== */
.intro-hero {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 138svh;
  min-height: 860px;
  padding: 0;
  background: #030305;
}

.intro-sticky {
  --intro-opacity: 1;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  padding: clamp(86px, 11vh, 124px) clamp(1.25rem, 4vw, 4rem) clamp(16px, 2.5vh, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  opacity: var(--intro-opacity);
  will-change: opacity;
  background:
    radial-gradient(circle at 50% 42%, rgba(93, 109, 255, 0.12), transparent 35%),
    radial-gradient(ellipse 74% 50% at 50% 100%, rgba(67, 164, 255, 0.07), transparent 62%),
    linear-gradient(180deg, #07070a 0%, #030305 100%);
}

.intro-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.intro-sticky::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24vh;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #020204);
}

.intro-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(142,184,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.intro-orbit-a {
  width: min(74vw, 980px);
  aspect-ratio: 1;
  transform: rotate(-12deg) scaleY(0.38);
}

.intro-orbit-b {
  width: min(52vw, 700px);
  aspect-ratio: 1;
  transform: rotate(16deg) scaleY(0.5);
  border-color: rgba(255,255,255,0.055);
}

.intro-inner {
  width: min(1480px, 100%);
  max-height: calc(100svh - 68px - clamp(16px, 2.5vh, 28px) - 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  text-align: center;
}

.intro-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-hero);
  font-size: clamp(3.8rem, min(15vw, 20vh), 8.5rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}

.intro-title > span {
  display: block;
  opacity: 0;
  transform: translateY(36px);
  animation: introLineIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-title > span:nth-child(1) { animation-delay: 0.08s; }
.intro-title > span:nth-child(2) { animation-delay: 0.16s; }
.intro-title > span:nth-child(3) { animation-delay: 0.24s; }
.intro-title > span:nth-child(4) { animation-delay: 0.32s; }

.intro-title em {
  color: var(--accent-2);
  font-style: normal;
}

.intro-title .stroke {
  color: transparent;
  -webkit-text-stroke: clamp(1.2px, 0.15vw, 2.4px) rgba(255,255,255,0.58);
}

.intro-title .accent-dot { color: var(--accent-2); }

.intro-actions {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(20px);
  animation: introActionsIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

.intro-button {
  min-width: 190px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.intro-actions .btn-ghost {
  background: rgba(5,7,13,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.intro-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 3vh, 2.2rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(235,239,249,0.48);
  animation: introCueIn 0.7s ease 0.95s both;
}

.intro-scroll-cue i {
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.16);
}

.intro-scroll-cue i::after {
  content: '';
  display: block;
  width: 100%;
  height: 48%;
  background: var(--accent-2);
  animation: introScrollPulse 1.6s ease-in-out infinite;
}

@keyframes introLineIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introActionsIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introCueIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes introScrollPulse {
  0% { transform: translateY(-120%); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateY(240%); opacity: 0; }
}

@media (max-width: 768px) {
  .intro-hero {
    height: 132svh;
    min-height: 740px;
  }

  .intro-sticky {
    min-height: 560px;
    padding: 84px 1rem 76px;
  }

  .intro-inner {
    max-height: calc(100svh - 68px - 76px - 14px);
  }

  .intro-title {
    font-size: clamp(3.4rem, min(17vw, 14.5vh), 6.4rem);
    line-height: 0.82;
    letter-spacing: -0.055em;
  }

  .intro-actions {
    width: min(430px, 100%);
    margin-top: clamp(1.8rem, 4vh, 2.8rem);
  }

  .intro-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 12px;
    font-size: 12px;
  }

  .intro-orbit-a { width: 110vw; }
  .intro-orbit-b { width: 84vw; }
}

@media (max-width: 420px) {
  .intro-title {
    font-size: clamp(2.75rem, min(15vw, 12.7vh), 4.6rem);
  }

  .intro-actions { gap: 0.55rem; }
  .intro-button { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-title > span,
  .intro-actions,
  .intro-scroll-cue {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .intro-scroll-cue { transform: translateX(-50%); }
  .intro-scroll-cue i::after { animation: none; }
}

/* ==========================================================================\n   SCROLL-SCRUBBED PRODUCT FILM\n   193 WebP frames rendered to a full-viewport canvas. Text sits in the dark\n   negative space around the subject and transitions with scroll progress.\n   ========================================================================== */
.scroll-film {
  --film-progress: 0;
  position: relative;
  height: 700vh;
  padding: 0;
  z-index: 2;
  background: #020204;
  contain: layout paint;
}

.scroll-film-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: #020204;
}

#sequenceCanvas,
.sequence-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#sequenceCanvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.55s ease;
  transform: translateZ(0);
  filter: contrast(1.025) saturate(1.015);
}

.scroll-film.sequence-ready #sequenceCanvas { opacity: 1; }

.sequence-poster {
  z-index: 0;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.025) saturate(1.015);
  transition: opacity 0.55s ease;
}

.scroll-film.sequence-ready .sequence-poster { opacity: 0; }

.film-grade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,3,0.52) 0%, rgba(0,0,3,0.08) 28%, rgba(0,0,3,0.04) 56%, rgba(0,0,3,0.48) 100%),
    linear-gradient(180deg, rgba(0,0,3,0.56) 0%, transparent 24%, transparent 68%, rgba(0,0,3,0.72) 100%),
    radial-gradient(circle at 50% 48%, transparent 18%, rgba(0,0,3,0.12) 58%, rgba(0,0,3,0.48) 100%);
}

.film-grid {
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  z-index: 3;
  opacity: 0.35;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 96px);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  mask-image: linear-gradient(to top, black, transparent);
}

.film-scene {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
}

.film-scene.is-visible {
  visibility: visible;
}

.film-scene.is-interactive { pointer-events: auto; }

.hero-scene {
  padding: clamp(88px, 11vh, 132px) clamp(1.5rem, 4vw, 5rem) clamp(5.5rem, 10vh, 8rem);
}

.film-hero-title {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(12rem, 28vw, 34rem);
  align-items: start;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.7vw, 6.7rem);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}

.film-title-left,
.film-title-right {
  display: flex;
  flex-direction: column;
}

.film-title-left { text-align: right; align-items: flex-end; }
.film-title-right { text-align: left; align-items: flex-start; }
.film-hero-title em { color: var(--accent-2); font-style: normal; }
.film-hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: clamp(1.2px, 0.14vw, 2.2px) rgba(255,255,255,0.48);
}
.film-hero-title .accent-dot { color: var(--accent-2); }

.glass-copy {
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(145deg, rgba(5,7,13,0.70), rgba(5,7,13,0.30));
  box-shadow: 0 24px 80px rgba(0,0,5,0.32);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.film-hero-copy {
  position: absolute;
  left: clamp(1.5rem, 4vw, 5rem);
  bottom: clamp(6rem, 12vh, 9.5rem);
  width: min(410px, 38vw);
  padding: 1.15rem;
  border-radius: 18px;
}

.film-hero-copy p {
  margin-bottom: 1rem;
  color: #b8bac7;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.72;
}

.film-hero-stats {
  position: absolute;
  right: clamp(1.5rem, 4vw, 5rem);
  bottom: clamp(6rem, 12vh, 9.5rem);
  width: min(470px, 42vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.film-hero-stats div {
  min-height: 74px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: rgba(4,5,10,0.76);
}

.film-hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--accent-2);
}

.film-hero-stats span {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.film-copy {
  position: absolute;
  top: 50%;
  width: min(430px, 36vw);
  padding: clamp(1.35rem, 2.2vw, 2rem);
  border-radius: 22px;
  transform: translateY(-50%);
}

.film-copy-left { left: clamp(1.5rem, 5vw, 6rem); }
.film-copy-right { right: clamp(1.5rem, 5vw, 6rem); }

.film-copy .beat-label {
  display: block;
  margin-bottom: 0.72rem;
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.film-copy h2 {
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.film-copy p {
  color: #a9aab8;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.75;
}

.film-copy .btn-primary { margin-top: 1.25rem; }
.scene-a .film-copy { top: 58%; }
.scene-b .film-copy { top: 46%; }
.scene-c .film-copy { top: 48%; }
.scene-d .film-copy { top: 50%; }

.film-topline {
  position: absolute;
  top: 83px;
  left: clamp(1.25rem, 3vw, 3.5rem);
  right: clamp(1.25rem, 3vw, 3.5rem);
  z-index: 7;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(225,230,244,0.48);
  pointer-events: none;
}

.film-progress {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  z-index: 7;
  width: min(430px, 52vw);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.film-progress > span {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(225,230,244,0.52);
  white-space: nowrap;
}

.film-progress > div {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}

.film-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--film-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(116,211,255,0.62);
}

.sequence-loader {
  position: absolute;
  left: 50%;
  bottom: 3.8rem;
  z-index: 9;
  width: min(300px, 72vw);
  transform: translateX(-50%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.sequence-loader > span {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(235,239,249,0.65);
}

.sequence-loader > div {
  height: 2px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}

.sequence-loader i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: var(--accent-2);
}

.scroll-film.sequence-ready .sequence-loader {
  opacity: 0;
  visibility: hidden;
}

/* The following editorial chapters move over a clean solid canvas after film. */
#panel01 {
  background: linear-gradient(180deg, #020204 0%, rgba(5,5,7,0.98) 22%, transparent 100%);
}

@media (max-width: 1100px) {
  .film-hero-title { column-gap: clamp(8rem, 23vw, 18rem); }
  .film-copy { width: min(390px, 40vw); }
}

@media (max-width: 768px) {
  .scroll-film { height: 320vh; }
  .scroll-film-sticky { min-height: 560px; }

  .film-grade {
    background:
      linear-gradient(180deg, rgba(0,0,3,0.62), transparent 22%, transparent 56%, rgba(0,0,3,0.82)),
      radial-gradient(circle at 50% 46%, transparent 14%, rgba(0,0,3,0.16) 54%, rgba(0,0,3,0.58));
  }

  .hero-scene { padding: 82px 1.15rem 6rem; }
  .film-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: clamp(2rem, 9.8vw, 4rem);
    line-height: 0.9;
    text-align: center;
  }
  .film-title-left,
  .film-title-right { align-items: center; text-align: center; }

  .film-hero-copy {
    left: 1rem;
    right: 1rem;
    bottom: 7.2rem;
    width: auto;
    padding: 1rem;
  }

  .film-hero-copy p { display: none; }
  .film-hero-copy .hero-btns { flex-direction: row; flex-wrap: nowrap; }
  .film-hero-copy .btn-primary,
  .film-hero-copy .btn-ghost { width: 50%; padding: 11px 12px; font-size: 12px; }

  .film-hero-stats { display: none; }

  .film-copy,
  .film-copy-left,
  .film-copy-right {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 6.6rem;
    width: auto;
    transform: none;
    padding: 1.2rem;
    border-radius: 18px;
  }

  .glass-copy {
    background: linear-gradient(145deg, rgba(5,7,13,0.88), rgba(5,7,13,0.62));
  }
  .film-copy h2 { font-size: clamp(1.7rem, 7.2vw, 2.5rem); }
  .film-copy p { font-size: 13.5px; line-height: 1.62; }
  .film-copy .chapter-tag { display: none; }
  .film-copy .btn-primary { padding: 11px 18px; font-size: 13px; }

  .film-topline { top: 76px; font-size: 8px; }
  .film-progress { bottom: 1.35rem; width: calc(100% - 2rem); }
  .sequence-loader { bottom: 2.5rem; }
}

@media (max-width: 420px) {
  .film-hero-copy .hero-btns { gap: 7px; }
  .film-hero-copy .btn-primary,
  .film-hero-copy .btn-ghost { font-size: 11px; }
  .film-progress > span { display: none; }
  .film-progress { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-film {
    height: auto;
    padding: 0;
    background: #020204;
  }
  .scroll-film-sticky {
    position: relative;
    height: auto;
    min-height: 100svh;
    padding: 6rem 1.25rem 4rem;
    display: grid;
    gap: 1rem;
  }
  #sequenceCanvas { display: none; }
  .sequence-poster {
    position: absolute;
    inset: 0;
    opacity: 0.36 !important;
  }
  .film-scene {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }
  .hero-scene { padding: 0; }
  .film-hero-title {
    display: block;
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin-bottom: 2rem;
  }
  .film-title-left, .film-title-right { align-items: flex-start; text-align: left; }
  .film-hero-copy, .film-hero-stats, .film-copy,
  .film-copy-left, .film-copy-right {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 620px;
    transform: none;
    margin-bottom: 1rem;
  }
  .film-hero-copy p { display: block; }
  .film-hero-stats { display: grid; }
  .film-topline, .film-progress, .sequence-loader { display: none; }
}


/* V8 GLOBAL TYPE — exact Nohemi on every visible interface character.
   The original supplied weight files are used without conversion or modification.
   The full-screen intro headline remains in its existing Syne face. */
html,
body,
body *,
button,
input,
textarea,
select,
option,
optgroup,
label,
legend,
code,
pre,
kbd,
samp,
svg text,
body *::before,
body *::after,
input::placeholder,
textarea::placeholder,
::file-selector-button {
  font-family: 'Nohemi', sans-serif !important;
  font-synthesis: none;
}
.intro-title,
.intro-title *,
.hero-mega,
.hero-mega * {
  font-family: var(--font-hero) !important;
  font-synthesis: auto;
}


/* BizzBot V9 brand + high-quality preload overrides */
html, body, button, input, textarea, select { font-family: 'Nohemi', Arial, sans-serif !important; }
body.is-preloading { overflow: hidden; }
.brand-preloader { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; background: #050507; opacity: 1; transition: opacity .55s ease, visibility .55s ease; }
.brand-preloader img { width: min(560px, 72vw); height: auto; object-fit: contain; filter: none; }
.brand-preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.sequence-loader { display: none !important; }
.footer-mega { font-family: 'Bodoni 72', Didot, 'Times New Roman', Georgia, serif !important; letter-spacing: -0.055em; }
#sequenceCanvas { image-rendering: auto; }


/* ==========================================================================
   SEO LANDING PAGES
   Real crawlable pages that use the same brand system without changing the
   alignment or component styling of the main single-page experience.
   ========================================================================== */
.seo-static { background: var(--bg0); }
.seo-static nav { background: rgba(4, 8, 18, 0.78); border-bottom-color: var(--line); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.seo-main { min-height: 100vh; padding-top: 68px; }
.seo-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) 2rem clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 30%, rgba(93,109,255,0.18), transparent 34%),
    linear-gradient(180deg, #08090f, #040507);
}
.seo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black, transparent 65%);
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 65%);
}
.seo-hero-inner, .seo-content-inner { position: relative; z-index: 1; width: min(1160px, 100%); margin: 0 auto; }
.seo-kicker { display: block; margin-bottom: 1rem; color: var(--accent-2); font-family: var(--font-tech); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.seo-hero h1 { max-width: 980px; font-size: clamp(3rem, 7vw, 7rem); line-height: 0.92; letter-spacing: -0.055em; text-transform: uppercase; }
.seo-hero h1 em { color: var(--accent-2); font-style: normal; }
.seo-lead { max-width: 760px; margin-top: 1.6rem; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.25rem); line-height: 1.75; }
.seo-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.seo-content { padding: clamp(4rem, 8vw, 7rem) 2rem; }
.seo-content.alt { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(12,14,21,0.66); }
.seo-copy-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.seo-copy-grid h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -0.04em; }
.seo-copy-grid h2 em { color: var(--accent-2); font-style: normal; }
.seo-prose { display: grid; gap: 1.15rem; }
.seo-prose p, .seo-prose li { color: var(--muted); font-size: 1rem; line-height: 1.85; }
.seo-prose strong { color: var(--ink); }
.seo-prose ul { display: grid; gap: 0.8rem; padding-left: 1.2rem; }
.seo-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.seo-feature-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.seo-feature-card h3 { margin-bottom: 0.65rem; font-size: 1.05rem; }
.seo-feature-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.seo-breadcrumbs { margin-bottom: 1.5rem; color: var(--faint); font-size: 12px; }
.seo-breadcrumbs a { color: var(--accent-2); text-decoration: none; }
.seo-static footer { margin-top: 0; }
.seo-static .nav-links a { text-decoration: none; }
.seo-static .nav-links a::after { display: none; }
.seo-static .mobile-menu a { text-decoration: none; }

@media (max-width: 768px) {
  .seo-hero { padding: 6rem 1.25rem 4rem; }
  .seo-content { padding: 4rem 1.25rem; }
  .seo-copy-grid { grid-template-columns: 1fr; }
  .seo-feature-grid { grid-template-columns: 1fr; }
  .seo-static .hamburger { display: flex; }
}

/* ==========================================================================
   V9.3 INTERACTION REFINEMENTS
   ========================================================================== */

/* The hero now occupies exactly one viewport, so there is no empty scroll
   buffer between the headline and the stop-motion sequence. */
.intro-hero {
  height: 100svh;
  min-height: 620px;
}

/* Chapters 02–04 share one pinned stage. Scrolling changes only opacity, so
   the copy feels like it moves in and out rather than travelling vertically. */
.story-sequence {
  position: relative;
  z-index: 2;
  height: 360vh;
  padding: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(93, 109, 255, 0.08), transparent 34%),
    radial-gradient(circle at 82% 54%, rgba(67, 164, 255, 0.07), transparent 32%),
    #050507;
}

.story-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.story-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 92px 92px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 76%);
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.story-sequence .story-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  height: 100%;
  padding: clamp(84px, 11vh, 126px) 2rem clamp(54px, 8vh, 86px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}

.story-sequence .story-panel.is-visible {
  visibility: visible;
}

.story-sequence .story-panel.is-interactive {
  pointer-events: auto;
}

.story-sequence .story-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.story-sequence .story-inner.story-split {
  display: grid;
}

/* Every bento card owns a fixed primary/secondary outline colour. */
.feature-card[data-glow="primary"] {
  --card-glow: #5d6dff;
  --card-glow-rgb: 93, 109, 255;
}
.feature-card[data-glow="secondary"] {
  --card-glow: #8eb8ff;
  --card-glow-rgb: 142, 184, 255;
}
.feature-card[data-glow="secondary-alt"] {
  --card-glow: #43a4ff;
  --card-glow-rgb: 67, 164, 255;
}

.feature-card::before,
.feature-card:hover::before {
  opacity: 0;
}

.feature-card.is-lit,
.feature-card.is-hovered,
.feature-card:hover {
  border-color: var(--card-glow, var(--accent-2));
  box-shadow:
    0 0 0 1px var(--card-glow, var(--accent-2)),
    0 0 24px rgba(var(--card-glow-rgb, 142, 184, 255), 0.28);
}

.feature-card.full-width {
  grid-column: 1 / -1;
}

.feature-card.centered-feature {
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card.centered-feature .feature-icon {
  margin: 0 auto;
}

.feature-card.centered-feature > div:last-child {
  max-width: 650px;
}

/* Chapter 07 mirrors the supplied review reference: oversized outlined
   chapter number, compact review label, bold heading, and one card at the
   same visual scale as an individual reference card. */
.client-review-section {
  overflow: hidden;
  padding-top: clamp(5.5rem, 10vw, 9rem);
  padding-bottom: clamp(6rem, 11vw, 9.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  background:
    radial-gradient(circle at 54% 8%, rgba(93, 109, 255, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(8, 9, 14, 0.98), rgba(4, 5, 8, 0.99));
}

.client-review-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, black, transparent 76%);
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 76%);
}

.review-section-inner {
  max-width: 1740px;
}

.review-head {
  grid-template-columns: clamp(150px, 14vw, 245px) minmax(0, 1fr);
  gap: clamp(1.1rem, 3vw, 3.6rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5.2rem);
}

.review-index {
  font-size: clamp(7rem, 12vw, 12.5rem);
  line-height: 0.72;
  -webkit-text-stroke: 2px rgba(67, 164, 255, 0.34);
}

.review-head .section-tag {
  margin-bottom: clamp(0.8rem, 1.4vw, 1.25rem);
  font-size: clamp(10px, 0.8vw, 13px);
  letter-spacing: 0.27em;
}

.review-title {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.review-card-row {
  display: flex;
  justify-content: center;
  padding-inline: clamp(0rem, 4vw, 7rem);
}

.delman-review-card {
  position: relative;
  width: min(560px, 100%);
  min-height: 360px;
  padding: clamp(2rem, 3.2vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(142, 184, 255, 0.27);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 109, 255, 0.095), transparent 54%),
    linear-gradient(145deg, rgba(20, 22, 31, 0.9), rgba(12, 13, 19, 0.93));
  box-shadow: 0 30px 80px rgba(0, 0, 5, 0.44);
}

.delman-review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.025), transparent 36%);
}

.delman-review-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  color: var(--accent-2);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.delman-review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(242, 242, 244, 0.9);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.8;
}

.delman-review-card blockquote::before { content: '“'; }
.delman-review-card blockquote::after { content: '”'; }

.delman-review-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 1.8rem;
}

.delman-review-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #263c87, #2b2a75);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
}

.delman-review-person {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.delman-review-person strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.15;
}

.delman-review-person span {
  color: var(--muted);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.25;
}

@media (max-width: 768px) {
  .intro-hero {
    height: 150svh;
    min-height: 840px;
    margin-bottom: -75svh;
  }

  .review-head {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
  }

  .review-index {
    font-size: clamp(5.4rem, 24vw, 7.2rem);
    -webkit-text-stroke-width: 1.4px;
  }

  .review-title {
    font-size: clamp(2.35rem, 10.5vw, 4rem);
    line-height: 0.98;
  }

  .review-card-row { padding-inline: 0; }

  .delman-review-card {
    min-height: 340px;
    border-radius: 20px;
  }

  .story-sequence {
    height: 220vh;
  }

  .story-stage {
    min-height: 560px;
  }

  .story-sequence .story-panel {
    padding: 78px 1.25rem 30px;
  }

  .story-sequence .story-inner,
  .story-sequence .story-inner.story-split {
    align-content: center;
  }

  .story-sequence .story-text,
  .story-sequence .story-text.align-right {
    max-width: none;
    margin-left: 0;
  }

  .story-sequence .story-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-sequence .story-num {
    margin-bottom: 0.65rem;
    font-size: clamp(2.75rem, 12vw, 4.25rem);
  }

  .story-sequence .story-text h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.55rem, 7vw, 2.3rem);
  }

  .story-sequence .story-text p {
    margin-bottom: 0.9rem;
    font-size: 14px;
    line-height: 1.58;
  }

  .story-sequence .story-chips {
    gap: 6px;
  }

  .story-sequence .story-chips span {
    padding: 6px 10px;
    font-size: 11px;
  }

  #panel03 .story-num {
    font-size: 2.8rem;
  }

  #panel03 .story-text h2 {
    font-size: 1.75rem;
  }

  #panel03 .story-text p {
    margin-bottom: 0.75rem;
  }

  #panel03 .btn-primary {
    padding: 10px 16px;
    font-size: 11px;
  }

  #panel03 .chat-mockup {
    max-width: 520px;
    margin: 0 auto;
  }

  #panel03 .mock-body {
    height: clamp(145px, 21vh, 190px);
  }

  .features-grid.bento .feature-card.full-width {
    grid-column: 1 / -1;
  }

  .feature-card.centered-feature {
    min-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-sequence {
    height: auto;
  }

  .story-stage {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .story-sequence .story-panel {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 80vh;
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
  }

  .feature-card.is-lit {
    border-color: var(--line);
    box-shadow: none;
  }
}


/* V10 pricing and multi-page refinements */
body:not(.on-home) .page { display:block; opacity:1; transform:none; }
.price-original { color:#ff5d67; text-decoration:line-through; text-decoration-thickness:1.5px; font-size:.8rem; font-weight:600; }
.price-saving { display:inline-flex; align-items:center; padding:.2rem .5rem; border:1px solid rgba(93,109,255,.45); border-radius:999px; color:var(--accent-2); font:600 9.5px/1 var(--font-tech); letter-spacing:.05em; text-transform:uppercase; white-space:nowrap; }
.billing-detail { margin-top:.4rem; min-height:2.2em; color:var(--muted); font-size:.82rem; line-height:1.4; }
.card-setup-fee { margin: 0 0 1rem; padding:.55rem .8rem; border:1px solid rgba(142,184,255,.2); border-radius:10px; background:rgba(93,109,255,.07); color:rgba(255,255,255,.78); font-size:.76rem; line-height:1.4; }
.card-setup-fee span { color: var(--faint); }
.enterprise-contact-price { min-height:60px; display:flex; align-items:center; color:var(--text); font-family:var(--font-display); font-size:clamp(1.5rem,2.5vw,2.3rem); font-weight:700; letter-spacing:-.03em; }
.why-screen-fit { min-height:min(100svh,900px); display:flex; align-items:center; padding-top:clamp(4.5rem,7vh,6rem)!important; padding-bottom:clamp(2.25rem,4.5vh,3.5rem)!important; }
.why-screen-fit .section-head { margin-bottom:clamp(1.25rem,2.6vh,2.2rem); }
.why-screen-fit .section-sub { max-width: 620px; }
.why-screen-fit .features-grid { margin-top:0; }
.why-screen-fit .features-grid.bento.uniform { gap: 1rem; }
.why-screen-fit .feature-card { padding: 1.4rem; gap: 1rem; }
.why-screen-fit .feature-icon { width: 38px; height: 38px; font-size: 17px; border-radius: 10px; }
.why-screen-fit .feature-card h3 { font-size: 15px; margin-bottom: 0.3rem; }
.why-screen-fit .feature-card p { font-size: 12.8px; line-height: 1.55; }
@media (max-height: 800px) and (min-width: 900px) {
  .why-screen-fit { padding-top:4rem!important; padding-bottom:2rem!important; }
  .why-screen-fit .section-title { font-size:clamp(2.4rem,4.6vw,4.4rem); }
  .why-screen-fit .feature-card { padding:1.1rem; }
  .why-screen-fit .feature-icon { width: 34px; height: 34px; font-size: 15px; }
  .why-screen-fit .feature-card p { font-size:.8rem; }
}
@media (max-height: 700px) and (min-width: 900px) {
  .why-screen-fit { padding-top:3.25rem!important; padding-bottom:1.5rem!important; }
  .why-screen-fit .section-head { margin-bottom: 1rem; }
  .why-screen-fit .section-title { font-size:clamp(2rem,4vw,3.6rem); }
  .why-screen-fit .section-sub { display: none; }
  .why-screen-fit .feature-card p { font-size:.76rem; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
}
@media (max-width: 900px) { .pricing-card .plan-features { min-height:0; } }
