:root {
  --ink: #181a17;
  --ink-soft: #242720;
  --paper: #f4f2ec;
  --surface: #fcfcf8;
  --line: rgba(24, 26, 23, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --muted: #6e7269;
  --lime: #dfff61;
  --lime-deep: #b7d932;
  --purple: #a495e7;
  --purple-dark: #2d2241;
  --orange: #ff9d66;
  --green: #4f7659;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: inherit;
  font-family: "Sora", sans-serif;
}

button,
input,
select {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

[hidden] {
  display: none !important;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 56px, 1440px);
  min-height: 88px;
  color: var(--surface);
  border-bottom: 1px solid var(--line-dark);
  transform: translateX(-50%);
}

.brand-wordmark {
  width: max-content;
  font-size: 1.18rem;
  font-weight: 750;
  letter-spacing: -0.055em;
}

.brand-wordmark span {
  color: var(--lime);
}

.launch-status {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.launch-status i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(223, 255, 97, 0.12);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.header-link {
  justify-self: end;
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.header-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.header-link:hover .header-arrow,
.header-link:focus-visible .header-arrow {
  transform: rotate(-12deg) scale(1.06);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.campaign-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 52.55vw, 950px);
  overflow: hidden;
  color: var(--surface);
  background: #09080d;
}

.campaign-hero::before,
.campaign-hero::after {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.campaign-hero::before {
  top: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(8, 7, 12, 0.58), transparent);
}

.campaign-hero::after {
  bottom: 0;
  height: 31%;
  background: linear-gradient(0deg, rgba(8, 7, 12, 0.62), transparent);
}

.campaign-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
}

.campaign-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-reveal 1.25s cubic-bezier(.22, .86, .32, 1) both;
}

