:root {
  --bg: #faf7f2;
  --bg-alt: #f8f5ef;
  --surface: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --gold: #b88a44;
  --rose: #c97c7c;
  --soft: #e9dcc9;
  --deep: #2d2a32;
  --sage: #7d8f83;
  --line: rgba(45, 42, 50, 0.12);
  --shadow: 0 24px 70px rgba(45, 42, 50, 0.1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 124, 124, 0.13), transparent 34rem),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 138, 68, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 138, 68, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, 0.78);
  border-bottom: 1px solid rgba(233, 220, 201, 0.65);
}

.brand,
.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  color: var(--deep);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 138, 68, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.66);
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(74px, 9vw, 128px) 0;
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  padding-top: clamp(42px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  color: var(--deep);
}

h1,
h2,
blockquote {
  font-family: var(--serif);
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.85rem, 4.05vw, 4.35rem);
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
}

h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

p {
  margin: 0;
}

.hero-claim {
  margin-top: 26px;
  color: var(--rose);
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  font-weight: 700;
}

.hero-text {
  margin-top: 20px;
  max-width: 680px;
  color: #4b5563;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--deep);
  color: #fffaf2;
  box-shadow: 0 16px 34px rgba(45, 42, 50, 0.18);
}

.button.secondary {
  color: var(--deep);
  border-color: rgba(184, 138, 68, 0.42);
  background: rgba(255, 255, 255, 0.56);
}

.button.tertiary {
  color: var(--gold);
  border-color: rgba(201, 124, 124, 0.34);
  background: rgba(255, 255, 255, 0.44);
}

.microcopy {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 670px;
}

.portrait-wrap {
  position: absolute;
  inset: 44px 34px 44px 46px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(184, 138, 68, 0.26);
  border-radius: 8px;
}

.hero-visual::before {
  inset: 0 70px 86px 0;
}

.hero-visual::after {
  inset: 96px 0 0 96px;
  border-color: rgba(201, 124, 124, 0.22);
}

.orbit-card {
  position: absolute;
  z-index: 4;
  width: min(210px, 42vw);
  padding: 14px 16px;
  border: 1px solid rgba(233, 220, 201, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(45, 42, 50, 0.12);
  backdrop-filter: blur(18px);
  animation: floatCard 6s ease-in-out infinite;
}

.orbit-card span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.orbit-card strong {
  display: block;
  margin-top: 4px;
  color: var(--deep);
  font-size: 0.96rem;
  line-height: 1.25;
}

.roadmap {
  top: 78px;
  left: 0;
}

.dashboard {
  top: 220px;
  right: -8px;
  animation-delay: -1.3s;
}

.timeline {
  left: 12px;
  bottom: 136px;
  animation-delay: -2.1s;
}

.risk {
  right: 28px;
  bottom: 42px;
  animation-delay: -3s;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-body,
.centered p {
  color: #4b5563;
  font-size: 1.04rem;
}

.section-body p + p {
  margin-top: 18px;
}

.triad {
  grid-column: 1 / -1;
  margin-top: 22px;
}

.cards-grid,
.capability-grid,
.domain-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-card,
.domain-grid article,
.audience-grid article,
.method-steps article,
.timeline-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(45, 42, 50, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-card {
  padding: 28px;
}

.premium-card:hover,
.domain-grid article:hover,
.audience-grid article:hover,
.method-steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 68, 0.38);
  box-shadow: 0 22px 55px rgba(45, 42, 50, 0.095);
}

.card-index,
.method-steps span,
.timeline-list span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.premium-card p,
.domain-grid p,
.audience-grid p,
.method-steps p,
.timeline-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.centered {
  max-width: 830px;
  margin: 0 auto 42px;
  text-align: center;
}

.centered h2 + p {
  margin-top: 20px;
}

.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-prop,
.method,
.journey {
  border-top: 1px solid rgba(233, 220, 201, 0.7);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.comparison-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
}

.comparison-panel.muted {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(107, 114, 128, 0.18);
}

.comparison-panel.accent {
  background: linear-gradient(135deg, rgba(45, 42, 50, 0.96), rgba(76, 70, 84, 0.94));
  color: #fffaf2;
}

.comparison-panel.accent h3,
.comparison-panel.accent li {
  color: #fffaf2;
}

.comparison-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-panel li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: #4b5563;
  border-bottom: 1px solid rgba(233, 220, 201, 0.5);
}

.comparison-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--rose);
}

.comparison-panel.accent li::before {
  background: var(--gold);
}

.domain-grid article,
.audience-grid article {
  padding: 26px;
}

.domain-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(184, 138, 68, 0.12), rgba(125, 143, 131, 0.08));
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.method-steps article {
  padding: 22px;
  min-height: 280px;
}

.audiences {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(233, 220, 201, 0.45), rgba(255, 255, 255, 0.36)),
    linear-gradient(90deg, rgba(184, 138, 68, 0.08), rgba(201, 124, 124, 0.1));
}

.audience-grid article {
  background: rgba(255, 255, 255, 0.72);
}

.investor-line {
  max-width: 780px;
  margin: 44px auto 0;
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1.08;
  text-align: center;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 54px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 70px minmax(190px, 0.44fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
}

.timeline-list span {
  margin: 0;
}

.timeline-list p {
  margin: 0;
}

.quote-section {
  text-align: center;
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 5vw, 5rem);
}

.quote-section > p {
  margin-top: 30px;
  color: var(--deep);
  font-weight: 800;
}

.quote-section span,
.quote-section small {
  color: var(--muted);
  font-weight: 500;
}

.quote-section small {
  display: block;
  max-width: 580px;
  margin: 28px auto 0;
  font-size: 1rem;
}

.final-cta {
  max-width: none;
  width: 100%;
  padding-inline: max(20px, calc((100vw - 980px) / 2));
  text-align: center;
  background: var(--deep);
  color: #fffaf2;
}

.final-cta h2 {
  color: #fffaf2;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.05rem;
}

.centered-actions {
  justify-content: center;
}

.final-cta .button.primary {
  background: #fffaf2;
  color: var(--deep);
}

.final-cta .button.secondary,
.final-cta .button.tertiary {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 4vw, 56px);
  background: #fffaf2;
  border-top: 1px solid rgba(233, 220, 201, 0.9);
}

.site-footer strong {
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.site-footer p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .method-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
    padding: 72px 0;
  }

  .split-section,
  .comparison,
  .cards-grid,
  .capability-grid,
  .domain-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .portrait-wrap {
    inset: 28px 18px 66px;
  }

  .orbit-card {
    width: min(190px, 46vw);
    padding: 12px 13px;
  }

  .dashboard {
    right: 0;
  }

  .timeline {
    bottom: 116px;
  }

  .risk {
    right: 14px;
    bottom: 22px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps article {
    min-height: auto;
  }

  .timeline-list article {
    grid-template-columns: 46px 1fr;
  }

  .timeline-list p {
    grid-column: 2;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 12px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .orbit-card {
    font-size: 0.86rem;
  }

  .roadmap {
    top: 36px;
  }

  .dashboard {
    top: 178px;
  }

  .timeline {
    left: 0;
    bottom: 104px;
  }

  .quote-section blockquote {
    font-size: 2.3rem;
  }
}

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