:root {
  --bg: #0c0f12;
  --bg-elevated: #141a20;
  --bg-card: #1a2229;
  --text: #e8ecef;
  --text-muted: #9aa8b4;
  --accent: #c9a962;
  --accent-dim: rgba(201, 169, 98, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: min(1120px, 92vw);
  --narrow: min(720px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: var(--narrow);
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin: 0 0 1.25rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

h4 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  border-radius: 4px;
}

.logo-text {
  line-height: 1.1;
}

.logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.logo:hover .logo-mark {
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav a:not(.btn):hover {
  color: var(--text);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #d4b872;
  color: var(--bg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Shared media */
.section-media {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

.media-caption {
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.narrow-inner {
  max-width: 36rem;
}

.split-media img {
  min-height: 280px;
  max-height: 520px;
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--accent);
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
  line-height: 1.35;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(5rem, 12vw, 8rem);
  overflow: hidden;
}

.hero--media .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--media .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 15, 18, 0.97) 0%,
    rgba(12, 15, 18, 0.88) 45%,
    rgba(12, 15, 18, 0.55) 100%
  );
}

.hero--media .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.hero--media .hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin: 0 0 1rem;
  font-style: italic;
}

.hero .lead {
  font-size: 1.125rem;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-side-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  filter: saturate(0.9);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-lead {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.section-lead.center {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.emphasis {
  color: var(--text) !important;
  font-size: 1.125rem;
}

.callout {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent) !important;
  margin: 2rem 0 !important;
}

/* Problem */
.section-problem .split-problem {
  margin-bottom: 3rem;
}

.problem-pillars-wrap {
  width: var(--narrow);
  margin-inline: auto;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  counter-reset: pillar;
}

.pillar-list--numbered .pillar-item {
  counter-increment: pillar;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  column-gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.pillar-list--numbered .pillar-item:first-child {
  padding-top: 0;
}

.pillar-index {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  padding-top: 0.15rem;
}

.pillar-index::before {
  content: counter(pillar, decimal-leading-zero);
}

.pillar-copy {
  min-width: 0;
}

.pillar-copy strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

.pillar-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Timeline */
.timeline-wrapper {
  margin-top: 4rem;
  position: relative;
}

/* Vertical connecting line for all screens */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px; /* Centers behind the 48px dot */
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.3) 15%, rgba(201, 169, 98, 0.3) 85%, transparent);
  z-index: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.timeline-marker {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--accent);
  font-size: 1.25rem;
  box-shadow: 0 0 0 6px var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.2), 0 0 0 6px var(--bg);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-grow: 1;
}

@media (min-width: 900px) {
  .timeline-card {
    grid-template-columns: 280px 1fr; /* Image on left, content on right */
  }
}

.timeline-step:hover .timeline-card {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.3);
}

.timeline-card-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
}

.timeline-card-banner.section-media {
  border: none;
}

@media (min-width: 900px) {
  .timeline-card-banner {
    height: 100%;
    min-height: 100%;
  }
}

.timeline-card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--bg-card));
}

@media (min-width: 900px) {
  .timeline-card-banner::after {
    background: linear-gradient(to right, transparent, var(--bg-card));
  }
}

.timeline-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2) opacity(0.5);
  transition: filter 0.5s ease;
}

.timeline-step:hover .timeline-card-banner img {
  filter: grayscale(40%) contrast(1.1) opacity(0.8);
}

.timeline-card-body {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .timeline-card-body {
    padding: 3rem 3.5rem 3.5rem 1rem;
  }
}

.month-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.timeline-card h3 {
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
  max-width: 20ch;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 38rem;
}

.timeline-card h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 1.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-card li {
  color: rgba(232, 236, 239, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}

.timeline-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-family: var(--font-serif);
}

/* Deliverables */
.ledger-list {
  display: flex;
  flex-direction: column;
  max-width: 56rem;
  margin-inline: auto;
}

.ledger-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.ledger-item:first-child {
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .ledger-item {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
}

.ledger-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  margin: 0;
  letter-spacing: 0;
}

