/* ============================================================
   shared.css — Anté design system
   Single source of truth for all tokens, components, utilities
   ============================================================ */

/* ── Design tokens ───────────────────────────────────────── */
:root {
  /* Colors */
  --white:       #FFFFFF;
  --charcoal:    #28292B;
  --spruce:      #206A5B;
  --spruce-dark: #185249;
  --frosted:     #9CE3F8;
  --rule:        rgba(40, 41, 43, 0.08);
  --ink-soft:    rgba(40, 41, 43, 0.6);
  --ink-muted:   rgba(40, 41, 43, 0.4);

  /* Section spacing */
  --space-section: clamp(96px, 14vw, 180px);
  --space-block:   clamp(48px, 7vw, 96px);
  --space-stack:   32px;
  --space-tight:   16px;

  /* Hero spacing */
  --hero-pad-top:    clamp(120px, 16vw, 200px);
  --hero-pad-bottom: clamp(32px, 4vw, 56px);

  /* Container */
  --container-max: 1200px;
  --container-pad: clamp(24px, 4vw, 48px);

  /* Components */
  --card-pad:     clamp(28px, 4vw, 48px);
  --button-pad-y: 16px;
  --button-pad-x: 28px;

  /* Radius */
  --radius-card: 24px;
  --radius-btn:  999px;
  --radius-img:  28px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--white);
  color: var(--charcoal);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

::selection {
  background-color: var(--frosted);
  color: var(--charcoal);
}
::-moz-selection {
  background-color: var(--frosted);
  color: var(--charcoal);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(40px, 7vw, 96px); }
h2 { font-size: clamp(32px, 5vw, 64px); margin-bottom: var(--space-stack); }
h3 { font-size: clamp(22px, 3vw, 36px); margin-bottom: 16px; }
h4 { font-size: clamp(17px, 2vw, 24px); margin-bottom: 12px; }

p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: clamp(15px, 1.5vw, 17px);
}

p + p {
  margin-top: var(--space-stack);
}

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spruce);
  margin-bottom: 20px;
}

.eyebrow--frosted {
  color: var(--frosted);
}

/* ── Section ─────────────────────────────────────────────── */
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section--block {
  padding-top: var(--space-block);
  padding-bottom: var(--space-block);
}

.section--snug {
  padding-top: var(--space-block);
  padding-bottom: var(--space-block);
}

/* Spruce background section — full consistent treatment */
.section--spruce {
  background-color: var(--spruce);
}

.section--spruce .eyebrow {
  color: var(--frosted);
}

.section--spruce h1,
.section--spruce h2,
.section--spruce h3,
.section--spruce h4 {
  color: var(--white);
}

.section--spruce p,
.section--spruce .section-body {
  color: rgba(255, 255, 255, 0.8);
}

.section--spruce .no-list li {
  color: rgba(255, 255, 255, 0.8);
}

.section--spruce .no-list li::before {
  background-color: var(--frosted);
}

.section--spruce .dot {
  background-color: var(--frosted);
}

.section--spruce .slot-month {
  color: var(--white);
}

/* CTA button on spruce background — white outline style */
.section--spruce .btn-primary {
  background-color: var(--white);
  color: var(--spruce);
}

.section--spruce .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.section--spruce .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.section--spruce .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ── Section head block ─────────────────────────────────── */
.section-head {
  margin-bottom: var(--space-block);
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: var(--space-stack);
}

.section-head p {
  max-width: 64ch;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding-top: var(--hero-pad-top);
  padding-bottom: var(--hero-pad-bottom);
}

.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(52px, 8vw, 104px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: var(--space-stack);
}

.hero-headline--inner {
  font-size: clamp(32px, 5vw, 64px);
}

.hero-subhead {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.7;
  margin-bottom: var(--space-stack);
}

.hero-body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.75;
  margin-bottom: var(--space-stack);
}

.hero-2col {
  display: grid;
  grid-template-columns: 45fr 50fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-tight);
  align-items: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-btn);
  padding: var(--button-pad-y) var(--button-pad-x);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 200ms ease, color 200ms ease,
              border-color 200ms ease, transform 200ms ease,
              box-shadow 200ms ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--spruce);
  color: var(--white);
  border-color: var(--spruce);
}

.btn-primary:hover {
  background-color: var(--frosted);
  border-color: var(--frosted);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--white);
}

/* Arrow nudge on hover */
.btn-primary .arrow,
.btn-secondary .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.btn-primary:hover .arrow,
.btn-secondary:hover .arrow {
  transform: translateX(4px);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background-color: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: var(--card-pad);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 300ms ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-bottom: var(--space-stack);
}

