/* ==========================================================================
   Flip Fusion — Landing Page
   Built on the Flip Design System tokens (see flip-tokens.css)
   Track A · print/image (Clash + Inter)
   ========================================================================== */

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

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }

::selection { background: rgba(33,81,245,0.18); color: var(--black); }

/* ================================================================
   1. NAV
   ================================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
}

.nav-brand-mark {
  width: 30px; height: 30px;
  background: var(--flip-swirl);
  border-radius: 25%;
  display: grid; place-items: center;
}
.nav-brand-mark svg { width: 65%; height: 65%; }

.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.nav-brand-text .pill-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(33,81,245,0.08);
  color: var(--flip-swirl);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  position: relative;
  top: -1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--flip-swirl); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons (extending design system) ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 180ms cubic-bezier(.2,.8,.2,1),
              transform 180ms cubic-bezier(.2,.8,.2,1),
              background 180ms;
}
.btn:hover { filter: brightness(0.93); }
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm svg { width: 14px; height: 14px; }
.btn-lg svg { width: 20px; height: 20px; }

.btn-primary { background: var(--flip-swirl); color: #fff; }
.btn-dark    { background: var(--black); color: #fff; }
.btn-green   { background: var(--green); color: var(--black); }
.btn-ghost   { background: transparent; color: var(--black); border: 1px solid var(--gray-300); }
.btn-ghost:hover { border-color: var(--black); filter: none; }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.btn-grad-stroke {
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #65DB91, #2151F5) border-box;
  border: 1.5px solid transparent;
  color: var(--black);
}
.btn-grad-stroke:hover { filter: none; transform: scale(1.01); }

/* ================================================================
   2. SECTION SHELL
   ================================================================ */
section {
  position: relative;
  width: 100%;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flip-swirl);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--black);
  text-wrap: balance;
}
.section-head p {
  font-size: var(--body-lede);
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ================================================================
   3. HERO
   ================================================================ */
.hero {
  padding: 132px 24px 80px;
  position: relative;
  overflow: hidden;
  background:
    /* white wash from the top, fading down */
    linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.55) 18%, rgba(255,255,255,0) 42%),
    /* bright greenish-cyan glow on the right */
    radial-gradient(ellipse 46% 66% at 82% 58%, rgba(0,193,255,0.52) 0%, rgba(0,193,255,0) 60%),
    radial-gradient(ellipse 56% 82% at 100% 78%, rgba(88,196,253,0.62) 0%, rgba(88,196,253,0) 64%),
    /* soft near-white patch in the centre where content sits */
    radial-gradient(ellipse 32% 40% at 46% 50%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 60%),
    /* lavender on the left */
    radial-gradient(ellipse 52% 100% at -2% 66%, rgba(184,182,248,0.8) 0%, rgba(184,182,248,0) 60%),
    /* light pastel base field */
    linear-gradient(125deg, #e4e0fd 0%, #dce4ff 34%, #caecff 58%, #b4e2ff 80%, #c8e6ff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 900px;
  background: radial-gradient(ellipse 60% 45% at 50% 18%, rgba(255,255,255,0.55) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33,81,245,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-badge .badge-tag {
  background: var(--black);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.hero-badge .badge-tag .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-badge .badge-arrow { color: var(--gray-500); margin-left: 2px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero h1 .verb {
  display: inline-block;
  position: relative;
}
.hero h1 .verb .dot {
  color: var(--flip-swirl);
}
.hero h1 .ship {
  background: linear-gradient(90deg, #2151F5 0%, #65DB91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .ship .ship-dot {
  -webkit-text-fill-color: var(--green);
  color: var(--green);
}

.hero h1 .row2 {
  display: block;
  font-size: 0.55em;
  letter-spacing: -0.025em;
  color: var(--gray-800);
  margin-top: 6px;
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto 16px;
  text-wrap: balance;
}

/* ----------------------------------------------------------------
   3a. CHAT WINDOW (the centerpiece)
   ---------------------------------------------------------------- */
.chat-stage {
  position: relative;
  margin: 56px auto 0;
  max-width: 820px;
  isolation: isolate;
}

/* Soft gradient halo behind the card */
.chat-stage::before {
  content: '';
  position: absolute;
  inset: -40px -8% -100px -8%;
  background: radial-gradient(ellipse 75% 60% at 50% 50%, rgba(33,81,245,0.16) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 85% 80%, rgba(101,219,145,0.22) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 12% 30%, rgba(95,205,253,0.18) 0%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.chat-card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 30px 80px rgba(33,81,245,0.16),
              0 12px 30px rgba(0,0,0,0.06),
              0 1px 0 rgba(255,255,255,0.8) inset;
  overflow: hidden;
  text-align: left;
  position: relative;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(to bottom, rgba(247,247,245,0.4), transparent);
}
.chat-head .mark {
  width: 26px; height: 26px;
  background: var(--flip-swirl);
  border-radius: 25%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.chat-head .mark svg { width: 64%; height: 64%; }
.chat-head .meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.chat-head .meta strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  letter-spacing: -0.005em;
}
.chat-head .meta span {
  font-size: 12px;
  color: var(--gray-500);
}
.chat-head .right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-500);
}
.chat-head .live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(101,219,145,0.18);
}

.chat-body {
  padding: 36px 28px 24px;
  min-height: 220px;
  position: relative;
}

.chat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.chat-input-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  transition: border-color 180ms, box-shadow 180ms;
}
.chat-input-wrap:focus-within {
  border-color: var(--flip-swirl);
  box-shadow: 0 0 0 4px rgba(33,81,245,0.12);
  background: #fff;
}

.chat-prompt {
  flex: 1;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
  color: var(--black);
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  min-height: 56px;
  padding-top: 4px;
}
.chat-prompt::placeholder { color: var(--gray-400); }

.chat-prompt-display {
  flex: 1;
  font-size: 18px;
  line-height: 1.45;
  color: var(--black);
  min-height: 56px;
  padding-top: 4px;
  cursor: text;
}
.chat-prompt-display .placeholder-text {
  color: var(--gray-500);
}
.chat-prompt-display .typed-text {
  color: var(--black);
}
.chat-prompt-display .caret {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--flip-swirl);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1s steps(2, start) infinite;
}
@keyframes blink { to { visibility: hidden; } }

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.chat-attach {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  cursor: pointer;
  transition: border-color 180ms;
}
.chat-attach:hover { border-color: var(--gray-400); }
.chat-attach svg { width: 16px; height: 16px; }

.build-btn {
  background: var(--green);
  color: var(--black);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: filter 180ms, transform 180ms;
  box-shadow: 0 4px 14px rgba(101,219,145,0.45);
}
.build-btn:hover { filter: brightness(0.95); }
.build-btn:active { transform: scale(0.97); }
.build-btn svg { width: 14px; height: 14px; }

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chat-suggestions .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--gray-800);
  cursor: pointer;
  transition: all 180ms;
}
.chat-suggestions .chip:hover {
  border-color: var(--flip-swirl);
  color: var(--flip-swirl);
  background: rgba(33,81,245,0.04);
}
.chat-suggestions .chip svg { width: 13px; height: 13px; color: var(--flip-swirl); }

.chat-foot {
  border-top: 1px solid var(--gray-100);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  color: var(--gray-500);
  background: rgba(247,247,245,0.4);
  flex-wrap: wrap;
}
.chat-foot .ft-row { display: inline-flex; align-items: center; gap: 8px; }
.chat-foot .ft-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-700);
}
.chat-foot .ft-tag .d {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-stat-row {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.hero-stat {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat .num.accent {
  background: linear-gradient(90deg, #2151F5, #65DB91);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--gray-500);
  text-wrap: balance;
}

/* ================================================================
   4. LOGO STRIP
   ================================================================ */
.logos {
  padding: 48px 24px 60px;
  background: var(--white);
}
.logos-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0.7;
}
.logos-row .logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--gray-700);
}

/* ================================================================
   5. SHOWCASE GRID (built with Fusion)
   ================================================================ */
.showcase {
  padding: 110px 24px;
  background: var(--gray-50);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.app-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.app-card-prompt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(180deg, rgba(33,81,245,0.04), transparent);
}
.app-card-prompt .pmark {
  width: 22px; height: 22px;
  background: var(--flip-swirl);
  border-radius: 25%;
  flex-shrink: 0;
  display: grid; place-items: center;
}
.app-card-prompt .pmark svg { width: 62%; height: 62%; }
.app-card-prompt .ptxt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.45;
}
.app-card-prompt .ptxt .quote {
  color: var(--gray-400);
  font-family: var(--font-display);
  font-size: 16px;
}

.app-card-preview {
  position: relative;
  padding: 18px 18px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.mini-app {
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  border: 1px solid var(--gray-200);
  border-bottom: none;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.04);
  overflow: hidden;
  font-size: 12px;
}

