/* ═══════════════════════════════════════════════════════════
   FLUBB MASTER STYLESHEET
   All section styles in one file, powered by brand tokens
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-font);
  font-size: var(--f-body);
  font-weight: var(--f-weight-regular);
  color: var(--f-text-body);
  background: var(--f-bg-page);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--f-purple); text-decoration: none; transition: color var(--f-duration) ease; }
a:hover { color: var(--f-purple-deep); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-font);
  color: var(--f-text-heading);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: var(--f-h1); font-weight: var(--f-weight-bold); }
h2 { font-size: var(--f-h2); font-weight: var(--f-weight-bold); }
h3 { font-size: var(--f-h3); font-weight: var(--f-weight-demi); }

.container {
  max-width: var(--f-container);
  margin: 0 auto;
  padding: 0 var(--f-side-pad);
}


/* ── Shared Components ─────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--f-purple);
  background: rgba(116, 68, 242, 0.1);
  border: 1px solid rgba(116, 68, 242, 0.2);
  padding: 6px 18px;
  border-radius: var(--f-radius-pill);
}

.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--f-purple);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--f-purple);
  color: var(--f-white);
  font-family: var(--f-font);
  font-size: var(--f-small);
  font-weight: var(--f-weight-bold);
  padding: 14px 32px;
  border-radius: var(--f-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--f-shadow-md);
  transition: all var(--f-duration) ease;
}

.btn-primary:hover {
  background: var(--f-purple-deep);
  color: var(--f-white);
  transform: translateY(-2px);
  box-shadow: var(--f-shadow-lg);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--f-purple);
  font-family: var(--f-font);
  font-size: var(--f-small);
  font-weight: var(--f-weight-demi);
  padding: 12px 28px;
  border-radius: var(--f-radius-pill);
  border: 1.5px solid var(--f-border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--f-duration) ease;
}

.btn-outline:hover {
  background: var(--f-purple);
  color: var(--f-white);
  border-color: var(--f-purple);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--f-purple);
  font-family: var(--f-font);
  font-size: var(--f-small);
  font-weight: var(--f-weight-demi);
  padding: 12px 28px;
  border-radius: var(--f-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--f-duration) ease;
  flex-shrink: 0;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Fade animation for scroll-triggered elements */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s var(--f-ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--f-side-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--f-border);
}

.site-header .site-nav {
  justify-self: center;
}

.site-header .nav-cta {
  justify-self: end;
}

/* Logo — inline SVG so letters can animate individually */
.site-logo { display: flex; align-items: center; text-decoration: none; }

.site-logo__svg {
  display: block;
  height: 28px;
  width: auto;
  fill: var(--f-navy);
  overflow: visible;
}