.card h4 {
  margin-bottom: 12px;
}

/* ── Phase row ──────────────────────────────────────────── */
.phase-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.phase-number {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--spruce);
  line-height: 1;
  padding-top: 4px;
}

.phase-title {
  margin-bottom: var(--space-stack);
}

.phase-output {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: var(--space-stack);
  background-color: var(--spruce);
  padding: 4px 10px;
  border-radius: 4px;
}

.phase-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-block);
  margin-top: var(--space-block);
}

/* ── Product cards (Pricing) ───────────────────────────── */
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  margin-top: var(--space-block);
}

.product-card--outlined {
  background-color: var(--white);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-card);
  padding: var(--card-pad);
}

.product-card--filled {
  background-color: var(--frosted);
  border: none;
  border-radius: var(--radius-card);
  padding: var(--card-pad);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.product-card--filled h3,
.product-card--filled p,
.product-card--filled .price,
.product-card--filled .duration-label {
  color: var(--charcoal);
}

.price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin: var(--space-stack) 0 8px;
}

.duration-label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: var(--space-stack);
}

/* ── Availability slots ─────────────────────────────────── */
.slot-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-block);
}

.slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

.slot-row:first-child {
  border-top: 1px solid var(--rule);
}

.slot-month {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--charcoal);
}

.badge {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.badge--full {
  color: var(--charcoal);
  background-color: var(--white);
  border: 1px solid var(--charcoal);
}

.badge--available {
  color: var(--white);
  background-color: var(--spruce);
}

/* ── Image placeholders ─────────────────────────────────── */
.placeholder {
  background-color: #F5F5F5;
  border: 1px dashed rgba(40, 41, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.placeholder--45 {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-img);
}

.placeholder--11 {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card);
}

.placeholder--logo {
  aspect-ratio: 3 / 1;
  border-radius: 8px;
  max-width: 140px;
  width: 100%;
}

.placeholder-label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding: 16px;
  line-height: 1.5;
}

/* ── Case photo grid ────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: var(--space-block);
}

.case-item {
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.case-item .placeholder--45 {
  border-radius: 0;
  transition: transform 350ms ease;
}

.case-item:hover .placeholder--45 {
  transform: scale(1.02);
}

.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(28, 29, 31, 0.65));
  opacity: 0;
  transition: opacity 250ms ease;
  display: flex;
  align-items: flex-end;
}

.case-item:hover .case-overlay {
  opacity: 1;
}

.case-overlay-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ── Trust bar / Logo row ───────────────────────────────── */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-block);
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-block);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F5F5F5;
  border: 1px dashed rgba(40, 41, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-stack);
  flex-shrink: 0;
}

.testimonial-avatar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: var(--space-stack);
  font-style: italic;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.testimonial-company {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Founders ───────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-top: var(--space-block);
}

.founder-name {
  margin-top: 16px;
  margin-bottom: 8px;
}

.founder-role {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--spruce);
  display: block;
  margin-bottom: 16px;
}

.founders-closing {
  margin-top: var(--space-block);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-soft);
}

/* ── Frosted-dot list (who-this-is-for, etc.) ─────────── */
.dot-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-stack);
  margin-top: var(--space-block);
}

.dot-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--frosted);
  flex-shrink: 0;
  margin-top: 9px;
}

.dot-item p {
  margin: 0;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.5;
}

/* ── "No" bullet list (Independence / Spruce section) ──── */
.no-list {
  list-style: none;
  margin-top: var(--space-stack);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.no-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
}

.no-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--frosted);
  flex-shrink: 0;
}

/* ── Deliverables grid ──────────────────────────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-block);
}

/* ── Diagnostic CTA section ─────────────────────────────── */
.section--cta {
  text-align: center;
}

.section--cta .eyebrow,
.section--cta h2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section--cta h2 {
  max-width: 18ch;
}

.section--cta p {
  max-width: 52ch;
  margin: 0 auto var(--space-stack);
}

.section--cta .btn-group {
  justify-content: center;
  margin-top: var(--space-stack);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--container-max);
  height: 54px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--spruce);
}

.nav-link.active {
  border-bottom-color: var(--frosted);
}

.nav-cta {
  flex-shrink: 0;
}

/* Smaller nav button */
.nav .btn-primary {
  padding: 10px 20px;
  font-size: 13px;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 80px 0 40px;
  background: var(--white);
  margin-top: var(--space-block);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 48px;
}

.footer-logo {
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--charcoal);
}

.footer-contact p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
}

