:root {
  color-scheme: light;
  --ink: #15171f;
  --muted: #5f6877;
  --panel: #ffffff;
  --line: #d9e1e6;
  --soft: #eef5f1;
  --signal: #0b6f6a;
  --signal-dark: #084f4b;
  --gold: #f2b84b;
  --coral: #df6b53;
  --blue: #355c9c;
  --shadow: 0 24px 70px rgba(25, 30, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fbfcf9;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(21, 23, 31, 0.08);
  background: rgba(251, 252, 249, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 68px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 26vh;
  background: linear-gradient(180deg, rgba(251, 252, 249, 0), #edf4f0);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--signal-dark);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.eyebrow::before {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
  flex: 0 0 auto;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.support-lede {
  color: var(--ink);
  font-weight: 700;
}

.mobile-hero-lede,
.mobile-summary {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.primary {
  background: var(--signal);
  color: #ffffff;
}

.primary:hover,
.primary:focus-visible {
  background: var(--signal-dark);
}

.secondary {
  border-color: rgba(21, 23, 31, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero-art {
  position: relative;
  z-index: 1;
  height: min(620px, 68vh);
  min-height: 420px;
  border: 1px solid rgba(21, 23, 31, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 20%, rgba(242, 184, 75, 0.32), transparent 24%),
    radial-gradient(circle at 15% 74%, rgba(53, 92, 156, 0.18), transparent 28%),
    linear-gradient(135deg, #f9fbf6 0%, #dfe9e4 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.grid-plane {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 23, 31, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 31, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 86%, transparent);
  transform: perspective(700px) rotateX(58deg) translateY(62px) scale(1.4);
  transform-origin: 50% 100%;
}

.workbench {
  position: absolute;
  right: 9%;
  bottom: 12%;
  left: 9%;
  height: 38%;
  border-radius: 8px;
  background: linear-gradient(135deg, #25313a, #14181d);
  box-shadow: 0 24px 45px rgba(15, 22, 28, 0.35);
}

.workbench::before {
  position: absolute;
  top: -46px;
  left: 10%;
  width: 76%;
  height: 52px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  content: "";
}

.tool,
.spark {
  position: absolute;
  display: block;
}

.tool-one {
  top: 26%;
  left: 16%;
  width: 34%;
  height: 14px;
  border-radius: 999px;
  background: #e7eef1;
  transform: rotate(-18deg);
}

.tool-two {
  top: 50%;
  right: 18%;
  width: 22%;
  height: 18px;
  border-radius: 4px;
  background: var(--gold);
  transform: rotate(12deg);
}

.tool-three {
  bottom: 18%;
  left: 24%;
  width: 26%;
  height: 52px;
  border-radius: 6px;
  background: var(--blue);
}

.spark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(242, 184, 75, 0.18);
}

.spark-one {
  top: 18%;
  left: 24%;
}

.spark-two {
  top: 30%;
  right: 26%;
  background: var(--coral);
}

.spark-three {
  right: 18%;
  bottom: 34%;
  background: var(--signal);
}

.section {
  padding: clamp(56px, 8vw, 106px) clamp(18px, 5vw, 72px);
}

.intro,
.community,
.interest {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-heading {
  max-width: 850px;
}

.intro-copy,
.interest-copy,
.community ul {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
}

.stats article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  align-content: center;
  padding: clamp(26px, 4vw, 42px);
  background: #f3f7f2;
}

.stats strong {
  font-size: 1.45rem;
}

.stats span {
  color: var(--muted);
}

.facilities {
  background: #ffffff;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.facility-grid article {
  min-height: 270px;
  padding: 28px;
  background: #ffffff;
}

.facility-grid span {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--signal);
  font-weight: 800;
}

.facility-grid p {
  color: var(--muted);
}

.community {
  background: var(--soft);
}

.community ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community li {
  position: relative;
  padding-left: 28px;
}

.community li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.interest {
  background: var(--ink);
  color: #ffffff;
}

.interest .eyebrow {
  color: var(--gold);
}

.interest .eyebrow::before {
  background: var(--gold);
}

.interest-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.interest-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(242, 184, 75, 0.24);
}

.form-button {
  margin-top: 4px;
}

.form-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.form-message.success {
  color: #95e2c2;
}

.form-message.error {
  color: #ffb5a7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.95rem;
}

.conversion-page {
  padding-bottom: 0;
}

.conversion-header {
  gap: 18px;
}

.conversion-nav {
  align-items: center;
}

.nav-cta {
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--signal);
  color: #ffffff;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--signal-dark);
  color: #ffffff;
}

.contact-nav-cta {
  min-height: 42px;
  border: 1px solid rgba(21, 23, 31, 0.16);
  border-radius: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.contact-nav-cta:hover,
.contact-nav-cta:focus-visible {
  border-color: rgba(11, 111, 106, 0.36);
  background: #ffffff;
  color: var(--signal-dark);
}

.conversion-hero {
  display: grid;
  min-height: calc(100vh - 68px);
  grid-template-columns: minmax(0, 900px) minmax(420px, 600px);
  align-items: start;
  gap: clamp(28px, 3vw, 52px);
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(238, 245, 241, 0.82), rgba(251, 252, 249, 0.96)),
    linear-gradient(90deg, rgba(53, 92, 156, 0.08), rgba(242, 184, 75, 0.08));
}

.conversion-copy {
  max-width: 900px;
}

.conversion-copy h1 {
  max-width: 880px;
  font-size: clamp(2.85rem, 6vw, 5.35rem);
}

.hero-keywords {
  margin: 0.08em 0 0;
  padding-left: 0.6em;
  line-height: 0.96;
}

.hero-keywords li {
  margin: 0;
  padding-left: 0.08em;
}

.action-line {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 800;
}

.cta-reassurance,
.form-reassurance {
  margin: 14px 0 0;
  color: var(--signal-dark);
  font-weight: 800;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-points article {
  min-height: 160px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.proof-points strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.proof-points span {
  color: var(--muted);
}

.form-panel {
  scroll-margin-top: 92px;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(21, 23, 31, 0.12);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.form-panel .eyebrow {
  color: var(--gold);
}

.form-panel .eyebrow::before {
  background: var(--gold);
}

.form-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.form-panel p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.form-panel .form-reassurance {
  margin-bottom: 14px;
  color: #ffffff;
}

.founder-incentive {
  margin-top: -4px;
  font-weight: 800;
}

.conversion-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.conversion-form .form-button {
  min-height: 54px;
  background: var(--gold);
  color: var(--ink);
}

.conversion-form .form-button:hover,
.conversion-form .form-button:focus-visible {
  background: #ffd06e;
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
}

.conversion-strip article {
  min-height: 250px;
  padding: clamp(26px, 4vw, 42px);
  background: #ffffff;
}

.conversion-strip span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--signal);
  font-weight: 800;
}

.conversion-strip h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
}

.conversion-strip p {
  color: var(--muted);
}

.conversion-reassurance {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.reassurance-list {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.reassurance-list .button {
  justify-self: start;
  margin-top: 6px;
}

.conversion-details {
  padding-top: clamp(58px, 8vw, 96px);
}

.conversion-vision {
  background: #ffffff;
}

.final-cta {
  display: grid;
  gap: 12px;
  justify-items: start;
  background: var(--ink);
  color: #ffffff;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta .eyebrow::before {
  background: var(--gold);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #ffffff;
}

.contact-section h2 {
  max-width: 820px;
}

.contact-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.contact-copy .button {
  justify-self: start;
  color: var(--ink);
}

.dev-experiment .primary,
.dev-experiment .nav-cta,
.dev-experiment .mobile-sticky-cta {
  background: var(--gold);
  color: var(--ink);
}

.dev-experiment .primary:hover,
.dev-experiment .primary:focus-visible,
.dev-experiment .nav-cta:hover,
.dev-experiment .nav-cta:focus-visible,
.dev-experiment .mobile-sticky-cta:hover,
.dev-experiment .mobile-sticky-cta:focus-visible {
  background: #ffd06e;
  color: var(--ink);
}

.dev-experiment .nav-cta {
  border-color: transparent;
}

.dev-experiment .proof-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-visuals {
  background: #ffffff;
}

.workshop-visuals .section-heading {
  max-width: 980px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.visual-grid article {
  display: grid;
  gap: 16px;
  min-height: 390px;
  padding: 24px;
  background: #ffffff;
}

.visual-grid h3 {
  margin-bottom: 0;
}

.visual-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.activity-illustration {
  position: relative;
  min-height: 190px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(21, 23, 31, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 31, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #f8faf5, #e8f0ed);
  background-size: 28px 28px, 28px 28px, auto;
  overflow: hidden;
}

.activity-illustration::before {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  height: 18px;
  border-radius: 8px;
  background: #27313a;
  content: "";
}

.activity-illustration .figure {
  position: absolute;
  bottom: 40px;
  left: 30px;
  width: 52px;
  height: 82px;
  border-radius: 24px 24px 8px 8px;
  background: var(--blue);
}

.activity-illustration .figure::before {
  position: absolute;
  top: -28px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.activity-illustration .figure::after {
  position: absolute;
  top: 34px;
  right: -42px;
  width: 54px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: rotate(-14deg);
  transform-origin: left center;
}

.activity-illustration .bench {
  position: absolute;
  right: 28px;
  bottom: 58px;
  left: 96px;
  height: 44px;
  border-radius: 8px 8px 4px 4px;
  background: #f1f4f0;
  border: 1px solid rgba(21, 23, 31, 0.12);
}

.activity-illustration .detail {
  position: absolute;
  display: block;
}

.visual-soldering .bench {
  right: 34px;
  left: 112px;
  height: 58px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    var(--signal);
  background-size: 18px 18px;
}

.visual-soldering .detail-one {
  right: 126px;
  bottom: 118px;
  width: 84px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(-18deg);
}

.visual-soldering .detail-one::after {
  position: absolute;
  right: -14px;
  top: 3px;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.visual-soldering .detail-two {
  right: 108px;
  bottom: 104px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 8px rgba(242, 184, 75, 0.28),
    32px -6px 0 -2px var(--gold),
    58px 8px 0 -3px #ffffff;
}

.visual-laser .bench {
  right: 34px;
  left: 106px;
  height: 68px;
  border: 8px solid #27313a;
  background: linear-gradient(135deg, rgba(223, 107, 83, 0.16), rgba(242, 184, 75, 0.2));
}

.visual-laser .detail-one {
  right: 74px;
  bottom: 92px;
  width: 74px;
  height: 3px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(223, 107, 83, 0.14);
}

.visual-laser .detail-two {
  right: 64px;
  bottom: 75px;
  width: 86px;
  height: 18px;
  border-radius: 3px;
  background: var(--gold);
}

.visual-woodwork .bench {
  right: 28px;
  left: 102px;
  height: 50px;
  background: linear-gradient(90deg, #d9a45f, #f2c27d);
}

.visual-woodwork .bench::after {
  position: absolute;
  inset: 13px 16px auto;
  height: 3px;
  border-radius: 999px;
  background: rgba(21, 23, 31, 0.18);
  box-shadow: 0 11px 0 rgba(21, 23, 31, 0.12);
  content: "";
}

.visual-woodwork .detail-one {
  right: 58px;
  bottom: 112px;
  width: 128px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c9893e, #f0b966);
  transform: rotate(-7deg);
}

.visual-woodwork .detail-one::after {
  position: absolute;
  inset: 6px 12px auto;
  height: 3px;
  border-radius: 999px;
  background: rgba(21, 23, 31, 0.18);
  content: "";
}

.visual-woodwork .detail-two {
  right: 134px;
  bottom: 136px;
  width: 74px;
  height: 11px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(28deg);
}

.visual-woodwork .detail-two::after {
  position: absolute;
  right: -18px;
  top: -10px;
  width: 30px;
  height: 20px;
  border-radius: 4px;
  background: var(--blue);
  content: "";
}

.visual-cad .bench {
  right: 36px;
  left: 112px;
  height: 76px;
  background: #25313a;
}

.visual-cad .detail-one {
  right: 54px;
  bottom: 82px;
  width: 96px;
  height: 54px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    var(--blue);
  background-size: 14px 14px;
}

.visual-cad .detail-two {
  right: 166px;
  bottom: 70px;
  width: 42px;
  height: 58px;
  border-radius: 6px 6px 10px 10px;
  background: var(--gold);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1000px) {
  .hero,
  .intro,
  .community,
  .interest,
  .conversion-hero,
  .conversion-reassurance,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .form-panel {
    max-width: 720px;
  }

  .hero-art {
    order: -1;
    height: 44vh;
    min-height: 320px;
  }

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

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

@media (max-width: 720px) {
  .conversion-page {
    padding-bottom: 76px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .conversion-header {
    position: sticky;
    top: 0;
    align-items: center;
    flex-direction: row;
  }

  .conversion-header .brand span:last-child {
    display: none;
  }

  .conversion-nav a:not(.nav-cta) {
    display: none;
  }

  .conversion-nav {
    width: auto;
  }

  .nav-cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
    line-height: 1;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .conversion-hero {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .conversion-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.08rem, 9.7vw, 3rem);
  }

  .conversion-copy .hero-lede {
    display: block;
    margin-bottom: 14px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .conversion-actions {
    display: none;
  }

  .conversion-actions .secondary {
    display: none;
  }

  .action-line {
    margin-top: 0;
    font-size: 1.08rem;
  }

  .proof-points {
    display: none;
  }

  .proof-points article {
    min-height: auto;
    padding: 20px;
  }

  .form-panel {
    scroll-margin-top: 82px;
    margin-top: 2px;
    padding: 18px;
  }

  .form-panel h2 {
    font-size: 1.65rem;
  }

  .form-panel > p:not(.form-reassurance) {
    display: none;
  }

  .form-panel .form-reassurance {
    margin-top: 0;
  }

  .conversion-form {
    gap: 12px;
  }

  .conversion-form .field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .conversion-form label {
    gap: 6px;
    font-size: 0.92rem;
  }

  .conversion-form input {
    min-height: 44px;
    padding: 10px 12px;
  }

  .hero-art,
  body:not(.conversion-page) .hero-lede,
  .desktop-detail,
  .hero-actions .secondary {
    display: none;
  }

  .mobile-hero-lede {
    display: block;
    color: var(--muted);
    font-size: 1.08rem;
  }

  .eyebrow {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .eyebrow::before {
    width: 28px;
  }

  .mobile-summary {
    display: grid;
    gap: 18px;
    padding: 0 18px 38px;
    color: var(--muted);
    font-size: 1rem;
  }

  .mobile-summary p {
    margin-bottom: 0;
  }

  .mobile-summary ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-summary li {
    position: relative;
    padding-left: 24px;
  }

  .mobile-summary li::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 10px;
    height: 2px;
    background: var(--coral);
    content: "";
  }

  .interest {
    padding-top: 42px;
  }

  .interest h2 {
    font-size: 2rem;
  }

  .stats,
  .facility-grid,
  .field-row,
  .conversion-strip,
  .visual-grid,
  .dev-experiment .proof-points {
    grid-template-columns: 1fr;
  }

  .conversion-strip article {
    min-height: auto;
  }

  .stats article,
  .facility-grid article,
  .visual-grid article {
    min-height: auto;
  }

  .facility-grid span {
    margin-bottom: 28px;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 8px;
    padding: 12px 16px;
    background: var(--signal);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(21, 23, 31, 0.26);
    font-weight: 800;
  }

  .mobile-sticky-cta span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
  }
}