/* Animate the <g> wrappers — they have the correct visual bounding box */
.site-logo__svg g {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: logo-letter-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.site-logo__svg .logo-f  { animation-delay: 0.04s; }
.site-logo__svg .logo-l  { animation-delay: 0.11s; }
.site-logo__svg .logo-u  { animation-delay: 0.18s; }
.site-logo__svg .logo-b1 { animation-delay: 0.25s; }
.site-logo__svg .logo-b2 { animation-delay: 0.32s; }

@keyframes logo-letter-pop {
  from { opacity: 0; transform: translateY(5px) scale(0.5); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}

.site-nav { display: flex; align-items: center; gap: 36px; }

.site-nav a {
  font-size: 14px;
  font-weight: var(--f-weight-demi);
  color: var(--f-text-body);
  transition: color var(--f-duration) ease;
}

.site-nav a:hover { color: var(--f-purple); }

.site-nav a.active,
.nav-dropdown__trigger.active { color: var(--f-purple); font-weight: var(--f-weight-demi); }

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: var(--f-weight-demi);
  color: var(--f-text-body);
  cursor: pointer;
  transition: color var(--f-duration) ease;
  user-select: none;
}

.nav-dropdown__trigger:hover,
.nav-dropdown:hover .nav-dropdown__trigger {
  color: var(--f-purple);
}

.nav-dropdown__trigger svg {
  width: 12px; height: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.55;
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  /* padding-top bridges the gap so hover stays hot all the way down */
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

/* The visible card sits inside a wrapper so padding-top is invisible */
.nav-dropdown__menu-inner {
  background: #fff;
  border: 1px solid var(--f-border);
  border-radius: var(--f-radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(116,68,242,0.07);
  padding: 6px;
  min-width: 160px;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--f-radius-sm);
  font-size: 13.5px;
  font-weight: var(--f-weight-demi);
  color: var(--f-text-body);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown__menu a:hover {
  background: rgba(116,68,242,0.07);
  color: var(--f-purple);
}

.nav-dropdown__badge {
  font-size: 10px;
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--f-purple);
  background: rgba(116,68,242,0.1);
  padding: 2px 7px;
  border-radius: var(--f-radius-pill);
  line-height: 1.6;
}

.nav-dropdown__divider {
  height: 1px;
  background: var(--f-border);
  margin: 4px 8px;
}

.nav-cta {
  font-size: 13px;
  font-weight: var(--f-weight-bold);
  color: var(--f-purple) !important;
  background: rgba(116, 68, 242, 0.1);
  padding: 8px 20px;
  border-radius: var(--f-radius-pill);
}

.nav-cta:hover {
  background: var(--f-purple);
  color: var(--f-white) !important;
}


/* ═══════════════════════════════════════════════════════════
   SECTION: HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--f-side-pad) 80px;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-inner {
  max-width: var(--f-container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--f-purple);
  font-size: 12px;
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--f-text-heading);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--f-text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img { width: 100%; max-width: 520px; }

.hero-image video {
  width: 100%;
  max-width: 520px;
  display: block;
  mix-blend-mode: multiply;
  animation: videoFadeLoop 5s linear infinite;
}

@keyframes videoFadeLoop {
  0%        { opacity: 0; }
  8%        { opacity: 1; }
  78%       { opacity: 1; }
  94%, 100% { opacity: 0; }
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(116, 68, 242, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-image img,
.hero-image video { position: relative; z-index: 1; }


/* ═══════════════════════════════════════════════════════════
   SECTION: WHY WE BUILT
   ═══════════════════════════════════════════════════════════ */

.why {
  padding: var(--f-section-pad) 0;
  background: var(--f-bg-page);
}

.why-header {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--f-border);
  margin-bottom: 0;
}

.why-headline {
  font-size: var(--f-h2);
  font-weight: 800;
  color: var(--f-text-heading);
  max-width: 780px;
  margin-bottom: 24px;
}

.why-headline em {
  font-style: italic;
  color: var(--f-purple);
}

.why-open {
  font-size: 1.05rem;
  color: var(--f-text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.why-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--f-border);
  align-items: start;
}

.why-block:last-child { border-bottom: none; }

.why-num {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(116, 68, 242, 0.15);
  letter-spacing: -0.06em;
  line-height: 1;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  align-items: start;
}

.why-title {
  font-size: var(--f-h3);
  font-weight: 800;
  color: var(--f-text-heading);
  grid-column: 1 / -1;
}

.why-title span { color: var(--f-purple); }

.why-body {
  font-size: 0.95rem;
  color: var(--f-text-muted);
  line-height: 1.78;
}

.why-body strong { color: var(--f-text-heading); font-weight: var(--f-weight-bold); }

.why-card {
  background: var(--f-bg-soft);
  border-radius: var(--f-radius-md);
  padding: 24px;
  border: 1px solid var(--f-border-strong);
}

.why-card-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--f-support-2);
  margin-bottom: 8px;
}

.why-card-stat {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--f-purple);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.why-card p {
  font-size: var(--f-xs);
  color: var(--f-text-light);
  line-height: 1.6;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
}

.why-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--f-bg-card);
  border: 1px solid var(--f-border-strong);
  border-radius: var(--f-radius-pill);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: var(--f-weight-bold);
  color: var(--f-text-heading);
  box-shadow: var(--f-shadow-sm);
}

.why-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--f-purple);
}


/* ═══════════════════════════════════════════════════════════
   SECTION: WHAT WE DO
   ═══════════════════════════════════════════════════════════ */

.wwd {
  padding: var(--f-section-pad) 0;
  background: var(--f-bg-page);
}

.wwd-header {
  text-align: center;
  margin-bottom: 48px;
}

.wwd-header h2 { margin-bottom: 16px; }

