:root {
  color-scheme: light;
  --ink: #11120f;
  --muted: #60645c;
  --line: #dfe4d7;
  --paper: #fbfcf5;
  --cream: #f2f7e8;
  --mist: #e8f0dc;
  --green: #355d3f;
  --green-deep: #1f3e2a;
  --lime: #d8f36d;
  --blue: #d8edf4;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(31, 62, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 252, 245, 0.72)),
    radial-gradient(circle at 8% 12%, rgba(216, 243, 109, 0.34), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(216, 237, 244, 0.7), transparent 30%),
    var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(53, 93, 63, 0.14);
  border-radius: 999px;
  background: rgba(251, 252, 245, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 44px rgba(31, 62, 42, 0.08);
}

.brand {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 52px;
  padding: 82px 0 72px;
}

.launch-pill,
.section-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(53, 93, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-family: "Newsreader", serif;
  font-size: clamp(5.4rem, 13vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  max-width: 780px;
  font-family: "Newsreader", serif;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 14px;
  color: #343a31;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-support {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(17, 18, 15, 0.16);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(17, 18, 15, 0.22);
}

.app-store-badge img {
  display: block;
  width: 172px;
  height: auto;
}

.app-store-badge.dark {
  flex-shrink: 0;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 62, 42, 0.22);
}

.button.secondary {
  border-color: rgba(31, 62, 42, 0.2);
  background: rgba(255, 255, 255, 0.66);
  color: var(--green-deep);
}

.button.light {
  background: var(--white);
}

.microcopy {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.phone-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
  border-radius: 36px;
  background:
    linear-gradient(140deg, rgba(216, 243, 109, 0.5), rgba(216, 237, 244, 0.75)),
    var(--mist);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone {
  position: relative;
  width: 292px;
  padding: 8px;
  border: 10px solid #151713;
  border-radius: 46px;
  background: #10130f;
  box-shadow: 0 30px 80px rgba(17, 18, 15, 0.34);
  transform: rotate(3deg);
}

.phone-top {
  display: none;
}

.app-screen {
  position: relative;
  aspect-ratio: 1170 / 2532;
  border-radius: 34px;
  overflow: hidden;
  background: #f9f8f5;
}

.app-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.3), transparent 22%, transparent 74%, rgba(216, 243, 109, 0.16));
}

.app-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: app-slide-show 15s infinite;
}

.app-slide-one {
  animation-delay: 0s;
}

.app-slide-two {
  animation-delay: 5s;
}

.app-slide-three {
  animation-delay: 10s;
}

@keyframes app-slide-show {
  0%,
  27% {
    opacity: 1;
  }

  33%,
  100% {
    opacity: 0;
  }
}

.slideshow-indicator {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 5px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(17, 18, 15, 0.48);
  backdrop-filter: blur(8px);
}

.slideshow-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: app-slide-indicator 15s infinite;
}

.slideshow-indicator span:nth-child(2) {
  animation-delay: 5s;
}

.slideshow-indicator span:nth-child(3) {
  animation-delay: 10s;
}

@keyframes app-slide-indicator {
  0%,
  27% {
    width: 18px;
    background: var(--white);
  }

  33%,
  100% {
    width: 6px;
    background: rgba(255, 255, 255, 0.5);
  }
}

.tl-dr,
.early-adopter-panel,
.custom-panel {
  margin-bottom: 92px;
  padding: 42px;
  border: 1px solid rgba(53, 93, 63, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.tl-dr p:last-child,
.early-adopter-panel p,
.custom-panel p {
  max-width: 860px;
  color: #394033;
  font-size: 1.12rem;
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 28px;
}

.how-section,
.mission-section {
  margin-bottom: 92px;
}

.how-grid,
.mission-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.how-card,
.mission-type {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(53, 93, 63, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(31, 62, 42, 0.08);
}

.how-card span,
.mission-type span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-card p,
.mission-type p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 92px;
}

.feature-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(53, 93, 63, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 93, 63, 0.36);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-card p,
.proof-list p,
.faq-list p,
.waitlist-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 92px;
}

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

.proof-list div {
  padding: 22px;
  border: 1px solid rgba(53, 93, 63, 0.12);
  border-radius: 20px;
  background: rgba(242, 247, 232, 0.88);
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
}

.proof-list p {
  margin-bottom: 0;
}

.early-adopter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(216, 243, 109, 0.52), rgba(255, 255, 255, 0.83)),
    var(--cream);
}

