:root {
  --ink: #14110f;
  --ink-2: #221e1b;
  --ink-3: #2e2925;
  --paper: #f7f3ec;
  --bone: #ede6d9;
  --bone-2: #e2d9c7;
  --gold: #b8964e;
  --gold-light: #d4b373;
  --gold-text: #75551a;
  --ash: #6b6660;
  --ash-2: #97928b;
  --line-light: rgba(20, 17, 15, 0.1);
  --line-dark: rgba(247, 243, 236, 0.1);
  --maxw: 1200px;
  --gutter: 32px;
  --radius: 4px;
  --radius-lg: 6px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 80px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 20px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.15s;
}

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

.eyebrow {
  color: var(--gold-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.serif-accent {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.no-break {
  white-space: nowrap;
}

.dark .eyebrow,
.dark .serif-accent {
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.btn-secondary {
  border-color: rgba(247, 243, 236, 0.36);
  background: transparent;
  color: var(--paper);
}

.btn-secondary:hover {
  border-color: var(--paper);
}

.arrow {
  display: inline-block;
  transition: transform 0.2s;
}

a:hover .arrow,
.btn:hover .arrow {
  transform: translateX(4px);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(247, 243, 236, 0.08);
  background: rgba(20, 17, 15, 0.94);
  color: var(--paper);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line-light);
  background: rgba(247, 243, 236, 0.94);
  color: var(--ink);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: flex;
  flex-shrink: 0;
}

.logo-words {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}

.logo-name {
  color: currentColor;
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-sub {
  color: var(--gold-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.88;
  text-transform: uppercase;
}

.nav.scrolled .logo-sub {
  color: var(--gold-text);
}

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

.nav-links a {
  color: currentColor;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.76;
  transition: opacity 0.15s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: currentColor;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-burger {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  color: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 28px var(--gutter);
  background: var(--ink);
  color: var(--paper);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}

.mobile-menu .close {
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 24px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.mobile-menu nav a {
  font-size: 24px;
  font-weight: 600;
}

.mobile-menu .mob-cta {
  align-self: flex-start;
  margin-top: auto;
}

.offer-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 88px;
  background: var(--ink);
  color: var(--paper);
}

.offer-hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 420px at 78% 30%, rgba(184, 150, 78, 0.1), transparent 65%);
  content: "";
  pointer-events: none;
}

.offer-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: center;
}

.offer-hero h1 {
  max-width: 790px;
  margin: 20px 0 0;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.99;
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(247, 243, 236, 0.86);
  font-size: 19px;
  line-height: 1.58;
}

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

.hero-proof {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(247, 243, 236, 0.62);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  line-height: 1.6;
}

.engagement-box {
  padding: 34px;
  border: 1px solid rgba(212, 179, 115, 0.44);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.07), rgba(247, 243, 236, 0.025));
}

.engagement-box h2 {
  margin: 12px 0 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
}

.summary-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(247, 243, 236, 0.84);
  font-size: 14px;
  line-height: 1.45;
}

.summary-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--gold-light);
  content: ">";
  font-family: "JetBrains Mono", monospace;
}

.engagement-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 179, 115, 0.35);
}

.engagement-meta .label {
  color: rgba(247, 243, 236, 0.58);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.engagement-meta .value {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
}

.delivery-note {
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 179, 115, 0.35);
  color: rgba(247, 243, 236, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.offer-page-short .offer-hero {
  min-height: 0;
  padding: 52px 0 60px;
}

.offer-page-short .offer-hero-grid,
.offer-page-short .compact-delivery-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.86fr);
  gap: 64px;
  align-items: start;
}

.offer-page-short .offer-hero h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(50px, 4.6vw, 64px);
  letter-spacing: -0.022em;
  line-height: 1;
}

.offer-page-short .hero-lede {
  max-width: 590px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.55;
}

.offer-page-short .hero-proof {
  max-width: 54ch;
  margin-top: 18px;
  color: rgba(247, 243, 236, 0.72);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.offer-page-short .hero-actions {
  margin-top: 24px;
}

.offer-page-short .engagement-box {
  padding: 30px;
}

.offer-page-short .engagement-box h2 {
  font-size: 23px;
  line-height: 1.2;
}

.offer-page-short .summary-list {
  margin-top: 20px;
}

.offer-page-short .summary-list li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.offer-page-short .summary-list li::before {
  top: 10px;
}

.offer-page-short .delivery-note {
  margin-top: 16px;
  padding-top: 16px;
  font-size: 12px;
}

.compact-delivery {
  padding: 68px 0;
  background: var(--bone);
}

.compact-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 72px;
  align-items: start;
}

