:root {
  --ink: #111512;
  --muted: #5f675f;
  --soft: #f7f8f4;
  --paper: #ffffff;
  --line: rgba(17, 21, 18, 0.13);
  --sage: #cce4ca;
  --mint: #e5f2df;
  --coral: #efb7a7;
  --blue: #c9d7ef;
  --gold: #d9c176;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(28, 34, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(247, 248, 244, 0.78);
  border-bottom: 1px solid rgba(17, 21, 18, 0.08);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 18px clamp(20px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-name,
.footer-brand span:last-child {
  font-size: 18px;
  font-weight: 700;
}

.logo-slot {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(17, 21, 18, 0.14);
  border-radius: 8px;
  display: inline-block;
  height: 30px;
  width: 30px;
}

.logo-slot.large {
  height: 48px;
  width: 48px;
}

.logo-slot.small {
  height: 24px;
  width: 24px;
}

.top-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.language-switch {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 21, 18, 0.11);
  border-radius: 999px;
  display: flex;
  padding: 3px;
}

.language-button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  min-width: 42px;
  padding: 8px 10px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.language-button.is-active {
  background: var(--ink);
  color: #fff;
}

.nav-apply,
.secondary-link,
.founder-cta {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 3px;
}

.hero {
  min-height: 92svh;
  padding: 104px clamp(20px, 5vw, 64px) 44px;
  position: relative;
}

.hero-canvas,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-canvas {
  height: 100%;
  width: 100%;
  z-index: 0;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.94) 0%, rgba(247, 248, 244, 0.72) 48%, rgba(247, 248, 244, 0.46) 100%),
    linear-gradient(180deg, rgba(247, 248, 244, 0.72) 0%, rgba(247, 248, 244, 0) 62%, rgba(247, 248, 244, 0.92) 100%);
  z-index: 1;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(92svh - 148px);
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 660px;
  padding-top: 12px;
}

.eyebrow {
  color: rgba(17, 21, 18, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(72px, 12vw, 154px);
  line-height: 0.86;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-lede {
  color: #2f372f;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.22;
  max-width: 720px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 30px;
}

.primary-cta,
.submit-button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.primary-cta:hover,
.submit-button:hover {
  background: #263026;
  box-shadow: 0 14px 30px rgba(17, 21, 18, 0.18);
  transform: translateY(-2px);
}

.quiet-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiet-points span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 21, 18, 0.09);
  border-radius: 999px;
  color: #3e473f;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 13px;
}

.waitlist-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 30px);
  position: relative;
}

.waitlist-panel::before {
  background: linear-gradient(90deg, var(--sage), var(--coral), var(--blue));
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 16px;
}

.panel-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-top: 14px;
}

.panel-kicker,
.panel-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-status {
  background: var(--mint);
  border-radius: 999px;
  color: #314431;
  padding: 7px 10px;
}

.waitlist-panel h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 12px;
}

.form-intro {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: #353d35;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  appearance: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 21, 18, 0.14);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  transition:
    border 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
  width: 100%;
}

select {
  background-image:
    linear-gradient(45deg, transparent 50%, #313a32 50%),
    linear-gradient(135deg, #313a32 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: rgba(17, 21, 18, 0.36);
  box-shadow: 0 0 0 4px rgba(204, 228, 202, 0.74);
}

.submit-button {
  border-radius: 8px;
  min-height: 54px;
  width: 100%;
}

.privacy-note,
.form-message {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.form-message {
  color: #226436;
  font-weight: 800;
  min-height: 18px;
}

.overview-strip {
  background: #111512;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(20px, 5vw, 64px);
  max-width: 1180px;
  transform: translateY(-22px);
}

.overview-strip > div {
  background: rgba(255, 255, 255, 0.06);
  min-height: 148px;
  padding: 26px;
}

.strip-number {
  color: var(--gold);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.overview-strip p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  margin: 0;
  max-width: 330px;
}

.content-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(68px, 10vw, 120px) clamp(20px, 5vw, 0px);
}

.heritage-section {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 6vw, 84px);
  grid-template-columns: 0.72fr 1.28fr;
  padding-bottom: clamp(56px, 8vw, 96px);
  padding-top: clamp(58px, 8vw, 96px);
}

.heritage-label {
  align-items: center;
  display: flex;
  gap: 18px;
}

.heritage-label span {
  background: linear-gradient(180deg, var(--sage), var(--coral));
  border-radius: 999px;
  display: inline-block;
  height: 78px;
  width: 8px;
}

.heritage-label .eyebrow {
  margin: 0;
}

.heritage-copy {
  max-width: 760px;
}

.heritage-copy h2 {
  margin-bottom: 18px;
}

.heritage-copy p {
  color: #3f493f;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.36;
  margin: 0;
}

.direction-section {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: 0.86fr 1.14fr;
}

.section-heading h2 {
  max-width: 520px;
}

.direction-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.direction-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 21, 18, 0.1);
  border-radius: 8px;
  min-height: 260px;
  padding: 26px;
}

