:root {
  --black: #0a0a0f;
  --charcoal: #16151d;
  --paper: #faf9f6;
  --ivory: #f2f0ea;
  --ink: #0b0b10;
  --muted: #68676f;
  --accent: #3652ff;
  --accent-dark: #2540e6;
  --accent-soft: rgba(54, 82, 255, 0.08);
  --line: rgba(11, 11, 16, 0.09);
  --line-dark: rgba(250, 248, 243, 0.1);
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

/* Aurora — kept only for the dark "What I Do Now" band */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.aurora .blob-1 {
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  right: -10%;
  top: -22%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.16;
  animation: drift-1 40s ease-in-out infinite alternate;
}

.aurora .blob-2 {
  width: 30vw;
  height: 30vw;
  max-width: 460px;
  max-height: 460px;
  left: -6%;
  bottom: -20%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 72%);
  opacity: 0.1;
  animation: drift-2 46s ease-in-out infinite alternate;
}

.aurora .blob-3 { display: none; }

@keyframes drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 4%) scale(1.08); }
}

@keyframes drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, -3%) scale(1.06); }
}

/* Header — floating pill nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 24px 0;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 10px 10px 26px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(11, 11, 16, 0.04), 0 16px 40px -24px rgba(11, 11, 16, 0.18);
  transition: box-shadow 0.3s ease;
}

header.site.scrolled .nav {
  box-shadow: 0 1px 0 rgba(11, 11, 16, 0.05), 0 20px 44px -20px rgba(11, 11, 16, 0.28);
}

.brand {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a.nav-cta {
  color: #fff !important;
  background: var(--ink);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 0.2s ease;
}

.nav-links a.nav-cta:hover { background: var(--accent); }

/* Hero — light, bold, product-style */
.hero {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 96px 0;
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 20px;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 60px;
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 36px;
}

.stat-row {
  display: flex;
  gap: 48px;
  margin: 44px 0 0;
  flex-wrap: wrap;
}

.stat .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}

.stat .label {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-top: 8px;
}

.hero-photo {
  position: relative;
  justify-self: center;
}

.hero-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px -24px rgba(11, 11, 16, 0.28);
  display: block;
}

/* Proof card — full-width credibility widget, framer/mega style */
.proof-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(11, 11, 16, 0.04), 0 30px 60px -30px rgba(11, 11, 16, 0.2);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.proof-main { flex: 1; min-width: 220px; }

.proof-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.proof-main .big {
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.proof-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.proof-stat-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(54, 82, 255, 0.5);
}

.button.ghost {
  background: var(--ivory);
  color: var(--ink);
  box-shadow: none;
}

.button.ghost:hover {
  background: #e9e6dd;
  transform: translateY(-1px);
  box-shadow: none;
}

.button-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 120px 0; }

.section-head { max-width: 600px; margin: 0 0 56px; }

.section-head .eyebrow { color: var(--accent); }

.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 36px;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-grid p { color: var(--muted); font-size: 16.5px; margin: 0 0 20px; }
.story-grid strong { color: var(--ink); font-weight: 600; }