.wwd-sub {
  font-size: 1rem;
  color: var(--f-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.wwd-card {
  background: var(--f-bg-card);
  border: 1px solid var(--f-border);
  border-radius: var(--f-radius-lg);
  padding: 36px;
  transition: all var(--f-duration) var(--f-ease);
}

.wwd-card:hover {
  border-color: var(--f-border-strong);
  box-shadow: var(--f-shadow-md);
  transform: translateY(-4px);
}

.wwd-card.featured {
  background: var(--f-bg-soft);
  border-color: var(--f-border-strong);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.wwd-stat {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--f-purple);
  letter-spacing: -0.04em;
  line-height: 1;
}

.wwd-stat-label {
  font-size: var(--f-small);
  color: var(--f-text-muted);
  margin-top: 4px;
}

.wwd-card-icon {
  width: 44px; height: 44px;
  background: var(--f-bg-soft);
  border-radius: var(--f-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.wwd-card h3 { margin-bottom: 10px; }

.wwd-card p {
  font-size: var(--f-small);
  color: var(--f-text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   SECTION: BUILT FOR SCALE
   ═══════════════════════════════════════════════════════════ */

.scale {
  padding: var(--f-section-pad) 0;
  background: var(--f-bg-soft);
}

.scale-header {
  text-align: center;
  margin-bottom: 48px;
}

.scale-header h2 { margin-bottom: 12px; }

.scale-sub {
  font-size: 1rem;
  color: var(--f-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scale-card {
  background: var(--f-bg-card);
  border-radius: var(--f-radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--f-border);
  transition: all var(--f-duration) var(--f-ease);
}

.scale-card:hover {
  box-shadow: var(--f-shadow-md);
  transform: translateY(-4px);
}

.scale-card-label {
  font-size: 10px;
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--f-purple);
  margin-bottom: 16px;
}

.scale-card h3 { margin-bottom: 12px; }

.scale-card p {
  font-size: var(--f-small);
  color: var(--f-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.scale-card .btn-outline { font-size: var(--f-xs); padding: 10px 20px; }


/* ═══════════════════════════════════════════════════════════
   SECTION: STEPS
   ═══════════════════════════════════════════════════════════ */

.steps {
  padding: var(--f-section-pad) 0;
  background: var(--f-bg-page);
}

.steps-header {
  text-align: center;
  margin-bottom: 48px;
}

.steps-header h2 { margin-bottom: 12px; }

.steps-sub {
  font-size: 1rem;
  color: var(--f-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--f-bg-soft);
  border: 1.5px solid var(--f-border-strong);
  font-size: var(--f-xs);
  font-weight: var(--f-weight-bold);
  color: var(--f-purple);
  margin-bottom: 20px;
}

.step-label {
  font-size: 10px;
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--f-text-light);
  margin-bottom: 8px;
}

.step-card h3 { margin-bottom: 12px; }

.step-card p {
  font-size: var(--f-small);
  color: var(--f-text-muted);
  line-height: 1.7;
}

.steps-disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: var(--f-xs);
  color: var(--f-text-light);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   SECTION: FOR TEENS — What You'll Find Inside (Source)
   ═══════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════
   SECTION: TONE OF VOICE
   ═══════════════════════════════════════════════════════════ */

.tone {
  padding: var(--f-section-pad) 0;
  background: #010118;
  border-radius: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.tone::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(116, 68, 242, 0.18) 0%, transparent 70%);
  top: -100px; right: -60px;
  pointer-events: none;
}

.tone-label { color: #BEC8F9; }
.tone h2    { color: #ffffff; }
.tone-sub   { color: rgba(255, 255, 255, 0.78); }

.tone-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.tone-label {
  font-size: 11px;
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--f-purple);
  margin-bottom: 16px;
  text-align: center;
}

.tone h2 {
  text-align: center;
  margin-bottom: 12px;
}

.tone-sub {
  font-size: var(--f-body);
  color: var(--f-text-muted);
  text-align: center;
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.tone-chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bubble {
  padding: 16px 20px;
  border-radius: 20px;
  font-size: var(--f-body);
  font-weight: 500;
  line-height: 1.55;
  max-width: 82%;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--f-ease), transform 0.5s var(--f-ease);
}

.bubble.visible { opacity: 1; transform: none; }

.bubble--user {
  background: var(--f-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  color: var(--f-text-muted);
  font-size: var(--f-small);
  text-align: right;
  box-shadow: var(--f-shadow-sm);
}

.bubble--app {
  background: linear-gradient(135deg, #EDE0F9, #DDEEFF);
  border: 1px solid rgba(116, 68, 242, 0.15);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  color: var(--f-text-heading);
  box-shadow: 0 2px 16px rgba(116, 68, 242, 0.1);
}

.bubble-sender {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--f-purple);
  margin-bottom: 6px;
}

.typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #EDE0F9, #DDEEFF);
  border: 1px solid rgba(116, 68, 242, 0.15);
  border-radius: 20px;
  border-bottom-left-radius: 5px;
  align-self: flex-start;
  opacity: 0;
  transition: opacity 0.3s;
}

.typing.visible { opacity: 1; }

.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--f-purple);
  animation: typingDot 1.2s ease-in-out infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}


/* ═══════════════════════════════════════════════════════════
   SECTION: COMING TO YOU — App Preview
   ═══════════════════════════════════════════════════════════ */

.app-cta {
  padding: var(--f-section-pad) 0;
  background: var(--f-bg-dark);
  color: var(--f-text-on-dark);
  overflow: hidden;
}

.app-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-cta-content .eyebrow {
  color: var(--f-support-2);
  background: rgba(197, 176, 252, 0.12);
  border-color: rgba(197, 176, 252, 0.25);
}

.app-cta-content h2 { color: var(--f-white); }

.app-cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.app-cta-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.app-cta-badge {
  font-size: 11px;
  font-weight: var(--f-weight-bold);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--f-radius-pill);
}

.app-cta-note {
  font-size: var(--f-small);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.app-phone-frame {
  background: var(--f-white);
  border-radius: 28px;
  max-width: 300px;
  margin: 0 auto;
  padding: 12px 16px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(116, 68, 242, 0.2);
}

.app-phone-status {
  text-align: center;
  font-size: 12px;
  font-weight: var(--f-weight-demi);
  color: var(--f-text-heading);
  padding: 8px 0;
}

.app-phone-nav {
  font-size: 13px;
  font-weight: var(--f-weight-demi);
  color: var(--f-text-heading);
  text-align: center;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--f-border);
  margin-bottom: 20px;
}

.app-phone-body {
  padding: 0 4px;
}

.app-phone-greeting {
  font-size: var(--f-small);
  color: var(--f-text-body);
  line-height: 1.6;
  margin-bottom: 8px;
}

.app-phone-greeting strong { color: var(--f-text-heading); }

.app-phone-prompt {
  font-size: var(--f-xs);
  color: var(--f-text-light);
  margin-bottom: 20px;
}

.app-phone-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--f-bg-soft);
  border: 1px solid var(--f-border);
  border-radius: var(--f-radius-pill);
  padding: 10px 14px;
  margin-bottom: 16px;
}

.app-phone-input span:first-child {
  font-size: var(--f-xs);
  color: var(--f-text-light);
}

.app-phone-send {
  width: 24px; height: 24px;
  background: var(--f-purple);
  color: var(--f-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.app-phone-affirmation {
  font-size: 10px;
  color: var(--f-text-light);
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid var(--f-border);
}


/* ═══════════════════════════════════════════════════════════
   SECTION: FAQ
   ═══════════════════════════════════════════════════════════ */

.faq {
  padding: var(--f-section-pad) 0;
  background: var(--f-bg-page);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 { margin-bottom: 12px; }

.faq-sub {
  font-size: 1rem;
  color: var(--f-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-list {
  list-style: none;
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--f-border);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-font);
}

.faq-q-text {
  font-size: 1rem;
  font-weight: var(--f-weight-demi);
  color: var(--f-text-heading);
  line-height: 1.45;
  flex: 1;
  transition: color 0.25s ease;
}

.faq-item.open .faq-q-text { color: var(--f-purple); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--f-bg-soft);
  border: 1px solid var(--f-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.35s var(--f-ease);
}

.faq-item.open .faq-icon {
  background: var(--f-purple);
  border-color: var(--f-purple);
  transform: rotate(45deg);
}

.faq-icon svg { width: 12px; height: 12px; stroke: var(--f-purple); transition: stroke 0.25s ease; }
.faq-item.open .faq-icon svg { stroke: var(--f-white); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--f-ease);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.93rem;
  color: var(--f-text-muted);
  line-height: 1.78;
}


/* ═══════════════════════════════════════════════════════════
   SECTION: CTA
   ═══════════════════════════════════════════════════════════ */

.cta {
  padding: 40px var(--f-side-pad);
}

.cta-inner {
  max-width: var(--f-container);
  margin: 0 auto;
  background: linear-gradient(160deg, #DDD6FF 0%, #E8E2FF 50%, #D8D0FF 100%);
  border-radius: var(--f-radius-lg);
  padding: 64px 60px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-pill {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--f-radius-pill);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--f-text-heading);
}

.cta-big-text {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  user-select: none;
}

.cta-character {
  width: 220px; height: 220px;
  margin: -8px 0;
}

.cta-character img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(80, 50, 180, 0.2));
}

.cta-bar {
  width: calc(100% + 120px);
  margin: 24px -60px 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-bar-text {
  font-size: 1rem;
  font-weight: var(--f-weight-bold);
  color: var(--f-text-heading);
  text-align: left;
}

.cta-bar-text span {
  font-weight: var(--f-weight-regular);
  color: var(--f-text-muted);
  font-size: var(--f-small);
  display: block;
  margin-top: 2px;
}

.cta-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
  background: #010118;
  color: var(--f-text-on-dark);
  padding: 64px var(--f-side-pad) 32px;
}

/* ── Footer CTA strip ── */
.footer-cta-strip {
  max-width: var(--f-container);
  margin: 0 auto 52px;
  background: linear-gradient(135deg, rgba(116, 68, 242, 0.18) 0%, rgba(116, 68, 242, 0.08) 100%);
  border: 1px solid rgba(116, 68, 242, 0.28);
  border-radius: var(--f-radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta-strip__text {
  font-size: 1rem;
  font-weight: var(--f-weight-demi);
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* ── Footer main grid ── */
.footer-inner {
  max-width: var(--f-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand img { height: 24px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: var(--f-small);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 200px;
}

/* ── Footer link columns ── */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: var(--f-xs);
  font-weight: var(--f-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: var(--f-small);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  transition: color var(--f-duration) ease;
}

.footer-col a:hover { color: var(--f-white); }

/* ── Social icons ── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--f-radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(116, 68, 242, 0.25);
  border-color: rgba(116, 68, 242, 0.45);
  color: rgba(255, 255, 255, 0.9);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: var(--f-container);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--f-xs);
  color: rgba(255, 255, 255, 0.35);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-image { margin-top: 40px; }
  .hero-image img { max-width: 360px; margin: 0 auto; }
  .hero-image video { max-width: 360px; margin: 0 auto; }

  .why-block { grid-template-columns: 1fr; gap: 12px; }
  .why-num { font-size: 3rem; }
  .why-content { grid-template-columns: 1fr; }

  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-card.featured { grid-template-columns: 1fr; text-align: center; }

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

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

  .app-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .app-cta-badges { justify-content: center; }
  .app-phone-frame { margin-top: 32px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta-strip { flex-direction: column; align-items: flex-start; }
}

/* ── Burger button (hidden on desktop) ── */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  grid-column: 3;
  justify-self: end;
  z-index: 200;
  position: relative;
  color: var(--f-navy);
}
.nav-burger__icon {
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-burger__icon--close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}
.nav-burger.is-open .nav-burger__icon--open  { opacity: 0; transform: rotate(45deg) scale(0.7); }
.nav-burger.is-open .nav-burger__icon--close { opacity: 1; transform: rotate(0deg) scale(1); }

/* ── Mobile nav drawer (slides in from right) ── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}
.nav-mobile.is-open {
  pointer-events: auto;
}

/* Dimmed backdrop */
.nav-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 35, 0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.nav-mobile.is-open .nav-mobile__backdrop {
  opacity: 1;
}

/* Sliding drawer panel */
.nav-mobile__drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(300px, 82vw);
  background: #ffffff;
  box-shadow: -12px 0 48px rgba(20, 10, 50, 0.14);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 88px 32px 48px;
  gap: 0;
}
.nav-mobile.is-open .nav-mobile__drawer {
  transform: translateX(0);
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nav-mobile__links a {
  font-size: 17px;
  font-weight: 700;
  color: var(--f-navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(116, 68, 242, 0.08);
  transition: color 0.18s ease, padding-left 0.18s ease;
  display: block;
}
.nav-mobile__links a:first-child { border-top: 1px solid rgba(116, 68, 242, 0.08); }
.nav-mobile__links a:hover {
  color: var(--f-purple);
  padding-left: 6px;
}

.nav-mobile__cta {
  display: block;
  text-align: center;
  background: var(--f-purple);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 32px;
}
.nav-mobile__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Mobile nav triggers at same point content starts stacking */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .nav-cta  { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
}

@media (max-width: 720px) {
  .cta-inner { padding: 48px 32px 0; }
  .cta-bar { width: calc(100% + 64px); margin: 24px -32px 0; padding: 18px 32px; flex-direction: column; align-items: flex-start; }
  .cta-bar-right { width: 100%; }
  .cta-bar-right .btn-primary { width: 100%; justify-content: center; }

  .tone { margin: 0 16px; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-big-text { font-size: 2rem; }
  .cta-character { width: 160px; height: 160px; }
}
/* ===== TRUST ROW ===== */
.fm-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 40px 28px;
  border-top: 1px solid rgba(196, 188, 255, 0.2);
  margin-top: 8px;
}
.fm-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: var(--f-weight-demi);
  color: var(--f-text-muted);
  letter-spacing: 0.01em;
}
.fm-trust-item svg {
  color: rgba(123, 108, 246, 0.5);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .fm-trust-row { gap: 16px; padding: 16px 24px 20px; }
}

/* ===== SOURCE STYLE BLOCK 1 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.fm-why, .fm-why *, .fm-why h2, .fm-why h3, .fm-why p, .fm-why span, .fm-why div, .fm-why a {
  font-family: 'F37 Moon', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.fm-why {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

/* ══════════════════════════════
   TOP BAND — plain white, no background
══════════════════════════════ */
.fm-why-band {
  background: #ffffff;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(196,188,255,0.2);
}

.fm-why-band::before, .fm-why-band::after { display: none; }

.fm-why-band-inner {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.fm-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7444f2;
  background: rgba(116,68,242,0.1);
  border: 1px solid rgba(116,68,242,0.2);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.fm-why-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #7444f2;
  animation: fmDotPulse 2s ease-in-out infinite;
}
@keyframes fmDotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Giant headline */
.fm-why-headline {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #4B5563;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 780px;
  margin-bottom: 32px;
}
.fm-why-headline em {
  font-style: italic;
  color: #7444f2;
  -webkit-text-fill-color: #7444f2;
}

/* Opening statement */
.fm-why-open {
  font-size: 1.1rem;
  color: #6b6080;
  line-height: 1.75;
  max-width: 560px;
}

/* ══════════════════════════════
   THREE STORY BLOCKS — white bg, staggered
══════════════════════════════ */
.fm-why-story {
  background: #ffffff;
  padding: 0 60px 80px;
}

.fm-why-story-inner {
  max-width: 1060px;
  margin: 0 auto;
}

/* Each block: number + content side by side, alternating */
.fm-why-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 48px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(196,188,255,0.2);
  align-items: start;
}
.fm-why-block:last-child { border-bottom: none; }

/* Big number */
.fm-why-block-num {
  font-size: 5rem;
  font-weight: 900;
  color: #ede8ff;
  letter-spacing: -0.06em;
  line-height: 1;
  padding-top: 4px;
  user-select: none;
}

.fm-why-block-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 60px;
  align-items: start;
}

.fm-why-block-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #4B5563;
  letter-spacing: -0.03em;
  line-height: 1.15;
  grid-column: 1 / -1;
}
.fm-why-block-title span { color: #7444f2; }

.fm-why-block-body {
  font-size: 0.97rem;
  color: #6b6080;
  line-height: 1.78;
}
.fm-why-block-body strong { color: #4B5563; font-weight: 700; }

/* Accent card inside block */
.fm-why-block-card {
  background: #f5f3ff;
  border-radius: 20px;
  padding: 24px 22px;
  border: 1px solid rgba(196,188,255,0.4);
}
.fm-why-block-card-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a99df8;
  margin-bottom: 10px;
}
.fm-why-block-card-stat {
  font-size: 2.4rem;
  font-weight: 900;
  color: #7444f2;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.fm-why-block-card p {
  font-size: 0.82rem;
  color: #9a96aa;
  line-height: 1.6;
}

/* Tags in block */
.fm-why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
}
.fm-why-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid rgba(196,188,255,0.5);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: #4a3f7a;
  box-shadow: 0 2px 8px rgba(100,80,200,0.06);
}
.fm-why-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7444f2;
}

/* ── Scroll animation ── */
.fm-why-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.23,1,.32,1);
}
.fm-why-fade.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .fm-why-band { padding: 64px 32px 80px; }
  .fm-why-story { padding: 0 32px 64px; }
  .fm-why-block { grid-template-columns: 1fr; gap: 16px; }
  .fm-why-block-num { font-size: 3.5rem; }
  .fm-why-block-content { grid-template-columns: 1fr; gap: 20px; }
  .fm-why-block-title { grid-column: 1; }
  .fm-why-tags { grid-column: 1; }
}
@media (max-width: 480px) {
  .fm-why-band { padding: 52px 20px 64px; }
  .fm-why-story { padding: 0 20px 52px; }
  .fm-why-headline { font-size: 2.4rem; }
}