.mini-app-head {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.mini-app-head .back {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid; place-items: center;
  color: var(--gray-500);
  font-size: 14px;
}
.mini-app-head .t {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
  letter-spacing: -0.005em;
}

.mini-app-body { padding: 12px 14px 16px; }

/* generic mini-list */
.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 6px;
}
.mini-row:last-child { margin-bottom: 0; }
.mini-row .ico {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}
.mini-row .ico.b { background: rgba(33,81,245,0.1); color: var(--flip-swirl); }
.mini-row .ico.g { background: rgba(101,219,145,0.18); color: #1f7a47; }
.mini-row .ico.s { background: rgba(95,205,253,0.22); color: #0e72a3; }
.mini-row .ico.r { background: rgba(213,6,54,0.12); color: #b8082e; }
.mini-row .ico.y { background: #fff3cd; color: #8a6500; }
.mini-row .lbl { flex: 1; }
.mini-row .lbl .l1 { font-weight: 600; color: var(--black); font-size: 12px; line-height: 1.2; }
.mini-row .lbl .l2 { color: var(--gray-500); font-size: 11px; line-height: 1.3; }
.mini-row .badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.badge-ok { background: rgba(101,219,145,0.2); color: #1f7a47; }
.badge-warn { background: #fff3cd; color: #8a6500; }
.badge-info { background: rgba(33,81,245,0.1); color: var(--flip-swirl); }
.badge-pend { background: var(--gray-100); color: var(--gray-700); }

.mini-input {
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.mini-field-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  margin-bottom: 5px;
  background: var(--gray-50);
  border-radius: 10px;
}
.mini-field-row .fl { flex: 1; font-size: 11px; color: var(--gray-700); }
.mini-field-row .fv { font-weight: 600; font-size: 12px; color: var(--black); }

.mini-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--gray-700);
}
.mini-check .box {
  width: 16px; height: 16px;
  border-radius: 5px;
  border: 1.5px solid var(--gray-300);
  flex-shrink: 0;
  display: grid; place-items: center;
  background: #fff;
}
.mini-check.done .box {
  background: var(--green);
  border-color: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 800;
}
.mini-check.done .lbl { color: var(--gray-500); text-decoration: line-through; }

.mini-broadcast {
  padding: 12px;
  background: linear-gradient(135deg, rgba(33,81,245,0.06), rgba(95,205,253,0.06));
  border-radius: 12px;
  border: 1px solid rgba(33,81,245,0.12);
  margin-bottom: 8px;
}
.mini-broadcast .ftit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--black);
  margin-bottom: 4px;
}
.mini-broadcast .ftit .pin { color: var(--flip-swirl); font-size: 12px; }
.mini-broadcast .ftxt { font-size: 11px; color: var(--gray-700); line-height: 1.45; }

.mini-chart {
  height: 64px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 8px 4px 0;
  border-radius: 10px;
  background: var(--gray-50);
  margin-bottom: 8px;
}
.mini-chart .bar {
  flex: 1;
  background: var(--gray-200);
  border-radius: 3px 3px 0 0;
}
.mini-chart .bar.hi { background: var(--flip-swirl); }
.mini-chart .bar.mid { background: var(--sky); }
.mini-chart .bar.ok { background: var(--green); }

.app-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--gray-100);
  background: #fff;
}
.app-card-foot .avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flip-swirl), var(--sky));
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  flex-shrink: 0;
}
.app-card-foot .avatar.g { background: linear-gradient(135deg, var(--green), var(--sky)); color: var(--black); }
.app-card-foot .avatar.k { background: linear-gradient(135deg, var(--black), var(--gray-700)); }
.app-card-foot .info { flex: 1; line-height: 1.25; }
.app-card-foot .info .n { font-size: 13px; font-weight: 600; color: var(--black); }
.app-card-foot .info .r { font-size: 12px; color: var(--gray-500); }
.app-card-foot .ship-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(101,219,145,0.14);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.app-card-foot .ship-time::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ================================================================
   6. HOW IT WORKS
   ================================================================ */
.how {
  padding: 120px 24px;
  background: var(--white);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.how-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 36px 32px 32px;
  position: relative;
}

.how-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 25%;
  background: var(--flip-swirl);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 24px;
}
.how-step.s2 .num { background: var(--black); }
.how-step.s3 .num { background: var(--green); color: var(--black); }

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 12px;
}

.how-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-700);
  margin-bottom: 22px;
}

.how-step .demo {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--gray-100);
}

.how-demo-prompt {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.55;
}
.how-demo-prompt .bullet { color: var(--flip-swirl); }

.how-demo-build {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.how-demo-build .ln {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-700);
}
.how-demo-build .ln .ck {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(101,219,145,0.18);
  color: #1f7a47;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.how-demo-ship {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}
.how-demo-ship .av-stack {
  display: flex;
  align-items: center;
}
.how-demo-ship .av {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--gray-300);
  margin-left: -8px;
}
.how-demo-ship .av:first-child { margin-left: 0; }
.how-demo-ship .av.a1 { background: linear-gradient(135deg, var(--flip-swirl), var(--sky)); }
.how-demo-ship .av.a2 { background: linear-gradient(135deg, var(--sky), var(--green)); }
.how-demo-ship .av.a3 { background: linear-gradient(135deg, var(--green), var(--flip-swirl)); }
.how-demo-ship .av.a4 {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 9px;
  font-weight: 700;
  display: grid; place-items: center;
}
.how-demo-ship .ship-meta {
  text-align: right;
}
.how-demo-ship .ship-meta .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
  line-height: 1.1;
}
.how-demo-ship .ship-meta .l {
  font-size: 10px;
  color: var(--gray-500);
}

/* ================================================================
   7. FEATURES — alternating rows
   ================================================================ */
.features {
  padding: 110px 24px;
  background: var(--white);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--gray-200); }
.feature-row.reversed .ftext { order: 2; }
.feature-row.reversed .fvis { order: 1; }

.ftext .eyebrow { display: block; margin-bottom: 16px; }
.ftext h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 18px;
  text-wrap: balance;
}
.ftext p {
  font-size: var(--body-lede);
  line-height: 1.55;
  color: var(--gray-700);
  margin-bottom: 24px;
  max-width: 480px;
  text-wrap: pretty;
}

.ftext-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.ftext-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.5;
}
.ftext-list .ck {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(33,81,245,0.1);
  color: var(--flip-swirl);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ftext-list .ck svg { width: 12px; height: 12px; }

/* Feature visual frames */
.fvis {
  border-radius: 32px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fvis-1 { background: linear-gradient(135deg, rgba(33,81,245,0.08) 0%, rgba(95,205,253,0.10) 100%); border: 1px solid rgba(33,81,245,0.12); }
.fvis-2 { background: linear-gradient(135deg, rgba(101,219,145,0.10) 0%, rgba(33,81,245,0.06) 100%); border: 1px solid rgba(101,219,145,0.18); }
.fvis-3 {
  background: #0b1430;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.fvis-4 { background: linear-gradient(135deg, rgba(95,205,253,0.10) 0%, rgba(101,219,145,0.10) 100%); border: 1px solid rgba(95,205,253,0.18); }

/* feature 1 — phone with Flip app + native mini-app inside */
.fvis-phone {
  width: 280px;
  background: #fff;
  border-radius: 38px;
  padding: 12px 12px 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
  position: relative;
}
.fvis-phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 22px;
  background: var(--black);
  border-radius: 14px;
  z-index: 2;
}
.fvis-phone-screen {
  background: var(--gray-50);
  border-radius: 28px;
  padding: 48px 14px 14px;
  overflow: hidden;
}
.fvis-phone-tabbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 16px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 14px;
}
.fvis-phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--gray-500);
  font-weight: 500;
}
.fvis-phone-tab .ico {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 6px;
  font-size: 14px;
}
.fvis-phone-tab.active { color: var(--flip-swirl); }
.fvis-phone-tab.active .ico { background: rgba(33,81,245,0.1); }

.fvis-phone-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}
.fvis-phone-card .t {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--black);
}
.fvis-phone-card .t .d {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.fvis-phone-card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  padding: 6px 0;
  border-top: 1px solid var(--gray-100);
}
.fvis-phone-card .row:first-of-type { border-top: none; }
.fvis-phone-card .row .l { color: var(--gray-700); }
.fvis-phone-card .row .v { color: var(--black); font-weight: 600; }

/* Floating annotation bubbles on feature 1 */
.fvis-anno {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  box-shadow: var(--shadow-md);
}
.fvis-anno .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.fvis-anno.a1 { top: 80px; left: 18px; }
.fvis-anno.a2 { top: 200px; right: 22px; }
.fvis-anno.a3 { bottom: 90px; left: 24px; }

