/* ==========================================================================
   G-flowdesk landing — design system
   ========================================================================== */

:root {
  --indigo: #242C66;
  --indigo-600: #2F3984;
  --indigo-800: #171C45;
  --ink: #0A0C1F;
  --carrot: #F36C32;
  --carrot-600: #DC5A20;
  --carrot-50: #FFF1E9;
  --cream: #F8F0E4;
  --bg: #FFFFFF;
  --bg-soft: #F5F6FB;
  --text: #13163A;
  --muted: #5E6387;
  --line: #E4E6F1;
  --green: #17A673;
  --green-50: #E5F6EF;

  --radius: 20px;
  --shadow-sm: 0 1px 2px rgba(19, 22, 58, .05), 0 4px 12px rgba(19, 22, 58, .04);
  --shadow: 0 2px 6px rgba(19, 22, 58, .04), 0 24px 60px -18px rgba(19, 22, 58, .22);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-caps: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1200px;
  --gutter: 24px;
}

/* Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; }
p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
section[id] { scroll-margin-top: 88px; }
::selection { background: var(--carrot); color: #fff; }
:focus-visible { outline: 2px solid var(--carrot); outline-offset: 3px; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--carrot); color: #fff; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(84px, 11vw, 144px); }
.hl { color: var(--carrot); }
.icon { width: 1em; height: 1em; flex: none; }

/* Motion states ------------------------------------------------------------ */
.js [data-reveal], .js [data-stagger] > *, .js [data-split] { opacity: 0; }
.no-motion [data-reveal], .no-motion [data-stagger] > *, .no-motion [data-split] { opacity: 1 !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], .js [data-stagger] > *, .js [data-split] { opacity: 1; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.wi { display: inline-block; }

/* Buttons ------------------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .4s var(--ease), background-color .25s, border-color .25s, color .25s, box-shadow .4s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-xs { height: 30px; padding: 0 12px; font-size: 12.5px; }
.btn-carrot { background: var(--carrot); color: #fff; box-shadow: 0 10px 24px -10px rgba(243, 108, 50, .7), inset 0 1px 0 rgba(255, 255, 255, .22); }
.btn-carrot:hover:not(:disabled) { background: var(--carrot-600); box-shadow: 0 16px 34px -12px rgba(243, 108, 50, .75), inset 0 1px 0 rgba(255, 255, 255, .22); }
.btn-indigo { background: var(--indigo); color: #fff; box-shadow: 0 10px 24px -12px rgba(36, 44, 102, .7); }
.btn-indigo:hover { background: var(--indigo-600); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--indigo); }
.btn-neon { --neon-angle: 0deg; box-shadow: 0 0 0 1px rgba(255, 190, 150, .35) inset, 0 0 14px rgba(243, 108, 50, .55), 0 0 36px rgba(243, 108, 50, .28); animation: neon-glow 3.2s ease-in-out infinite; }
.btn-neon::before {
  content: "";
  position: absolute;
  inset: -4px;
  padding: 1.6px;
  border-radius: inherit;
  background: conic-gradient(from var(--neon-angle), #FFD1B3, #F36C32 22%, #8A7BFF 45%, #5EC8FF 60%, #F36C32 78%, #FFD1B3);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: neon-spin 3.5s linear infinite;
}
.btn-neon:hover:not(:disabled) { box-shadow: 0 0 0 1px rgba(255, 210, 180, .5) inset, 0 0 20px rgba(243, 108, 50, .75), 0 0 54px rgba(138, 123, 255, .35); }
.btn-ghost-light { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .2); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .4); }

.btn-label { position: relative; display: inline-block; overflow: hidden; line-height: 1.25; }
.btn-label > span { display: block; transition: transform .5s var(--ease); }
.btn-label::after { content: attr(data-text); position: absolute; left: 0; top: 100%; white-space: nowrap; transition: transform .5s var(--ease); }
.btn:hover:not(:disabled) .btn-label > span,
.btn:hover:not(:disabled) .btn-label::after { transform: translateY(-100%); }
.btn-arrow { width: 16px; height: 16px; transition: transform .45s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-play { display: grid; place-items: center; width: 26px; height: 26px; margin-left: -8px; border-radius: 50%; background: #fff; color: var(--indigo); transition: transform .45s var(--ease); }
.btn-play svg { width: 11px; height: 11px; margin-left: 2px; }
.btn:hover .btn-play { transform: scale(1.12); }
.btn-carrot .btn-play { color: var(--carrot); }
.btn-outline .btn-play { background: var(--indigo); color: #fff; }

.icon-btn { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--text); cursor: pointer; transition: background-color .25s, border-color .25s, color .25s, transform .4s var(--ease); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover:not(:disabled) { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.icon-btn:active:not(:disabled) { transform: scale(.94); }
.icon-btn:disabled { opacity: .35; cursor: not-allowed; }
.icon-btn--sm { width: 34px; height: 34px; }
.icon-btn--sm svg { width: 15px; height: 15px; }

/* Shared type ------------------------------------------------------------- */
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 500; }
.badge-dark { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .9); }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--carrot); }
.pulse::after { content: ""; position: absolute; inset: -4px; border: 1px solid var(--carrot); border-radius: 50%; animation: pulse-ring 2s var(--ease) infinite; }

.kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; padding: 6px 14px; border-radius: 999px; background: var(--carrot-50); color: var(--carrot-600); font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--carrot); transform: rotate(45deg); }
.kicker-num { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--carrot-600); font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.kicker-num::after { content: ""; width: 48px; height: 1px; background: currentColor; opacity: .4; }
.kicker-num--light { color: var(--carrot); }

.section-head { max-width: 780px; margin-bottom: clamp(48px, 6vw, 76px); }
.section-head.center { margin-inline: auto; text-align: center; }
.h2 { font-size: clamp(36px, 4.8vw, 62px); letter-spacing: -.038em; }
.lead { margin-top: 20px; color: var(--muted); font-size: clamp(17px, 1.4vw, 19px); }
.lead p + p { margin-top: 12px; }