/* ===== SOURCE STYLE BLOCK 2 ===== */
.flubb-tone {
    --purple:  #7444F2;
    --purple-soft: rgba(116, 68, 242, 0.18);
    --blue:    #2d7fff;
    --blue-soft: rgba(45, 127, 255, 0.12);
    --text:    rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.55);
    --font: 'Figtree', 'F37 Moon', sans-serif;
    --ease: cubic-bezier(.22,1,.36,1);

    font-family: var(--font);
    background: #010118;
    color: var(--text);
    padding: 80px 24px;
    border-radius: 0;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
  }

  /* purple glow top-right */
  .flubb-tone::before {
    content: '';
    position: absolute;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(116,68,242,.20) 0%, transparent 70%);
    top: -120px; right: -80px;
    pointer-events: none;
  }

  /* blue glow bottom-left */
  .flubb-tone::after {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(116,68,242,.12) 0%, transparent 70%);
    bottom: -80px; left: -60px;
    pointer-events: none;
  }

  .flubb-tone__inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .flubb-tone__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #BEC8F9;
    margin-bottom: 16px;
    text-align: center;
  }

  .flubb-tone__headline {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
  }

  .flubb-tone__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    max-width: 400px;
    margin: 0 auto 52px;
    line-height: 1.6;
  }

  /* Chat bubbles */
  .flubb-chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .flubb-bubble {
    padding: 18px 22px;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    max-width: 82%;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .flubb-bubble.visible {
    opacity: 1;
    transform: none;
  }

  .flubb-bubble--user {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    color: #555;
    font-size: 15px;
    text-align: right;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
  }

  .flubb-bubble--app {
    background: linear-gradient(135deg, var(--purple-soft), var(--blue-soft));
    border: 1px solid rgba(193,85,240,.18);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    color: var(--text);
    box-shadow: 0 2px 16px rgba(193,85,240,.12);
  }

  .flubb-bubble__sender {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 7px;
  }

  /* typing indicator */
  .flubb-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--purple-soft), var(--blue-soft));
    border: 1px solid rgba(193,85,240,.18);
    border-radius: 22px;
    border-bottom-left-radius: 5px;
    align-self: flex-start;
    opacity: 0;
    transition: opacity .3s;
  }
  .flubb-typing.visible { opacity: 1; }
  .flubb-typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--purple);
    animation: typingDot 1.2s ease-in-out infinite;
  }
  .flubb-typing span:nth-child(2) { animation-delay: .2s; }
  .flubb-typing span:nth-child(3) { animation-delay: .4s; }
  @keyframes typingDot {
    0%, 60%, 100% { opacity: .3; transform: translateY(0); }
    30%           { opacity: 1;  transform: translateY(-4px); }
  }

  /* ── Responsive ───────────────────────────────────────── */
  @media (max-width: 640px) {
    .flubb-tone {
      padding: 52px 16px;
      border-radius: 20px;
    }
    .flubb-tone__sub {
      margin-bottom: 36px;
    }
    .flubb-bubble {
      max-width: 92%;
      font-size: 15px;
      padding: 14px 18px;
    }
    .flubb-bubble--user {
      font-size: 14px;
    }
  }

  @media (max-width: 400px) {
    .flubb-tone {
      padding: 40px 12px;
      border-radius: 16px;
    }
    .flubb-bubble {
      max-width: 96%;
    }
  }

