:root {
  --ink: #111318;
  --muted: #5c6470;
  --line: #dfe4eb;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --accent: #f37021;
  --accent-2: #21b6c8;
  --green: #187a53;
  --warning: #b45309;
  --shadow: 0 22px 70px rgba(15, 21, 31, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 9%, rgba(243, 112, 33, .18), transparent 32%),
    radial-gradient(circle at 86% 28%, rgba(33, 182, 200, .16), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #edf2f8 100%);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.page-shell {
  width: 96%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.hero-section {
  /* min-height: calc(100vh - 48px); */
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 470px);
  gap: 28px;
  align-items: stretch;
}

.yield-banner {
  display: inline-grid;
  gap: 4px;
  margin: 8px 0 18px;
  padding: 16px 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 153, 0, 0.12) 0%, rgba(255, 214, 153, 0.18) 100%),
    var(--surface-strong);
  border: 1px solid rgba(255, 153, 0, 0.18);
  box-shadow: 0 18px 44px rgba(255, 153, 0, 0.12);
}

.yield-label,
.yield-note {
  display: block;
}

.yield-label {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.yield-banner strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.yield-note {
  color: var(--muted);
  font-size: 0.85rem;
}
.hero-copy,
.form-panel,
.visual-band,
.info-card,
.steps-section article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  overflow: hidden;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -88px;
  top: -78px;
  border: 1px solid rgba(17, 19, 24, .08);
  border-radius: 50%;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #222832;
  font-weight: 800;
}

.brand-row p {
  margin: 0;
}

.brand-logo {
  width: 258px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-row p {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-left: 1px solid rgba(17, 19, 24, .18);
  color: #424955;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow,
.mini-tag {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: #9a551d;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(40px, 6.2vw, 70px);
  line-height: .97;
}

.hero-subtitle {
  max-width: 940px;
  margin: 18px 0 0;
  color: #19202b;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
}

.hero-text {
  max-width: 880px;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.hero-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 12px;
  /* align-items: end; */
}

.hero-title-copy {
  min-width: 0;
}

.hero-image-slot {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #10141c;
  box-shadow: 0 18px 42px rgba(15, 21, 31, .16);
}

.hero-image-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 19, 24, .02), rgba(17, 19, 24, .26)),
    linear-gradient(90deg, rgba(17, 19, 24, .24), transparent 58%);
  pointer-events: none;
}

.hero-side-image {
  width: 122%;
  max-width: none;
  max-height: 430px;
  margin-right: -10%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.btn-primary,
.btn-main,
.sticky-cta {
  border: 0;
  border-radius: 8px;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 800;
  color: #fff;
  background: #111318;
  box-shadow: 0 13px 30px rgba(17, 19, 24, .18);
}

.btn-primary:hover,
.btn-main:hover,
.sticky-cta:hover {
  transform: translateY(-1px);
}

.text-link {
  color: #2d5662;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(33, 182, 200, .38);
}

.fact-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.fact-strip article {
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.fact-strip strong,
.fact-strip span {
  display: block;
}

.fact-strip strong {
  margin-bottom: 8px;
  font-size: 16px;
}

.fact-strip span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.notice-box {
  margin-top: 14px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(243, 112, 33, .35);
  background: rgba(243, 112, 33, .08);
  color: #3d2a1c;
}

.notice-box span {
  color: #654c39;
  line-height: 1.45;
}

.form-panel {
  padding: 22px;
  /* align-self: center; */
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.panel-head p:not(.mini-tag) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

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

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

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

.field label {
  font-size: 13px;
  color: #343b46;
  font-weight: 800;
}

.field input {
  width: 100%;
  height: 48px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, .12);
}

.btn-main {
  width: 100%;
  margin-top: 4px;
}

.btn-muted {
  background: #77808d;
  box-shadow: none;
}

.btn-warning {
  background: var(--warning);
  box-shadow: none;
}

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

.visual-band {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(320px, .8fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(17,19,24,.96), rgba(39,45,54,.93)),
    #111318;
  color: #fff;
  overflow: hidden;
}

.launch-visual {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
  background: #06080d;
}

.launch-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.launch-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 13, .68), rgba(6, 8, 13, .08) 52%, rgba(6, 8, 13, .34)),
    linear-gradient(0deg, rgba(6, 8, 13, .44), transparent 45%);
  pointer-events: none;
}

.photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  color: #111318;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.orbit-one {
  width: 300px;
  height: 120px;
  left: 28px;
  top: 54px;
}

.orbit-two {
  width: 430px;
  height: 168px;
  right: -120px;
  bottom: 24px;
}

.planet {
  position: absolute;
  width: 104px;
  height: 104px;
  right: 34px;
  top: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.74), transparent 17%),
    linear-gradient(145deg, #21b6c8, #315f77 62%, #0e2533);
  box-shadow: 0 0 48px rgba(33,182,200,.36);
}

.rocket {
  position: absolute;
  left: 88px;
  bottom: 52px;
  width: 56px;
  height: 136px;
  border-radius: 30px 30px 8px 8px;
  background: linear-gradient(90deg, #edf2f8, #ffffff 52%, #c9d3df);
  transform: rotate(22deg);
  box-shadow: 0 18px 48px rgba(0,0,0,.3);
}

.rocket::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 26px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111318;
  border: 4px solid #8dd7e2;
}

.rocket::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -72px;
  width: 34px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(243,112,33,.95), rgba(255,206,94,.54), transparent);
  filter: blur(1px);
}

.rocket span {
  position: absolute;
  left: -18px;
  bottom: 2px;
  width: 18px;
  height: 42px;
  background: #f37021;
  border-radius: 8px 0 0 8px;
}

.visual-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.visual-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #dce5ec;
  line-height: 1.65;
  font-size: 17px;
}

.content-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 22px;
  align-items: start;
}

.section-copy {
  padding: 6px 0;
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.section-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

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

.info-card {
  min-height: 232px;
  padding: 20px;
  box-shadow: none;
}

.card-index {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(33,182,200,.12);
  color: #16606b;
  font-weight: 900;
  font-size: 13px;
}

.info-card h3 {
  margin: 22px 0 8px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.info-card p + p {
  margin-top: 12px;
}

.feature-list-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list-card li + li {
  margin-top: 8px;
}

.steps-section {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.fomo-section {
  grid-template-columns: minmax(0, 1.36fr) minmax(240px, .82fr) minmax(240px, .82fr);
}

.steps-section article {
  padding: 20px;
  box-shadow: none;
}

.steps-section span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111318;
  color: #fff;
  font-weight: 900;
}

.steps-section h3 {
  margin: 18px 0 6px;
  font-size: 22px;
}

.steps-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.fomo-card p + p {
  margin-top: 12px;
}

.site-footer {
  margin-top: 28px;
  text-align: center;
  color: #5f6875;
  font-size: 14px;
}

.site-footer a {
  text-decoration: none;
  font-weight: 800;
}

#stickyMobile {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 20;
}

.sticky-cta {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-section,
  .visual-band,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    gap: 16px;
  }

  .form-panel {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 1680px);
    padding-top: 12px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1;
  }

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

  .brand-row {
    margin-bottom: 14px;
  }

  .brand-logo {
    width: min(230px, 72vw);
  }

  .hero-copy .eyebrow,
  .hero-copy .yield-banner,
  .hero-copy .hero-text,
  .hero-copy .hero-image-slot,
  .hero-copy .fact-strip {
    display: none;
  }

  .hero-image-slot {
    min-height: 0;
    justify-content: center;
    margin-top: 2px;
  }

  .hero-side-image {
    width: 100%;
    max-width: 320px;
    margin-right: 0;
  }

  .hero-copy,
  .form-panel,
  .visual-band {
    padding: 20px;
  }

  .field-row,
  .fact-strip,
  .card-grid,
  .steps-section {
    grid-template-columns: 1fr;
  }

  .fact-strip article,
  .info-card {
    min-height: auto;
  }

  .launch-visual {
    min-height: 260px;
  }

  #stickyMobile {
    display: block;
  }
}