/* Header -------------------------------------------------------------------- */
.site-header { position: fixed; inset: 14px 0 auto; z-index: 60; pointer-events: none; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 24px);
  max-width: 1180px;
  height: 64px;
  margin-inline: auto;
  padding: 0 8px 0 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(13, 15, 40, .5);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  color: #fff;
  pointer-events: auto;
  transition: background-color .4s, box-shadow .4s;
}
.site-header.is-scrolled .header-inner { background: rgba(13, 15, 40, .82); box-shadow: 0 18px 40px -20px rgba(6, 7, 20, .6); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.brand-mark { width: 32px; height: 32px; border-radius: 9px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15); }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: 2px; }
.nav a { display: block; padding: 8px 14px; border-radius: 999px; color: rgba(255, 255, 255, .75); font-size: 14.5px; font-weight: 500; transition: color .2s, background-color .2s; }
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav-toggle { display: none; place-items: center; width: 48px; height: 48px; margin-left: auto; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .08); cursor: pointer; }
.nav-toggle-lines { position: relative; width: 18px; height: 10px; }
.nav-toggle-lines i { position: absolute; left: 0; width: 100%; height: 1.8px; border-radius: 2px; background: #fff; transition: transform .45s var(--ease), top .45s var(--ease); }
.nav-toggle-lines i:first-child { top: 0; }
.nav-toggle-lines i:last-child { top: 8px; }
.menu-open .nav-toggle-lines i:first-child { top: 4px; transform: rotate(45deg); }
.menu-open .nav-toggle-lines i:last-child { top: 4px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  padding: 110px 28px 48px;
  background: radial-gradient(120% 80% at 100% 0%, #242C66 0%, var(--ink) 60%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.mobile-menu ul { display: grid; gap: 4px; }
.mobile-menu a:not(.btn) { display: block; padding: 6px 0; font-family: var(--font-display); font-size: clamp(30px, 8vw, 42px); font-weight: 600; letter-spacing: -.03em; }
.mobile-menu .btn { align-self: flex-start; }
.menu-open .mobile-menu { opacity: 1; visibility: visible; }

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: grid; }
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(136px, 15vw, 188px) 0 clamp(88px, 10vw, 128px);
  background: linear-gradient(105deg, #34409F 0%, #242C66 28%, #171B4A 55%, #0A0B24 78%, #040512 100%);
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 55% 40%, #000 15%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 55% 40%, #000 15%, transparent 75%);
}
.hero-aurora { position: absolute; inset: 0; overflow: hidden; }
.aurora { position: absolute; border-radius: 50%; mix-blend-mode: screen; will-change: transform; }
.aurora-1 { top: -30%; left: -20%; width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px; background: radial-gradient(circle, rgba(96, 112, 255, .5) 0%, rgba(96, 112, 255, 0) 62%); animation: aurora-1 18s ease-in-out infinite alternate; }
.aurora-2 { right: -18%; bottom: -45%; width: 65vw; height: 65vw; max-width: 950px; max-height: 950px; background: radial-gradient(circle, rgba(243, 108, 50, .42) 0%, rgba(243, 108, 50, 0) 60%); animation: aurora-2 22s ease-in-out infinite alternate; }
.aurora-3 { top: 5%; left: 38%; width: 48vw; height: 48vw; max-width: 720px; max-height: 720px; background: radial-gradient(circle, rgba(150, 92, 255, .34) 0%, rgba(150, 92, 255, 0) 62%); animation: aurora-3 26s ease-in-out infinite alternate; }
.aurora-4 { right: 4%; top: -20%; width: 34vw; height: 34vw; max-width: 520px; max-height: 520px; background: radial-gradient(circle, rgba(255, 150, 96, .2) 0%, rgba(255, 150, 96, 0) 62%); animation: aurora-4 20s ease-in-out infinite alternate; }
@media (max-width: 760px) { .aurora { width: 120vw; height: 120vw; } }
.hero-stars i { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff; box-shadow: 0 0 6px rgba(255, 255, 255, .8); animation: twinkle 4.5s ease-in-out infinite; }
.hero-arc { position: absolute; left: 0; bottom: -2px; width: 100%; height: 46%; }

.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero-title { margin: 26px 0 22px; font-size: clamp(44px, 6.1vw, 84px); line-height: 1; letter-spacing: -.045em; }
.hero-sub { max-width: 540px; color: rgba(255, 255, 255, .72); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-stats { display: flex; gap: clamp(28px, 4vw, 48px); max-width: 500px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .12); }
.hero-stats dt { font-family: var(--font-display); font-size: clamp(28px, 2.6vw, 34px); font-weight: 600; letter-spacing: -.03em; line-height: 1.1; }
.hero-stats dd { margin-top: 4px; color: rgba(255, 255, 255, .58); font-size: 14px; }

.hero-visual { position: relative; min-height: 540px; }
.hero-image { width: 100%; border-radius: 24px; }
.console-wrap { position: absolute; inset: 64px 0 auto 0; }
.console {
  max-width: 420px;
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.console-head { display: flex; align-items: center; gap: 10px; padding: 4px 6px 14px; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 14px; font-weight: 600; }
.getme-avatar { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: linear-gradient(135deg, var(--carrot), #FF9D63); color: #fff; box-shadow: 0 8px 18px -8px rgba(243, 108, 50, .9); }
.getme-avatar svg { width: 17px; height: 17px; }
.console-status { display: flex; align-items: center; gap: 6px; margin-left: auto; color: #86E3BD; font-size: 12px; font-weight: 500; }
.console-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #35D39A; box-shadow: 0 0 0 3px rgba(53, 211, 154, .2); }
.console-body { display: flex; flex-direction: column; gap: 12px; min-height: 220px; padding: 20px 4px; }
.msg { max-width: 86%; padding: 12px 15px; border-radius: 18px; font-size: 14.5px; line-height: 1.5; }
.msg-user { align-self: flex-end; border-bottom-right-radius: 6px; background: var(--carrot); color: #fff; }
.msg-ai { align-self: flex-start; border-bottom-left-radius: 6px; background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .92); }
.typing { display: none; gap: 4px; padding: 4px 2px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .7); animation: typing 1.2s infinite ease-in-out; }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
.is-typing .typing { display: inline-flex; }
.is-typing .msg-text { display: none; }
.console-input { display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 8px 16px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; background: rgba(6, 7, 22, .35); color: rgba(255, 255, 255, .45); font-size: 14px; }
.console-send { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--indigo); }
.console-send svg { width: 16px; height: 16px; }

.float-wrap { position: absolute; z-index: 2; }
.float-card { min-width: 200px; padding: 14px 16px; border-radius: 18px; background: #fff; color: var(--text); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .55); font-size: 13px; animation: float 6s ease-in-out infinite; }
.fw-progress { top: 8px; left: -36px; }
.fw-match { right: -8px; bottom: 6px; }
.fw-match .float-card { animation-delay: -2s; }
.fw-cpa { bottom: 42px; left: -12px; }
.fw-cpa .float-card { animation-delay: -4s; }
.fc-row { display: flex; align-items: center; gap: 10px; }
.fc-row strong { font-size: 14px; font-weight: 600; }
.fc-meta { margin-left: auto; color: var(--muted); font-size: 12px; }
.fc-label { margin-bottom: 8px; color: var(--muted); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.fc-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: #fff; }
.fc-icon svg { width: 16px; height: 16px; }
.fc-icon--indigo { background: var(--indigo); }
.fc-icon--carrot { background: var(--carrot); }
.fc-icon--green { background: var(--green); }
.fc-bar { height: 6px; margin: 12px 0 8px; border-radius: 6px; background: var(--bg-soft); overflow: hidden; }
.fc-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--indigo), var(--carrot)); }
.fc-foot { color: var(--muted); font-size: 12px; }
.fw-cpa .fc-foot { margin: 6px 0 0 40px; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { max-width: 560px; width: 100%; margin-inline: auto; }
}
@media (max-width: 1024px) {
  .fw-progress { left: 0; }
  .fw-cpa { left: 0; }
}
@media (max-width: 560px) {
  .hero-visual { min-height: 560px; }
  .console-wrap { top: 76px; }
  .float-card { min-width: 0; }
  .fw-progress { top: 0; left: auto; right: 0; }
  .fw-match { right: 0; bottom: 0; }
  .fw-cpa { bottom: 0; left: 0; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* Trust strip --------------------------------------------------------------- */
.trust { overflow: hidden; border-block: 1px solid rgba(36, 44, 102, .08); background: var(--cream); color: var(--indigo); }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; flex-shrink: 0; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; flex-shrink: 0; align-items: center; gap: 34px; height: 58px; padding-right: 34px; font-family: var(--font-caps); font-size: 23px; letter-spacing: .07em; line-height: 1; white-space: nowrap; }
.marquee-sep { color: var(--carrot); font-size: 13px; }

/* Stats --------------------------------------------------------------------- */
.stats { padding-block: clamp(56px, 7vw, 92px); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat { padding: 6px 28px; border-left: 1px solid var(--line); }
.stat:first-child { padding-left: 0; border-left: 0; }
.stat-value { display: block; color: var(--indigo); font-family: var(--font-display); font-size: clamp(38px, 4.2vw, 56px); font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -.045em; line-height: 1.05; }
.stat-label { display: block; max-width: 230px; margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.45; }
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 0; }
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
}

/* Modules journey ------------------------------------------------------------ */
.modules { background: var(--bg-soft); }
.journey { position: relative; }
.journey-line { position: absolute; top: 0; left: 12.5%; right: 12.5%; height: 2px; border-radius: 2px; background: var(--line); }
.journey-progress { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, var(--indigo), var(--carrot)); transform: scaleX(0); transform-origin: left; }
.no-motion .journey-progress { transform: scaleX(1); }
.journey-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 44px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .3s;
}
.journey-card:hover { transform: translateY(-8px); border-color: rgba(36, 44, 102, .18); box-shadow: var(--shadow); }
.journey-node { position: absolute; top: -53px; left: 50%; width: 20px; height: 20px; margin-left: -10px; border: 2px solid var(--line); border-radius: 50%; background: #fff; transition: border-color .4s, box-shadow .4s; }
.journey-node span { position: absolute; inset: 3px; border-radius: 50%; background: var(--carrot); transform: scale(0); transition: transform .5s var(--ease); }
.journey-card.is-active .journey-node { border-color: var(--carrot); box-shadow: 0 0 0 6px rgba(243, 108, 50, .14); }
.journey-card.is-active .journey-node span { transform: scale(1); }
.journey-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.journey-num { color: var(--muted); font-family: var(--font-mono); font-size: 13px; }
.journey-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; background: var(--indigo); color: #fff; transition: background-color .4s, transform .6s var(--ease); }
.journey-icon svg { width: 24px; height: 24px; }
.journey-card:hover .journey-icon { background: var(--carrot); transform: rotate(-8deg) scale(1.05); }
.journey-card h3 { margin-bottom: 10px; font-size: 26px; letter-spacing: -.03em; }
.journey-card > p { color: var(--muted); font-size: 15px; }
.journey-card .journey-outcome { display: flex; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--indigo); font-weight: 600; }
.journey-card > p:nth-of-type(1) { margin-bottom: 22px; }
.journey-outcome { border-top: 1px dashed var(--line); padding-top: 18px !important; }
.journey-outcome svg { width: 18px; height: 18px; margin-top: 3px; color: var(--carrot); }
@media (max-width: 980px) {
  .journey-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-line, .journey-node { display: none; }
  .journey-card { margin-top: 0; }
}
@media (max-width: 560px) { .journey-list { grid-template-columns: minmax(0, 1fr); } }

/* Agent sections -------------------------------------------------------------- */
.agents-intro { padding-top: clamp(84px, 11vw, 144px); }
.agents-intro .section-head { margin-bottom: 0; }
.agent { padding-block: clamp(60px, 7vw, 100px); }
.agent-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.agent-grid.reverse .agent-copy { order: 2; }
.agent-title { font-size: clamp(32px, 3.7vw, 50px); letter-spacing: -.038em; }
.agent-sub { margin-top: 16px; color: var(--indigo); font-family: var(--font-display); font-size: clamp(18px, 1.6vw, 21px); font-weight: 600; letter-spacing: -.015em; line-height: 1.35; }
.agent-desc { margin-top: 18px; color: var(--muted); }
.agent-desc p + p { margin-top: 12px; }
.checklist { display: grid; gap: 13px; margin-top: 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.5; }
.check { display: grid; flex: none; place-items: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--green-50); color: var(--green); }
.check svg { width: 13px; height: 13px; stroke-width: 2.6; }
.agent-cta { margin-top: 36px; }
@media (max-width: 980px) {
  .agent-grid { grid-template-columns: minmax(0, 1fr); }
  .agent-grid.reverse .agent-copy { order: 0; }
}