.early-adopter-copy .button {
  margin-top: 4px;
}

.offer-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem !important;
  font-weight: 700;
}

.perk-card {
  padding: 28px;
  border: 1px solid rgba(31, 62, 42, 0.17);
  border-radius: 24px;
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 20px 48px rgba(31, 62, 42, 0.2);
}

.perk-kicker,
.perk-footer {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.perk-card .perk-kicker {
  margin-bottom: 20px;
}

.perk-list,
.modal-perks {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.perk-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: baseline;
  font-weight: 700;
  line-height: 1.35;
}

.perk-list span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
}

.perk-card .perk-footer {
  margin: 24px 0 0;
  color: var(--lime);
}

.waitlist-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 92px;
  padding: 44px;
  border-radius: 32px;
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 24px 80px rgba(31, 62, 42, 0.22);
}

.waitlist-section .section-label {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: var(--lime);
}

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

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.conditional-field[hidden] {
  display: none;
}

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

.form-feedback {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.form-feedback strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.form-feedback p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.form-feedback a {
  color: var(--lime);
}

.form-error {
  color: #ffe8e8;
  background: rgba(124, 32, 32, 0.38);
}

.early-adopter-modal {
  width: min(560px, calc(100% - 28px));
  max-height: min(720px, calc(100vh - 28px));
  padding: 30px;
  border: 1px solid rgba(53, 93, 63, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 243, 109, 0.46), transparent 28%),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(17, 18, 15, 0.3);
}

.early-adopter-modal::backdrop {
  background: rgba(11, 20, 13, 0.7);
  backdrop-filter: blur(8px);
}

.modal-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.modal-heading .section-label {
  margin-bottom: 14px;
}

.modal-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 7vw, 3.9rem);
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(31, 62, 42, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green-deep);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.modal-lede {
  margin: 20px 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-perks {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 18px;
  background: var(--cream);
}

.modal-perks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #2a3f2f;
  font-weight: 700;
  line-height: 1.4;
}

.modal-perks li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 800;
}

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

.early-adopter-form label {
  color: var(--green-deep);
}

.checkout-note,
.modal-feedback {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.checkout-note a {
  color: var(--green);
  font-weight: 800;
}

.modal-feedback {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--green-deep);
  font-weight: 700;
}

.custom-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(216, 237, 244, 0.78)),
    var(--blue);
}

.faq-section {
  margin-bottom: 96px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px 24px;
  border: 1px solid rgba(53, 93, 63, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  border-top: 1px solid rgba(53, 93, 63, 0.14);
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 243, 109, 0.78), transparent 27%),
    radial-gradient(circle at 92% 110%, rgba(216, 237, 244, 0.82), transparent 35%),
    #eef4e5;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(90deg, rgba(31, 62, 42, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}

.footer-inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(2, minmax(120px, 0.7fr)) minmax(190px, 0.95fr);
  gap: 36px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green-deep);
  font-family: "Newsreader", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
  text-decoration: none;
}

.footer-brand span {
  color: #8aad32;
}

.footer-intro > p {
  max-width: 300px;
  margin-bottom: 22px;
  color: #465244;
  line-height: 1.55;
}

.footer-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--green-deep);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: gap 180ms ease;
}

