@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

ul, ol { list-style: none; }

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

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: transparent;
}

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  /* Colors */
  --col-bg:          #f8f7ff;
  --col-surface:     #ffffff;
  --col-surface-2:   #f0eefe;
  --col-border:      #e2deff;
  --col-ink:         #1a1530;
  --col-ink-2:       #4b4468;
  --col-ink-3:       #7b72a8;
  --col-primary:     #5b3fff;
  --col-primary-h:   #4830d4;
  --col-accent:      #9b5cff;
  --col-accent-2:    #c77dff;
  --col-cyan:        #00d4c8;
  --col-cyan-h:      #00b8ad;
  --col-white:       #ffffff;
  --col-glow-v:      rgba(91,63,255,.18);
  --col-glow-c:      rgba(0,212,200,.14);

  /* Typography */
  --ff-display:  'Syne', sans-serif;
  --ff-body:     'Inter', sans-serif;

  --fs-xs:   clamp(.7rem,  1.2vw, .8rem);
  --fs-sm:   clamp(.8rem,  1.4vw, .9rem);
  --fs-base: clamp(.9rem,  1.6vw, 1rem);
  --fs-md:   clamp(1rem,   1.8vw, 1.125rem);
  --fs-lg:   clamp(1.1rem, 2vw,   1.375rem);
  --fs-xl:   clamp(1.3rem, 2.5vw, 1.75rem);
  --fs-2xl:  clamp(1.6rem, 3.5vw, 2.25rem);
  --fs-3xl:  clamp(2rem,   5vw,   3.25rem);
  --fs-4xl:  clamp(2.4rem, 6vw,   4rem);

  /* Spacing scale (multiples of 4px) */
  --sp-1:  .25rem;
  --sp-2:  .5rem;
  --sp-3:  .75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-card:   0 2px 16px rgba(26,21,48,.07), 0 1px 4px rgba(26,21,48,.05);
  --sh-card-h: 0 8px 40px rgba(91,63,255,.16), 0 2px 8px rgba(26,21,48,.08);
  --sh-btn:    0 4px 20px rgba(91,63,255,.35);
  --sh-nav:    0 1px 0 var(--col-border), 0 4px 24px rgba(26,21,48,.06);

  /* Transitions */
  --tr-fast:   150ms ease;
  --tr-base:   250ms ease;
  --tr-slow:   400ms cubic-bezier(.22,1,.36,1);
}

/* ─────────────────────────────────────────────
   BASE
───────────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--col-ink);
  background-color: var(--col-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   CONTAINER
───────────────────────────────────────────── */
.cf-wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.15;
  color: var(--col-ink);
  font-weight: 700;
}

h1 { font-size: var(--fs-4xl); letter-spacing: -.03em; font-weight: 800; }
h2 { font-size: var(--fs-3xl); letter-spacing: -.025em; }
h3 { font-size: var(--fs-xl);  letter-spacing: -.015em; }
h4 { font-size: var(--fs-lg);  letter-spacing: -.01em; }
h5 { font-size: var(--fs-md);  letter-spacing: 0; }

p {
  color: var(--col-ink-2);
  font-size: var(--fs-base);
  line-height: 1.8;
  max-width: 68ch;
}

p.lead {
  font-size: var(--fs-md);
  color: var(--col-ink-2);
  max-width: 58ch;
  line-height: 1.75;
}

strong { font-weight: 600; color: var(--col-ink); }

/* ─────────────────────────────────────────────
   LINKS
───────────────────────────────────────────── */
a.cf-link {
  color: var(--col-primary);
  font-weight: 500;
  position: relative;
  transition: color var(--tr-base);
}
a.cf-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--col-primary);
  transition: width var(--tr-base);
}
a.cf-link:hover { color: var(--col-primary-h); }
a.cf-link:hover::after { width: 100%; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: .01em;
  padding: .7em 1.6em;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--tr-base), box-shadow var(--tr-base), background var(--tr-base), color var(--tr-base);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--col-primary) 0%, var(--col-accent) 100%);
  color: var(--col-white);
  box-shadow: var(--sh-btn);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,63,255,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--col-primary);
  border-color: var(--col-primary);
}
.btn--outline:hover {
  background: var(--col-primary);
  color: var(--col-white);
  box-shadow: var(--sh-btn);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--col-surface);
  color: var(--col-ink);
  border-color: var(--col-border);
  box-shadow: var(--sh-card);
}
.btn--ghost:hover {
  border-color: var(--col-primary);
  color: var(--col-primary);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: var(--fs-base);
  padding: .85em 2em;
}