.compact-plan h2 {
  max-width: 610px;
  margin: 12px 0 0;
  font-size: clamp(36px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.07;
}

.compact-phases {
  margin-top: 26px;
  border-bottom: 1px solid var(--line-light);
}

.compact-phases article {
  display: grid;
  grid-template-columns: 96px 180px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
}

.compact-phases .period {
  color: var(--gold-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-phases h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.compact-phases p {
  margin: 0;
  color: var(--ash);
  font-size: 14px;
  line-height: 1.5;
}

.compact-apply {
  position: sticky;
  top: 96px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 28px 70px rgba(20, 17, 15, 0.14);
}

.compact-apply h2 {
  margin: 10px 0 0;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.07;
}

.offer-page-short .compact-apply .form {
  gap: 16px;
  margin-top: 24px;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(247, 243, 236, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.compact-apply .apply-lede {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.55;
}

.compact-apply .apply-details {
  margin-top: 20px;
}

.offer-page-short .field textarea {
  min-height: 84px;
}

.offer-page-short .form-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.offer-page-short .form-actions .btn {
  width: 100%;
}

.offer-page-short #formStatus:empty {
  display: none;
}

.short-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(247, 243, 236, 0.08);
}

.short-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(247, 243, 236, 0.58);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.short-footer-inner span:first-child,
.short-footer-inner a {
  color: rgba(247, 243, 236, 0.84);
}

.section {
  padding: 92px 0;
}

.section.bone {
  background: var(--bone);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2,
.section-title {
  margin: 10px 0 0;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.section-lede {
  max-width: 48ch;
  margin: 0;
  color: var(--ash);
  font-size: 17px;
  line-height: 1.62;
}

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

.signal-card {
  min-height: 230px;
  padding: 32px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.signal-card .num {
  color: var(--gold-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.signal-card h3 {
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.signal-card p {
  margin: 14px 0 0;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.62;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.responsibility-card {
  padding: 36px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.responsibility-card.primary {
  border-color: rgba(184, 150, 78, 0.42);
}

.responsibility-card h3 {
  margin: 10px 0 0;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.16;
}

.responsibility-card p {
  margin: 14px 0 0;
  color: var(--ash);
  font-size: 15px;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-top: 1px solid var(--line-light);
  color: var(--ink-3);
  font-size: 15px;
}

.feature-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--gold-text);
  content: ">";
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.boundary-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--bone);
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.58;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line-light);
}

.phase {
  position: relative;
  padding: 32px 30px 0 0;
}

.phase + .phase {
  padding-left: 30px;
  border-left: 1px solid var(--line-light);
}

.phase::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.phase + .phase::before {
  left: 30px;
}

.phase .period {
  color: var(--gold-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phase h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.phase p {
  margin: 12px 0 0;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.6;
}

.proof-section {
  padding: 68px 0;
  background: var(--ink-2);
  color: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: 64px;
  align-items: center;
}

.proof-section h2 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1.08;
}

.proof-copy {
  margin: 0;
  color: rgba(247, 243, 236, 0.84);
  font-size: 18px;
  line-height: 1.63;
}

.apply {
  position: relative;
  padding: 96px 0;
  background: var(--ink);
  color: var(--paper);
}

.apply::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 85% 80%, rgba(184, 150, 78, 0.06), transparent);
  content: "";
  pointer-events: none;
}

.apply-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.apply h2 {
  margin: 10px 0 0;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.04;
}

.apply-lede {
  max-width: 43ch;
  margin: 20px 0 0;
  color: rgba(247, 243, 236, 0.84);
  font-size: 17px;
  line-height: 1.62;
}

.apply-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 28px;
  color: rgba(247, 243, 236, 0.86);
  font-size: 14px;
}

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

.apply-details .key {
  color: var(--gold-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px;
  border: 1px solid rgba(247, 243, 236, 0.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.055), rgba(247, 243, 236, 0.025));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: var(--gold-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 243, 236, 0.22);
  background: transparent;
  color: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field select {
  appearance: none;
  padding-right: 28px;
  background-image: linear-gradient(45deg, transparent 50%, rgba(247, 243, 236, 0.55) 50%), linear-gradient(135deg, rgba(247, 243, 236, 0.55) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
  -webkit-appearance: none;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(247, 243, 236, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 8px rgba(184, 150, 78, 0.18);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
}

#formStatus {
  color: rgba(247, 243, 236, 0.56);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

footer {
  padding: 64px 0 28px;
  background: var(--ink);
  color: var(--paper);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.foot-tag {
  max-width: 32ch;
  margin: 20px 0 0;
  color: rgba(247, 243, 236, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.foot-col h2 {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-col a {
  color: rgba(247, 243, 236, 0.84);
  font-size: 13px;
}

.foot-col a:hover {
  color: var(--paper);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 243, 236, 0.08);
  color: rgba(247, 243, 236, 0.55);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s, transform 0.65s;
}

.reveal-ready .reveal:not(.in) {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media(max-width:1024px) {
  .offer-hero-grid {
    gap: 40px;
  }

  .recognition-grid {
    gap: 16px;
  }

  .signal-card {
    padding: 28px 24px;
  }

  .section-head h2,
  .section-title,
  .apply h2 {
    font-size: 44px;
  }

  .apply-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .compact-delivery-grid {
    gap: 40px;
  }

  .offer-page-short .offer-hero-grid,
  .offer-page-short .compact-delivery-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    gap: 48px;
  }

  .compact-phases article {
    grid-template-columns: 90px 1fr;
  }

  .compact-phases p {
    grid-column: 2;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media(max-width:900px) {
  .offer-hero-grid,
  .section-head,
  .responsibility-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .offer-hero-grid,
  .section-head,
  .proof-grid {
    gap: 32px;
  }

  .engagement-box {
    max-width: 620px;
  }

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

  .recognition-grid .signal-card:last-child {
    grid-column: 1 / -1;
  }

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

  .compact-delivery-grid {
    grid-template-columns: 1fr;
  }

  .offer-page-short .offer-hero-grid,
  .offer-page-short .compact-delivery-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .offer-page-short .engagement-box {
    width: 100%;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .offer-page-short .compact-apply {
    position: static;
  }
}

@media(max-width:720px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 16px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .mobile-menu .mob-cta {
    width: 100%;
  }

  .offer-hero {
    padding: 64px 0;
  }

  .offer-page-short .offer-hero {
    min-height: 0;
    padding: 40px 0 48px;
  }

  .offer-page-short .offer-hero h1 {
    font-size: clamp(38px, 10.5vw, 42px);
    line-height: 1;
  }

  .offer-page-short .hero-lede {
    margin-top: 20px;
    font-size: 16px;
  }

  .offer-page-short .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

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

  .offer-page-short .engagement-box {
    padding: 24px 22px;
  }

  .offer-page-short .engagement-box h2 {
    font-size: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .section-title,
  .apply h2 {
    font-size: 35px;
  }

  .recognition-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .recognition-grid .signal-card:last-child {
    grid-column: auto;
  }

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

  .responsibility-card {
    padding: 28px 22px;
  }

  .timeline {
    gap: 28px;
    border-top: 0;
  }

  .phase,
  .phase + .phase {
    padding: 0 0 0 24px;
    border-left: 1px solid var(--line-light);
  }

  .phase::before,
  .phase + .phase::before {
    top: 7px;
    left: -5px;
  }

  .proof-section {
    padding: 56px 0;
  }

  .proof-copy {
    font-size: 17px;
  }

  .apply {
    padding: 72px 0;
  }

  .form {
    gap: 18px;
    padding: 24px 18px;
    background: rgba(247, 243, 236, 0.09);
  }

  .offer-page-short .compact-delivery {
    padding: 48px 0;
  }

  .offer-page-short .compact-plan h2,
  .offer-page-short .compact-apply h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .compact-phases article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .compact-phases p {
    grid-column: auto;
  }

  .offer-page-short .compact-apply {
    padding: 28px 22px;
  }

  .offer-page-short .compact-apply .form {
    margin-top: 22px;
    padding: 22px 0 0;
  }

  .short-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .btn {
    width: 100%;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

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