/* ===== SOURCE STYLE BLOCK 3 ===== */
.fm-faq-section {
    width: 100%;
    padding: 64px 24px 72px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  .fm-faq-inner {
    max-width: 740px;
    width: 100%;
  }

  .fm-faq-eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b80d0;
    text-align: center;
    margin: 0 0 14px;
  }

  .fm-faq-title {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #18122e;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 10px;
  }

  .fm-faq-subtitle {
    font-size: 0.98rem;
    color: #6b6080;
    text-align: center;
    line-height: 1.7;
    margin: 0 0 48px;
  }

  /* ── Accordion ── */
  .fm-faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .fm-faq-item {
    border-bottom: 1px solid rgba(150, 130, 220, 0.16);
  }

  .fm-faq-item:first-child {
    border-top: 1px solid rgba(150, 130, 220, 0.16);
  }

  .fm-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    border-radius: 0;
  }

  .fm-faq-question:hover,
  .fm-faq-question:focus,
  .fm-faq-question:active {
    background: none !important;
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .fm-faq-question:focus-visible {
    outline: 2px solid #8b80d0;
    outline-offset: 2px;
    border-radius: 4px;
  }

  .fm-faq-q-text {
    font-size: 1rem;
    font-weight: 600;
    color: #18122e;
    line-height: 1.45;
    flex: 1;
    transition: color 0.25s ease;
  }

  .fm-faq-item.open .fm-faq-q-text {
    color: #5830d4;
  }

  .fm-faq-item.open .fm-faq-question {
    background: none;
  }

  /* Icon */
  .fm-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0eeff;
    border: 1px solid rgba(150, 130, 220, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.35s cubic-bezier(.23,1,.32,1);
  }

  .fm-faq-item.open .fm-faq-icon {
    background: #7444f2;
    border-color: #7444f2;
    transform: rotate(45deg);
  }

  .fm-faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: #7444f2;
    transition: stroke 0.25s ease;
  }

  .fm-faq-item.open .fm-faq-icon svg {
    stroke: #ffffff;
  }

  /* Answer panel */
  .fm-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(.23,1,.32,1);
  }

  .fm-faq-item.open .fm-faq-answer {
    max-height: 400px;
  }

  .fm-faq-answer-inner {
    padding: 0 4px 24px;
    font-size: 0.93rem;
    color: #4a4070;
    line-height: 1.78;
  }

  .fm-faq-answer-inner strong {
    color: #18122e;
    font-weight: 600;
  }

  /* Bottom CTA */
  .fm-faq-cta {
    margin-top: 44px;
    text-align: center;
  }

  .fm-faq-cta p {
    font-size: 0.92rem;
    color: #6b6080;
    margin: 0 0 14px;
  }

  .fm-faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #7444f2;
    text-decoration: none;
    padding: 11px 24px;
    background: #f5f3ff;
    border-radius: 100px;
    transition: background 0.25s ease, color 0.25s ease;
  }

  .fm-faq-cta a:hover {
    background: #7444f2;
    color: #ffffff;
  }

  @media (max-width: 600px) {
    .fm-faq-section { padding: 48px 18px 56px; }
    .fm-faq-q-text { font-size: 0.95rem; }
  }