.btn--sm {
  font-size: var(--fs-xs);
  padding: .5em 1.2em;
}

/* ─────────────────────────────────────────────
   EYEBROW / LABEL
───────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--col-primary);
  background: rgba(91,63,255,.09);
  padding: .35em 1em;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-5);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SECTION SPACING
───────────────────────────────────────────── */
.cf-section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
}

.cf-section--sm {
  padding-block: clamp(var(--sp-10), 5vw, var(--sp-20));
}

.cf-section--alt {
  background: var(--col-surface);
}

.cf-section--tinted {
  background: var(--col-surface-2);
}

/* Section heading group */
.cf-heading-group {
  margin-bottom: clamp(var(--sp-10), 4vw, var(--sp-16));
}

.cf-heading-group--center {
  text-align: center;
}

.cf-heading-group--center p {
  margin-inline: auto;
}

/* ─────────────────────────────────────────────
   NAV / HEADER
───────────────────────────────────────────── */
.cf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248,247,255,.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--sh-nav);
  transition: background var(--tr-base);
}

.cf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--sp-8);
}

/* Logo */
.cf-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.cf-logo__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.cf-logo__text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--col-ink);
  line-height: 1;
}

.cf-logo__text span {
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.cf-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

.cf-nav__item {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--col-ink-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-md);
  transition: color var(--tr-base), background var(--tr-base);
  white-space: nowrap;
}

.cf-nav__item:hover,
.cf-nav__item--active {
  color: var(--col-primary);
  background: rgba(91,63,255,.07);
}

/* Header actions */
.cf-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.cf-header__signin {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--col-ink-2);
  transition: color var(--tr-base);
  white-space: nowrap;
}
.cf-header__signin:hover { color: var(--col-primary); }

/* Mobile hamburger */
.cf-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: background var(--tr-fast);
}
.cf-hamburger:hover { background: var(--col-surface-2); }
.cf-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--col-ink);
  border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base);
}

/* Mobile nav drawer */
.cf-mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--sp-2);
  padding-block: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--col-border);
}

.cf-mobile-nav__item {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--col-ink-2);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  transition: color var(--tr-base), background var(--tr-base);
}
.cf-mobile-nav__item:hover { color: var(--col-primary); background: rgba(91,63,255,.07); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.cf-hero {
  padding-block: clamp(var(--sp-20), 10vw, var(--sp-32)) clamp(var(--sp-16), 8vw, var(--sp-24));
  background: var(--col-bg);
  position: relative;
  overflow: hidden;
}

/* Decorative background glows */
.cf-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: clamp(500px, 80vw, 900px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(ellipse at center, var(--col-glow-v) 0%, transparent 70%);
  pointer-events: none;
}
.cf-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--col-glow-c) 0%, transparent 65%);
  pointer-events: none;
}

.cf-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 4vw, var(--sp-16));
  align-items: center;
}

.cf-hero__copy { }

.cf-hero__title {
  margin-bottom: var(--sp-5);
}

.cf-hero__title .highlight {
  background: linear-gradient(135deg, var(--col-primary) 0%, var(--col-accent) 60%, var(--col-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf-hero__subtitle {
  font-size: var(--fs-md);
  color: var(--col-ink-2);
  margin-bottom: var(--sp-8);
  max-width: 50ch;
}

.cf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-10);
}

.cf-hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cf-hero__avatars {
  display: flex;
}
.cf-hero__avatars span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--col-surface);
  font-size: 11px;
  font-weight: 700;
  color: var(--col-white);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
}
.cf-hero__avatars span:first-child { margin-left: 0; }
.cf-hero__avatars span:nth-child(2) { background: linear-gradient(135deg, var(--col-accent), var(--col-accent-2)); }
.cf-hero__avatars span:nth-child(3) { background: linear-gradient(135deg, var(--col-cyan), var(--col-primary)); }
.cf-hero__avatars span:nth-child(4) { background: linear-gradient(135deg, var(--col-accent-2), var(--col-cyan)); }

