/* foundation/reset.css */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

img,
video {
  max-width: 100%;
}

/* flow/access.css */
:root {
  --flow-bg: #0b0b0f;
  --flow-panel: #17171c;
  --flow-panel-strong: #1c1c22;
  --flow-line-soft: rgba(255, 255, 255, 0.07);
  --flow-line: rgba(255, 255, 255, 0.12);
  --flow-copy: #ffffff;
  --flow-copy-muted: #a1a1aa;
  --flow-copy-faint: #6b6b75;
  --flow-accent: #6c4dff;
  --flow-accent-hover: #5a3dff;
  --flow-accent-soft: #8b75ff;
  --flow-success: #34d399;
  --flow-danger: #ff5a5f;
  --flow-radius: 14px;
}

html, body {
  background: var(--flow-bg);
  color: var(--flow-copy);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

.flow-backdrop-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 38%, #000 25%, transparent 90%);
  mask-image: radial-gradient(ellipse 92% 82% at 50% 38%, #000 25%, transparent 90%);
}

.flow-backdrop-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(139,117,255,0.35) 1px, transparent 1.5px);
  background-size: 64px 64px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(ellipse 55% 42% at 50% 26%, #000 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 55% 42% at 50% 26%, #000 0%, transparent 80%);
  opacity: .6;
}

.flow-aura {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  border-radius: 50%;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(108,77,255,0.22) 0%, rgba(108,77,255,0) 70%);
}

.flow-cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,77,255,0.2) 0%, rgba(108,77,255,0) 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity .4s ease;
  mix-blend-mode: screen;
  opacity: 0;
}

.flow-quiz-header {
  position: relative;
  z-index: 3;
  padding: 22px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.flow-identity {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
}

.flow-identity-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--flow-accent) 0%, #4f37cf 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -4px rgba(108,77,255,0.5);
}

.flow-identity-mark svg {
  width: 13px;
  height: 13px;
}

.flow-completion-rail {
  width: 100%;
  max-width: 760px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transition: opacity .4s ease;
}

.flow-completion-rail.state-visible {
  opacity: 1;
}

.flow-completion-meter {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--flow-accent), var(--flow-accent-soft));
  box-shadow: 0 0 12px var(--flow-accent-soft);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.16,1,.3,1);
}

.flow-quiz-stage {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 64px;
}

.flow-step {
  display: none;
  width: 100%;
  max-width: 640px;
}

.flow-step.state-active {
  display: block;
  animation: flow-step-enter .5s cubic-bezier(.16,1,.3,1);
}

@keyframes flow-step-enter {

from {
  opacity: 0;
  transform: translateY(20px);
}

to {
  opacity: 1;
  transform: none;
}
}

.flow-back-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--flow-copy-faint);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
  transition: color .2s ease;
}

.flow-back-control:hover {
  color: var(--flow-copy-muted);
}

.flow-back-control svg {
  width: 15px;
  height: 15px;
}

.flow-step-label {
  font-size: 13px;
  color: var(--flow-accent-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.flow-question-title {
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-question-copy {
  color: var(--flow-copy-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.flow-choice-grid {
  display: grid;
  gap: 12px;
}

.flow-choice-grid.flow-choice-grid-two {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 520px) {

.flow-choice-grid.flow-choice-grid-two {
  grid-template-columns: 1fr;
}
}

.flow-choice-tile {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  background: var(--flow-panel);
  border: 1.5px solid var(--flow-line-soft);
  border-radius: var(--flow-radius);
  padding: 17px 18px;
  width: 100%;
  transition: border-color .2s ease, background .2s ease, transform .12s ease;
  position: relative;
}

.flow-choice-tile:hover {
  border-color: rgba(108,77,255,0.4);
  background: var(--flow-panel-strong);
  transform: translateY(-1px);
}

.flow-choice-tile.state-selected {
  border-color: var(--flow-accent);
  background: linear-gradient(180deg, rgba(108,77,255,0.1), var(--flow-panel-strong));
}

.flow-choice-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(108,77,255,0.13);
  border: 1px solid rgba(108,77,255,0.25);
  display: grid;
  place-items: center;
  transition: background .2s ease;
}

.flow-choice-icon svg {
  width: 18px;
  height: 18px;
  color: var(--flow-accent-soft);
}

.flow-choice-tile.state-selected .flow-choice-icon {
  background: rgba(108,77,255,0.28);
}

.flow-choice-label {
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}

.flow-choice-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--flow-line);
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}

.flow-choice-mark svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity .2s ease;
}

.flow-choice-tile.state-selected .flow-choice-mark {
  background: var(--flow-accent);
  border-color: var(--flow-accent);
}

.flow-choice-tile.state-selected .flow-choice-mark svg {
  opacity: 1;
}

.flow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s ease, box-shadow .25s ease, opacity .2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.flow-button-primary {
  background: var(--flow-accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 28px -8px rgba(108,77,255,0.6);
}

.flow-button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140px circle at var(--flow-cursor-x,50%) var(--flow-cursor-y,50%), rgba(255,255,255,0.32), transparent 70%);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
}