/* ===== SOURCE STYLE BLOCK 4 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.fm-cta {
  width: 100%;
  padding: 40px 40px;
  background: #ffffff;
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, sans-serif;
}

.fm-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #010118;
  border-radius: 32px;
  padding: 64px 60px 0;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Radial glow layers inside the dark card */
.fm-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 110%, rgba(116,68,242,0.38) 0%, transparent 68%),
    radial-gradient(ellipse 40% 40% at 85% 10%,  rgba(116,68,242,0.14) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: glow-breathe 6s ease-in-out infinite;
}

.fm-cta-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}

.fm-cta-pill {
  background: rgba(116,68,242,0.18);
  border: 1px solid rgba(196,188,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BEC8F9;
}

.fm-cta-top-text {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  z-index: 2;
  text-transform: uppercase;
  margin-bottom: -10px;
  user-select: none;
}

.fm-cta-character {
  position: relative;
  z-index: 3;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  cursor: pointer;
}

.fm-cta-character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(116,68,242,0.5));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.fm-cta-character:hover img {
  filter:
    drop-shadow(0 0 28px rgba(116,68,242,0.9))
    drop-shadow(0 0 60px rgba(180,130,255,0.55))
    drop-shadow(0 24px 48px rgba(116,68,242,0.6));
  transform: translateY(-8px) scale(1.04);
}