.cf-hero__proof-text {
  font-size: var(--fs-xs);
  color: var(--col-ink-3);
  line-height: 1.4;
}
.cf-hero__proof-text strong {
  display: block;
  color: var(--col-ink);
  font-weight: 600;
}

.cf-hero__visual {
  position: relative;
}

.cf-hero__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(91,63,255,.2), 0 4px 16px rgba(26,21,48,.1);
  background: linear-gradient(135deg, var(--col-surface-2), var(--col-border));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* Floating badge on hero */
.cf-hero__badge {
  position: absolute;
  bottom: -16px; left: -20px;
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--sh-card-h);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 180px;
}

.cf-hero__badge-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-hero__badge-icon svg {
  width: 18px; height: 18px;
}

.cf-hero__badge-info { }
.cf-hero__badge-label {
  font-size: 11px;
  color: var(--col-ink-3);
  font-weight: 500;
  line-height: 1.2;
}
.cf-hero__badge-value {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--col-ink);
  line-height: 1.2;
}

/* ─────────────────────────────────────────────
   CARDS
───────────────────────────────────────────── */
.cf-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--sp-4), 2vw, var(--sp-8));
}

.cf-card {
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  padding: clamp(var(--sp-6), 3vw, var(--sp-10));
  box-shadow: var(--sh-card);
  transition: transform var(--tr-slow), box-shadow var(--tr-slow), border-color var(--tr-base);
  position: relative;
  overflow: hidden;
}

.cf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--col-primary), var(--col-accent), var(--col-cyan));
  opacity: 0;
  transition: opacity var(--tr-base);
}

.cf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
  border-color: rgba(91,63,255,.25);
}

.cf-card:hover::before { opacity: 1; }

.cf-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  background: linear-gradient(135deg, rgba(91,63,255,.12), rgba(155,92,255,.08));
  flex-shrink: 0;
}

.cf-card__icon svg {
  width: 24px; height: 24px;
  color: var(--col-primary);
}

.cf-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  color: var(--col-ink);
}

.cf-card__body {
  font-size: var(--fs-sm);
  color: var(--col-ink-2);
  line-height: 1.75;
  max-width: 100%;
}

/* ─────────────────────────────────────────────
   STATS ROW
───────────────────────────────────────────── */
.cf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(var(--sp-4), 2vw, var(--sp-8));
}

.cf-stat {
  text-align: center;
  padding: clamp(var(--sp-6), 3vw, var(--sp-10)) var(--sp-4);
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}

.cf-stat__number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}

.cf-stat__label {
  font-size: var(--fs-sm);
  color: var(--col-ink-3);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cf-cta-band {
  background: linear-gradient(135deg, var(--col-primary) 0%, var(--col-accent) 60%, var(--col-cyan) 130%);
  position: relative;
  overflow: hidden;
}

.cf-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cf-cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cf-cta-band__title {
  color: var(--col-white);
  margin-bottom: var(--sp-4);
}

.cf-cta-band__sub {
  color: rgba(255,255,255,.82);
  font-size: var(--fs-md);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.cf-cta-band__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn--white {
  background: var(--col-white);
  color: var(--col-primary);
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn--white-outline {
  background: transparent;
  color: var(--col-white);
  border-color: rgba(255,255,255,.6);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--col-white);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.cf-faq {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 760px;
  margin-inline: auto;
}

.cf-faq__item {
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: border-color var(--tr-base);
}

.cf-faq__item:hover { border-color: rgba(91,63,255,.3); }

.cf-faq__question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--col-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: color var(--tr-base);
  background: transparent;
}

.cf-faq__question:hover { color: var(--col-primary); }

.cf-faq__chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--col-ink-3);
  transition: transform var(--tr-base), color var(--tr-base);
}

.cf-faq__item[open] .cf-faq__chevron,
.cf-faq__question:hover .cf-faq__chevron {
  transform: rotate(180deg);
  color: var(--col-primary);
}

.cf-faq__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--col-ink-2);
  line-height: 1.8;
  border-top: 1px solid var(--col-border);
  padding-top: var(--sp-4);
}