.flow-button-primary:hover::before {
  opacity: 1;
}

.flow-button-primary:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 16px 38px -10px rgba(108,77,255,0.8);
}

.flow-button-primary:disabled {
  opacity: .4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.flow-button-primary:disabled::before {
  opacity: 0;
}

.flow-button svg {
  width: 17px;
  height: 17px;
}

.flow-button-block {
  width: 100%;
}

.flow-next-row {
  margin-top: 28px;
}

.flow-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(108,77,255,0.12);
  border: 1px solid rgba(108,77,255,0.3);
  border-radius: 999px;
  font-size: 13px;
  color: #cfc6ff;
  font-weight: 500;
  margin-bottom: 22px;
}

.flow-hero-badge svg {
  width: 14px;
  height: 14px;
}

.flow-hero-step h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 35%, #c9c2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-hero-step p.flow-lede {
  color: var(--flow-copy-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 28px;
}

.flow-hero-step {
  text-align: center;
}

.flow-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  color: var(--flow-copy-muted);
  font-size: 14px;
}

.flow-avatars {
  display: inline-flex;
}

.flow-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-left: -9px;
  border: 2px solid var(--flow-bg);
  background-size: cover;
  background-position: center;
}

.flow-avatars span:first-child {
  margin-left: 0;
}

.flow-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 30px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 90, 95, 0.08);
  border: 1px solid rgba(255, 90, 95, 0.25);
  color: #ff9a9d;
  font-size: 13.5px;
  font-weight: 500;
}

.flow-scarcity .flow-ping {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flow-danger);
  box-shadow: 0 0 10px var(--flow-danger);
  animation: flow-signal-pulse 1.4s ease-in-out infinite;
}

@keyframes flow-signal-pulse {

0%,100% {
  opacity: 1;
}

50% {
  opacity: .35;
}
}

.flow-fineprint {
  color: var(--flow-copy-faint);
  font-size: 13px;
  margin-top: 16px;
}

.flow-analysis-panel {
  text-align: center;
}

.flow-spinner {
  width: 58px;
  height: 58px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 3px solid rgba(108,77,255,0.2);
  border-top-color: var(--flow-accent);
  animation: flow-spinner-turn .8s linear infinite;
}

@keyframes flow-spinner-turn {

to {
  transform: rotate(360deg);
}
}

.flow-analysis-panel h2 {
  font-size: clamp(24px, 3.4vw, 30px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 30px;
}

.flow-analysis-list {
  display: grid;
  gap: 14px;
  max-width: 340px;
  margin: 0 auto;
  text-align: left;
}

.flow-analysis-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--flow-copy-faint);
  opacity: .4;
  transition: opacity .4s ease, color .4s ease;
}

.flow-analysis-check.state-complete {
  opacity: 1;
  color: var(--flow-copy);
}

.flow-analysis-check .flow-tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--flow-line);
  display: grid;
  place-items: center;
  transition: background .3s ease, border-color .3s ease;
}

.flow-analysis-check .flow-tick svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease;
}

.flow-analysis-check.state-complete .flow-tick {
  background: var(--flow-success);
  border-color: var(--flow-success);
}

.flow-analysis-check.state-complete .flow-tick svg {
  opacity: 1;
}

.flow-approved-panel {
  text-align: center;
}

.flow-approved-badge {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  position: relative;
}

.flow-approved-badge .flow-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(52,211,153,0.4);
  animation: flow-approval-ring 2.2s ease-out infinite;
}