/* feature 2 — one prompt fans out to many */
.fvis-fanout {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.fvis-fanout .prompt-pill {
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 14px 22px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.fvis-fanout .prompt-pill .qm {
  width: 22px; height: 22px;
  background: var(--flip-swirl);
  border-radius: 25%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fvis-fanout .prompt-pill .qm svg { width: 60%; height: 60%; }
.fvis-fanout .lines {
  position: relative;
  width: 100%;
  height: 60px;
}
.fvis-fanout .lines svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.fvis-fanout .workers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  flex-wrap: nowrap;
}
.fvis-fanout .worker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.fvis-fanout .worker .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flip-swirl), var(--sky));
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
}
.fvis-fanout .worker:nth-child(2) .av { background: linear-gradient(135deg, var(--sky), var(--green)); color: var(--black); }
.fvis-fanout .worker:nth-child(3) .av { background: linear-gradient(135deg, var(--green), var(--flip-swirl)); color: #fff; }
.fvis-fanout .worker:nth-child(4) .av { background: linear-gradient(135deg, var(--flip-swirl), var(--green)); color: #fff; }
.fvis-fanout .worker:nth-child(5) .av { background: linear-gradient(135deg, var(--sky), var(--flip-swirl)); color: #fff; }
.fvis-fanout .worker .role {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
}

.fvis-fanout .delta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
}
.fvis-fanout .delta .v { color: var(--green); }
.fvis-fanout .delta .strike {
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 12px;
}

/* feature 3 — compliance dark card */
.fvis-3 .compliance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 460px;
}
.compliance-cert {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 18px;
  position: relative;
}
.compliance-cert .lbl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.compliance-cert .sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.compliance-cert .ck {
  position: absolute;
  top: 14px; right: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
}
.compliance-cert.span2 { grid-column: span 2; background: linear-gradient(135deg, rgba(33,81,245,0.25), rgba(95,205,253,0.12)); border-color: rgba(95,205,253,0.3); }
.compliance-cert.span2 .lbl { font-size: 20px; }

/* feature 4 — non-tech builder */
.fvis-4 .builder-flow {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.builder-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.builder-step .who {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.builder-step.s1 .who { background: linear-gradient(135deg, #e69a8d, #b8665f); }
.builder-step.s2 .who { background: linear-gradient(135deg, #6a91d4, #4a6db0); }
.builder-step.s3 .who { background: linear-gradient(135deg, #5fcdfd, #2151f5); }
.builder-step .info { flex: 1; line-height: 1.3; }
.builder-step .info .n { font-weight: 600; font-size: 14px; color: var(--black); }
.builder-step .info .r { font-size: 12px; color: var(--gray-500); }
.builder-step .info .q {
  font-size: 13px;
  color: var(--gray-700);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
  font-style: italic;
}
.builder-step .info .q::before { content: '"'; color: var(--gray-400); }
.builder-step .info .q::after { content: '"'; color: var(--gray-400); }

.builder-step .shipped {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  background: rgba(101,219,145,0.16);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.builder-step .shipped::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ================================================================
   8. COMPARE TABLE
   ================================================================ */
.compare {
  padding: 110px 24px;
  background: var(--gray-50);
}

.compare-table {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
}
.compare-row:last-child { border-bottom: none; }

.compare-cell {
  padding: 22px 22px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
  border-right: 1px solid var(--gray-100);
}
.compare-cell:last-child { border-right: none; }
.compare-cell.cap { font-weight: 500; color: var(--black); font-size: 15px; }
.compare-cell.fusion {
  background: linear-gradient(180deg, rgba(33,81,245,0.04), rgba(101,219,145,0.04));
  border-left: 2px solid var(--flip-swirl);
  border-right: 2px solid var(--flip-swirl);
  color: var(--black);
  font-weight: 500;
}

.compare-row.head .compare-cell {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  background: var(--gray-50);
  letter-spacing: -0.005em;
  padding: 18px 22px;
}
.compare-row.head .compare-cell.fusion {
  background: var(--black);
  color: #fff;
  position: relative;
}
.compare-row.head .compare-cell.fusion::before {
  content: 'Recommended';
  position: absolute;
  top: -10px; right: 14px;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.check { color: var(--green); font-weight: 700; }
.check::before { content: '✓ '; color: var(--green); margin-right: 4px; }
.miss { color: #b8082e; }
.miss::before { content: '✕ '; color: #d50636; margin-right: 4px; }
.part { color: var(--gray-700); }
.part::before { content: '◐ '; color: var(--gray-500); margin-right: 4px; }

/* ================================================================
   9. TESTIMONIALS
   ================================================================ */
.testimonials {
  padding: 110px 24px;
  background: var(--white);
}

.test-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.test-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.test-card.big {
  grid-row: span 2;
  background: var(--black);
  color: #fff;
  border-color: var(--gray-900);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.test-card.big::before {
  content: '';
  position: absolute;
  inset: -50% -50% auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(33,81,245,0.25), transparent 60%);
  pointer-events: none;
}

.test-card .quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--flip-swirl);
  opacity: 0.4;
}
.test-card.big .quote-mark { color: var(--sky); }

.test-card blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--black);
  text-wrap: balance;
  position: relative;
  z-index: 1;
}
.test-card.big blockquote {
  font-size: clamp(28px, 2.6vw, 34px);
  color: #fff;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.test-author .ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flip-swirl), var(--green));
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}
.test-author .a-info { line-height: 1.25; }
.test-author .a-info .n {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.test-card.big .test-author .a-info .n { color: #fff; }
.test-author .a-info .r {
  font-size: 12px;
  color: var(--gray-500);
}
.test-card.big .test-author .a-info .r { color: rgba(255,255,255,0.6); }

.test-card .org {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gray-700);
}
.test-card.big .org { color: rgba(255,255,255,0.45); }

/* ================================================================
   10. WHY FLIP
   ================================================================ */
.why {
  padding: 110px 24px;
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto 56px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 36px;
}
.why-card .icon-sq {
  width: 56px; height: 56px;
  border-radius: 25%;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.why-card .icon-sq.b { background: rgba(33,81,245,0.1); color: var(--flip-swirl); }
.why-card .icon-sq.g { background: rgba(101,219,145,0.18); color: #1f7a47; }
.why-card .icon-sq.s { background: rgba(95,205,253,0.22); color: #0e72a3; }
.why-card .icon-sq svg { width: 28px; height: 28px; }

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: 8px;
}
.why-card .big-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 52px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}
.why-card .big-num.accent {
  background: linear-gradient(90deg, #2151F5, #65DB91);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}
.why-badge .star { color: var(--flip-swirl); }

/* ================================================================
   11. FAQ
   ================================================================ */
.faq {
  padding: 110px 24px;
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--black);
  transition: color 180ms;
}
.faq-q:hover { color: var(--flip-swirl); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid; place-items: center;
  color: var(--gray-700);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 220ms cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-icon {
  background: var(--flip-swirl);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms cubic-bezier(.2,.8,.2,1);
}
.faq-a-inner {
  padding: 0 8px 26px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 700px;
  text-wrap: pretty;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ================================================================
   12. FINAL CTA
   ================================================================ */
.final-cta {
  padding: 110px 24px 130px;
  background: var(--white);
  position: relative;
}

.final-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--black);
  color: #fff;
  border-radius: 36px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 20% 90%, rgba(33,81,245,0.55) 0%, transparent 55%),
              radial-gradient(ellipse 45% 65% at 85% 10%, rgba(101,219,145,0.35) 0%, transparent 55%),
              radial-gradient(ellipse 40% 55% at 50% 50%, rgba(95,205,253,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-card > * { position: relative; z-index: 1; }

.final-cta .eyebrow { color: var(--sky); display: block; margin-bottom: 14px; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.final-cta p {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.final-cta-card .btn-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}

.final-cta-meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.final-cta-meta .item { display: inline-flex; align-items: center; gap: 6px; }
.final-cta-meta .item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ================================================================
   13. FOOTER
   ================================================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 70px 36px 30px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-brand-mark { background: var(--white); }
.footer-brand .nav-brand-mark svg path { fill: var(--flip-swirl); }
.footer-brand .nav-brand-text { color: #fff; }
.footer-brand .nav-brand-text .pill-tag { background: rgba(255,255,255,0.1); color: #fff; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 18px;
  max-width: 280px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 180ms;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom .legal a:hover { color: #fff; }

/* ================================================================
   14. RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .showcase-grid, .how-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .feature-row.reversed .ftext { order: 1; }
  .feature-row.reversed .fvis { order: 2; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .test-card.big { grid-column: span 2; grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { padding: 0 20px; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .hero { padding: 110px 16px 48px; }
  .hero-stat-row { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--gray-200); }
  .chat-input-wrap { flex-direction: column; gap: 12px; }
  .chat-actions { flex-direction: row; align-self: flex-end; }
  .showcase-grid, .how-grid, .why-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .test-card.big { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .compare { overflow-x: auto; }
  .compare-table { min-width: 720px; }
  .final-cta-card { padding: 50px 28px; }
  .feature-row { gap: 32px; }
  .fvis { padding: 24px; min-height: 360px; }
}


/* ==========================================================================
   V2 — Hero redesign · iPhone showcase cards · Workshop form
   These come after the v1 rules so they override.
   ========================================================================== */

/* ================================================================
   HERO v2 — minimal, matches the Fusion product UI
   ================================================================ */
.hero {
  padding: 112px 24px 56px;
  background:
    radial-gradient(ellipse 90% 60% at 95% 100%, rgba(95,205,253,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 90%, rgba(101,219,145,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(33,81,245,0.04) 0%, transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #F4F8FF 45%, #E9F4FF 100%);
  overflow: hidden;
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before, .hero::after { display: none !important; }

.hero-inner {
  text-align: center;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.fusion-mark {
  width: 68px;
  height: 68px;
  border-radius: 25%;
  background: linear-gradient(135deg, #2151F5 0%, #3F8CF7 45%, #65DB91 100%);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 18px 40px rgba(33,81,245,0.22), 0 6px 16px rgba(33,81,245,0.12);
}
.fusion-mark svg { width: 58%; height: 58%; }

.fusion-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--black);
  margin: 0;
}

.fusion-tagline {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--gray-500);
  margin-top: 12px;
  margin-bottom: 36px;
  font-weight: 400;
}

.prompt-bar {
  width: 100%;
  max-width: 720px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(33,81,245,0.14);
  border-radius: 24px;
  padding: 8px 8px 10px;
  box-shadow:
    0 24px 60px rgba(33,81,245,0.10),
    0 8px 24px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transition: border-color 200ms, box-shadow 200ms;
}
.prompt-bar:focus-within {
  border-color: var(--flip-swirl);
  box-shadow:
    0 0 0 4px rgba(33,81,245,0.10),
    0 24px 60px rgba(33,81,245,0.18);
  background: rgba(255,255,255,0.92);
}

.prompt-row-input { padding: 14px 16px 8px; }
.prompt-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  color: var(--black);
}
.prompt-input::placeholder { color: var(--gray-500); }

.prompt-row-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 0;
}
.prompt-row-tools .spacer { flex: 1; }

.prompt-tool {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: var(--gray-500);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.prompt-tool:hover { background: var(--gray-100); color: var(--black); }
.prompt-tool svg { width: 20px; height: 20px; }

.prompt-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--flip-swirl);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 150ms, transform 150ms, box-shadow 150ms;
  box-shadow: 0 4px 14px rgba(33,81,245,0.35);
}
.prompt-send:hover { background: #1a44d6; transform: scale(1.05); }
.prompt-send:active { transform: scale(0.96); }
.prompt-send svg { width: 16px; height: 16px; }

.hero-cue {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}
.cue-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
.cue-arrow { color: var(--flip-swirl); font-weight: 700; }

/* hero-stats as its own section */
.hero-stats {
  padding: 0 36px 80px;
  background: var(--white);
}
.hero-stats .wrap { padding: 0; }
.hero-stats .hero-stat-row { margin-top: 0; }


/* ================================================================
   SHOWCASE v2 — iPhone-style app screen cards
   ================================================================ */
.app-card { display: none !important; } /* hide v1 cards if any leftover */

.ph-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms;
}
.ph-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.ph-stage {
  position: relative;
  padding: 36px 28px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.ph-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.tone-b::before {
  background: linear-gradient(180deg, rgba(33,81,245,0.08) 0%, rgba(33,81,245,0.02) 60%, transparent 100%);
}
.tone-s::before {
  background: linear-gradient(180deg, rgba(33,81,245,0.55) 0%, rgba(95,205,253,0.45) 50%, rgba(101,219,145,0.25) 100%);
}
.tone-g::before {
  background: linear-gradient(180deg, rgba(95,205,253,0.20) 0%, rgba(101,219,145,0.12) 100%);
}
.tone-mix::before {
  background: linear-gradient(180deg, rgba(95,205,253,0.22) 0%, rgba(33,81,245,0.08) 100%);
}
.tone-d::before {
  background: linear-gradient(180deg, #16161A 0%, #2a2a2e 100%);
}

.phone {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 254px;
  background: linear-gradient(180deg, #1c1c1e 0%, #2a2a2c 100%);
  border-radius: 40px;
  padding: 8px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    0 8px 20px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-status {
  position: relative;
  padding: 10px 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--black);
  z-index: 2;
}
.phone-status .time { letter-spacing: -0.01em; }
.phone-status .notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: var(--black);
  border-radius: 10px;
}
.phone-status .sicons { display: flex; align-items: center; gap: 4px; }
.phone-status .sicons svg { display: block; }
.phone-status .sicons svg:nth-child(1) { width: 13px; height: 9px; }
.phone-status .sicons svg:nth-child(2) { width: 13px; height: 9px; }
.phone-status .sicons svg:nth-child(3) { width: 22px; height: 9px; }

.phone-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.app-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 10px;
}
.app-head .back-x {
  width: 18px; height: 18px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--gray-500);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.app-head .back-x.close { font-size: 14px; }
.app-head .head-title {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11.5px;
  text-align: left;
  letter-spacing: -0.005em;
  color: var(--black);
}
.app-head .head-pill {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 7px;
  border-radius: 8px;
  white-space: nowrap;
}
.head-pill.blue { background: rgba(33,81,245,0.10); color: var(--flip-swirl); }
.head-pill.green { background: rgba(101,219,145,0.20); color: #1f7a47; }
.head-pill.sky { background: rgba(95,205,253,0.22); color: #0e72a3; }
.head-pill.dark { background: var(--gray-100); color: var(--gray-700); }

.app-body {
  flex: 1;
  padding: 4px 12px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-body.padded { padding: 12px 16px; }

.hero-card {
  border-radius: 14px;
  padding: 13px 14px;
  color: #fff;
}
.hero-card.grad-blue { background: linear-gradient(135deg, #2151F5 0%, #5FCDFD 100%); }
.hero-card.grad-bg { background: linear-gradient(135deg, #2151F5 0%, #65DB91 100%); }
.hero-card.grad-dark { background: linear-gradient(135deg, #15171F 0%, #2c2f3a 100%); }

.hc-eyebrow {
  font-size: 7.5px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 5px;
}
.hc-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.hc-desc {
  font-size: 8.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.80);
  margin-bottom: 9px;
}
.hc-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.hc-chips span {
  font-size: 7.5px;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(255,255,255,0.20);
  color: #fff;
  font-weight: 500;
}
.hc-chips.dark span { background: rgba(255,255,255,0.10); }

.app-list { display: flex; flex-direction: column; gap: 4px; }
.app-list.compact .al-item { padding: 6px 8px; }
.al-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  background: var(--gray-50);
  border-radius: 10px;
}
.al-ico {
  width: 22px; height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.al-ico.red { background: rgba(213,6,54,0.12); color: #b8082e; }
.al-ico.yellow { background: #fff3cd; color: #8a6500; }
.al-ico.green { background: rgba(101,219,145,0.20); color: #1f7a47; }
.al-ico.blue { background: rgba(33,81,245,0.10); color: var(--flip-swirl); }
.al-ico.sky { background: rgba(95,205,253,0.22); color: #0e72a3; }
.al-text { flex: 1; min-width: 0; }
.al-t { font-size: 9.5px; font-weight: 600; color: var(--black); line-height: 1.2; }
.al-s { font-size: 8px; color: var(--gray-500); line-height: 1.3; }
.al-pill {
  font-size: 7.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  flex-shrink: 0;
}
.al-pill.ok { background: rgba(101,219,145,0.20); color: #1f7a47; }
.al-pill.warn { background: #fff3cd; color: #8a6500; }
.al-pill.info { background: rgba(33,81,245,0.10); color: var(--flip-swirl); }

/* Step pattern (shift swap, day-one) */
.step-row { margin-bottom: 16px; }
.step-lbl {
  font-size: 9px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.step-bar {
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}
.step-fill {
  height: 100%;
  background: linear-gradient(90deg, #2151F5, #65DB91);
  border-radius: 2px;
}

.app-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 8px 0 6px;
}
.app-sub {
  font-size: 9.5px;
  line-height: 1.4;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.search-input {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 10px;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.recent-lbl {
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
  font-weight: 700;
}
.chip-people {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.people-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 3px;
  border-radius: 999px;
  background: var(--gray-50);
  font-size: 9px;
  font-weight: 600;
  color: var(--black);
}
.pc-av {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 7.5px;
  font-weight: 600;
  color: #fff;
}

.grad-bs { background: linear-gradient(135deg, #2151F5, #5FCDFD); color: #fff; }
.grad-sg { background: linear-gradient(135deg, #5FCDFD, #65DB91); color: #000; }
.grad-gb { background: linear-gradient(135deg, #65DB91, #2151F5); color: #fff; }

.chart-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 34px;
  padding: 4px;
  background: var(--gray-50);
  border-radius: 8px;
}
.cbar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  min-height: 4px;
}
.cbar.ok { background: var(--green); }
.cbar.warn { background: #f0a830; }

.check-list { display: flex; flex-direction: column; gap: 2px; }
.ck {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 4px;
  border-bottom: 0.5px solid var(--gray-100);
  font-size: 10px;
  color: var(--gray-700);
}
.ck:last-child { border-bottom: none; }
.ck-box {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-300);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 8px;
  font-weight: 800;
  color: transparent;
}
.ck.done .ck-box {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}
.ck.done .ck-t { color: var(--gray-500); text-decoration: line-through; }
.ck-t { line-height: 1.3; }

.form-stack { display: flex; flex-direction: column; gap: 4px; }
.fs-field { background: var(--gray-50); border-radius: 8px; padding: 7px 9px; }
.fs-lbl { font-size: 7px; font-weight: 700; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 3px; }
.fs-input { font-size: 9.5px; color: var(--black); font-weight: 500; }
.fs-input.dim { color: var(--gray-500); }

.phone-cta-wrap {
  padding: 8px 12px 14px;
  margin-top: auto;
}
.phone-cta {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  padding: 11px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  color: #fff;
  letter-spacing: -0.005em;
}
.phone-cta.blue { background: var(--flip-swirl); }
.phone-cta.dark { background: var(--black); }
.phone-cta.green { background: var(--green); color: var(--black); }

.phone-home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  background: rgba(0,0,0,0.55);
  border-radius: 3px;
  z-index: 2;
}

.ph-foot {
  padding: 22px 24px 22px;
  border-top: 1px solid var(--gray-100);
}
.ph-prompt {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--gray-800);
  font-style: italic;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.ph-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ph-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  flex-shrink: 0;
}
.ph-info { flex: 1; min-width: 0; line-height: 1.2; }
.ph-name { font-size: 13px; font-weight: 600; color: var(--black); }
.ph-role { font-size: 11px; color: var(--gray-500); }
.ph-ship {
  font-size: 11px;
  font-weight: 600;
  color: #1f7a47;
  background: rgba(101,219,145,0.18);
  padding: 4px 9px;
  border-radius: 9999px;
  white-space: nowrap;
}


/* ================================================================
   WORKSHOP — primary CTA
   ================================================================ */
.final-cta { display: none !important; } /* old final-cta hidden */

.workshop {
  padding: 110px 36px 140px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.workshop-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 0%, rgba(33,81,245,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 100%, rgba(101,219,145,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.workshop-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 0 0 !important;
  max-width: 1240px;
  margin: 0 auto;
}

.workshop-pitch .eyebrow.light { color: var(--flip-swirl); display: block; margin-bottom: 16px; }
.workshop-pitch h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--black);
  text-wrap: balance;
}
.workshop-pitch h2 .accent {
  background: linear-gradient(90deg, #2151F5, #65DB91);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.workshop-pitch .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0 0 36px;
  max-width: 480px;
  text-wrap: pretty;
}
.workshop-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.workshop-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
}
.workshop-perks .pk-ico {
  width: 32px; height: 32px;
  border-radius: 25%;
  background: rgba(33,81,245,0.10);
  color: var(--flip-swirl);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
}
.workshop-perks strong { color: var(--black); font-weight: 600; }

.workshop-cohort {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 16px 18px;
}
.cohort-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.cohort-tag .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
.cohort-meta { font-size: 12px; color: var(--gray-500); }

.workshop-form-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 36px;
  box-shadow:
    0 30px 80px rgba(33,81,245,0.10),
    0 8px 24px rgba(0,0,0,0.04);
  position: sticky;
  top: 100px;
}
.workshop-form { display: flex; flex-direction: column; gap: 14px; }
.wf-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}
.wf-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}
.wf-step {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  white-space: nowrap;
}
.wf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.wf-field.wf-full { grid-column: 1 / -1; }
.wf-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}
.wf-lbl .opt { font-weight: 400; color: var(--gray-500); }
.wf-field input,
.wf-field select,
.wf-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.wf-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%237A7A74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1.5 6 6.5 11 1.5'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.wf-field input:focus,
.wf-field select:focus,
.wf-field textarea:focus {
  border-color: var(--flip-swirl);
  box-shadow: 0 0 0 4px rgba(33,81,245,0.10);
}
.wf-field input::placeholder,
.wf-field textarea::placeholder { color: var(--gray-400); }
.wf-field textarea { resize: vertical; min-height: 100px; }

.wf-hint {
  font-size: 12px;
  color: #1f7a47;
  font-weight: 600;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray-700);
  padding: 4px 0;
}
.wf-consent input { margin-top: 2px; accent-color: var(--flip-swirl); flex-shrink: 0; }
.wf-consent a { color: var(--flip-swirl); text-decoration: underline; text-underline-offset: 2px; }

.wf-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.wf-foot {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin: 0;
}

/* SUCCESS state */
.workshop-success { text-align: center; padding: 24px 8px; }
.ws-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(101,219,145,0.20);
  color: #1f7a47;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.ws-check svg { width: 30px; height: 30px; }
.workshop-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 12px;
}
.workshop-success p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 24px;
}
.workshop-success p em {
  font-style: normal;
  font-weight: 600;
  color: var(--black);
}
.ws-next {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ws-next-item {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-700);
}
.ws-next-item strong { color: var(--black); margin-right: 6px; font-weight: 600; }


/* ================================================================
   RESPONSIVE v2
   ================================================================ */
@media (max-width: 1024px) {
  .workshop-inner { grid-template-columns: 1fr; gap: 40px; }
  .workshop-form-wrap { position: static; }
}

@media (max-width: 720px) {
  .fusion-title { font-size: 58px; }
  .hero { min-height: auto; padding: 110px 16px 60px; }
  .prompt-bar { padding: 6px 6px 8px; }
  .prompt-row-input { padding: 12px 12px 6px; }
  .prompt-input { font-size: 16px; }
  .workshop { padding: 72px 20px 96px; }
  .workshop-form-wrap { padding: 24px; }
  .wf-row { grid-template-columns: 1fr; gap: 14px; }
  .ph-stage { padding: 28px 20px 0; }
  .phone { max-width: 230px; }
}


/* ==========================================================================
   V4 — Carousel showcase (replaces v3 fanned phones)
   The screenshot PNGs already include the phone bezel/notch — we just
   present them side-by-side as a horizontal scroll-snap carousel.
   ========================================================================== */

/* Hide all the older showcase variants */
.showcase { display: none !important; }
.showcase-new { display: none !important; }

.appcarousel {
  padding: 96px 24px 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.appcarousel .section-head { margin-bottom: 48px; }

/* Stage: arrows are positioned outside the track for big screens */
.ac-stage {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.ac-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 50% 28px;   /* center first/last slide using padding */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  outline: none;
}
.ac-track::-webkit-scrollbar { display: none; }

.ac-slide {
  flex: 0 0 auto;
  width: 260px;
  cursor: pointer;
  transition: transform 360ms cubic-bezier(.2,.8,.2,1),
              filter 360ms ease,
              opacity 360ms ease;
  transform: scale(0.82);
  filter: saturate(0.85) brightness(0.96);
  opacity: 0.55;
  will-change: transform, filter, opacity;
}
.ac-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  filter: drop-shadow(0 24px 40px rgba(33,81,245,0.12)) drop-shadow(0 10px 20px rgba(0,0,0,0.06));
}
.ac-slide.is-active {
  transform: scale(1);
  filter: none;
  opacity: 1;
}
.ac-slide.is-adjacent {
  transform: scale(0.90);
  filter: saturate(0.95) brightness(0.99);
  opacity: 0.85;
}

/* Nav arrows */
.ac-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.04);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--gray-800);
  transition: background 150ms, color 150ms, transform 150ms, border-color 150ms;
}
.ac-nav:hover {
  background: var(--flip-swirl);
  color: #fff;
  border-color: var(--flip-swirl);
}
.ac-nav:active { transform: translateY(-50%) scale(0.95); }
.ac-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #fff;
  color: var(--gray-500);
  border-color: var(--gray-200);
}
.ac-nav svg { width: 22px; height: 22px; }
.ac-nav-prev { left: 12px; }
.ac-nav-next { right: 12px; }

/* Chip row below the carousel — one line, scrollable on small screens */
.ac-dots {
  margin: 36px auto 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  max-width: 1180px;
  padding: 6px 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ac-dots::-webkit-scrollbar { display: none; }
.ac-chip {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  padding: 9px 14px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: border-color 180ms, color 180ms, background 180ms, transform 120ms, box-shadow 180ms;
  white-space: nowrap;
  flex-shrink: 0;
}
.ac-chip:hover {
  border-color: var(--gray-400);
  color: var(--black);
}
.ac-chip.is-active {
  background: var(--flip-swirl);
  border-color: var(--flip-swirl);
  color: #fff;
  box-shadow: 0 6px 16px rgba(33,81,245,0.28);
  transform: translateY(-1px);
}

/* Detail card — leaner, no box, title left + tags right */
.ac-detail-wrap {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.ac-detail {
  background: transparent;
  border: none;
  padding: 24px 0 0;
  animation: ad-fade 360ms cubic-bezier(.2,.8,.2,1);
  border-top: 1px solid var(--gray-200);
}
.ac-detail[hidden] { display: none; }

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

.ad-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ad-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
  text-wrap: balance;
}
.ad-tags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ad-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flip-swirl);
  background: rgba(33,81,245,0.08);
  padding: 4px 10px;
  border-radius: 9999px;
}
.ad-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
  max-width: 580px;
  text-wrap: pretty;
}


/* Logo strip — sit on a tinted band below the showcase */
.logos {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 24px 48px;
}


/* Responsive */
@media (max-width: 900px) {
  .ac-slide { width: 220px; }
  .ad-facts { grid-template-columns: 1fr; }
  .ac-nav { display: none; }
}
@media (max-width: 600px) {
  .ac-slide { width: 200px; }
  .ac-detail { padding: 22px; }
  .ac-chip { font-size: 13px; padding: 8px 14px; }
  .ac-track { padding: 16px 40% 24px; }
}


/* ==========================================================================
   V5 — Hero tagline + sticky CTA + new CTA blocks + lean features
        + video reveal + visual anchor + new signup + final + trust strip
   ========================================================================== */

/* Hide ALL legacy sections still in the stylesheet */
.how, .features, .compare, .testimonials, .why, .workshop, .final-cta { display: none !important; }
.hero-stats, .hero-stat-row, .hero-badge, .chat-stage, .logos, .hero-cue,
.fusion-mark, .fusion-title, .fusion-tagline { display: none !important; }

/* ================================================================
   STICKY CTA BAR — replaces the nav entirely
   ================================================================ */
.nav { display: none !important; }

.sticky-cta {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 200ms;
}
.fusion-logo {
  display: block;
  height: 42px;
  width: auto;
  -webkit-user-drag: none;
  user-select: none;
}
.fusion-logo-footer {
  height: 56px;
  filter: invert(1);
}
.fusion-logo-hero {
  height: clamp(72px, 9vw, 112px);
  width: auto;
  margin: 0 auto 28px;
}
.sticky-cta.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.06); }

.sticky-build-btn {
  font-weight: 500;
}
.sticky-build-btn .arr { font-weight: 400; }


/* ================================================================
   HERO v5 — tagline + chat only
   ================================================================ */
.hero {
  padding: 110px 24px 56px;
  background:
    radial-gradient(ellipse 90% 60% at 95% 100%, rgba(95,205,253,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 90%, rgba(101,219,145,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(33,81,245,0.04) 0%, transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #F4F8FF 45%, #E9F4FF 100%);
  overflow: hidden;
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before, .hero::after { display: none !important; }

.hero-inner {
  text-align: center;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  width: 100%;
}

/* Override any legacy .hero h1 rule that pre-dates v5 */
.hero h1.hero-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--black);
  margin: 0 0 48px;
  text-wrap: balance;
  max-width: 1100px;
}
.tag-row1 {
  display: block;
  white-space: nowrap;
}
.tag-row2 {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: -0.03em;
  margin-top: 8px;
}
.tg-verb { display: inline-block; }
.tg-verb + .tg-verb { margin-left: 0.22em; }
.tg-dot { color: var(--flip-swirl); }
.tg-ship {
  background: linear-gradient(90deg, #2151F5 0%, #65DB91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tg-ship .tg-ship-dot { -webkit-text-fill-color: var(--green); color: var(--green); }


/* ================================================================
   CTA BLOCKS — used twice
   ================================================================ */
.cta-block {
  padding: 84px 24px;
  position: relative;
  overflow: hidden;
}
.cta-block.cta-light { background: var(--white); }
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 16px;
  text-wrap: balance;
}
.cta-block p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0 0 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-block.cta-dark {
  background: var(--black);
}
.cta-block.cta-dark .cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 90%, rgba(33,81,245,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 85% 10%, rgba(101,219,145,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 50% 50%, rgba(95,205,253,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block.cta-dark h2 { color: #fff; }
.cta-block.cta-dark p { color: rgba(255,255,255,0.72); }


/* ================================================================
   FEATURES — lean 5 rows
   ================================================================ */
.features-lean {
  padding: 96px 24px;
  background: var(--white);
}
.features-lean .section-head { margin-bottom: 48px; }
.features-lean .section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--black);
  margin: 0;
}

.feat-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  flex-direction: column;
}
.feat-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
}
.feat-item:last-child { border-bottom: 1px solid var(--gray-200); }
.feat-ico {
  width: 44px; height: 44px;
  border-radius: 25%;
  background: rgba(33,81,245,0.08);
  color: var(--flip-swirl);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.feat-ico svg { width: 22px; height: 22px; }
.feat-text h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--black);
  margin: 0 0 6px;
}
.feat-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}


/* ================================================================
   VIDEO REVEAL
   ================================================================ */
.reveal-video {
  padding: 96px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.reveal-video .section-head { margin-bottom: 40px; }
.reveal-video .section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 12px;
  color: var(--black);
}

.video-frame {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.video-aspect {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1430;
  background-image:
    radial-gradient(ellipse 60% 50% at 25% 80%, rgba(33,81,245,0.50) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(101,219,145,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(95,205,253,0.25) 0%, transparent 60%);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 80px rgba(11,20,48,0.25), 0 8px 24px rgba(0,0,0,0.10);
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms;
}
.video-aspect:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 90px rgba(11,20,48,0.30), 0 10px 28px rgba(0,0,0,0.12);
}
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 70%);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}
.vp-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--flip-swirl);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(33,81,245,0.30);
  transition: transform 180ms;
}
.video-aspect:hover .vp-circle { transform: scale(1.06); }
.vp-circle svg {
  width: 32px; height: 32px;
  margin-left: 4px;  /* optical center */
}
.vp-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.9);
}
.vp-time {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  background: rgba(0,0,0,0.30);
  padding: 4px 10px;
  border-radius: 9999px;
}
.vp-cap {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.video-endcard {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--flip-swirl);
  color: #fff;
  padding: 11px 18px;
  border-radius: 9999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(33,81,245,0.40);
  z-index: 3;
  transition: filter 180ms, transform 180ms;
}
.video-endcard:hover { filter: brightness(1.06); transform: translateY(-1px); }
.video-endcard .arr { font-weight: 400; }


/* ================================================================
   VISUAL ANCHOR
   ================================================================ */
.anchor {
  padding: 120px 24px 130px;
  background: var(--white);
}
.anchor-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.anchor-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(52px, 8.4vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--black);
  margin: 0;
  text-wrap: balance;
}
.an-verb { display: inline-block; }
.an-verb + .an-verb { margin-left: 0.18em; }
.an-dot { color: var(--flip-swirl); }
.an-ship {
  background: linear-gradient(90deg, #2151F5 0%, #65DB91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.an-ship .an-ship-dot { -webkit-text-fill-color: var(--green); color: var(--green); }
.an-row2 {
  display: block;
  color: var(--gray-700);
  font-weight: 500;
  margin-top: 2px;
}


/* ================================================================
   SIGN-UP FORM (v5) — replaces .workshop
   ================================================================ */
.signup {
  padding: 96px 24px 120px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  position: relative;
  scroll-margin-top: 88px;
}
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.signup-pitch h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 18px;
  text-wrap: balance;
}
.signup-pitch .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0 0 32px;
  max-width: 480px;
  text-wrap: pretty;
}

.signup-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.signup-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
}
.signup-perks .pk-ico {
  width: 32px; height: 32px;
  border-radius: 25%;
  background: rgba(33,81,245,0.10);
  color: var(--flip-swirl);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.signup-perks .pk-ico svg { width: 17px; height: 17px; }
.signup-perks strong { color: var(--black); font-weight: 600; }

.signup-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: 9999px;
}
.signup-trust .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

.signup-form-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 36px;
  box-shadow:
    0 30px 80px rgba(33,81,245,0.10),
    0 8px 24px rgba(0,0,0,0.04);
  position: sticky;
  top: 88px;
}
.signup-form { display: flex; flex-direction: column; gap: 14px; }

.sf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.sf-field.sf-full { grid-column: 1 / -1; }
.sf-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}
.sf-lbl .opt { font-weight: 400; color: var(--gray-500); }
.sf-field input,
.sf-field select,
.sf-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.sf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%237A7A74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1.5 6 6.5 11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.sf-field input:focus,
.sf-field select:focus,
.sf-field textarea:focus {
  border-color: var(--flip-swirl);
  box-shadow: 0 0 0 4px rgba(33,81,245,0.10);
}
.sf-field input::placeholder,
.sf-field textarea::placeholder { color: var(--gray-400); }
.sf-field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }

.sf-hint {
  font-size: 12px;
  color: #1f7a47;
  font-weight: 600;
  margin-top: 4px;
}

.sf-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.sf-privacy {
  font-size: 11.5px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 4px 0 0;
  text-align: center;
}
.sf-privacy a { color: var(--flip-swirl); text-decoration: underline; text-underline-offset: 2px; }

/* Success state */
.signup-success { text-align: center; padding: 16px 8px; }
.signup-success .ws-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(101,219,145,0.20);
  color: #1f7a47;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.signup-success .ws-check svg { width: 30px; height: 30px; }
.signup-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 12px;
}
.signup-success p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 24px;
}
.signup-success p em { font-style: normal; font-weight: 600; color: var(--black); }


/* ================================================================
   FAQ — re-style for v5 (lighter spacing)
   ================================================================ */
.faq {
  padding: 96px 24px;
  background: var(--white);
}
.faq .section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: var(--black);
}
.faq .section-head { margin-bottom: 36px; }


/* ================================================================
   FINAL CTA + TRUST STRIP
   ================================================================ */
.final {
  padding: 110px 24px 130px;
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 90%, rgba(33,81,245,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 85% 10%, rgba(101,219,145,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 50% 50%, rgba(95,205,253,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.final h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.final p {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0 0 36px;
}
.final-cta-btn { margin-bottom: 56px; }

.trust-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-row span { font-size: 13px; }
.trust-row-logos { color: rgba(255,255,255,0.45); }
.trust-row-logos .trust-lead { color: rgba(255,255,255,0.75); font-weight: 600; }
.trust-row-logos .t-sep { opacity: 0.5; }
.trust-row-logos .tlogo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.005em;
}


/* ================================================================
   FOOTER tweaks for v5 (smaller, denser since we keep it compact)
   ================================================================ */
footer { padding: 56px 36px 24px; }
.footer-inner { padding-bottom: 36px; gap: 48px; }


/* ================================================================
   RESPONSIVE v5
   ================================================================ */
@media (max-width: 1024px) {
  .signup-grid { grid-template-columns: 1fr; gap: 36px; }
  .signup-form-wrap { position: static; }
}

@media (max-width: 720px) {
  .sticky-cta { padding: 0 16px; }
  .hero { min-height: auto; padding: 100px 16px 56px; }
  .hero-tagline { font-size: clamp(40px, 11vw, 64px); }
  .tg-verb + .tg-verb { margin-left: 0.12em; }
  .cta-block { padding: 64px 16px; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .features-lean { padding: 64px 16px; }
  .feat-item { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .reveal-video { padding: 64px 16px; }
  .vp-circle { width: 64px; height: 64px; }
  .vp-circle svg { width: 24px; height: 24px; }
  .video-endcard { bottom: 12px; right: 12px; padding: 9px 14px; font-size: 13px; }
  .anchor { padding: 72px 16px 80px; }
  .anchor-line { font-size: clamp(40px, 12vw, 72px); }
  .signup { padding: 64px 16px 96px; }
  .signup-form-wrap { padding: 24px; }
  .sf-row { grid-template-columns: 1fr; gap: 14px; }
  .faq { padding: 64px 16px; }
  .final { padding: 80px 16px 96px; }
  .final-cta-btn { width: 100%; justify-content: center; }
}


/* ==========================================================================
   V6 — Early-access hero (app icon + eyebrow + subline)
        + Flip-blue frame around the showcase detail panel
   ========================================================================== */

/* Fusion app icon above the tagline */
.hero-app-icon {
  width: clamp(72px, 8.5vw, 94px);
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 38px rgba(33,81,245,0.22))
          drop-shadow(0 6px 16px rgba(33,81,245,0.12));
}

/* "Get early access" eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flip-swirl);
  background: rgba(33,81,245,0.06);
  border: 1px solid rgba(33,81,245,0.20);
  padding: 7px 16px 7px 13px;
  border-radius: 9999px;
  margin: 0 0 26px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

/* Tagline tightens to make room for the subline */
.hero h1.hero-tagline { margin: 0 0 22px; }

.hero-tagline-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 680px;
  margin: 0 auto 40px;
  text-wrap: pretty;
}

/* Flip-blue frame around the visible app detail so it reads clearly */
.ac-detail {
  border: 1.5px solid var(--flip-swirl);
  border-top: 1.5px solid var(--flip-swirl);
  border-radius: var(--radius-lg);
  background: rgba(33,81,245,0.04);
  padding: 22px 26px;
  box-shadow: 0 8px 26px rgba(33,81,245,0.08);
}

@media (max-width: 720px) {
  .hero-tagline-sub { font-size: 16px; margin-bottom: 32px; }
  .ac-detail { padding: 20px 18px; }
}


/* ==========================================================================
   HubSpot embedded co-creation form — styled to the Flip system
   ========================================================================== */
.hs-form-frame { min-height: 320px; }

.hs-form-frame .hs-form,
.hs-form-frame form.hs-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-body);
}

/* Field rows */
.hs-form-frame .hs-form-field { margin: 0; min-width: 0; }
.hs-form-frame .hs-form-field > label,
.hs-form-frame .hs-form-field > label .hs-form-required {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.hs-form-frame .hs-form-required { color: var(--flip-swirl); margin-left: 2px; }
.hs-form-frame .hs-field-desc {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0 0 6px;
}

/* Inputs, selects, textareas */
.hs-form-frame input[type="text"],
.hs-form-frame input[type="email"],
.hs-form-frame input[type="tel"],
.hs-form-frame input[type="number"],
.hs-form-frame select,
.hs-form-frame textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 11px 14px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.hs-form-frame textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.hs-form-frame input:focus,
.hs-form-frame select:focus,
.hs-form-frame textarea:focus {
  border-color: var(--flip-swirl);
  box-shadow: 0 0 0 4px rgba(33,81,245,0.10);
}
.hs-form-frame input::placeholder,
.hs-form-frame textarea::placeholder { color: var(--gray-400); }

/* HubSpot multi-column rows */
.hs-form-frame .hs-form .hs-fieldtype-text,
.hs-form-frame .hs-form .hs-fieldtype-select,
.hs-form-frame .hs-form fieldset { max-width: 100% !important; }
.hs-form-frame fieldset.form-columns-2 .hs-form-field { padding-right: 6px; }
.hs-form-frame fieldset.form-columns-2 .hs-form-field + .hs-form-field { padding-right: 0; padding-left: 6px; }

/* Checkbox / consent text */
.hs-form-frame .hs-form-booleancheckbox-display,
.hs-form-frame .legal-consent-container,
.hs-form-frame .hs-richtext {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-500);
}
.hs-form-frame .legal-consent-container a,
.hs-form-frame .hs-richtext a { color: var(--flip-swirl); }

/* Submit button → Flip primary pill */
.hs-form-frame .hs-button,
.hs-form-frame input[type="submit"].hs-button {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: var(--black);
  background: var(--green);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  width: 100%;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 160ms cubic-bezier(.2,.8,.2,1), transform 120ms;
}
.hs-form-frame .hs-button:hover { background: #4fcf80; }
.hs-form-frame .hs-button:active { transform: scale(0.98); }

/* Validation messages */
.hs-form-frame .hs-error-msgs,
.hs-form-frame .hs-error-msg,
.hs-form-frame label.hs-error-msg {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  font-size: 12px;
  color: var(--state-urgent, #d6324a);
  font-weight: 500;
}
.hs-form-frame .hs-input.invalid,
.hs-form-frame .hs-input.error { border-color: var(--state-urgent, #d6324a); }

/* Success state after submit */
.hs-form-frame .submitted-message {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
}


/* ==========================================================================
   V7 — Marketing take-over
   Early-access banner · hero video placeholder · infinite app marquee ·
   Wall of Love · dark "What will you build" · minimal footer
   ========================================================================== */

/* ---- 0 · Early-access banner (new hero entry point) -------------------- */
.ea-banner {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 144px 24px 104px;
}
.ea-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 16% 8%, rgba(33,81,245,0.62) 0%, transparent 56%),
    radial-gradient(ellipse 50% 70% at 88% 96%, rgba(101,219,145,0.40) 0%, transparent 56%),
    radial-gradient(ellipse 44% 58% at 60% 46%, rgba(95,205,253,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.ea-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ea-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
}
.ea-grad {
  background: linear-gradient(90deg, #5FCDFD 0%, #65DB91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ea-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  max-width: 720px;
  margin: 0 0 34px;
  text-wrap: pretty;
}
.ea-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 40px;
  padding: 0;
}
.ea-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-pill);
  padding: 12px 22px 12px 16px;
  backdrop-filter: blur(4px);
}
.ea-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
}
.ea-check svg { width: 15px; height: 15px; }
.ea-cta { box-shadow: 0 16px 40px rgba(101,219,145,0.28); }

/* ---- Hero: tighten now that the banner sits above it ------------------- */
.hero {
  min-height: auto !important;
  padding: 76px 24px 64px !important;
}

/* ---- 2 · Hero video placeholder (below the prompt bar) ----------------- */
.hero-video {
  width: 100%;
  max-width: 720px;
  margin: 26px auto 0;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 90% at 18% 12%, rgba(33,81,245,0.34) 0%, transparent 60%),
    radial-gradient(ellipse 80% 100% at 100% 100%, rgba(101,219,145,0.22) 0%, transparent 60%),
    #0B0B0C;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(11,11,12,0.18);
}
.hv-play {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  color: var(--flip-swirl);
  box-shadow: 0 10px 30px rgba(0,0,0,0.30);
}
.hv-play svg { width: 28px; height: 28px; margin-left: 4px; }
.hv-text { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hv-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}
.hv-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.62);
}

/* ---- Built with Fusion: infinite marquee ------------------------------- */
.ac-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ac-marquee-track {
  display: flex;
  width: max-content;
  animation: ac-scroll 56s linear infinite;
}
.ac-marquee:hover .ac-marquee-track { animation-play-state: paused; }

/* Full-bleed infinite strip */
.ac-marquee-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 18px 0 8px;
}
.ac-marquee-full .mq-card { width: 268px; }
@keyframes ac-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-card {
  flex: 0 0 auto;
  width: 248px;
  margin: 0 28px 0 0;
}
.mq-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1236 / 2640;
  object-fit: cover;
  object-position: top center;
  border-radius: 36px;
  background: transparent;
}
.mq-cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 6px 0;
}
.mq-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--black);
}
.mq-tag {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--flip-swirl);
  background: rgba(33,81,245,0.08);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}
.ac-marquee-note {
  text-align: center;
  margin: 36px auto 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-500);
}

/* ---- "What will you build" — dark ghost button ------------------------- */
.cta-block.cta-dark .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}
.cta-block.cta-dark .btn-ghost:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* ---- Wall of Love ------------------------------------------------------ */
.wol {
  background: #F4F8FF;
  padding: 100px 24px;
}
.wol-grid {
  max-width: 1200px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 24px;
}
.wol-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--border, #EAEAEA);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  margin: 0 0 24px;
  box-shadow: 0 2px 4px rgba(11,11,12,0.03), 0 14px 32px rgba(11,11,12,0.05);
}
.wol-card blockquote {
  position: relative;
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--black);
  text-wrap: pretty;
}
.wol-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.6;
  color: var(--flip-swirl);
  margin-bottom: 6px;
}
.wol-feature {
  background: linear-gradient(160deg, #EEF3FF 0%, #FFFFFF 70%);
  border-color: rgba(33,81,245,0.18);
}
.wol-feature blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.wol-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wol-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}
.wol-role {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray-500);
}
.wol-co {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--flip-swirl);
  margin-top: 2px;
}