.footer-contact a {
  color: var(--charcoal);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* ── Reveal animation ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contact form ───────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-input,
.form-textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--frosted);
  box-shadow: 0 0 0 3px rgba(156, 227, 248, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ── Spacing utilities ──────────────────────────────────── */
.mt-stack { margin-top: var(--space-stack); }
.mt-block  { margin-top: var(--space-block); }

/* Section with reduced top padding (used when hero already provides spacing) */
.section--compact-top {
  padding-top: var(--space-block);
}

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  text-align: center;
}

.trust-bar p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-soft);
  font-weight: 500;
}

/* ── Text utilities ─────────────────────────────────────── */
.text-center { text-align: center; }

/* Inline CTA link (text + arrow, no button pill) */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color 200ms ease, color 200ms ease;
}

.cta-link:hover {
  color: var(--spruce);
  border-color: var(--spruce);
}

.cta-link .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.cta-link:hover .arrow {
  transform: translateX(4px);
}

/* ── Contact page ───────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.contact-form {
  margin-top: var(--space-stack);
}

.section--direct {
  text-align: center;
  border-top: 1px solid var(--rule);
}

.direct-contact {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-soft);
  text-align: center;
  margin: 0 auto;
}

.direct-contact a {
  color: var(--charcoal);
  font-weight: 500;
  transition: color 200ms ease;
}

.direct-contact a:hover {
  color: var(--spruce);
}

/* ── Responsive — tablet ────────────────────────────────── */
@media (max-width: 900px) {
  .hero-2col {
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 64px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Responsive — mobile ────────────────────────────────── */
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .nav {
    padding: 0 16px;
  }

  .case-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .phase-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .section--cta .btn-group {
    align-items: center;
  }

  .slot-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   EXTENDED STYLES — visual refresh
   ═══════════════════════════════════════════════════════════ */

/* ── Nav — larger to accommodate bigger logo ────────────── */
.nav {
  height: 80px;
}

/* ── Nav logo — doubled size ────────────────────────────── */
.nav-logo img {
  height: 56px;
}

/* ── Text accent ────────────────────────────────────────── */
.text-spruce { color: var(--spruce); }

/* ── Hero — centred layout ──────────────────────────────── */
.hero--centered {
  text-align: center;
}
.hero--centered .hero-subhead,
.hero--centered .hero-body {
  margin-left: auto;
  margin-right: auto;
}
.hero--centered .btn-group {
  justify-content: center;
}

/* ── Marquee ────────────────────────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-section {
  overflow: hidden;
  padding: 0 0 var(--space-block) 0;
}
.marquee-track {
  display: flex;
  width: fit-content;
  gap: 20px;
  animation: marquee 50s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  flex-shrink: 0;
  width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-img);
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.marquee-item .placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  transition: transform 400ms ease;
}
.marquee-item:hover .placeholder {
  transform: scale(1.03);
}
.marquee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 106, 91, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}
.marquee-item:hover .marquee-overlay {
  opacity: 1;
}

/* ── Trust bar — green ──────────────────────────────────── */
.trust-bar-green {
  background: var(--spruce);
  padding: 28px 0;
}
.trust-bar-green .container {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.trust-bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.trust-logo-item {
  height: 28px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-logo-item img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

/* ── Why we exist — 2-column ────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ── Pill items (rounded-rect bullet points) ────────────── */
.pill-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pill-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--spruce);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}
.pill-item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--frosted);
  flex-shrink: 0;
}
.pill-item:hover {
  transform: translateX(4px);
  border-color: rgba(156, 227, 248, 0.6);
  background: rgba(156, 227, 248, 0.04);
}

/* ── Problem card ───────────────────────────────────────── */
.problem-card {
  background: rgba(32, 106, 91, 0.04);
  border: 1px solid rgba(32, 106, 91, 0.1);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 72px);
}

/* ── Green CTA block ────────────────────────────────────── */
.green-cta-block {
  background: var(--spruce);
  border-radius: var(--radius-card);
  padding: clamp(48px, 6vw, 72px) clamp(40px, 5vw, 80px);
  text-align: center;
}
.green-cta-block h2 {
  color: var(--white);
  max-width: 20ch;
  margin: 0 auto var(--space-stack);
}
.green-cta-block p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
  margin: 0 auto;
}
.green-cta-block .btn-group {
  justify-content: center;
  margin-top: var(--space-stack);
}
.green-cta-block .btn-primary {
  background: var(--frosted);
  border-color: var(--frosted);
  color: var(--charcoal);
}
.green-cta-block .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.green-cta-block .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.green-cta-block .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ── Footer — charcoal dark ─────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: none;
  color: var(--white);
}
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.footer-logo img {
  height: 160px;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}
