:root {
  --bg: #ffffff;
  --ink: #1a1a1a;
  --muted: #666666;
  --soft: #f6f4f1;
  --line: #e8e2dc;
  --orange: #d86f22;
  --orange-dark: #b85c18;
  --max: 1080px;
  --nav-h: 58px;
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.08);
  --font-display: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(26, 26, 26, 0.08) 1px, transparent 0),
    var(--bg);
  background-size: 22px 22px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 6vw, 112px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.site-nav a:hover {
  color: var(--orange);
}

main {
  overflow: hidden;
}

.hero,
.manifesto,
.growth-section,
.split,
.token-section,
.agents,
.cohort,
.apply {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) clamp(22px, 5vw, 48px);
}

.hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
  padding-top: clamp(46px, 6vw, 82px);
  padding-bottom: 36px;
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  color: var(--muted);
  font-size: 18px;
}

.hero-line {
  max-width: 600px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-line span {
  color: var(--orange);
}

.founder-line {
  max-width: 610px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.04);
}

.button-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-card {
  display: grid;
  gap: 14px;
}

.hero-card div,
.agent-card,
.week-list div {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-card div {
  padding: 22px;
}

.hero-card span,
.agent-card span,
.week-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.hero-card strong,
.week-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-card p,
.week-list p,
.agent-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.manifesto {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  line-height: 1.7;
}

.manifesto h2 {
  max-width: 780px;
}

.manifesto p {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.growth-section {
  border-bottom: 1px solid var(--line);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.growth-grid article {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.growth-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.growth-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(38px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}

.copy-stack p {
  max-width: 680px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.token-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(36px, 6vw, 74px);
  align-items: end;
}

.token-copy p:not(.kicker) {
  max-width: 710px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.token-grid span {
  min-height: 118px;
  display: flex;
  align-items: end;
  padding: 16px;
  background: var(--ink);
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head p:not(.kicker) {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.agent-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.agent-card p {
  flex: 1;
}

.agent-card a {
  margin-top: 28px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
}

.cohort {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.week-list {
  display: grid;
  gap: 14px;
}

.week-list div {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px;
}

.filter {
  border-bottom: 1px solid var(--line);
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(38px, 7vw, 90px);
}

.apply-copy p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.concierge-panel {
  display: grid;
  gap: 14px;
}

.concierge-panel div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.concierge-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.concierge-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.concierge-panel p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.concierge-button {
  width: 100%;
}

.coming-soon-toast {
  position: fixed;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 40;
  width: min(360px, calc(100vw - 36px));
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--orange);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.coming-soon-toast.is-visible,
.coming-soon-toast:target {
  opacity: 1;
  transform: translateY(0);
}

.coming-soon-toast strong,
.coming-soon-toast span {
  display: block;
}

.coming-soon-toast strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
}

.coming-soon-toast span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(22px, 6vw, 112px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer a {
  color: var(--orange);
}

@media (max-width: 900px) {
  .hero,
  .manifesto,
  .growth-section,
  .split,
  .token-section,
  .apply {
    grid-template-columns: 1fr;
  }

  .week-list div {
    grid-template-columns: 64px minmax(0, 1fr);
  }

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

@media (max-width: 680px) {
  :root {
    --nav-h: 52px;
  }

  .site-nav {
    padding: 0 18px;
  }

  .site-nav nav {
    gap: 14px;
    font-size: 12px;
  }

  .brand {
    font-size: 13px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-line {
    font-size: 29px;
  }

  .cta-row,
  .agent-grid,
  .growth-grid,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .agent-grid,
  .token-grid {
    display: grid;
  }

  .week-list div {
    grid-template-columns: 1fr;
  }

  .week-list p {
    grid-column: auto;
  }

  .footer {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (max-width: 440px) {
  .site-nav nav {
    gap: 10px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .kicker,
  .section-label {
    font-size: 1rem;
  }
}