@keyframes flow-approval-ring {

0% {
  transform: scale(.9);
  opacity: .8;
}

100% {
  transform: scale(1.7);
  opacity: 0;
}
}

.flow-approved-seal {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -10px rgba(52,211,153,0.6);
}

.flow-approved-seal svg {
  width: 38px;
  height: 38px;
  color: #062b20;
}

.flow-approved-panel h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 14px;
}

.flow-approved-panel .flow-match-copy {
  color: var(--flow-copy-muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 22px;
}

.flow-approved-panel .flow-match-copy b {
  color: var(--flow-copy);
  font-weight: 600;
}

.flow-reserve-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 26px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(108,77,255,0.1);
  border: 1px solid rgba(108,77,255,0.3);
  font-size: 14px;
  color: #cfc6ff;
  font-weight: 500;
}

.flow-reserve-note svg {
  width: 16px;
  height: 16px;
  color: var(--flow-accent-soft);
}

.flow-reserve-note .flow-reserve-time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #fff;
}

.flow-sunk-copy {
  color: var(--flow-copy-faint);
  font-size: 14px;
  max-width: 440px;
  margin: 18px auto 0;
}

.flow-billing-panel {
  max-width: 720px;
  text-align: center;
}

.flow-billing-panel h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 40px;
}

.flow-billing-panel .flow-agreement-copy {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--flow-copy-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.flow-billing-panel .flow-agreement-copy b {
  color: var(--flow-copy);
  font-weight: 700;
}

.flow-consent-panel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: var(--flow-panel);
  border: 1.5px solid var(--flow-line-soft);
  border-radius: var(--flow-radius);
  padding: 22px 24px;
  max-width: 520px;
  margin: 0 auto 32px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.flow-consent-panel:hover {
  border-color: var(--flow-line);
}

.flow-consent-panel.state-accepted {
  border-color: rgba(108,77,255,0.5);
  background: var(--flow-panel-strong);
}

.flow-consent-panel .flow-consent-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--flow-line);
  background: rgba(255,255,255,0.02);
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}

.flow-consent-panel .flow-consent-mark svg {
  width: 15px;
  height: 15px;
  color: #fff;
  opacity: 0;
  transition: opacity .15s ease;
}

.flow-consent-panel.state-accepted .flow-consent-mark {
  background: var(--flow-accent);
  border-color: var(--flow-accent);
}

.flow-consent-panel.state-accepted .flow-consent-mark svg {
  opacity: 1;
}

.flow-consent-panel p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--flow-copy-muted);
}

.flow-consent-panel a {
  color: var(--flow-accent-soft);
  text-decoration: underline;
}

.flow-billing-panel .flow-accept-control {
  padding: 17px 0;
  width: 100%;
  max-width: 520px;
  font-size: 16px;
  background: #0e0e13;
  border: 1px solid var(--flow-line);
  color: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .2s ease, transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.flow-billing-panel .flow-accept-control:enabled:hover {
  background: #16161d;
  transform: translateY(-1px);
}

.flow-billing-panel .flow-accept-control:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.flow-billing-panel .flow-accept-control.state-enabled {
  background: var(--flow-accent);
  border-color: var(--flow-accent);
  box-shadow: 0 14px 36px -10px rgba(108,77,255,0.7);
}

.flow-billing-panel .flow-accept-control.state-enabled:hover {
  background: var(--flow-accent-hover);
}

.flow-billing-panel .flow-accept-control svg {
  width: 18px;
  height: 18px;
}

/* flow/appearance.css */
:root {
  --flow-bg: #07090d;
  --flow-panel: #10141b;
  --flow-panel-strong: #151b24;
  --flow-line-soft: rgba(222, 231, 246, 0.075);
  --flow-line: rgba(222, 231, 246, 0.14);
  --flow-copy: #f5f7fb;
  --flow-copy-muted: #929baa;
  --flow-copy-faint: #626b79;
  --flow-accent: #2d8cff;
  --flow-accent-soft: #57c7ff;
  --flow-success: #28d7a1;
  --flow-danger: #ff728f;
  --flow-radius: 11px;
  --flow-radius-lg: 16px;
  --flow-radius-xl: 20px;
}

html {
  color-scheme: dark;
}

html,
body {
  background: radial-gradient(circle at 50% -8%, rgba(36, 140, 255, 0.11), transparent 32rem),
    var(--flow-bg);
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "ss01" 1, "cv02" 1;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid #28d0f7;
  outline-offset: 3px;
}

.flow-backdrop-grid {
  opacity: 0.16;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 74%);
  mask-image: linear-gradient(to bottom, #000, transparent 74%);
}

.flow-backdrop-grid::after {
  display: none;
}

.flow-aura {
  filter: blur(110px);
}

.flow-aura-top,
.flow-aura:not(.flow-aura-lower-left) {
  background: radial-gradient(ellipse, rgba(36, 140, 255, 0.14), transparent 68%);
}

.flow-aura-lower-left {
  background: radial-gradient(circle, rgba(103, 89, 255, 0.09), transparent 65%);
}

.flow-cursor-glow {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(40, 208, 247, 0.09), transparent 62%);
  mix-blend-mode: normal;
}