.split-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 96px); align-items: end; margin-bottom: clamp(44px, 5vw, 64px); }
.split-head .agent-desc { margin-top: 0; }
@media (max-width: 980px) { .split-head { grid-template-columns: minmax(0, 1fr); } }
.numbered { display: grid; gap: 14px; margin-top: 22px; }
.numbered li { display: flex; gap: 14px; font-size: 15.5px; line-height: 1.55; }
.numbered-n { display: grid; flex: none; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--indigo); color: #fff; font-family: var(--font-mono); font-size: 12px; }

/* Mock primitives ---------------------------------------------------------- */
.mock-frame { position: relative; padding: clamp(14px, 3vw, 36px); border-radius: 32px; background: radial-gradient(120% 120% at 0% 0%, #E9ECFA 0%, #F4F1F8 55%, #FBF3EA 100%); }
.mock-frame--warm { background: radial-gradient(120% 120% at 100% 0%, #FCEBDD 0%, #F6F1F4 50%, #E9ECFA 100%); }
.mock-image { width: 100%; border-radius: 22px; box-shadow: var(--shadow); }
.mock { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); font-size: 13.5px; }
.mock-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.mock-title { font-size: 15px; font-weight: 600; }
.mock-chip { padding: 4px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-soft); color: var(--muted); font-size: 12px; white-space: nowrap; }
.mock-label { margin-bottom: 12px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.mock-foot { margin-top: 14px; color: var(--muted); font-size: 12px; }
.state { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.state svg { width: 12px; height: 12px; stroke-width: 2.6; }
.state-ok { background: var(--green-50); color: var(--green); }
.state-warn { background: var(--carrot-50); color: var(--carrot-600); }

/* Verify ------------------------------------------------------------------- */
.tracker { display: grid; grid-template-columns: repeat(var(--steps, 5), minmax(0, 1fr)); margin-bottom: 16px; padding: 18px 6px 16px; border-radius: 18px; background: var(--bg-soft); }
.tracker-step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); font-size: 11.5px; font-weight: 500; line-height: 1.25; text-align: center; transition: color .4s; }
.tracker-step::before, .tracker-step::after { content: ""; position: absolute; top: 14px; right: calc(50% + 19px); left: calc(-50% + 19px); height: 2px; border-radius: 2px; background: var(--line); }
.tracker-step::after { background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.tracker-step:first-child::before, .tracker-step:first-child::after { display: none; }
.tracker-dot { position: relative; z-index: 1; display: grid; place-items: center; width: 30px; height: 30px; border: 2px solid var(--line); border-radius: 50%; background: #fff; color: #fff; transition: background-color .35s, border-color .35s, transform .5s var(--ease), box-shadow .35s; }
.tracker-dot svg { width: 14px; height: 14px; stroke-width: 2.8; stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .45s .15s var(--ease); }
.tracker-step.is-done { color: var(--text); }
.tracker-step.is-done::after { transform: scaleX(1); }
.tracker-step.is-done .tracker-dot { border-color: var(--green); background: var(--green); animation: pop .5s var(--ease); }
.tracker-step.is-done .tracker-dot svg { stroke-dashoffset: 0; }
.tracker-step.is-current { color: var(--text); }
.tracker-step.is-current .tracker-dot { border-color: var(--carrot); box-shadow: 0 0 0 5px rgba(243, 108, 50, .15); }
.tracker-step.is-current .tracker-dot::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--carrot); animation: pulse-dot 1.6s var(--ease) infinite; }
.no-motion .tracker-step:not(:last-child) { color: var(--text); }
.no-motion .tracker-step:not(:last-child)::after { transform: scaleX(1); }
.no-motion .tracker-step:not(:last-child) .tracker-dot { border-color: var(--green); background: var(--green); }
.no-motion .tracker-step:not(:last-child) .tracker-dot svg { stroke-dashoffset: 0; }

.mock-row { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 14px; }
.mock-panel { padding: 16px; border: 1px solid var(--line); border-radius: 18px; }
.doc-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); }
.doc-list li:first-child { padding-top: 0; border-top: 0; }
.doc-list li > span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.doc-list .state { margin-left: auto; }
.doc-ic { display: grid; flex: none; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--bg-soft); color: var(--indigo); }
.doc-ic svg { width: 16px; height: 16px; }
.score { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.score-label { color: var(--muted); font-size: 12.5px; font-weight: 500; }
.ring { position: relative; width: 100px; height: 100px; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 9; }
.ring-bg { stroke: var(--bg-soft); }
.ring-fg { stroke: var(--indigo); stroke-linecap: round; stroke-dasharray: 264; stroke-dashoffset: calc(264 - 264 * var(--p, 0) / 100); }
.ring-value { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: -.03em; }
.ring--sm { width: 76px; height: 76px; }
.ring--sm .ring-value { font-size: 17px; }

.flag-card { display: flex; align-items: center; gap: 12px; margin-top: 14px; padding: 14px; border: 1px solid rgba(243, 108, 50, .28); border-radius: 18px; background: var(--carrot-50); }
.flag-ic { display: grid; flex: none; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--carrot); color: #fff; }
.flag-ic svg { width: 18px; height: 18px; }
.flag-card strong { display: block; color: var(--carrot-600); font-size: 12.5px; }
.flag-card p { margin-top: 2px; font-size: 13px; line-height: 1.45; }
.flag-card .btn { flex: none; margin-left: auto; }
@media (max-width: 560px) {
  .mock { padding: 16px; }
  .mock-row { grid-template-columns: minmax(0, 1fr); }
  .tracker-label { font-size: 10px; }
  .flag-card { flex-wrap: wrap; }
}

/* Match carousel ------------------------------------------------------------ */
.match { background: var(--bg-soft); }
.carousel { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.carousel-tabs { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.carousel-tab { display: flex; align-items: center; gap: 12px; padding: 22px 26px; border: 0; background: none; color: var(--muted); font-weight: 600; text-align: left; cursor: pointer; transition: color .3s, background-color .3s; }
.carousel-tab + .carousel-tab { border-left: 1px solid var(--line); }
.carousel-tab:hover { background: var(--bg-soft); color: var(--text); }
.carousel-tab[aria-selected="true"] { color: var(--text); }
.carousel-tab-num { display: grid; flex: none; place-items: center; width: 30px; height: 30px; border: 1.5px solid currentColor; border-radius: 50%; font-family: var(--font-mono); font-size: 12px; transition: background-color .35s, border-color .35s, color .35s; }
.carousel-tab[aria-selected="true"] .carousel-tab-num { border-color: var(--indigo); background: var(--indigo); color: #fff; }
.carousel-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; }
.carousel-progress span { display: block; width: 33.333%; height: 100%; background: linear-gradient(90deg, var(--indigo), var(--carrot)); transition: width .7s var(--ease); }
.carousel-panel { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); min-height: 480px; }
.carousel-panel[hidden] { display: none; }
.carousel-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 52px); }
.carousel-step-label { color: var(--carrot-600); font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.carousel-copy h4 { margin: 12px 0 16px; font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -.03em; }
.carousel-copy p:last-child { color: var(--muted); }
.carousel-stage { display: grid; align-items: center; padding: clamp(18px, 3vw, 36px); border-left: 1px solid var(--line); background: radial-gradient(120% 120% at 100% 100%, #FDF0E6 0%, var(--bg-soft) 55%); }
.carousel-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 18px clamp(20px, 3vw, 28px); border-top: 1px solid var(--line); }
.carousel-nav { display: flex; align-items: center; gap: 10px; }
.carousel-count { margin-left: 8px; color: var(--muted); font-family: var(--font-mono); font-size: 13px; }

.q-complete { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; font-weight: 500; }
.q-bar { width: 90px; height: 6px; overflow: hidden; border-radius: 6px; background: var(--bg-soft); }
.q-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--indigo), var(--carrot)); }
.q-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.q-field { padding: 11px 13px; border: 1px solid var(--line); border-radius: 13px; }
.q-field dt { color: var(--muted); font-size: 11.5px; }
.q-field dd { margin-top: 2px; font-weight: 600; }
.q-field.is-pending { border-style: dashed; border-color: rgba(243, 108, 50, .5); }
.shimmer { display: block; width: 70%; height: 12px; margin-top: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--bg-soft) 0%, #FBE3D5 50%, var(--bg-soft) 100%); background-size: 200% 100%; animation: shimmer 1.6s linear infinite; }