/* Boost button glow on dark CTA background */
.fm-cta-inner .btn-primary:hover {
  box-shadow:
    0 0 0 3px rgba(116,68,242,0.35),
    0 8px 32px rgba(116,68,242,0.65),
    0 0 60px rgba(116,68,242,0.3);
}

.fm-cta-inner .btn-outline:hover {
  box-shadow:
    0 0 0 3px rgba(196,188,255,0.25),
    0 8px 28px rgba(116,68,242,0.45);
}

.fm-cta-bottom-text {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  z-index: 2;
  text-transform: uppercase;
  margin-top: -10px;
  user-select: none;
}

.fm-cta-bar {
  width: calc(100% + 120px);
  margin: 0 -60px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(196,188,255,0.15);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 5;
  flex-wrap: wrap;
}

.fm-cta-bar-text {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.fm-cta-bar-text span {
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
}

.fm-cta-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* fm-cta-btn removed — replaced with btn-primary */

.fm-cta-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #BEC8F9;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.fm-cta-link:hover { opacity: 1; }

@media (max-width: 720px) {
  .fm-cta { padding: 24px 20px; }
  /* Zero out side padding — children that need it get their own */
  .fm-cta-inner { padding: 48px 0 0; border-radius: 24px; }
  .fm-cta-pills,
  .fm-cta-top-text,
  .fm-cta-bottom-text { padding: 0 32px; }
  .fm-cta-character { width: 200px; height: 200px; }
  /* Bar sits flush — no negative margins needed */
  .fm-cta-bar {
    width: 100%;
    margin: 0;
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .fm-cta-bar-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .fm-cta-bar-right .fm-cta-link { display: none; }
  .fm-cta-bar-right .btn-primary { width: auto; align-self: flex-start; }
}

@media (max-width: 480px) {
  .fm-cta-top-text,
  .fm-cta-bottom-text { font-size: 2.4rem; }
}

/* ── Pre-footer disclaimer bar ──────────────────────────────── */
.site-disclaimer {
  text-align: center;
  padding: 16px var(--f-gutter, 24px);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--f-ink, #1e1630);
  opacity: 0.42;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(116,68,242,0.08);
}



/* ── Pre-footer disclaimer bar ──────────────────────────────── */
/* Already exists, preserved */

/* ══════════════════════════════════════════════════════════════
   MOBILE HOMEPAGE HERO — Option A: mascot-first, viewport-fill
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .hero {
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding: 32px 20px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    text-align: center;
  }
  /* Reorder: mascot above text */
  .hero-image  { order: 1 !important; margin-top: 0 !important; }
  .hero-content { order: 2 !important; }
  .hero-image img {
    max-width: 280px !important;
    margin: 0 auto !important;
  }
  .hero-eyebrow { margin-top: 0 !important; margin-bottom: 12px !important; }
  .hero h1 {
    font-size: clamp(1.95rem, 7vw, 2.4rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 14px !important;
  }
  .hero-sub {
    margin: 0 auto 22px !important;
    font-size: 0.98rem !important;
    max-width: 340px !important;
  }
  /* Force-show hero (override GSAP stall on mobile) */
  .hero-eyebrow,
  .hero h1,
  .hero-sub,
  .hero .btn-primary,
  .hero-image {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 1.85rem !important; }
  .hero-image img { max-width: 240px !important; }
  .hero-image video { max-width: 240px !important; }
}

/* ══════════════════════════════════════════════════════════════
   FLUBB SUBPAGE — collab grid stacks on mobile
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 800px) {
  .flubb-collab-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .flubb-collab-grid .subpage-section__title {
    font-size: clamp(1.7rem, 5vw, 2.2rem) !important;
    line-height: 1.2 !important;
  }
}
