@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  --ink: #130a22;
  --ink2: #1e1436;
  --ink3: #291d48;
  --paper: #f7f1e2;
  --paper2: #eee4cc;
  --gold: #c6952a;
  --gold2: #efc873;
  --gold-deep: #7c5a16;
  --cream: #f4eddd;
  --mauve: #b29fc7;
  --ash: #7a6c93;
  --ashlt: #7c6d57;
  --line: rgba(198, 149, 42, 0.44);
  --linedk: rgba(239, 200, 115, 0.32);
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Archivo, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--ink2);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 60;
  color: var(--cream);
  background: rgba(19, 10, 34, 0.95);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: saturate(1.3) blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  background: linear-gradient(135deg, var(--gold2), var(--gold) 60%, var(--gold2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.logo sup {
  position: relative;
  top: -0.6em;
  color: var(--gold2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.5em;
}

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

.nav-links a {
  color: rgba(244, 237, 221, 0.66);
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cream);
}

.nav-links .nav-pilot {
  padding: 0.55rem 1.05rem;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 13vw, 150px) 0 clamp(96px, 12vw, 140px);
  background: radial-gradient(120% 90% at 82% 8%, #3a2a5e 0%, #1b0f2e 46%), var(--ink);
  color: var(--cream);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-conic-gradient(at 100% 0%, rgba(231, 200, 120, 0.05) 0deg, rgba(231, 200, 120, 0.05) 2deg, transparent 2deg, transparent 12deg);
  mask-image: radial-gradient(60% 70% at 100% 0%, #000 0%, transparent 72%);
}

.hero-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: var(--mauve);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kicker.dark {
  color: var(--gold-deep);
}

.kicker span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}

.kicker.dark span {
  background: var(--gold-deep);
}

.dark-section .kicker span {
  background: var(--gold2);
}

.hero h1 {
  margin: 1.6rem 0 1.5rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.9rem, 5.6vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  background: linear-gradient(120deg, var(--gold2) 0%, var(--gold) 45%, var(--gold2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lede {
  max-width: 46ch;
  margin: 0;
  color: rgba(244, 237, 221, 0.72);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.button-gold,
.button-outline {
  padding: 1rem 1.9rem;
  border-radius: 1px;
  font-family: Archivo, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-gold {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.button-outline {
  border: 1px solid var(--gold);
  color: var(--cream);
}

.est {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.4rem;
  color: rgba(244, 237, 221, 0.4);
}

.est span {
  width: 44px;
  height: 1px;
  background: var(--linedk);
}

.est p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero-image div {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(19, 10, 34, 0.55) 100%), linear-gradient(90deg, rgba(19, 10, 34, 0.25), transparent 30%);
}

.light-section,
.paper-section {
  padding: clamp(76px, 10vw, 142px) 0;
}

.light-section {
  background: var(--paper2);
}

.paper-section {
  background: var(--paper);
}

.how,
.benefits {
  border-top: 4px double var(--gold);
}

.benefits.paper-section {
  background: var(--paper2);
}

.who.light-section {
  background: var(--paper);
}

.wrap.steps,
.wrap.columns,
.wrap.two-cards,
.wrap.tags,
.wrap.benefit-group {
  width: min(1052px, calc(100% - clamp(40px, 8vw, 96px)));
  max-width: 1052px;
  padding-right: 0;
  padding-left: 0;
}

.problem h2,
.section-grid h2,
.pilot h2 {
  margin: 1.4rem 0 2rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.problem h2 {
  max-width: 20ch;
}

.problem-copy {
  max-width: 68ch;
}

.problem-copy p {
  margin: 0 0 1.1rem;
  color: var(--ashlt);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.55;
}

mark {
  background: rgba(203, 161, 53, 0.18);
  color: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92em;
  padding: 0.08em 0.34em;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  margin-bottom: clamp(2.6rem, 4vw, 4rem);
}

.section-grid h2 {
  margin-top: 0.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps article {
  min-height: 0;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border-right: 0;
  background: var(--paper2);
}

.steps span {
  display: block;
  margin-bottom: 1rem;
  color: transparent;
  font-family: Fraunces, Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--gold);
}

.steps h3,
.two-cards h3,
.benefit-row h3 {
  margin: 1rem 0 0.8rem;
  color: var(--ashlt);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
}

.steps p,
.two-cards span,
.benefit-row span,
.founder-grid span {
  color: rgba(122, 108, 87, 0.75);
  line-height: 1.55;
}

.dark-section {
  padding: clamp(76px, 10vw, 142px) 0;
  background: var(--ink);
  color: var(--cream);
}

.dark-section .section-grid h2,
.dashboard h2,
.pilot h2 {
  color: rgba(244, 237, 221, 0.72);
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3vw, 3rem);
  margin-top: 0;
}

.columns article {
  border-top: 1px solid rgba(239, 200, 115, 0.12);
  padding-top: 1.4rem;
}

.columns p,
.two-cards p,
.benefit-group > p,
.founder-grid p,
.report-card > p,
.report-card h4 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.columns p {
  color: var(--gold2);
  font-size: 0.63rem;
  letter-spacing: 0.19em;
}

.columns span {
  display: block;
  margin-top: 1rem;
  color: rgba(244, 237, 221, 0.74);
  font-size: 0.97rem;
  line-height: 1.62;
}

.columns article div {
  display: none;
}

.two-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.two-cards article {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-right: 0;
  background: var(--paper);
}

.two-cards p,
.benefit-group > p,
.founder-grid p {
  color: rgba(124, 90, 22, 0.46);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2.2rem;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 1px;
  padding: 0.42rem 0.72rem;
  color: var(--ashlt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefit-group {
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}

.benefit-group > p {
  display: block;
  margin-bottom: 1.9rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
  color: var(--ashlt);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 2.4vw, 2.4rem);
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.benefit-row h3 {
  margin-top: 0;
}

.dashboard-copy {
  max-width: 60ch;
  margin: 0 0 clamp(2rem, 3.5vw, 3rem);
  color: rgba(244, 237, 221, 0.72);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.55;
}

.report-panel {
  position: relative;
  overflow: hidden;
  border: 1px dashed var(--linedk);
  border-radius: 2px;
  background: var(--ink2);
}

.report-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(231, 200, 120, 0.05) 0, rgba(231, 200, 120, 0.05) 2px, transparent 2px, transparent 14px);
  pointer-events: none;
}

.sample-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  border-radius: 1px;
  background: var(--gold2);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  padding: 0.3rem 0.6rem;
  text-transform: uppercase;
}

.report-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--linedk);
  padding: 0.85rem 1.2rem;
  color: var(--gold2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1px;
  background: var(--linedk);
}

.report-column {
  background: var(--ink2);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
}

.report-column > span,
.unmet span {
  display: block;
  margin-bottom: 1.5rem;
  color: rgba(244, 237, 221, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.meter-row {
  margin-bottom: 1.05rem;
}

.meter-row div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.42rem;
  color: rgba(244, 237, 221, 0.88);
  font-size: 0.87rem;
}

.meter-row b {
  color: var(--gold2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
}

.meter-row i {
  display: block;
  overflow: hidden;
  height: 5px;
  border-radius: 1px;
  background: rgba(244, 237, 221, 0.1);
}

.meter-row em {
  display: block;
  height: 100%;
  background: var(--mauve);
}

.meter-row:first-of-type em,
.report-column:last-child .meter-row:first-of-type em {
  background: var(--gold2);
}

.unmet {
  margin-top: 0.4rem;
  border: 1px dashed rgba(203, 161, 53, 0.5);
  border-radius: 1px;
  padding: 1rem 1.1rem;
}

.unmet span {
  margin-bottom: 0.5rem;
  color: var(--gold2);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.unmet p {
  margin: 0;
  color: rgba(244, 237, 221, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
}

.founders {
  background: var(--paper);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 11.6rem;
}

.founder-grid article {
  border-top: 1px solid rgba(124, 90, 22, 0.12);
  padding-top: 1.8rem;
}

.founder-grid h2 {
  margin: 0 0 1.1rem;
  color: var(--ashlt);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 400;
}

.founder-grid span {
  display: block;
  margin-top: 1rem;
  color: var(--ashlt);
  font-size: 0.95rem;
}

.pilot {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pilot-fan {
  position: absolute;
  inset: 0;
  opacity: 1;
  background: repeating-conic-gradient(from 180deg at 50% 120%, rgba(231, 200, 120, 0.05) 0deg, rgba(231, 200, 120, 0.05) 2deg, transparent 2deg, transparent 12deg);
  mask-image: radial-gradient(60% 80% at 50% 120%, #000 0%, transparent 70%);
  pointer-events: none;
}

.pilot-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.pilot .kicker {
  color: rgba(244, 237, 221, 0.58);
}

.pilot h2 {
  margin: 1.2rem 0 1rem;
}

.pilot-inner > p:not(.kicker) {
  max-width: 54ch;
  margin: 0 0 2rem;
  color: rgba(244, 237, 221, 0.62);
  font-size: 1.14rem;
}

.pilot .email {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  border-bottom: 1px solid rgba(178, 159, 199, 0.35);
  padding-bottom: 2px;
  color: var(--mauve);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.footer {
  border-top: 1px solid var(--linedk);
  background: var(--ink);
  color: rgba(244, 237, 221, 0.5);
  padding: 2.2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer span {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-shell {
    position: static;
    backdrop-filter: none;
  }

  .nav-inner {
    align-items: center;
    gap: 1rem;
    height: 58px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .logo {
    flex: 0 0 auto;
    font-size: 1.16rem;
  }

  .nav-links {
    flex: 1 1 auto;
    gap: 1rem;
    min-width: 0;
    overflow-x: auto;
    padding: 0.35rem 0;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    font-size: 0.76rem;
  }

  .nav-links .nav-pilot {
    padding: 0.42rem 0.72rem;
  }

  .hero-grid,
  .section-grid,
  .dashboard-grid,
  .steps,
  .columns,
  .two-cards,
  .benefit-row,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .wrap {
    padding-right: clamp(20px, 5.5vw, 34px);
    padding-left: clamp(20px, 5.5vw, 34px);
  }

  .wrap.steps,
  .wrap.columns,
  .wrap.two-cards,
  .wrap.tags,
  .wrap.benefit-group {
    width: calc(100% - clamp(32px, 8vw, 48px));
  }

  .hero-image-shell {
    max-width: 560px;
  }

  .founder-grid {
    margin-top: 2rem;
  }

  .two-cards article,
  .steps article {
    border-right: 0;
    border-bottom: 1px solid rgba(124, 90, 22, 0.14);
  }

  .two-cards article:last-child,
  .steps article:last-child {
    border-bottom: 0;
  }

  .report-panel {
    width: 100%;
  }

  .sample-badge {
    position: static;
    width: fit-content;
    max-width: calc(100% - 1.4rem);
    margin: 0.7rem 0.7rem 0 auto;
    font-size: 0.48rem;
    letter-spacing: 0.1em;
    padding: 0.24rem 0.42rem;
  }

  .report-topline {
    align-items: flex-start;
    padding: 0.62rem 0.7rem;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .report-body {
    grid-template-columns: 1.18fr 1fr;
  }

  .report-column {
    min-width: 0;
    padding: 0.85rem 0.7rem;
  }

  .report-column > span,
  .unmet span {
    margin-bottom: 0.85rem;
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .meter-row {
    margin-bottom: 0.72rem;
  }

  .meter-row div {
    gap: 0.35rem;
    font-size: clamp(0.58rem, 2.35vw, 0.72rem);
    line-height: 1.25;
  }

  .meter-row b {
    flex: 0 0 auto;
    font-size: clamp(0.52rem, 2vw, 0.64rem);
  }

  .unmet {
    padding: 0.7rem;
  }

  .unmet p {
    font-size: clamp(0.58rem, 2.35vw, 0.72rem);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2.62rem, 12vw, 3.2rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .button-gold,
  .button-outline {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
