:root {
  --night: #101d2b;
  --night-2: #17283a;
  --night-3: #203247;
  --ivory: #f5f1e8;
  --warm-white: #fffdf8;
  --paper: #fbf8f0;
  --sage: #829789;
  --sage-dark: #607467;
  --sage-pale: #dfe7df;
  --blue-gray: #627183;
  --ink: #17212c;
  --stone: #8d8276;
  --line: rgba(16, 29, 43, 0.14);
  --line-light: rgba(245, 241, 232, 0.18);
  --error: #8a3c34;
  --focus: #b5c5ba;
  --shadow-soft: 0 18px 48px rgba(16, 29, 43, 0.14);
  --font-serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

::selection {
  color: var(--night);
  background: var(--sage-pale);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--night);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(245, 241, 232, 0.86);
  border-bottom: 1px solid rgba(16, 29, 43, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 192px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--night);
  font-size: 0.94rem;
}

.site-nav a,
.footer-links a,
.footer-links button {
  border-radius: 6px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-nav a {
  padding: 0.72rem 0.86rem;
  color: rgba(16, 29, 43, 0.78);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--night);
  background: rgba(130, 151, 137, 0.16);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 0.74rem 1rem;
  color: var(--warm-white);
  background: var(--night);
  border: 1px solid var(--night);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--night);
  background: var(--sage-pale);
  border-color: var(--sage-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--night);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.section-dark {
  color: var(--ivory);
  background: var(--night);
}

.hero {
  position: relative;
  padding: 118px 0 68px;
  border-bottom: 1px solid var(--line-light);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--sage);
  opacity: 0.38;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 64px;
  width: min(100% - 40px, 1220px);
  min-height: 620px;
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sage);
  font-size: 0.92rem;
  font-weight: 650;
}

.section-dark .eyebrow,
.section-heading-light .eyebrow {
  color: var(--sage-pale);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 500;
  line-height: 1.04;
}

h1,
h2 {
  font-family: var(--font-serif);
}

h1 {
  max-width: 840px;
  color: var(--warm-white);
  font-size: 3.95rem;
}

h2 {
  color: var(--night);
  font-size: 3.1rem;
}

.section-dark h2,
.section-dark h3 {
  color: var(--warm-white);
}

h3 {
  color: var(--night);
  font-size: 1.55rem;
}

h4 {
  color: inherit;
  font-size: 1.02rem;
  line-height: 1.24;
}

.hero-text {
  max-width: 630px;
  margin: 1.5rem 0 0;
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  color: var(--night);
  background: var(--warm-white);
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--sage-pale);
  border-color: rgba(223, 231, 223, 0.72);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--warm-white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  color: var(--warm-white);
  background: rgba(245, 241, 232, 0.07);
  border-color: rgba(245, 241, 232, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--night);
  background: var(--warm-white);
}

.button-full {
  width: 100%;
  margin-top: 0.5rem;
  color: var(--warm-white);
  background: var(--night);
  border-color: var(--night);
}

.button-full:hover,
.button-full:focus-visible {
  color: var(--night);
  background: var(--sage-pale);
  box-shadow: none;
}

.pilot-note {
  margin: 1.1rem 0 0;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.95rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-preview {
  position: relative;
  width: min(100%, 356px);
  min-height: 642px;
  padding: 16px;
  color: var(--night);
  background: #0c1621;
  border: 1px solid rgba(245, 241, 232, 0.24);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.phone-preview::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 5px;
  background: rgba(245, 241, 232, 0.26);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-top,
.phone-list {
  background: var(--paper);
}

.phone-top {
  margin-top: 20px;
  padding: 26px 22px 20px;
  border-radius: 22px 22px 0 0;
  border-bottom: 1px solid var(--line);
}

.phone-top span {
  display: block;
  color: var(--blue-gray);
  font-size: 0.88rem;
}

.phone-top strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}

.phone-list {
  display: grid;
  gap: 11px;
  min-height: 490px;
  padding: 18px;
  border-radius: 0 0 22px 22px;
}

.mini-passage {
  display: grid;
  gap: 9px;
  padding: 15px;
  background: var(--warm-white);
  border: 1px solid rgba(16, 29, 43, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 29, 43, 0.07);
}

.mini-passage-header,
.mini-meta,
.mini-passage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-job {
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.mini-passage strong {
  color: var(--night);
  font-size: 0.84rem;
}

.mini-meta {
  color: rgba(98, 113, 131, 0.9);
  font-size: 0.78rem;
  line-height: 1.25;
}

.mini-passage p {
  margin: 0;
  color: var(--blue-gray);
  font-size: 0.93rem;
  line-height: 1.45;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--night);
  font-size: 0.84rem;
  font-weight: 700;
}

.availability::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(130, 151, 137, 0.14);
}