.direction-item p,
.preview-copy p,
.founder-section p {
  color: var(--muted);
  line-height: 1.6;
}

.item-line {
  background: linear-gradient(90deg, var(--sage), var(--coral));
  display: block;
  height: 4px;
  margin-bottom: 46px;
  width: 54px;
}

.preview-section {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: 0.88fr 1.12fr;
  padding-top: clamp(56px, 8vw, 96px);
}

.preview-copy {
  max-width: 480px;
}

.timeline {
  border-left: 1px solid rgba(17, 21, 18, 0.16);
  display: grid;
  gap: 24px;
  padding-left: 30px;
}

.timeline-step {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 46px 1fr;
}

.timeline-step span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.timeline-step p {
  border-bottom: 1px solid var(--line);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.18;
  margin: 0;
  padding: 22px 0;
}

.founder-section {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid rgba(17, 21, 18, 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  margin: 0 clamp(20px, 5vw, 64px) 56px;
  padding: clamp(28px, 5vw, 46px);
}

.founder-section h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 10px;
}

.founder-section p {
  margin: 0;
  max-width: 650px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 30px clamp(20px, 5vw, 64px) 42px;
}

.site-footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .hero-inner,
  .heritage-section,
  .direction-section,
  .preview-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .waitlist-panel {
    max-width: 620px;
  }

  .overview-strip,
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .overview-strip {
    transform: none;
  }

  .direction-item {
    min-height: auto;
  }

  .founder-section {
    align-items: start;
    grid-template-columns: auto 1fr;
  }

  .founder-cta {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 14px 16px;
  }

  .brand-name {
    font-size: 17px;
  }

  .logo-slot {
    height: 28px;
    width: 28px;
  }

  .nav-apply {
    display: none;
  }

  .language-button {
    min-width: 38px;
    padding: 8px 9px;
  }

  .hero {
    padding: 90px 16px 34px;
  }

  h1 {
    font-size: clamp(64px, 22vw, 96px);
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 24px;
  }

  .primary-cta {
    width: 100%;
  }

  .secondary-link {
    align-self: center;
  }

  .waitlist-panel {
    padding: 22px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .overview-strip {
    margin: 0 16px;
  }

  .overview-strip > div {
    min-height: 122px;
    padding: 22px;
  }

  .content-section {
    padding: 64px 16px;
  }

  .heritage-section {
    gap: 22px;
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .heritage-label span {
    height: 46px;
  }

  .direction-grid {
    gap: 12px;
  }

  .direction-item {
    padding: 22px;
  }

  .item-line {
    margin-bottom: 28px;
  }

  .timeline {
    padding-left: 16px;
  }

  .timeline-step {
    gap: 12px;
    grid-template-columns: 38px 1fr;
  }

  .timeline-step span {
    height: 38px;
    width: 38px;
  }

  .founder-section {
    grid-template-columns: 1fr;
    margin: 0 16px 34px;
    padding: 24px;
  }

  .founder-cta {
    grid-column: auto;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 14px;
    padding: 26px 16px 34px;
  }
}

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