.footer-cta:hover {
  gap: 15px;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav a {
  width: fit-content;
  color: #52604f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover {
  color: var(--green-deep);
  transform: translateX(3px);
}

.footer-social-note {
  margin: -4px 0 15px;
  color: #637060;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-item {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 9px 7px 7px;
  border: 1px solid rgba(31, 62, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: #52604f;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-item[href]:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-social-icon rect,
.footer-social-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-social-icon circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-social-item-disabled {
  opacity: 0.58;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 62, 42, 0.15);
}

.footer-bottom p {
  margin: 0;
  color: #637060;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.footer-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7eaa21;
  box-shadow: 0 0 0 5px rgba(126, 170, 33, 0.15);
}

.page-main {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 96px;
}

.page-main h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

.page-main article {
  padding: 36px;
  border: 1px solid rgba(53, 93, 63, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.page-main p,
.page-main li {
  color: var(--muted);
  line-height: 1.75;
}

.page-main h2 {
  margin-top: 34px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.post-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.post-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(53, 93, 63, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: transform 180ms ease;
}

.post-card:hover {
  transform: translateY(-3px);
}

.post-card span {
  color: var(--green);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 10px 0;
}

.reveal {
  animation: reveal 620ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

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

  .phone-stage {
    min-height: 500px;
  }

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

  .how-grid,
  .mission-type-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
  }

  .footer-socials {
    grid-column: 1 / -1;
  }

}

@media (max-width: 620px) {
  .section-shell,
  .site-header,
  .page-main {
    width: min(100% - 24px, 1160px);
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(4.2rem, 23vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10.5vw, 2.5rem);
  }

  .site-header {
    margin-top: max(8px, env(safe-area-inset-top));
    padding: 8px 10px 8px 14px;
    border-radius: 20px;
  }

  .hero {
    gap: 28px;
    padding: 44px 0 58px;
  }

  .hero-lede {
    font-size: 1.1rem;
  }

  .hero-support {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

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

  .tl-dr,
  .early-adopter-panel,
  .custom-panel,
  .waitlist-section,
  .page-main article {
    padding: 22px;
    border-radius: 22px;
  }

  .tl-dr,
  .early-adopter-panel,
  .custom-panel,
  .how-section,
  .mission-section,
  .feature-grid,
  .split-section,
  .waitlist-section {
    margin-bottom: 64px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .how-card,
  .mission-type,
  .feature-card {
    min-height: auto;
    padding: 22px;
  }

  .how-card span,
  .mission-type span,
  .feature-index {
    margin-bottom: 24px;
  }

  .split-section,
  .waitlist-section {
    gap: 24px;
  }

  .early-adopter-panel {
    gap: 18px;
  }

  .early-adopter-panel {
    grid-template-columns: 1fr;
  }

  .perk-card {
    padding: 22px;
  }

  .early-adopter-modal {
    padding: 22px;
    border-radius: 22px;
  }

  .waitlist-form {
    gap: 16px;
    padding: 18px;
  }

  details {
    padding: 18px;
  }

  .faq-section {
    margin-bottom: 64px;
  }

  .phone-stage {
    min-height: auto;
    padding: 28px 16px;
    border-radius: 26px;
  }

  .phone {
    width: min(260px, 100%);
    border-width: 8px;
    border-radius: 40px;
    transform: none;
  }

  .app-screen {
    border-radius: 31px;
  }

  .app-store-badge {
    width: fit-content;
    justify-content: center;
  }

  .app-store-badge img {
    width: 160px;
  }

  .footer-inner {
    width: min(100% - 24px, 1160px);
    padding: 46px 0 max(26px, env(safe-area-inset-bottom));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

  .footer-intro,
  .footer-socials {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 38px;
  }

  .page-main {
    padding: 52px 0 68px;
  }

  .page-main h1 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  .page-main ul,
  .page-main ol {
    padding-left: 20px;
  }

  .page-main a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .section-shell,
  .site-header,
  .page-main {
    width: calc(100% - 16px);
  }

  .header-cta {
    padding-inline: 12px;
  }

  h1 {
    font-size: 4.15rem;
  }

  .tl-dr,
  .early-adopter-panel,
  .custom-panel,
  .waitlist-section,
  .page-main article {
    padding: 20px;
  }

  .waitlist-form {
    padding: 16px;
  }

  .phone {
    width: 240px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .app-slide,
  .slideshow-indicator span {
    animation: none;
  }

  .app-slide-one {
    opacity: 1;
  }
}