.mini-view {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.68rem;
  color: var(--night);
  background: var(--sage-pale);
  border: 1px solid rgba(130, 151, 137, 0.32);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.passages-section,
.how-section,
.benefits-section,
.launch-section {
  padding: 82px 0;
}

.section-muted {
  background: var(--paper);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--blue-gray);
  font-size: 1.05rem;
}

.section-heading-light p:not(.eyebrow) {
  color: rgba(245, 241, 232, 0.78);
}

.passage-grid,
.benefit-grid,
.form-grid,
.pathways {
  display: grid;
  gap: 20px;
}

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

.passage-card,
.pathway,
.benefit-column,
.form-panel {
  border-radius: 8px;
}

.passage-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 24px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.card-label {
  margin: 0 0 1.2rem;
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 750;
}

.passage-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
}

.passage-card p:not(.card-label) {
  margin: 1rem 0 0;
  color: var(--blue-gray);
}

.card-footer {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 26px;
}

.card-footer span {
  color: var(--night);
  font-weight: 700;
}

.text-button {
  justify-self: start;
  padding: 0;
  color: var(--night);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--sage);
  font-weight: 750;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--sage-dark);
}

.section-note {
  margin: 22px 0 0;
  color: var(--blue-gray);
  font-size: 0.94rem;
}

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

.pathway {
  padding: 30px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.pathway-dark {
  color: var(--ivory);
  background: var(--night);
  border-color: var(--night);
}

.pathway-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.pathway-dark .pathway-heading {
  border-color: var(--line-light);
}

.pathway-heading h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
}

.pathway-dark h3 {
  color: var(--warm-white);
}

.pathway-number {
  color: var(--sage-dark);
  font-weight: 800;
}

.pathway-dark .pathway-number {
  color: var(--sage-pale);
}

.step-list,
.benefit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pathway-dark .step-list li {
  border-color: var(--line-light);
}

.step-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-pale);
  border-radius: 8px;
}

.pathway-dark .step-icon {
  color: var(--ivory);
  background: rgba(245, 241, 232, 0.1);
}

.step-icon svg {
  width: 23px;
  height: 23px;
}

.step-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-list h4 {
  margin-bottom: 0.55rem;
}

.step-list p,
.benefit-list p {
  margin: 0;
  color: var(--blue-gray);
}

.pathway-dark .step-list p {
  color: rgba(245, 241, 232, 0.74);
}

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

.benefit-column {
  padding: 30px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.benefit-column-dark {
  color: var(--ivory);
  background: var(--night-2);
  border-color: var(--night-2);
}

.benefit-column h3 {
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-size: 2rem;
}

.benefit-column-dark h3 {
  color: var(--warm-white);
}

.benefit-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.benefit-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.benefit-list h4 {
  margin-bottom: 0.55rem;
}

.benefit-column-dark .benefit-list li {
  border-color: var(--line-light);
}

.benefit-column-dark .benefit-list p {
  color: rgba(245, 241, 232, 0.74);
}

.launch-section {
  border-top: 1px solid var(--line-light);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.form-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--warm-white);
  border: 1px solid rgba(245, 241, 232, 0.18);
}

.form-panel-sage {
  background: #eef3ee;
}

.form-panel h3 {
  color: var(--night);
  font-family: var(--font-serif);
  font-size: 2.05rem;
}

.form-panel > p {
  margin: 0.78rem 0 0;
  color: var(--blue-gray);
}