.timeline {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.timeline-item { position: relative; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-year {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.timeline-item h3 {
  font-size: 17px;
  margin: 6px 0 6px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.timeline-item p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.quote-section { background: var(--ivory); }

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

.press-item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}

.press-outlet {
  flex: 0 0 200px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.press-headline {
  flex: 1;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.press-item:hover .press-headline { color: var(--accent); }

.press-arrow {
  flex: 0 0 auto;
  font-size: 16px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.press-item:hover .press-arrow {
  opacity: 1;
  transform: translateX(0);
}

.band {
  position: relative;
  background: var(--black);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.band .wrap { position: relative; z-index: 1; }

.band .section-head p { color: rgba(250, 248, 243, 0.6); }
.band .section-head .eyebrow { color: var(--accent); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  overflow: hidden;
}

.pillar {
  background: var(--black);
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.pillar:hover { background: var(--charcoal); }

.pillar .mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 18px;
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.pillar p {
  color: rgba(250, 248, 243, 0.6);
  font-size: 15px;
  margin: 0;
}

.quote-block {
  position: relative;
  margin: 0;
  padding-left: 8px;
}

.quote-block::before {
  content: "\201C";
  font-family: "Fraunces", Georgia, serif;
  font-size: 96px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: -24px;
}

.quote-block p {
  font-family: "Fraunces", Georgia, serif;
  font-size: 27px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 500;
  font-style: italic;
  max-width: 26ch;
}

.quote-block footer {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}

.cta-band {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 96px 0;
}

.cta-band h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  margin: 0 0 16px;
  font-weight: 600;
}

.cta-band p {
  color: var(--muted);
  margin: 0 0 34px;
  font-size: 16px;
}

/* Forms */
.form-shell {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 52px;
  box-shadow: 0 30px 70px -40px rgba(16, 21, 31, 0.22);
}

.field { margin-bottom: 24px; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 9px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.hint { font-size: 13px; color: var(--muted); margin-top: 8px; }

.form-note {
  background: var(--accent-soft);
  border: 1px solid rgba(54, 82, 255, 0.18);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 64px;
}

.contact-grid .form-shell { max-width: none; margin: 0; }

.contact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 20px;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.contact-card h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 10px;
}

.contact-card a,
.contact-card p {
  font-size: 17px;
  margin: 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover { color: var(--accent); }

/* Footer */
footer.site {
  background: var(--paper);
  color: var(--muted);
  padding: 40px 0;
  font-size: 13px;
  border-top: 1px solid var(--line);
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--accent); }

.footer-links { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }

.page-hero {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 76px 0 32px;
  overflow: hidden;
}

.page-hero + section { padding-top: 40px; }

.page-hero .wrap { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-hero p {
  color: var(--muted);
  max-width: 60ch;
  font-size: 17px;
  margin: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children — reveal a group with a cascading delay */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.in-view > * { opacity: 1; transform: translateY(0); }

.stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in-view > *:nth-child(2) { transition-delay: 90ms; }
.stagger.in-view > *:nth-child(3) { transition-delay: 180ms; }
.stagger.in-view > *:nth-child(4) { transition-delay: 270ms; }
.stagger.in-view > *:nth-child(5) { transition-delay: 360ms; }
.stagger.in-view > *:nth-child(6) { transition-delay: 450ms; }

/* Hero entrance sequence, plays once on load */
.hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-copy.loaded > * { opacity: 1; transform: translateY(0); }

.hero-copy.loaded > *:nth-child(1) { transition-delay: 60ms; }
.hero-copy.loaded > *:nth-child(2) { transition-delay: 160ms; }
.hero-copy.loaded > *:nth-child(3) { transition-delay: 280ms; }
.hero-copy.loaded > *:nth-child(4) { transition-delay: 400ms; }
.hero-copy.loaded > *:nth-child(5) { transition-delay: 500ms; }

.hero-photo {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) 250ms, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

.hero-photo.loaded { opacity: 1; transform: scale(1); }

.proof-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 500ms, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 500ms;
}

.proof-card.loaded { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger > *,
  .hero-copy > *,
  .hero-photo,
  .proof-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { order: -1; }
  .hero-photo img { width: 220px; height: 220px; }
  .proof-card { flex-direction: column; align-items: flex-start; gap: 24px; padding: 28px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .field-row { grid-template-columns: 1fr; }
  .form-shell { padding: 32px 24px; }
  .hero h1 { font-size: 38px; }
  section { padding: 80px 0; }
  .press-item { flex-direction: column; gap: 8px; }
  .press-outlet { flex-basis: auto; }
  .press-arrow { display: none; }
  .aurora .blob { filter: blur(50px); }
}