.flow-button {
  min-height: 44px;
  border-radius: 9px;
  font-weight: 590;
  letter-spacing: -0.01em;
}

.flow-button-primary {
  background: linear-gradient(115deg, #248cff, #6759ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 28px -14px rgba(47, 132, 255, 0.7);
}

.flow-button-primary:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 38px -16px rgba(47, 132, 255, 0.82);
}

.flow-eyebrow,
.flow-hero-badge,
.flow-reserve-note {
  color: #72d7ff;
  border-color: rgba(40, 208, 247, 0.18);
  background: rgba(40, 208, 247, 0.06);
}

.flow-quiz-header {
  background: rgba(7, 9, 13, 0.78);
  border-bottom-color: var(--flow-line-soft);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.flow-identity {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.flow-identity-mark {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 9px;
  background: #f7f8fb;
  box-shadow: 0 8px 20px -10px rgba(36, 140, 255, 0.9);
}

.flow-identity-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-completion-rail {
  background: rgba(255, 255, 255, 0.06);
}

.flow-completion-meter {
  background: linear-gradient(90deg, #28d0f7, #248cff, #6759ff);
}

.flow-step,
.flow-plan-card,
.flow-faq-item {
  border-color: var(--flow-line-soft);
  background: var(--flow-panel);
  box-shadow: none;
}

.flow-choice-tile {
  border-width: 1px;
  border-color: var(--flow-line-soft);
  border-radius: 11px;
  background: #0e1218;
}

.flow-choice-tile:hover {
  border-color: rgba(40, 208, 247, 0.24);
  background: #131922;
}

.flow-choice-tile.state-selected {
  border-color: #2d8cff;
  background: linear-gradient(135deg, rgba(36, 140, 255, 0.12), #121720);
}

.flow-choice-icon,
.flow-step-icon {
  color: #68d1ff;
  border-color: rgba(40, 208, 247, 0.18);
  background: rgba(40, 208, 247, 0.07);
}

.flow-choice-icon svg,
.flow-step-icon svg,
.flow-pill svg {
  color: #68d1ff;
}

.flow-choice-tile.state-selected .flow-choice-icon,
.flow-choice-tile.state-selected .flow-choice-mark {
  background: #2d8cff;
}

.flow-choice-tile.state-selected .flow-choice-mark {
  border-color: #2d8cff;
}

.flow-question-title,
.flow-hero-step h1,
.flow-hero h1,
.flow-content h1,
.flow-faq-head h2,
.flow-closing-card h2 {
  color: #f5f7fb;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.flow-hero-step h1,
.flow-hero h1,
.flow-content h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.03;
}

.flow-scarcity {
  color: #8fa8bd;
  border-color: var(--flow-line-soft);
  background: #0e1218;
}

.flow-scarcity .flow-ping {
  background: #28d0f7;
  box-shadow: 0 0 10px rgba(40, 208, 247, 0.75);
}

.flow-analysis-check.state-complete .flow-tick,
.flow-approved-seal {
  background: linear-gradient(135deg, #28d0f7, #2d8cff);
  border-color: #2d8cff;
}

.flow-approved-seal svg {
  color: #06121b;
}

.flow-approved-badge .flow-ring,
.flow-success-emblem .flow-ring {
  border-color: rgba(40, 208, 247, 0.34);
}

.flow-success-disc {
  background: linear-gradient(135deg, #28d0f7, #2d8cff 60%, #6759ff);
  box-shadow: 0 16px 44px -15px rgba(36, 140, 255, 0.8);
}

.flow-consent-panel.state-accepted {
  border-color: rgba(45, 140, 255, 0.6);
  background: #121923;
}

.flow-consent-panel.state-accepted .flow-consent-mark {
  background: #2d8cff;
  border-color: #2d8cff;
}

.flow-plan-grid {
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid var(--flow-line-soft);
  border-radius: 16px;
  background: var(--flow-line-soft);
}

.flow-plan-card,
.flow-plan-card.flow-plan-card-featured,
.flow-plan-card.flow-plan-card-featured:hover {
  border: 0;
  border-radius: 0;
  background: #0e1218;
  box-shadow: none;
}

.flow-plan-card:hover {
  transform: none;
  background: #111720;
}

.flow-plan-card.flow-plan-card-featured,
.flow-plan-card.flow-plan-card-featured:hover {
  background: linear-gradient(180deg, rgba(36, 140, 255, 0.12), #10151d 45%);
  box-shadow: inset 0 2px 0 #2d8cff;
}

.flow-plan-badge,
.flow-plan-badge.flow-plan-badge-value {
  top: 18px;
  left: auto;
  right: 18px;
  transform: none;
  color: #7bdcff;
  border-color: rgba(40, 208, 247, 0.18);
  border-radius: 5px;
  background: rgba(40, 208, 247, 0.07);
  box-shadow: none;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-checkmark {
  color: #28d0f7;
  background: rgba(40, 208, 247, 0.08);
}

.flow-checkmark svg {
  color: #28d0f7;
}

.flow-faq-item,
.flow-faq-item.state-open {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.flow-faq-list {
  border-top: 1px solid var(--flow-line-soft);
}

.flow-answer-icon,
.flow-faq-item.state-open .flow-answer-icon {
  border-color: var(--flow-line);
  background: transparent;
}

.flow-faq-item.state-open .flow-answer-icon {
  color: #28d0f7;
}

.flow-closing-card {
  border: 1px solid rgba(74, 156, 255, 0.22);
  background: radial-gradient(circle at 50% 130%, rgba(103, 89, 255, 0.3), transparent 42%),
    linear-gradient(135deg, #0e1724, #0b1018);
}

.flow-shell {
  padding: 80px 24px;
}

.flow-steps-grid {
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid var(--flow-line-soft);
  border-radius: 16px;
  background: var(--flow-line-soft);
}

.flow-steps-grid .flow-step {
  border: 0;
  border-radius: 0;
  background: #0e1218;
}

.flow-pill {
  border-radius: 8px;
  border-color: var(--flow-line-soft);
  background: #0d1117;
}

.flow-important-note {
  color: #a5aebb;
  border-color: rgba(255, 114, 143, 0.18);
  background: rgba(255, 114, 143, 0.045);
}

.flow-important-note strong {
  color: #ff8da4;
}

.flow-pricing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
  color: #f3f6fa;
  font-size: 15px;
  font-weight: 600;
}

.flow-pricing-brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #f7f8fb;
  object-fit: cover;
  box-shadow: 0 8px 20px -10px rgba(36, 140, 255, 0.9);
}

body:has(> .flow-pricing-brand) {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 24px;
  color: #98a2b1;
  font-family: "Geist", system-ui, sans-serif;
  line-height: 1.75;
}

body:has(> .flow-pricing-brand) h1 {
  margin: 24px 0 38px;
  color: #f5f7fb;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

body:has(> .flow-pricing-brand) h2 {
  margin: 36px 0 10px;
  color: #e4e9f0;
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

body:has(> .flow-pricing-brand) p {
  margin-bottom: 18px;
}

@media (max-width: 760px) {

.flow-plan-grid,
  .flow-steps-grid {
  grid-template-columns: 1fr;
}

.flow-plan-card,
  .flow-steps-grid .flow-step {
  border-bottom: 1px solid var(--flow-line-soft);
}

.flow-choice-grid.flow-choice-grid-two {
  grid-template-columns: 1fr;
}
}

@media (prefers-reduced-motion: reduce) {

*,
  *::before,
  *::after {
  scroll-behavior: auto !important;
}
}

/* Closing action keeps its own surface in every interaction state. */
.flow-button.flow-button-outline.flow-button-large.flow-closing-action {
  background: #0b0b0f;
  border-color: rgba(255, 255, 255, 0.18);
}
