/* ─── Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lato:wght@400;700&display=swap');

@font-face {
  font-family: 'DM Serif Display';
  src: url('fonts/DMSerifDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Serif Display';
  src: url('fonts/DMSerifDisplay-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ─── Tokens ────────────────────────────────────────────── */
:root {
  --lgl-navy:        #16162A;
  --lgl-deep-purple: #1B0E33;
  --lgl-text:        #2D2D3D;
  --lgl-text-muted:  #6E6E7E;

  --lgl-magenta: #E91E8C;
  --lgl-pink:    #F0507A;
  --lgl-coral:   #F47853;
  --lgl-orange:  #F7931E;
  --lgl-gold:    #FABC18;
  --lgl-butter:  #FFCF5A;

  --lgl-cream:  #FAFAFE;
  --lgl-white:  #FFFFFF;

  --font-sans:    'Lato', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
}

/* ─── Reset / base ──────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--lgl-cream); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--lgl-text);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }

input:focus-visible, button:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--lgl-magenta);
  outline-offset: 2px;
}

/* ─── Typography helpers ────────────────────────────────── */
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lgl-text-muted);
}

.shimmer-text {
  font-style: italic;
  background: linear-gradient(135deg, #c609b1 0%, #f73b96 33%, #fc793d 66%, var(--lgl-orange) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: lgl-shimmer 10s ease-in-out infinite;
}

/* ─── Layout ────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.app { position: relative; overflow: clip; }
@supports not (overflow: clip) {
  .app { overflow: hidden; }
}

/* ─── Aurora background ─────────────────────────────────── */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(var(--px, 0), var(--py, 0));
  transition: transform 1.2s ease-out;
  pointer-events: none;
}
.aurora-dark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.aurora-dark .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(27, 14, 51, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-header__logo img { height: 28px; display: block; }
.site-header__logo-fallback {
  display: none;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--lgl-deep-purple);
}

.cta-pill {
  padding: 10px 20px;
  border-radius: 9999px;
  background: var(--lgl-deep-purple);
  color: var(--lgl-butter);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.cta-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(27, 14, 51, 0.2);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
}
.hero__inner {
  padding: 88px 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: start;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(27, 14, 51, 0.12);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--lgl-magenta);
}
.hero__chip .eyebrow { color: var(--lgl-deep-purple); }

.hero__headline {
  margin: 28px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--lgl-deep-purple);
}

.hero__lede {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--lgl-text);
  max-width: 580px;
}
.hero__lede strong { color: var(--lgl-deep-purple); font-weight: 700; }

.pill-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-row .pill {
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(27, 14, 51, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  color: var(--lgl-deep-purple);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trusted-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trusted-row .eyebrow {
  color: var(--lgl-text-muted);
  font-size: 11px;
}
.trusted-row__logos {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.7;
}
.trusted-row__logos span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--lgl-deep-purple);
  letter-spacing: -0.01em;
}

/* ─── Lead capture (light) ──────────────────────────────── */
.lead-card {
  position: relative;
}
.lead-card__glow {
  position: absolute;
  inset: -24px;
  background: linear-gradient(135deg, rgba(255, 207, 90, 0.35), rgba(244, 120, 83, 0.25));
  filter: blur(30px);
  border-radius: 48px;
  z-index: -1;
}
.lead-card__card {
  position: relative;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(27, 14, 51, 0.08);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(27, 14, 51, 0.18);
}
.lead-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.lead-card__head .eyebrow { color: var(--lgl-deep-purple); }
.nab-mark {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--lgl-magenta);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.lead-card__title {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--lgl-deep-purple);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lead-card__sub {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--lgl-text-muted);
  line-height: 1.5;
}

.form {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.field { display: grid; gap: 6px; }
.field__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lgl-deep-purple);
}
.field__label .req { color: var(--lgl-magenta); margin-left: 4px; }
.field__label .opt { color: #9898a8; margin-left: 4px; font-weight: 400; }
.field input {
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(27, 14, 51, 0.15);
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--lgl-deep-purple);
  background: var(--lgl-cream);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field input:focus {
  border-color: var(--lgl-magenta);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.12);
}

.submit-btn {
  margin-top: 6px;
  height: 54px;
  border-radius: 9999px;
  border: none;
  background: var(--lgl-deep-purple);
  color: var(--lgl-butter);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 24px rgba(27, 14, 51, 0.25);
}
.submit-btn:hover:not(:disabled) { transform: translateY(-1px); }
.submit-btn:disabled {
  background: #cbcbd4;
  color: white;
  cursor: not-allowed;
  box-shadow: none;
}

.trust-line {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--lgl-text-muted);
  text-align: center;
  line-height: 1.5;
}

.thank-you { text-align: center; padding: 28px 8px; }
.thank-you__mark {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--lgl-magenta), var(--lgl-orange));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
}
.thank-you h3 {
  margin: 20px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--lgl-deep-purple);
  line-height: 1.1;
}
.thank-you p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--lgl-text-muted);
  line-height: 1.55;
}
.thank-you__cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 9999px;
  background: var(--lgl-butter);
  color: var(--lgl-deep-purple);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}