/* ---- Footer: logo as-is (no filter) + minimal links -------------------- */
.footer-inner-min {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  grid-template-columns: none;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
}
.fusion-logo-footer {
  filter: none !important;
  height: 48px;
  width: auto;
}
.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.flip-logo-top {
  display: block;
  height: 30px;
  width: auto;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 180ms;
}
.footer-links a:hover { color: #fff; }
.footer-bottom { justify-content: flex-start; }

/* ---- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .ac-marquee { overflow-x: auto; }
  .ac-marquee-track { animation: none; }
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
  .wol-grid { column-count: 2; }
}
@media (max-width: 760px) {
  .ea-banner { padding: 120px 18px 80px; }
  .ea-badges { gap: 10px; }
  .ea-badge { font-size: 14px; padding: 10px 16px 10px 13px; }
  .hero-video { gap: 14px; }
  .hv-play { width: 64px; height: 64px; }
  .hv-label { font-size: 21px; }
  .mq-card { width: 200px; margin-right: 20px; }
  .wol { padding: 64px 16px; }
  .wol-grid { column-count: 1; }
  .wol-feature blockquote { font-size: 23px; }
  .footer-inner-min { flex-direction: column; align-items: flex-start; gap: 28px; }
}


/* ==========================================================================
   V8 — Streamlined single light-blue hero · strict 2×3 Wall of Love
   ========================================================================== */

/* ---- Hero stage (now the first section) -------------------------------- */
.hero {
  min-height: auto !important;
  padding: 118px 24px 84px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.62) 20%, rgba(255,255,255,0) 48%),
    radial-gradient(ellipse 44% 64% at 88% 56%, rgba(0,193,255,0.34) 0%, rgba(0,193,255,0) 62%),
    radial-gradient(ellipse 56% 82% at 100% 80%, rgba(88,196,253,0.42) 0%, rgba(88,196,253,0) 66%),
    radial-gradient(ellipse 34% 42% at 46% 50%, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(ellipse 52% 100% at -2% 66%, rgba(190,189,250,0.55) 0%, rgba(190,189,250,0) 62%),
    linear-gradient(125deg, #eeecfe 0%, #e8edff 34%, #dcf2ff 58%, #cfeeff 80%, #ddf0ff 100%) !important;
}
.hero-inner { gap: 0; }

.hero-logo {
  display: block;
  height: 132px;
  width: auto;
  margin: 0 0 56px;
}
.hero-logo-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 28px;
}
.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--flip-swirl);
  background: rgba(33,81,245,0.08);
  border: 1.5px solid var(--flip-swirl);
  border-radius: var(--radius-pill);
  padding: 10px 22px 10px 16px;
  box-shadow: none;
  margin: 0 0 32px;
}
.hero .hero-eyebrow .dot {
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--black);
  max-width: 940px;
  margin: 0 0 16px;
  text-wrap: balance;
}
.hero-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.hero-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 38px;
  padding: 0;
}
.hero-perk {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 4px;
  box-shadow: none;
}
.hb-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.hb-check svg { width: 13px; height: 13px; }