.footer-email {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  transition: color 200ms ease;
}
.footer-email:hover {
  color: var(--white);
}
.footer-col-title {
  color: rgba(156, 227, 248, 0.8);
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact a {
  color: var(--white);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  transition: color 200ms ease, border-color 200ms ease;
  text-decoration: none;
}
.footer-social-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.footer-social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ── Discover more button (Gemini style) ────────────────── */
.discover-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 200ms ease;
  padding: 0;
  margin: 0 auto;
  display: flex;
}
.discover-more:hover {
  color: var(--spruce);
}
.discover-more-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 200ms ease, background 200ms ease;
}
.discover-more:hover .discover-more-circle {
  border-color: var(--spruce);
  background: rgba(32, 106, 91, 0.05);
}

/* ── Approach — phase items with photo ──────────────────── */
.phase-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-block);
}
.phase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: var(--card-pad);
}
.phase-item--reverse .phase-content { order: 2; }
.phase-item--reverse .phase-image   { order: 1; }

/* Phase number — heading font, light blue */
.phase-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--frosted);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block;
}

.placeholder--video {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-img);
}

/* ── Approach — "who is this for" pill items ────────────── */
.fit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-block);
}
.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--charcoal);
  line-height: 1.55;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}
.fit-item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--frosted);
  flex-shrink: 0;
  margin-top: 8px;
}
.fit-item:hover {
  transform: translateX(4px);
  border-color: rgba(156, 227, 248, 0.6);
  background: rgba(156, 227, 248, 0.03);
}

/* ── Cases page — static 2×2 grid ──────────────────────── */
.case-static-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: var(--space-block);
}
.case-static-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-img);
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.case-static-item .placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  transition: transform 400ms ease;
}
.case-static-item:hover .placeholder {
  transform: scale(1.03);
}
.case-static-item .case-overlay {
  background: linear-gradient(to top, rgba(32, 106, 91, 0.72) 0%, transparent 55%);
}

/* ── Discover-more wrapper ──────────────────────────────── */
.discover-more-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-block);
}

/* ── Contact — hierarchy ────────────────────────────────── */
.contact-book {
  background: rgba(32, 106, 91, 0.04);
  border: 1px solid rgba(32, 106, 91, 0.12);
  border-radius: var(--radius-card);
  padding: var(--card-pad);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.contact-book h3 {
  margin-bottom: 12px;
}
.contact-book p {
  margin-bottom: var(--space-stack);
}

.contact-cards .contact-book {
  margin-bottom: 0;
}

/* ── Deliverables — green block ─────────────────────────── */
.deliverables-wrap {
  background: var(--spruce);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 72px);
}
.deliverables-wrap h2 {
  color: var(--white);
}
.deliverables-wrap > p {
  color: rgba(255, 255, 255, 0.8);
}
.deliverables-wrap .card {
  background: var(--white);
}
.deliverables-wrap .card h4 {
  color: var(--charcoal);
}
.deliverables-wrap .card p {
  color: var(--ink-soft);
}

/* ── Nav right group (cta + hamburger) ──────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Hamburger button ───────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* ── Mobile menu overlay ────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  padding: 24px var(--container-pad);
  display: none;
  flex-direction: column;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-menu-header .nav-logo img {
  height: 52px;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-menu-links li a {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(36px, 10vw, 52px);
  color: var(--charcoal);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: color 200ms ease;
}
.mobile-menu-links li a:hover {
  color: var(--spruce);
}
.mobile-menu-cta {
  margin-top: 32px;
}

@media (max-width: 600px) {
  .nav-hamburger {
    display: flex;
  }
  .nav-right .btn-primary {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   IMAGE HANDLING — img tags replace placeholder divs
   ═══════════════════════════════════════════════════════════ */

/* Marquee images */
.marquee-item {
  background: #EBEBEB;
}
.marquee-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.marquee-item:hover img {
  transform: scale(1.03);
}

/* Case static grid images */
.case-static-item {
  background: #EBEBEB;
}
.case-static-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.case-static-item:hover img {
  transform: scale(1.03);
}

/* Phase images */
.phase-image {
  background: #EBEBEB;
  border-radius: var(--radius-img);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.phase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Founder portrait images */
.founder-portrait {
  background: #EBEBEB;
  border-radius: var(--radius-card);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: var(--space-stack);
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Responsive additions ───────────────────────────────── */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .phase-item {
    grid-template-columns: 1fr;
  }
  .phase-item--reverse .phase-content,
  .phase-item--reverse .phase-image {
    order: unset;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-static-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .trust-bar-green .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-logos {
    justify-content: flex-start;
  }
  .marquee-item {
    width: 320px;
  }
}