.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field,
.field-row {
  min-width: 0;
}

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

label,
legend {
  color: var(--night);
  font-size: 0.92rem;
  font-weight: 750;
}

label span,
legend span {
  color: rgba(98, 113, 131, 0.78);
  font-size: 0.82em;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 0.76rem 0.82rem;
  color: var(--night);
  background: #fffefa;
  border: 1px solid rgba(16, 29, 43, 0.2);
  border-radius: 6px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--night) 50%),
    linear-gradient(135deg, var(--night) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 55%,
    calc(100% - 13px) 55%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(16, 29, 43, 0.34);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--sage-dark);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(130, 151, 137, 0.2);
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select,
.checkbox-group.has-error,
.radio-group.has-error,
.consent.has-error {
  border-color: var(--error);
}

.field-error {
  min-height: 1.08rem;
  margin: 0.26rem 0 0;
  color: var(--error);
  font-size: 0.84rem;
  line-height: 1.35;
}

.checkbox-group,
.radio-group {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(16, 29, 43, 0.14);
  border-radius: 8px;
}

.checkbox-group legend,
.radio-group legend {
  padding: 0 6px;
}

.checkbox-group label,
.radio-group label,
.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 500;
}

.checkbox-group input,
.radio-group input,
.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0.12rem 0 0;
  accent-color: var(--sage-dark);
}

.consent {
  padding: 13px;
  border: 1px solid rgba(16, 29, 43, 0.14);
  border-radius: 8px;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--error);
}

.site-footer {
  padding: 44px 0;
  color: rgba(245, 241, 232, 0.78);
  background: #0d1722;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo img {
  filter: invert(1) sepia(0.14) saturate(0.38);
}

.site-footer p {
  margin: 1rem 0 0;
}

.footer-note {
  color: var(--sage-pale);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 540px;
}

.footer-links a,
.footer-links button {
  padding: 0.56rem 0.72rem;
  color: rgba(245, 241, 232, 0.82);
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.92rem;
}

.footer-links button {
  appearance: none;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links a:focus-visible,
.footer-links button:focus-visible {
  color: var(--warm-white);
  border-color: rgba(245, 241, 232, 0.2);
  background: rgba(245, 241, 232, 0.08);
}

.modal {
  width: min(100% - 32px, 560px);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.modal::backdrop {
  background: rgba(16, 29, 43, 0.62);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  padding: 30px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.modal-panel h2 {
  padding-right: 38px;
  font-size: 2.2rem;
}

.modal-panel p {
  color: var(--blue-gray);
}

.modal-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.modal-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--night);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.js [data-reveal] {
  opacity: 1;
  transform: translateY(10px);
  transition: transform 560ms ease;
}

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

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 0;
  }

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

  h1 {
    font-size: 3.65rem;
  }

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

  .passage-card {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .brand-link img {
    width: 158px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 65px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .site-nav a {
    padding: 0.9rem 0.95rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding: 102px 0 56px;
  }

  .hero-inner {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 2.88rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .pathways,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15.5px;
  }

  .hero {
    padding-bottom: 50px;
  }

  .hero-inner {
    gap: 38px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .phone-preview {
    min-height: 0;
    border-radius: 26px;
  }

  .phone-top {
    padding: 24px 18px 18px;
    border-radius: 18px 18px 0 0;
  }

  .phone-list {
    min-height: 0;
    padding: 14px;
    border-radius: 0 0 18px 18px;
  }

  .passages-section,
  .how-section,
  .benefits-section,
  .launch-section {
    padding: 62px 0;
  }

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

  .passage-card,
  .pathway,
  .benefit-column,
  .form-panel,
  .modal-panel {
    padding: 22px;
  }

  .pathway-heading {
    display: grid;
    gap: 10px;
  }

  .step-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

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

  .checkbox-group,
  .radio-group {
    padding: 14px;
  }
}

@media (max-width: 390px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 24px, 1160px);
  }

  .brand-link img {
    width: 146px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.92rem;
  }

  .phone-preview {
    padding: 12px;
  }

  .mini-passage {
    padding: 14px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