.trace { display: grid; gap: 2px; margin-bottom: 16px; font-family: var(--font-mono); font-size: 12px; line-height: 1.45; }
.trace-line { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; }
.trace-status { position: relative; display: grid; flex: none; place-items: center; width: 16px; height: 16px; margin-top: 1px; border-radius: 50%; background: var(--green); color: #fff; }
.trace-status svg { width: 10px; height: 10px; stroke-width: 3; }
.trace-line.is-pending .trace-status { border: 2px solid var(--line); border-top-color: var(--carrot); background: transparent; animation: spin .8s linear infinite; }
.trace-line.is-pending .trace-status svg { opacity: 0; }
.rank { padding: 14px; border: 1px solid var(--line); border-radius: 16px; }
.rank-head, .rank-row { display: grid; grid-template-columns: 84px minmax(0, 1fr) minmax(0, 1fr); gap: 12px; align-items: center; }
.rank-head { margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.rank-row { padding: 7px 0; border-top: 1px solid var(--line); }
.rank-name { font-weight: 600; }
.rank-bar { position: relative; display: flex; align-items: center; gap: 8px; }
.rank-bar i { display: block; height: 8px; border-radius: 8px; background: var(--indigo); }
.rank-bar--fit i { background: var(--carrot); }
.rank-bar b { color: var(--muted); font-size: 11.5px; font-weight: 600; }
.rank-row.is-excluded .rank-name { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(94, 99, 135, .5); }
.rank-row.is-excluded .rank-bar i { background: #C9CCDD; }
.rank-note { display: flex; grid-column: 1 / -1; align-items: flex-start; gap: 6px; color: var(--carrot-600); font-size: 12px; }
.rank-note svg { width: 14px; height: 14px; margin-top: 2px; }

.advisor-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.advisor-head strong { display: block; font-size: 15px; }
.advisor-head div span { color: var(--muted); font-size: 12.5px; }
.advisor-head .state { margin-left: auto; }
.avatar { display: grid; flex: none; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), #4A55B0); color: #fff; font-size: 14px; font-weight: 600; }
.advisor-checks { display: grid; gap: 11px; padding: 18px 0; }
.advisor-checks li { display: flex; align-items: center; gap: 10px; }
.advisor-note { margin-bottom: 18px; padding: 13px 14px; border-left: 3px solid var(--carrot); border-radius: 4px 12px 12px 4px; background: var(--carrot-50); font-size: 13px; }
.advisor-note strong { display: block; margin-bottom: 2px; color: var(--carrot-600); font-size: 12px; }

@media (max-width: 860px) {
  .carousel-panel { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .carousel-stage { border-top: 1px solid var(--line); border-left: 0; }
  .carousel-tab { justify-content: center; padding: 16px 10px; font-size: 14px; }
  .carousel-tab > span:last-child { display: none; }
  .carousel-tab[aria-selected="true"] > span:last-child { display: inline; }
}
@media (max-width: 560px) {
  .q-fields { grid-template-columns: minmax(0, 1fr); }
  .rank-head, .rank-row { grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }
}

/* Portal ---------------------------------------------------------------------- */
.mock-portal { padding-bottom: 22px; }
.agent-portal .agent-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
.agent-portal .mock-frame { margin-bottom: 70px; }
.portal-submitted { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 12px; padding: 12px 150px 12px 14px; border: 1px dashed var(--line); border-radius: 14px; }
.portal-submitted .mock-label { margin: 0; }
.portal-submitted ul { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.portal-submitted li { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; }
.portal-submitted .check { width: 18px; height: 18px; margin: 0; }
.portal-submitted .check svg { width: 11px; height: 11px; }
.portal-top { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 14px; }
.portal-top .mock-label { margin-bottom: 4px; }
.portal-co { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; }
.portal-deadlines { display: flex; flex-wrap: wrap; gap: 6px; }
.portal-deadlines li { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 10px; font-size: 12px; font-weight: 500; }
.portal-deadlines svg { width: 14px; height: 14px; color: var(--carrot); }
.portal-bottleneck { display: flex; align-items: center; gap: 10px; margin: 16px 0; padding: 11px 14px; border-radius: 12px; background: var(--indigo); color: #fff; font-size: 13px; }
.live-dot { position: relative; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--carrot); }
.live-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid var(--carrot); border-radius: 50%; animation: pulse-ring 2s var(--ease) infinite; }
.portal-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.portal-col { padding: 12px; border-radius: 16px; background: var(--bg-soft); }
.portal-col-title { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; font-size: 12px; font-weight: 600; line-height: 1.3; }
.portal-col-title .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--indigo); }
.portal-col--carrot .dot { background: var(--carrot); }
.portal-col--muted .dot { background: #9AA0C3; }
.portal-col-title .count { margin-left: auto; padding: 1px 7px; border-radius: 999px; background: #fff; color: var(--muted); font-size: 11px; }
.portal-col ul { display: grid; gap: 7px; }
.portal-item { padding: 9px 10px; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-size: 12px; line-height: 1.35; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.portal-item:hover { transform: translateY(-2px); }
.portal-phone { position: absolute; right: -30px; bottom: -104px; display: flex; flex-direction: column; align-items: center; gap: 8px; width: 132px; padding: 24px 12px 16px; border: 5px solid var(--ink); border-radius: 28px; background: #fff; box-shadow: 0 30px 60px -20px rgba(19, 22, 58, .45); text-align: center; }
.phone-notch { position: absolute; top: 6px; left: 50%; width: 40px; height: 5px; margin-left: -20px; border-radius: 5px; background: var(--ink); }
.phone-label { color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.phone-text { font-size: 11.5px; font-weight: 600; line-height: 1.3; }
.phone-pill { display: flex; align-items: center; gap: 4px; padding: 4px 8px; border-radius: 999px; background: var(--green-50); color: var(--green); font-size: 10px; font-weight: 600; }
.phone-pill svg { width: 11px; height: 11px; }
@media (max-width: 1100px) {
  .portal-phone { display: none; }
  .agent-portal .mock-frame { margin-bottom: 0; }
  .portal-submitted { padding-right: 14px; }
}
@media (max-width: 980px) { .agent-portal .agent-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 560px) { .portal-cols { grid-template-columns: minmax(0, 1fr); } }

/* GetMe ----------------------------------------------------------------------- */
.getme { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff; }
.getme-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 50% at 85% 10%, rgba(47, 57, 132, .8) 0%, transparent 70%), radial-gradient(40% 40% at 0% 100%, rgba(243, 108, 50, .16) 0%, transparent 70%); }
.getme .agent-sub { margin-top: 0; color: #fff; }
.getme .agent-desc { margin-top: 14px; color: rgba(255, 255, 255, .62); }
.getme-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.getme-tabs { display: grid; gap: 8px; }
.getme-tab { display: block; width: 100%; padding: 22px 24px; border: 1px solid transparent; border-radius: 22px; background: transparent; color: rgba(255, 255, 255, .55); text-align: left; cursor: pointer; transition: background-color .4s, border-color .4s, color .4s; }
.getme-tab:hover { color: #fff; background: rgba(255, 255, 255, .03); }
.getme-tab[aria-selected="true"] { border-color: rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .06); color: #fff; }
.getme-tab-label { display: block; color: var(--carrot); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }
.getme-tab-title { display: block; margin-top: 6px; font-family: var(--font-display); font-size: clamp(18px, 1.6vw, 21px); font-weight: 600; letter-spacing: -.02em; line-height: 1.3; }
.getme-tab-text { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease); }
.getme-tab-text > span { overflow: hidden; }
.getme-tab-p { display: block; padding-top: 10px; color: rgba(255, 255, 255, .62); font-size: 15px; line-height: 1.55; }
.getme-tab[aria-selected="true"] .getme-tab-text { grid-template-rows: 1fr; }
.getme-tab-bar { display: none; }

.getme-stage { position: relative; min-height: 520px; padding: clamp(14px, 2.4vw, 24px); border: 1px solid rgba(255, 255, 255, .1); border-radius: 30px; background: linear-gradient(180deg, #1A1F4F 0%, #11143A 100%); box-shadow: 0 60px 120px -50px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .06); }
.getme-panel { height: 100%; }
.getme-panel[hidden] { display: none; }
.getme-cta { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 64px); }

.chat-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 14px; height: 100%; }
.chat { display: flex; flex-direction: column; gap: 12px; padding: 16px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 22px; background: rgba(255, 255, 255, .04); }
.chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 14px; font-weight: 600; }
.chat-time { margin-left: auto; color: #86E3BD; font-size: 12px; font-weight: 500; }
.bubble { max-width: 92%; padding: 12px 14px; border-radius: 18px; font-size: 14px; line-height: 1.5; }
.bubble-client { align-self: flex-end; border-bottom-right-radius: 6px; background: #fff; color: var(--text); }
.bubble-ai { align-self: flex-start; border-bottom-left-radius: 6px; background: rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .92); }
.sources { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.source { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border: 1px solid rgba(243, 108, 50, .3); border-radius: 7px; background: rgba(243, 108, 50, .12); color: #FFB48F; font-size: 11.5px; }
.source svg { width: 12px; height: 12px; }
.assessment { align-self: start; padding: 18px; border-radius: 22px; background: #fff; color: var(--text); }
.assessment-big { margin-bottom: 14px; font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.assessment-big strong { color: var(--green); }
.assessment-list { display: grid; }
.assessment-list li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 13px; }
.assessment-list li span:last-child { font-weight: 600; text-align: right; }
.assessment-list .muted { color: var(--muted); }
.assessment-list .good { color: var(--green); }
.assessment-foot { display: flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--muted); font-size: 12px; }
.assessment-foot svg { width: 14px; height: 14px; color: var(--indigo); }

.trace-card { overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 22px; background: #080A1F; }
.trace-card-head { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .55); font-family: var(--font-mono); font-size: 12px; }
.trace-dots { display: flex; gap: 6px; }
.trace-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .15); }
.trace-dots i:first-child { background: var(--carrot); }
.trace-live { display: flex; align-items: center; gap: 6px; margin-left: auto; color: #86E3BD; }
.trace-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #35D39A; animation: blink 1.4s infinite; }
.trace--dark { gap: 0; margin: 0; padding: 12px 18px; font-size: 13px; }
.trace--dark .trace-line { padding: 11px 0; border-bottom: 1px dashed rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .86); }
.trace--dark .trace-line:last-child { border-bottom: 0; }
.trace--dark .trace-line.is-pending .trace-status { border-color: rgba(255, 255, 255, .15); border-top-color: var(--carrot); }
.trace-result { display: flex; align-items: center; gap: 12px; margin: 0 18px 18px; padding: 14px; border: 1px solid rgba(243, 108, 50, .3); border-radius: 16px; background: rgba(243, 108, 50, .1); }
.trace-result strong { display: block; font-size: 14px; }
.trace-result div span { color: rgba(255, 255, 255, .62); font-size: 13px; }
.trace-result-ic { display: grid; flex: none; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--carrot); }
.trace-result-ic svg { width: 18px; height: 18px; }

.handoff { position: relative; height: 100%; min-height: 470px; }
.chat--single { height: 100%; min-height: 470px; }
.handoff-meter { display: block; height: 7px; margin: 14px 0 6px; overflow: hidden; border-radius: 7px; background: var(--carrot); }
.handoff-meter span { display: block; height: 100%; border-radius: inherit; background: #35D39A; }
.handoff-legend { display: flex; justify-content: space-between; gap: 8px; color: rgba(255, 255, 255, .55); font-size: 11.5px; }
.handoff-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.booked { display: flex; gap: 12px; padding: 16px; border: 1px solid rgba(53, 211, 154, .35); border-radius: 18px; background: rgba(53, 211, 154, .1); }
.booked strong { display: block; font-size: 14.5px; }
.booked div > span { display: block; margin-top: 2px; color: rgba(255, 255, 255, .8); font-size: 13.5px; }
.booked .booked-note { color: rgba(255, 255, 255, .55); font-size: 12.5px; }
.booked-ic { display: grid; flex: none; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #35D39A; color: var(--ink); }
.booked-ic svg { width: 18px; height: 18px; stroke-width: 2.6; }

.booking { position: absolute; inset: -1px; z-index: 5; display: grid; place-items: center; padding: 16px; border-radius: 22px; background: rgba(8, 10, 31, .66); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.booking[hidden] { display: none; }
.booking-card { width: min(430px, 100%); padding: 22px; border-radius: 24px; background: #fff; color: var(--text); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7); }
.booking-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.booking-head strong { display: block; font-size: 16px; }
.booking-head div span { color: var(--muted); font-size: 13px; }
.booking-head .icon-btn { margin-left: auto; }
.booking-label { margin: 16px 0 8px; color: var(--muted); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.chip-group { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-group--dates { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.chip { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--text); font-size: 13px; font-weight: 500; cursor: pointer; transition: border-color .2s, background-color .2s, color .2s, transform .3s var(--ease); }
.chip svg { width: 15px; height: 15px; }
.chip:hover { border-color: var(--indigo); }
.chip[aria-pressed="true"] { border-color: var(--indigo); background: var(--indigo); color: #fff; }
.chip-date { flex-direction: column; gap: 0; padding: 8px 4px; line-height: 1.2; }
.chip-date span { color: inherit; font-size: 11px; opacity: .7; }
.chip-date strong { font-size: 17px; }
.booking-confirm { width: 100%; margin-top: 20px; }

@media (max-width: 980px) {
  .getme-grid { grid-template-columns: minmax(0, 1fr); }
  .getme-stage { min-height: 0; }
}
@media (max-width: 640px) {
  .chat-split { grid-template-columns: minmax(0, 1fr); }
  .handoff, .chat--single { min-height: 440px; }
}

/* Firm ---------------------------------------------------------------------- */
.firm-title { max-width: 13ch; font-size: clamp(46px, 7.6vw, 112px); letter-spacing: -.05em; line-height: .96; }
.firm-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(40px, 6vw, 100px); align-items: start; margin-top: clamp(48px, 6vw, 84px); }
.firm-lead { color: var(--text); font-family: var(--font-display); font-size: clamp(23px, 2.5vw, 33px); font-weight: 500; letter-spacing: -.022em; line-height: 1.32; }
.firm-lead .w { overflow: visible; }
.firm-side { color: var(--muted); }
.firm-side p + p { margin-top: 12px; }
.badge-list { display: grid; gap: 10px; margin: 28px 0 32px; }
.badge-list li { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 16px; color: var(--text); font-size: 15px; font-weight: 600; transition: border-color .3s, transform .5s var(--ease); }
.badge-list li:hover { border-color: rgba(36, 44, 102, .3); transform: translateX(4px); }
.badge-list-ic { display: grid; flex: none; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--bg-soft); color: var(--indigo); }
.badge-list-ic svg { width: 19px; height: 19px; }
@media (max-width: 980px) { .firm-grid { grid-template-columns: minmax(0, 1fr); } }

/* Beta ---------------------------------------------------------------------- */
.beta { padding-top: 0; }
.beta-card { position: relative; isolation: isolate; overflow: hidden; padding: clamp(56px, 8vw, 112px) clamp(22px, 6vw, 96px); border-radius: clamp(26px, 3vw, 40px); background: linear-gradient(115deg, #2C357A 0%, #242C66 32%, #12163C 70%, #07081A 100%); color: #fff; text-align: center; }
.beta-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; animation: spin 50s linear infinite; }
.orbit i { position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; margin-left: -4px; border-radius: 50%; background: var(--carrot); box-shadow: 0 0 16px 2px rgba(243, 108, 50, .7); }
.orbit-1 { width: 560px; height: 560px; margin: -280px 0 0 -280px; }
.orbit-2 { width: 900px; height: 900px; margin: -450px 0 0 -450px; animation-duration: 80s; animation-direction: reverse; }
.orbit-2 i { background: #fff; box-shadow: 0 0 14px 2px rgba(255, 255, 255, .6); }
.orbit-3 { width: 1280px; height: 1280px; margin: -640px 0 0 -640px; animation-duration: 120s; }
.beta-card h2 { max-width: 15ch; margin: 26px auto 24px; font-size: clamp(36px, 5.4vw, 70px); letter-spacing: -.045em; line-height: 1.02; }
.beta-body { display: grid; gap: 12px; max-width: 640px; margin-inline: auto; color: rgba(255, 255, 255, .7); font-size: clamp(16px, 1.3vw, 18px); }
.beta-form { display: flex; gap: 8px; max-width: 540px; margin: 42px auto 0; padding: 6px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: rgba(255, 255, 255, .07); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: border-color .3s, box-shadow .3s; }
.beta-form:focus-within { border-color: rgba(243, 108, 50, .7); box-shadow: 0 0 0 6px rgba(243, 108, 50, .14); }
.beta-form input[type="email"] { flex: 1; min-width: 0; padding: 0 20px; border: 0; outline: 0; background: transparent; color: #fff; font: inherit; font-size: 16px; }
.beta-form input::placeholder { color: rgba(255, 255, 255, .5); }
.beta-form.is-loading .btn { pointer-events: none; opacity: .7; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.beta-note { min-height: 1.5em; margin-top: 16px; color: rgba(255, 255, 255, .5); font-size: 13.5px; transition: color .3s; }
.beta-note.is-success { color: #86E3BD; }
.beta-note.is-error { color: #FFB48F; }
@media (max-width: 560px) {
  .beta-form { flex-direction: column; border-radius: 24px; }
  .beta-form input[type="email"] { height: 52px; text-align: center; }
}

/* FAQ ----------------------------------------------------------------------- */
.faq { padding-top: 0; }
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-head .btn { margin-top: 28px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; font-family: var(--font-display); font-size: clamp(18px, 1.7vw, 22px); font-weight: 600; letter-spacing: -.02em; line-height: 1.3; list-style: none; cursor: pointer; transition: color .25s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--indigo-600); }
.faq-icon { position: relative; flex: none; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; transition: background-color .35s, border-color .35s, color .35s; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.6px; margin: -.8px 0 0 -6px; border-radius: 2px; background: currentColor; transition: transform .45s var(--ease); }
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open]:not(.is-closing) .faq-icon { border-color: var(--indigo); background: var(--indigo); color: #fff; }
.faq-item[open]:not(.is-closing) .faq-icon::after { transform: rotate(0deg); }
.faq-a { overflow: hidden; }
.faq-a-inner { display: grid; gap: 12px; padding: 0 60px 28px 0; color: var(--muted); }
@media (max-width: 860px) {
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .faq-head { position: static; }
  .faq-a-inner { padding-right: 0; }
}

/* Footer ---------------------------------------------------------------------- */
.site-footer { overflow: hidden; padding-top: clamp(64px, 8vw, 104px); background: var(--ink); color: rgba(255, 255, 255, .66); }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, .7fr)); gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand .brand { color: #fff; }
.footer-tagline { max-width: 430px; margin-top: 18px; font-size: 15px; }
.footer-title { margin-bottom: 16px; color: rgba(255, 255, 255, .42); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 24px; color: rgba(255, 255, 255, .42); font-size: 13px; }
.footer-word { margin: 0 0 -.14em; background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0) 85%); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: var(--font-display); font-size: clamp(64px, 16.5vw, 250px); font-weight: 600; letter-spacing: -.06em; line-height: .9; text-align: center; white-space: nowrap; user-select: none; }
@media (max-width: 760px) { .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }

/* Video modal ----------------------------------------------------------------- */
.video-modal { width: min(1040px, 92vw); max-width: none; padding: 0; overflow: visible; border: 0; background: transparent; }
.video-modal::backdrop { background: rgba(6, 7, 20, .82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.video-modal[open] { animation: modal-in .5s var(--ease); }
.video-frame { display: grid; place-items: center; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 22px; background: #000; color: #fff; }
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; }
.video-placeholder { display: grid; justify-items: center; gap: 10px; padding: 24px; text-align: center; }
.video-placeholder svg { width: 40px; height: 40px; color: var(--carrot); }
.video-placeholder p { color: rgba(255, 255, 255, .7); }
.video-close { position: absolute; top: -54px; right: 0; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; cursor: pointer; transition: background-color .2s, transform .4s var(--ease); }
.video-close:hover { background: rgba(255, 255, 255, .22); transform: rotate(90deg); }
.video-close svg { width: 18px; height: 18px; }

/* Keyframes ------------------------------------------------------------------ */
@property --neon-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes neon-spin { to { --neon-angle: 360deg; } }
@keyframes neon-glow { 0%, 100% { box-shadow: 0 0 0 1px rgba(255, 190, 150, .35) inset, 0 0 14px rgba(243, 108, 50, .55), 0 0 36px rgba(243, 108, 50, .28); } 50% { box-shadow: 0 0 0 1px rgba(255, 190, 150, .45) inset, 0 0 18px rgba(243, 108, 50, .7), 0 0 44px rgba(138, 123, 255, .32); } }
@keyframes aurora-1 { to { transform: translate(16%, 14%) scale(1.15); } }
@keyframes aurora-2 { to { transform: translate(-18%, -16%) scale(1.2); } }
@keyframes aurora-3 { to { transform: translate(-28%, 20%) scale(.85); } }
@keyframes aurora-4 { to { transform: translate(-40%, 30%) scale(1.3); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes twinkle { 0%, 100% { opacity: .15; } 50% { opacity: .9; } }
@keyframes pulse-ring { 0% { opacity: .9; transform: scale(.6); } 100% { opacity: 0; transform: scale(1.8); } }
@keyframes pulse-dot { 0%, 100% { transform: scale(.8); } 50% { transform: scale(1); } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 50% { opacity: .3; } }
@keyframes pop { 0% { transform: scale(.8); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(.97); } }