.hero-actions {
  position: absolute;
  z-index: 4;
  bottom: clamp(24px, 3.2vw, 48px);
  left: 50%;
  display: flex;
  gap: 7px;
  width: max-content;
  padding: 7px;
  background: rgba(11, 10, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: hero-actions-in 760ms 300ms cubic-bezier(.22, .86, .32, 1) both;
}

.hero-cta {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  min-height: 52px;
  padding: 0 9px 0 20px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-cta i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  transition: transform 180ms ease;
}

.hero-cta-primary {
  color: var(--ink);
  background: var(--lime);
}

.hero-cta-primary i {
  color: var(--surface);
  background: var(--ink);
}

.hero-cta-secondary {
  color: var(--surface);
}

.hero-cta-secondary i {
  color: var(--ink);
  background: var(--surface);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
}

.hero-cta:hover i,
.hero-cta:focus-visible i {
  transform: rotate(-10deg) scale(1.04);
}

.hero-cta:focus-visible {
  outline: 3px solid var(--surface);
  outline-offset: 3px;
}

.waitlist-kicker,
.mini-label,
.section-index {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.waitlist-card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.waitlist-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  content: "";
  background: var(--purple);
  border-radius: 0 0 0 88px;
  opacity: 0.34;
}

.waitlist-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.mini-label {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 700;
}

.waitlist-heading h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.step-indicator {
  display: flex;
  align-items: baseline;
  min-width: 62px;
  padding-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.step-indicator strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.progress-track {
  height: 3px;
  margin: 22px 0 25px;
  overflow: hidden;
  background: rgba(24, 26, 23, 0.1);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  transition: width 380ms cubic-bezier(.22, .86, .32, 1);
}

.form-step {
  animation: step-in 380ms cubic-bezier(.22, .86, .32, 1) both;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin: 0 0 19px;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.step-note {
  margin: -10px 0 20px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

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

.field {
  display: block;
  min-width: 0;
}

.field > span:first-child {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 53px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--surface);
  outline: 1px solid rgba(24, 26, 23, 0.15);
  border-radius: 13px;
  font-size: 0.82rem;
  transition: box-shadow 180ms ease, outline-color 180ms ease, background 180ms ease;
}

.field input::placeholder {
  color: #989b94;
}

.field input:focus,
.field select:focus {
  background: #fff;
  outline-color: var(--green);
  box-shadow: 0 0 0 4px rgba(79, 118, 89, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.phone-field.is-invalid {
  outline-color: #b84232;
}

.field small,
.consent-error {
  display: block;
  min-height: 16px;
  padding-top: 5px;
  color: #a33327;
  font-size: 0.59rem;
  line-height: 1.3;
}

.phone-field {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  overflow: hidden;
  background: var(--surface);
  outline: 1px solid rgba(24, 26, 23, 0.15);
  border-radius: 13px;
  transition: box-shadow 180ms ease, outline-color 180ms ease;
}

.phone-field:focus-within {
  background: #fff;
  outline-color: var(--green);
  box-shadow: 0 0 0 4px rgba(79, 118, 89, 0.12);
}

.phone-field select,
.phone-field input {
  min-width: 0;
  background: transparent;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
}

.phone-field select:focus,
.phone-field input:focus {
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.phone-field select {
  padding-right: 4px;
  border-right: 1px solid rgba(24, 26, 23, 0.12);
  font-size: 0.69rem;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.64rem;
  line-height: 1.5;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.button-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.primary-button {
  gap: 20px;
  margin-top: 7px;
  padding: 0 9px 0 20px;
  color: var(--surface);
  background: var(--ink);
}

.primary-button i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-style: normal;
}

.secondary-button {
  margin-top: 7px;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  outline: 1px solid var(--line);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #a33327;
  font-size: 0.63rem;
}

.privacy-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.59rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.success-state {
  padding: 10px 0 5px;
  animation: step-in 420ms cubic-bezier(.22, .86, .32, 1) both;
  outline: none;
}

.success-mark {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 19px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
}

.success-state h3 {
  margin: 4px 0 9px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.success-state > p:not(.mini-label) {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.success-state a {
  display: inline-flex;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}

.waitlist-section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) max(28px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(164, 149, 231, 0.22), transparent 27%),
    radial-gradient(circle at 90% 82%, rgba(223, 255, 97, 0.2), transparent 24%),
    var(--paper);
}

.waitlist-section::before {
  position: absolute;
  top: -210px;
  right: -120px;
  width: 440px;
  height: 440px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(24, 26, 23, 0.09);
  border-radius: 50%;
}

.waitlist-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(580px, 1.28fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.waitlist-intro {
  max-width: 520px;
}

.waitlist-kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 26px;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
}

.waitlist-kicker span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--purple);
  border-radius: 50%;
  font-size: 0.62rem;
}

.waitlist-intro h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.3vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.waitlist-intro > p:not(.waitlist-kicker) {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.waitlist-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.waitlist-notes span {
  padding: 9px 12px;
  color: var(--ink-soft);
  background: rgba(252, 252, 248, 0.68);
  border: 1px solid rgba(24, 26, 23, 0.11);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
}

.waitlist-section .waitlist-card {
  width: 100%;
  max-width: 760px;
  justify-self: end;
  background: rgba(252, 252, 248, 0.92);
  border: 1px solid rgba(24, 26, 23, 0.1);
  box-shadow: 0 36px 100px rgba(42, 35, 56, 0.16);
  backdrop-filter: blur(18px);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(.22, .86, .32, 1) var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(.22, .86, .32, 1) var(--reveal-delay, 0ms);
}

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

.machine-strip,
.learn-section,
.closing-cta,
.site-footer {
  padding-right: max(28px, calc((100vw - 1440px) / 2));
  padding-left: max(28px, calc((100vw - 1440px) / 2));
}

.machine-strip {
  display: grid;
  grid-template-columns: 160px minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(30px, 4vw, 72px);
  padding-top: 96px;
  padding-bottom: 104px;
  background: var(--paper);
}

.section-index {
  align-self: start;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 650;
}

.section-index span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  place-items: center;
  color: var(--ink);
  background: var(--purple);
  border-radius: 50%;
}

.section-index p {
  margin: 0;
}

.machine-copy h2,
.learn-heading h2,
.closing-cta h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.machine-copy h2 {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

.machine-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.machine-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.machine-steps li {
  min-height: 190px;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.machine-steps span {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 700;
}

.machine-steps strong {
  display: block;
  margin-top: 28px;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.machine-steps p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.learn-section {
  padding-top: 105px;
  padding-bottom: 122px;
  color: var(--surface);
  background: var(--ink);
}

.learn-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(30px, 4vw, 72px);
  margin-bottom: 54px;
}

.learn-heading .section-index {
  color: rgba(255, 255, 255, 0.52);
}

.learn-heading .section-index span {
  background: var(--lime);
}

.learn-heading h2 {
  max-width: 840px;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
}

.learn-heading > div:last-child > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 18px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
}

.article-cover {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  overflow: hidden;
}

.article-featured .article-cover {
  min-height: 400px;
}

.cover-lime {
  background: var(--lime);
}

.cover-purple {
  background: var(--purple);
}

.cover-orange {
  background: var(--orange);
}

.cover-kicker {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 6px 9px;
  border: 1px solid rgba(24, 26, 23, 0.25);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-cover > strong {
  position: relative;
  z-index: 2;
  max-width: 90%;
  font-size: clamp(2.2rem, 3vw, 4rem);
  font-weight: 550;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.article-cover > i {
  position: absolute;
  right: -22%;
  bottom: -33%;
  width: 78%;
  aspect-ratio: 1;
  border: 2px solid rgba(24, 26, 23, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(24, 26, 23, 0.08), 0 0 0 72px rgba(24, 26, 23, 0.05);
}

.signal-map {
  position: absolute;
  right: -8px;
  bottom: 8px;
  width: 180px;
  height: 150px;
  transform: rotate(-8deg);
}

.signal-map::before,
.signal-map::after {
  position: absolute;
  content: "";
  background: rgba(24, 26, 23, 0.48);
  transform-origin: left center;
}

.signal-map::before {
  top: 48%;
  left: 15%;
  width: 74%;
  height: 1px;
  transform: rotate(18deg);
}

.signal-map::after {
  top: 70%;
  left: 20%;
  width: 62%;
  height: 1px;
  transform: rotate(-34deg);
}

.signal-map i {
  position: absolute;
  width: 25px;
  height: 25px;
  background: var(--ink);
  border: 5px solid rgba(244, 242, 236, 0.72);
  border-radius: 50%;
}

.signal-map i:nth-child(1) { top: 10%; left: 15%; }
.signal-map i:nth-child(2) { top: 18%; right: 8%; }
.signal-map i:nth-child(3) { top: 56%; left: 42%; }
.signal-map i:nth-child(4) { bottom: 1%; left: 4%; }
.signal-map i:nth-child(5) { right: 3%; bottom: 8%; }

.paper-stack {
  position: absolute;
  right: 24px;
  bottom: 30px;
  width: 125px;
  height: 105px;
}

.paper-stack i {
  position: absolute;
  inset: 0;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 5px;
  box-shadow: 6px 6px 0 rgba(24, 26, 23, 0.13);
}

.paper-stack i:nth-child(1) { transform: translate(-18px, 14px) rotate(-9deg); }
.paper-stack i:nth-child(2) { transform: translate(-8px, 7px) rotate(-3deg); }
.paper-stack i:nth-child(3) { transform: rotate(4deg); }

.paper-stack i:nth-child(3)::before,
.paper-stack i:nth-child(3)::after {
  position: absolute;
  left: 17px;
  width: 65%;
  height: 4px;
  content: "";
  background: var(--ink);
  border-radius: 999px;
}

.paper-stack i:nth-child(3)::before { top: 28px; }
.paper-stack i:nth-child(3)::after { top: 45px; width: 44%; }

.article-copy {
  display: flex;
  min-height: 280px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.article-meta {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.59rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.article-copy h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.article-copy h3 a:hover,
.article-copy h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--lime-deep);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.article-copy > p:not(.article-meta) {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.read-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 700;
}

.read-link span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--surface);
  background: var(--ink);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.read-link:hover span,
.read-link:focus-visible span {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(8deg);
}

.closing-cta {
  padding-top: 112px;
  padding-bottom: 120px;
  text-align: center;
  background: var(--lime);
}

.closing-cta > p {
  margin: 0 0 22px;
  font-size: 0.7rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.closing-cta h2 {
  font-size: clamp(3rem, 7vw, 7.4rem);
}

.closing-cta h2 em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

.closing-cta > a {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
  padding: 9px 10px 9px 23px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 650;
}

.closing-cta > a span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border-radius: 50%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr auto;
  gap: 30px;
  align-items: start;
  padding-top: 50px;
  padding-bottom: 50px;
  color: var(--surface);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer > p,
.site-footer > span,
.site-footer > div {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  line-height: 1.7;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
}

.site-footer > div a:hover,
.site-footer > div a:focus-visible {
  color: var(--lime);
}

.site-footer > span {
  text-align: right;
}

/* Standalone field-note pages */
.article-page {
  color: var(--ink);
  background: var(--paper);
}

.article-header,
.article-site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid var(--line);
}

.article-header .brand-wordmark,
.article-site-header .brand-wordmark {
  color: var(--ink);
}

.article-header > a:last-child,
.article-site-header > a:last-child {
  font-size: 0.7rem;
  font-weight: 650;
}

.article-header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: var(--lime);
  border-radius: 999px;
}

.article-hero,
.article-body,
.article-related,
.article-footer {
  padding-right: max(24px, calc((100vw - 1160px) / 2));
  padding-left: max(24px, calc((100vw - 1160px) / 2));
}

.article-breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 28px max(24px, calc((100vw - 1160px) / 2)) 0;
  color: var(--muted);
  font-size: 0.65rem;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
  color: var(--green);
}

.article-hero {
  padding-top: 88px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
}

.article-kicker,
.article-byline {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-hero h1 {
  max-width: 1040px;
  margin: 24px 0;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.article-deck {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: var(--muted);
}

.article-body {
  display: grid;
  grid-template-columns: 180px minmax(0, 700px);
  gap: 64px;
  justify-content: center;
  padding-top: 76px;
  padding-bottom: 94px;
}

.article-toc {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-toc p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.article-content {
  min-width: 0;
  font-size: 0.94rem;
  line-height: 1.85;
}

.article-shell > .article-content {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  padding-top: 76px;
  padding-bottom: 94px;
}

.article-lead {
  margin-top: 0;
  color: var(--ink) !important;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.75;
}

.article-content h2 {
  margin: 54px 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.article-content h3 {
  margin: 36px 0 12px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.article-content p,
.article-content li {
  color: #3e423b;
}

.article-content li + li {
  margin-top: 8px;
}

.article-callout,
.article-content blockquote {
  margin: 36px 0;
  padding: 24px;
  color: var(--ink);
  background: #ecf7ba;
  border: 1px solid var(--lime-deep);
  border-radius: 16px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
}

.article-callout p {
  margin: 0;
  color: inherit;
}

.article-callout-label {
  margin-bottom: 8px !important;
  color: var(--green) !important;
  font-size: 0.6rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-related {
  padding-top: 74px;
  padding-bottom: 82px;
  color: var(--surface);
  background: var(--ink);
}

.article-related h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

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

.article-related-grid a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 550;
}

.article-related-grid a:hover,
.article-related-grid a:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.article-footer {
  display: block;
  padding-top: 72px;
  padding-bottom: 54px;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.66rem;
}

.article-next-label {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

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

.article-next-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.article-next-card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-next-card strong {
  max-width: 390px;
  font-size: 1.15rem;
  font-weight: 550;
  letter-spacing: -0.035em;
}

.article-next-card:hover,
.article-next-card:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-3px);
}

.article-next-card:hover span,
.article-next-card:focus-visible span {
  color: var(--green);
}

.article-back-link {
  display: inline-block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.55);
}

.article-back-link:hover,
.article-back-link:focus-visible {
  color: var(--lime);
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(223, 255, 97, 0.1); }
  50% { box-shadow: 0 0 0 9px rgba(223, 255, 97, 0.02); }
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-reveal {
  from { opacity: 0.45; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-actions-in {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes hero-actions-in-mobile {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .waitlist-shell {
    grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(34px, 5vw, 70px);
  }

  .machine-strip {
    grid-template-columns: 120px 1fr;
  }

  .machine-steps {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .launch-status {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .waitlist-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .waitlist-intro {
    max-width: 680px;
  }

  .waitlist-section .waitlist-card {
    max-width: 760px;
    justify-self: start;
  }

  .machine-strip {
    grid-template-columns: 1fr;
  }

  .machine-steps {
    grid-column: auto;
  }

  .learn-heading {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-featured {
    grid-column: 1 / -1;
  }

  .article-featured .article-cover {
    min-height: 340px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > span {
    text-align: left;
  }

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

  .article-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 30px);
    min-height: 72px;
  }

  .header-link {
    gap: 8px;
    font-size: 0.66rem;
  }

  .header-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }

  .campaign-hero {
    min-height: max(620px, 150vw);
  }

  .campaign-hero::before {
    height: 120px;
  }

  .campaign-hero::after {
    height: 36%;
  }

  .hero-actions {
    right: 15px;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: auto;
    padding: 6px;
    transform: none;
    animation-name: hero-actions-in-mobile;
  }

  .hero-cta {
    justify-content: space-between;
    gap: 6px;
    min-width: 0;
    min-height: 48px;
    padding: 0 6px 0 13px;
    font-size: 0.62rem;
  }

  .hero-cta i {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .waitlist-section {
    padding: 72px 20px 78px;
  }

  .waitlist-shell {
    gap: 36px;
  }

  .waitlist-intro h2 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .waitlist-intro > p:not(.waitlist-kicker) {
    margin-top: 22px;
    font-size: 0.82rem;
  }

  .waitlist-notes {
    margin-top: 24px;
  }

  .waitlist-card {
    padding: 21px 17px;
    border-radius: 22px;
  }

  .waitlist-card::before {
    width: 62px;
    height: 62px;
  }

  .waitlist-heading h3 {
    max-width: 210px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .primary-button {
    width: 100%;
  }

  .button-row .primary-button {
    width: auto;
    flex: 1;
  }

  .machine-strip,
  .learn-section,
  .closing-cta,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .machine-strip {
    gap: 28px;
    padding-top: 70px;
    padding-bottom: 76px;
  }

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

  .machine-steps li {
    min-height: 150px;
  }

  .learn-section {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .learn-heading {
    gap: 24px;
    margin-bottom: 34px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-featured {
    grid-column: auto;
  }

  .article-cover,
  .article-featured .article-cover {
    min-height: 300px;
  }

  .article-copy {
    min-height: 250px;
  }

  .closing-cta {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .closing-cta h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .closing-cta h2 em {
    -webkit-text-stroke-width: 1px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .article-header,
  .article-site-header,
  .article-hero,
  .article-body,
  .article-related,
  .article-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .article-header {
    min-height: 68px;
  }

  .article-site-header {
    min-height: 68px;
  }

  .article-hero {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .article-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .article-body {
    gap: 34px;
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-footer {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .article-next-grid {
    grid-template-columns: 1fr;
  }
}

@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;
  }

  .campaign-media img,
  .hero-actions {
    animation: none !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