/* video teaser sits inside the hero now */
.hero .hero-video { margin: 0 auto 36px; }

/* Describe. Build. Ship. module (below the video) */
.hero-tag-module {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 28px;
  text-align: center;
}
.hero-tag-module .tag-row2 {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-top: 6px;
}
.hero .prompt-bar { margin: 0 auto; }

/* ---- Wall of Love: strict 2 × 3 grid, identical cards ------------------ */
.wol-grid {
  column-count: unset;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.wol-card {
  height: 360px;
  margin: 0;
  break-inside: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wol-card blockquote { margin: 0; }
.wol-card figcaption { margin-top: 22px; }

.features-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

@media (max-width: 1024px) {
  .wol-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hero { padding: 104px 16px 64px !important; }
  .hero-logo { height: 104px; }
  .wol-grid { grid-template-columns: 1fr; }
  .wol-card { height: auto; min-height: 240px; }
}

/* =============================================================
   V10 — Separate launch-video module + arrow-nav carousel
   ============================================================= */

/* ---- Launch video: matches "What will you build?" CTA background ------- */
.launch-video-section {
  padding: 96px 24px 96px;
  background: var(--black);
}
.lv-cta { text-align: center; margin-top: 40px; }
.hero-cta { display: inline-flex; margin: 0 0 40px; }
.launch-video {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  cursor: pointer;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 90px rgba(11,11,12,0.26);
  overflow: hidden;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), box-shadow 200ms cubic-bezier(.2,.8,.2,1);
}
.launch-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 90%, rgba(33,81,245,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 85% 10%, rgba(101,219,145,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 50% 50%, rgba(95,205,253,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.launch-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 25%, transparent 72%);
}
.launch-video:hover { transform: translateY(-4px); box-shadow: 0 44px 100px rgba(11,11,12,0.32); }

/* ---- Autoplay video variant: video shown at full natural ratio, no crop --- */
.launch-video-section .wrap { max-width: 1440px; }
.launch-video.has-video {
  aspect-ratio: auto;        /* let the video define its own height */
  max-width: 1440px;         /* self-cap + centered (base has margin:0 auto) */
  width: 100%;
  display: block;
  cursor: default;
}
.launch-video.has-video:hover { transform: none; box-shadow: 0 36px 90px rgba(11,11,12,0.26); }
.launch-video.has-video::before,
.launch-video.has-video::after { display: none; }
.lv-video {
  display: block;
  width: 100%;               /* full width of the frame */
  height: auto;              /* natural aspect ratio — whole video, never cropped */
}
.lv-play {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  color: var(--flip-swirl);
  box-shadow: 0 12px 36px rgba(0,0,0,0.34);
  transition: transform 200ms cubic-bezier(.2,.8,.2,1);
}
.launch-video:hover .lv-play { transform: scale(1.06); }
.lv-play svg { width: 34px; height: 34px; margin-left: 5px; }
.lv-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lv-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.lv-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: #fff;
}

/* ---- Carousel: static track + arrow navigation ------------------------- */
.ac-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ac-carousel .ac-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}
.ac-carousel .ac-marquee-track {
  display: flex;
  width: max-content;
  animation: none;
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.ac-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--black);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 180ms cubic-bezier(.2,.8,.2,1), transform 120ms cubic-bezier(.2,.8,.2,1), box-shadow 180ms;
}
.ac-arrow:hover { background: var(--flip-swirl); border-color: var(--flip-swirl); color: #fff; box-shadow: var(--shadow-md); }
.ac-arrow:active { transform: scale(0.94); }
.ac-arrow svg { width: 22px; height: 22px; }
.ac-arrow[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }

@media (max-width: 760px) {
  .ac-arrow { width: 44px; height: 44px; }
  .launch-video-section { padding: 56px 16px 56px; }
}