.ledger-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.closing-note {
  max-width: 42rem;
  margin-top: 2rem;
}

/* Proof / Track Record */
.section-proof {
  background: #0a0c0e;
  padding-block: clamp(4.5rem, 9vw, 6.5rem);
}

.proof-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(240px, 38%) 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: stretch;
}

.proof-media {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.proof-media-frame {
  flex: 1;
  min-height: 0;
}

.proof-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 20%;
}

.proof-caption {
  flex-shrink: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  background: #14181d;
  border-top: 1px solid var(--border);
}

.proof-content .eyebrow {
  margin-bottom: 0.65rem;
  letter-spacing: 0.14em;
}

.proof-content h2 {
  margin-bottom: 1.75rem;
  color: var(--text);
  max-width: 14em;
}

.proof-content > p {
  color: rgba(232, 236, 239, 0.88);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 38rem;
}

.text-highlight {
  color: var(--accent);
  font-weight: 500;
}

.proof-achievements {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0 0;
}

.proof-achievements li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  padding: 1.15rem 0 1.15rem 1.35rem;
  border-left: 2px solid var(--accent);
}

.proof-achievements li + li {
  margin-top: 0.5rem;
}

.achievement-value {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.achievement-desc {
  color: rgba(232, 236, 239, 0.82);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 32rem;
}

.proof-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2.25rem 0 1.75rem;
  max-width: 38rem;
}

.proof-closing {
  font-style: italic;
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 0;
}

.proof-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #14181d;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.proof-stat + .proof-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.proof-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}

.pricing-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-dim) 0%, var(--bg-card) 40%);
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text);
  margin: 0.5rem 0;
}

.price-unit {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.price-detail {
  font-size: 0.9rem;
}

.pricing-featured .btn {
  margin-top: 1.5rem;
}

.capacity-note {
  text-align: center;
  font-style: italic;
  color: var(--accent);
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 1.25rem;
  margin: 0;
}

/* Audience */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 1px;
}

/* CTA */
.section-cta {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.section-cta--media .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-cta--media .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 18, 0.82);
}

.section-cta--media .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.section-cta--media .cta-box {
  position: relative;
  z-index: 1;
}

.cta-box {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.cta-box h2 {
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 2rem;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 3rem;
  align-items: start;
}

.about-card {
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 901px) {
  .founder-photo {
    aspect-ratio: 4 / 4.25;
    max-height: 280px;
  }
}

.about-card .about-name,
.about-card .about-role,
.about-card .about-meta {
  padding-inline: 1.5rem;
}

.about-card .about-name {
  margin-top: 1.25rem !important;
}

.about-card .about-meta {
  padding-bottom: 1.5rem;
}

.about-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text) !important;
  margin-bottom: 0.25rem !important;
}

.about-role,
.about-meta {
  font-size: 0.9rem;
  margin: 0 !important;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-info {
  max-width: 300px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.footer-tagline,
.footer-location {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0.25rem 0;
}

.footer-newsletter {
  flex-grow: 1;
  max-width: 400px;
}

.newsletter-heading {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: normal;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
}

.footer-copy,
.footer-photos {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-photos a {
  color: var(--text-muted);
}

.footer-photos a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .proof-layout,
  .about-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    justify-content: center;
  }

  .hero-side-img {
    max-width: 100%;
  }

  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-media {
    order: -1;
    max-width: 400px;
    margin-inline: auto;
    width: 100%;
  }

  .proof-media img {
    min-height: 320px;
    aspect-ratio: 4 / 5;
  }

  .proof-stats-bar {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding-block: 1.5rem;
  }

  .proof-stat + .proof-stat::before {
    display: none;
  }

  .proof-stat {
    padding-block: 1rem;
    border-top: 1px solid var(--border);
  }

  .proof-stat:first-child {
    border-top: none;
    padding-top: 0.5rem;
  }

  .split-audience .split-media {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .logo-text {
    font-size: 1.05rem;
  }

  .pillar-list--numbered .pillar-item {
    grid-template-columns: 2.75rem 1fr;
    column-gap: 1rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