/* ─── Value props ───────────────────────────────────────── */
.values {
  position: relative;
  z-index: 1;
  background: var(--lgl-cream);
  border-top: 1px solid rgba(27, 14, 51, 0.08);
  border-bottom: 1px solid rgba(27, 14, 51, 0.08);
}
.values__inner { padding: 96px 24px; max-width: 1280px; margin: 0 auto; }
.values__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 56px;
}
.values__head .eyebrow { color: var(--lgl-magenta); }
.values__head h2 {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--lgl-deep-purple);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 820px;
}
.values__head h2 em {
  font-style: italic;
  color: var(--lgl-magenta);
}
.values__head p {
  max-width: 320px;
  color: var(--lgl-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4px;
  border: 1px solid rgba(27, 14, 51, 0.1);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(27, 14, 51, 0.08);
}
.value-card {
  background: white;
  padding: 40px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.value-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.value-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: var(--lgl-magenta);
  line-height: 1;
  letter-spacing: -0.03em;
}
.value-card__tag { color: var(--lgl-text-muted); font-size: 10px; }
.value-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--lgl-deep-purple);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 8px 0 0;
}
.value-card p {
  color: var(--lgl-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ─── Social proof ──────────────────────────────────────── */
.social {
  position: relative;
  z-index: 1;
  background: var(--lgl-deep-purple);
  color: white;
  overflow: hidden;
}
.social__inner {
  position: relative;
  z-index: 1;
  padding: 96px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.social__head { text-align: center; margin-bottom: 56px; }
.social__head .eyebrow { color: var(--lgl-butter); }
.social__head h2 {
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.social__head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--lgl-butter), var(--lgl-orange), var(--lgl-magenta));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social__marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
}
.social__marquee-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 48px;
}
.social__marquee-inner .client {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.social__marquee-inner .dot {
  color: var(--lgl-butter);
  font-size: 20px;
  opacity: 0.6;
}

.stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.stat {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 20px;
}
.stat__k {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--lgl-butter);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__v {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Bottom CTA ────────────────────────────────────────── */
.contact {
  position: relative;
  z-index: 1;
  background: white;
}
.contact__inner { padding: 96px 24px; max-width: 1280px; margin: 0 auto; }
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 64px;
  align-items: center;
}
.contact__copy .eyebrow { color: var(--lgl-magenta); }
.contact__copy h2 {
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--lgl-deep-purple);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.contact__copy h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #c609b1, #fc793d, var(--lgl-orange));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact__copy p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--lgl-text);
  max-width: 520px;
}
.checklist {
  margin-top: 36px;
  display: grid;
  gap: 16px;
  max-width: 480px;
}
.check {
  display: flex;
  gap: 14px;
}
.check__mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lgl-butter), var(--lgl-orange));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--lgl-deep-purple);
}
.check__desc {
  margin-top: 3px;
  font-size: 14px;
  color: var(--lgl-text-muted);
  line-height: 1.55;
}

/* Dark form variant */
.dark-card {
  position: relative;
}
.dark-card__glow {
  position: absolute;
  inset: -24px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(247, 147, 30, 0.2));
  filter: blur(30px);
  border-radius: 48px;
  z-index: -1;
}
.dark-card__card {
  background: var(--lgl-deep-purple);
  color: white;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.dark-card__card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 90, 0.4), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.dark-card__body { position: relative; }
.dark-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  color: white;
  line-height: 1.1;
  margin: 0;
}
.dark-card > .dark-card__body > p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.field--dark .field__label { color: rgba(255, 255, 255, 0.7); }
.field--dark .field__label .req { color: var(--lgl-butter); }
.field--dark .field__label .opt { color: rgba(255, 255, 255, 0.4); }
.field--dark input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}
.field--dark input::placeholder { color: rgba(255, 255, 255, 0.45); }
.field--dark input:focus {
  border-color: var(--lgl-butter);
  box-shadow: 0 0 0 3px rgba(255, 207, 90, 0.15);
}
.submit-btn--dark {
  background: var(--lgl-butter);
  color: var(--lgl-deep-purple);
  box-shadow: 0 10px 24px rgba(255, 207, 90, 0.25);
}
.submit-btn--dark:disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}
.thank-you--dark h3 { color: white; }
.thank-you--dark p { color: rgba(255, 255, 255, 0.7); }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: #0f0820;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 32px;
  position: relative;
  z-index: 1;
}
.site-footer__inner { max-width: 1280px; margin: 0 auto; }
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 28px;
  margin-bottom: 24px;
}
.site-footer__brand { max-width: 380px; }
.site-footer__brand img { height: 24px; display: block; margin-bottom: 14px; }
.site-footer__brand h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  color: white;
  line-height: 1.2;
  margin: 0;
}
.site-footer__brand p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.site-footer__col .eyebrow {
  color: var(--lgl-butter);
  font-size: 11px;
}
.site-footer__col .primary {
  margin-top: 12px;
  font-size: 14px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.site-footer__col .secondary {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Motion ────────────────────────────────────────────── */
@keyframes lgl-drift {
  0%   { transform: translate(var(--px, 0), var(--py, 0)) scale(1) rotate(0deg); }
  100% { transform: translate(calc(var(--px, 0) + 40px), calc(var(--py, 0) - 30px)) scale(1.1) rotate(8deg); }
}
@keyframes lgl-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes lgl-fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: lgl-fade-in-up 0.7s ease-out both; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__inner { padding: 56px 24px 48px; }
  .values__inner,
  .social__inner,
  .contact__inner { padding: 72px 24px; }
}
@media (max-width: 560px) {
  .hero__headline { font-size: 3rem; }
  .lead-card__card,
  .dark-card__card { padding: 22px; }
  .form__row { grid-template-columns: 1fr; }
  .site-header__inner { padding: 12px 20px; }
  .cta-pill { padding: 9px 16px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