/* ─────────────────────────────────────────────
   CONTENT SECTION
───────────────────────────────────────────── */
.cf-content-section p + p { margin-top: var(--sp-4); }

/* ─────────────────────────────────────────────
   FORMS
───────────────────────────────────────────── */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 480px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.cf-field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--col-ink);
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  padding: .75em 1em;
  background: var(--col-surface);
  border: 1.5px solid var(--col-border);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--col-ink);
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}

.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  border-color: var(--col-primary);
  box-shadow: 0 0 0 3px rgba(91,63,255,.12);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--col-ink-3);
}

.cf-field textarea { min-height: 120px; resize: vertical; }

/* Inline form (email subscribe) */
.cf-form--inline {
  flex-direction: row;
  align-items: center;
}

.cf-form--inline input {
  flex: 1;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  border-right: none;
}

.cf-form--inline .btn {
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.cf-footer {
  background: var(--col-ink);
  color: rgba(255,255,255,.75);
  padding-block: clamp(var(--sp-16), 6vw, var(--sp-24)) var(--sp-8);
}

.cf-footer__top {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: clamp(var(--sp-8), 4vw, var(--sp-16));
  padding-bottom: clamp(var(--sp-10), 4vw, var(--sp-16));
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.cf-footer__brand { }

.cf-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  text-decoration: none;
}

.cf-footer__logo-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--col-white);
  line-height: 1;
}

.cf-footer__logo-text span {
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf-footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 28ch;
  margin-bottom: var(--sp-6);
}

.cf-footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.cf-footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr-base), transform var(--tr-base);
}
.cf-footer__social-link:hover {
  background: rgba(91,63,255,.5);
  transform: translateY(-2px);
}
.cf-footer__social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.8); }

.cf-footer__col { }

.cf-footer__col-title {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--col-white);
  margin-bottom: var(--sp-5);
}

.cf-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.cf-footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--tr-base), transform var(--tr-base);
  display: inline-block;
}
.cf-footer__links a:hover {
  color: var(--col-white);
  transform: translateX(3px);
}

.cf-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  flex-wrap: wrap;
}

.cf-footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.4);
}

.cf-footer__legal {
  display: flex;
  gap: var(--sp-5);
}
.cf-footer__legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.4);
  transition: color var(--tr-base);
}
.cf-footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ─────────────────────────────────────────────
   LOGO BAR / TRUST
───────────────────────────────────────────── */
.cf-logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--sp-6), 4vw, var(--sp-12));
  flex-wrap: wrap;
}

.cf-logo-bar__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--col-ink-3);
  white-space: nowrap;
}

.cf-logo-bar__item {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--col-ink-3);
  opacity: .55;
  transition: opacity var(--tr-base);
  white-space: nowrap;
}
.cf-logo-bar__item:hover { opacity: .9; }

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .cf-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cf-hero__subtitle { margin-inline: auto; }
  .cf-hero__actions { justify-content: center; }
  .cf-hero__social-proof { justify-content: center; }
  .cf-hero__visual { order: -1; max-width: 520px; margin-inline: auto; }

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

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

  .cf-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
  .cf-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .cf-nav { display: none; }
  .cf-header__signin { display: none; }
  .cf-hamburger { display: flex; }

  .cf-mobile-nav { display: flex; }

  .cf-card-grid {
    grid-template-columns: 1fr;
  }

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

  .cf-footer__top {
    grid-template-columns: 1fr;
  }
  .cf-footer__brand { grid-column: auto; }

  .cf-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .cf-cta-band__actions { flex-direction: column; align-items: center; }

  .cf-hero__badge { display: none; }
}

@media (max-width: 420px) {
  .cf-stats { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   UTILITY HELPERS
───────────────────────────────────────────── */
.u-text-center { text-align: center; }
.u-mb-0 { margin-bottom: 0 !important; }
.u-mt-auto { margin-top: auto; }

/* Gradient text utility */
.u-gradient-text {
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.cf-divider {
  border: none;
  border-top: 1px solid var(--col-border);
  margin-block: var(--sp-4);
}

/* Tag/badge pill */
.cf-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: .25em .8em;
  border-radius: var(--r-pill);
  background: rgba(91,63,255,.09);
  color: var(--col-primary);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
img,svg,video{max-width:100%;height:auto}
body{margin:0}
