:root {
  --ink: #090817;
  --ink-soft: #12102a;
  --ink-raised: #1a1737;
  --electric: #00e5ff;
  --violet: #a855f7;
  --fuchsia: #ff2daa;
  --paper: #f8f3eb;
  --paper-strong: #fffaf3;
  --earth: #e9dbc9;
  --clay: #c96c3f;
  --amber: #f5ad3d;
  --orange: #ef7b35;
  --brown: #4d2924;
  --mist: #dcd7eb;
  --muted: #aaa6bf;
  --line-dark: rgba(248, 250, 252, 0.16);
  --line-light: rgba(77, 41, 36, 0.18);
  --success: #80e3ba;
  --danger: #ff9ebd;
  --font-body: var(--mrc-font-en), Arial, sans-serif;
  --font-display: var(--mrc-font-en), Georgia, "Times New Roman", serif;
  --shell: min(1160px, calc(100% - 40px));
  --reading: min(740px, 100%);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 16px 48px rgba(39, 22, 44, 0.13);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.34);
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

::selection {
  background: var(--fuchsia);
  color: var(--paper-strong);
}

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

a {
  color: inherit;
  text-decoration-color: currentColor;
  text-underline-offset: 0.18em;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.reading-measure {
  width: var(--reading);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(248, 250, 252, 0.1);
  background: rgba(9, 8, 23, 0.8);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: var(--paper-strong);
  font-family: var(--font-display);
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand:hover {
  color: var(--electric);
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.72);
  border-radius: 50%;
  color: var(--electric);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.24);
}

.brand-slash {
  color: var(--orange);
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 29px);
}

.site-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--electric);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a.active,
.site-nav [aria-current="page"] {
  color: var(--paper-strong);
}

.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav [aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(248, 250, 252, 0.26);
  border-radius: var(--radius-sm);
  background: rgba(248, 250, 252, 0.04);
  color: var(--paper-strong);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(810px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--ink);
}

.hero-background,
.hero-wash,
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-background {
  z-index: -3;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
}

.hero-bg-mobile {
  display: none;
}

.hero-wash {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 69%, rgba(255, 45, 170, 0.18), transparent 28%),
    radial-gradient(circle at 13% 18%, rgba(0, 229, 255, 0.12), transparent 31%),
    linear-gradient(90deg, rgba(9, 8, 23, 0.96) 0%, rgba(9, 8, 23, 0.74) 45%, rgba(9, 8, 23, 0.25) 100%);
}

.hero-grid-overlay {
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(248, 250, 252, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, 0.11) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(190px, 1fr);
  align-items: end;
  min-height: min(810px, calc(100svh - var(--header-height)));
  padding-block: clamp(82px, 11vw, 142px) clamp(42px, 7vw, 82px);
  gap: clamp(32px, 8vw, 120px);
}

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

.eyebrow,
.eyebrow-dark,
.step-kicker,
.footer-overline,
.ledger-label,
.footer-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--electric);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow-dark::before,
.footer-overline::before,
.ledger-label::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  color: var(--paper-strong);
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 8vw, 7.35rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-rule {
  width: min(218px, 48%);
  height: 1px;
  margin-block: clamp(25px, 4vw, 39px);
  border: 0;
  background: linear-gradient(90deg, var(--amber), var(--fuchsia), transparent);
}

.hero-summary {
  max-width: 570px;
  margin: 0;
  color: rgba(248, 250, 252, 0.86);
  font-size: clamp(1rem, 1.55vw, 1.19rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: clamp(30px, 5vw, 47px);
}

.split-cta {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: stretch;
  min-height: 48px;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 177, 0.75);
  border-radius: 10px;
  background: var(--amber);
  box-shadow: 0 9px 0 rgba(108, 42, 30, 0.58), 0 13px 30px rgba(239, 123, 53, 0.22);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, filter 180ms ease;
}

.split-cta .text-cta,
.split-cta > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 19px 0 21px;
}

.split-cta::after {
  display: grid;
  width: 46px;
  height: 100%;
  min-height: 46px;
  place-items: center;
  border-left: 1px solid rgba(9, 8, 23, 0.3);
  background: var(--fuchsia);
  color: var(--paper-strong);
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  transition: background 180ms ease, transform 180ms var(--ease-out);
}

.split-cta:hover {
  box-shadow: 0 11px 0 rgba(108, 42, 30, 0.58), 0 17px 34px rgba(239, 123, 53, 0.3);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.split-cta:hover::after {
  background: var(--violet);
  transform: translateX(2px);
}

.split-cta:active {
  box-shadow: 0 4px 0 rgba(108, 42, 30, 0.6), 0 7px 16px rgba(239, 123, 53, 0.19);
  transform: translateY(4px);
}

.split-cta:focus-visible {
  outline-color: var(--electric);
  outline-offset: 5px;
}

.hero-actions > a:not(.split-cta),
.hero-actions > button:not(.split-cta) {
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(248, 250, 252, 0.66);
  background: transparent;
  color: var(--paper-strong);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.hero-actions > a:not(.split-cta):hover,
.hero-actions > button:not(.split-cta):hover {
  border-color: var(--electric);
  color: var(--electric);
}

.hero-footnote {
  margin: 22px 0 0;
  color: rgba(248, 250, 252, 0.56);
  font-size: 0.75rem;
  line-height: 1.45;
}

.route-ledger {
  align-self: end;
  justify-self: end;
  width: min(100%, 265px);
  padding: 17px 17px 15px;
  border: 1px solid rgba(248, 250, 252, 0.2);
  border-radius: var(--radius);
  background: rgba(18, 16, 42, 0.6);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ledger-label {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.62rem;
}

.ledger-label::before {
  width: 15px;
}

.ledger-line {
  position: relative;
  height: 3px;
  margin-bottom: 11px;
  overflow: visible;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--electric), var(--violet), var(--fuchsia));
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
}

.ledger-line::before,
.ledger-line::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper-strong);
  box-shadow: 0 0 10px var(--electric);
  content: "";
  transform: translateY(-50%);
}

.ledger-line::before {
  left: 0;
}

.ledger-line::after {
  right: 5%;
  background: var(--amber);
  box-shadow: 0 0 11px var(--amber);
}

.ledger-note {
  margin: 0;
  color: rgba(248, 250, 252, 0.73);
  font-size: 0.77rem;
  line-height: 1.45;
}

.journey-section,
.tips-section,
.closing-section {
  position: relative;
  overflow: hidden;
}

.journey-section {
  padding-block: clamp(76px, 11vw, 145px);
  background:
    radial-gradient(circle at 93% 6%, rgba(245, 173, 61, 0.17), transparent 20%),
    var(--paper);
  color: var(--brown);
}

.journey-section::before {
  position: absolute;
  top: 7%;
  right: -110px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(201, 108, 63, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(201, 108, 63, 0.045), 0 0 0 60px rgba(201, 108, 63, 0.025);
  content: "";
  pointer-events: none;
}

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

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(37px, 7vw, 72px);
}

.section-heading h2,
h2.section-heading {
  max-width: 720px;
  margin: 0;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.1vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-heading p {
  max-width: 580px;
  margin: 19px 0 0;
  color: rgba(77, 41, 36, 0.76);
  font-size: 1.02rem;
}

.eyebrow-dark {
  color: var(--clay);
}

.route-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  width: var(--reading);
}

.route-timeline::before {
  position: absolute;
  top: 34px;
  bottom: 35px;
  left: 31px;
  width: 1px;
  background: linear-gradient(var(--orange), var(--violet), rgba(168, 85, 247, 0.2));
  content: "";
}

.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: 63px minmax(0, 1fr);
  gap: 20px;
  padding: 23px 24px 25px 0;
  border: 1px solid rgba(77, 41, 36, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 10px 25px rgba(77, 41, 36, 0.055);
  transition: box-shadow 220ms ease, transform 220ms var(--ease-out), border-color 220ms ease;
}

.timeline-card:hover {
  border-color: rgba(201, 108, 63, 0.4);
  box-shadow: var(--shadow-soft);
  transform: translateX(4px);
}

.step-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 63px;
  height: 63px;
  place-items: center;
  margin-top: 1px;
  border: 1px solid rgba(77, 41, 36, 0.16);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 8px var(--paper);
}

.step-content {
  padding-top: 2px;
}

.step-kicker {
  margin-bottom: 7px;
  color: var(--clay);
  font-size: 0.62rem;
}

.timeline-card h3 {
  margin: 0;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.timeline-card p {
  margin: 10px 0 0;
  color: rgba(77, 41, 36, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
}

.editorial-note {
  position: relative;
  width: min(510px, calc(100% - 34px));
  margin: clamp(40px, 7vw, 76px) 0 0 auto;
  padding: 23px 27px 23px 30px;
  border-left: 2px solid var(--fuchsia);
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.26;
}

.note-symbol {
  position: absolute;
  top: -3px;
  left: -15px;
  color: var(--fuchsia);
  font-family: Georgia, serif;
  font-size: 3.3rem;
  line-height: 1;
}

.tips-section {
  padding-block: clamp(76px, 11vw, 140px);
  background:
    radial-gradient(circle at 9% 42%, rgba(0, 229, 255, 0.13), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(255, 45, 170, 0.15), transparent 24%),
    var(--ink-soft);
  color: var(--paper);
}

.tips-section::before {
  position: absolute;
  top: -30%;
  right: -18%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-dark {
  background-color: var(--ink-soft);
}

.section-heading-light {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(37px, 6vw, 67px);
}

.section-heading-light h2,
h2.section-heading-light {
  max-width: 720px;
  margin: 0;
  color: var(--paper-strong);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-heading-light p {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(248, 250, 252, 0.7);
}

.pull-quote {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 0 clamp(40px, 6vw, 67px);
  padding: 0 0 0 25px;
  border-left: 1px solid var(--amber);
  color: rgba(248, 250, 252, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.pull-quote p,
.pull-quote cite {
  margin: 0;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tips-list {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.tip-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 21px;
  padding: 25px 0 26px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 220ms var(--ease-out), background 220ms ease;
}

.tip-row:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.06), transparent 72%);
}

.tip-number {
  display: flex;
  align-items: flex-start;
  color: var(--electric);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.tip-row h3 {
  margin: 0;
  color: var(--paper-strong);
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.tip-row p {
  max-width: 630px;
  margin: 9px 0 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 0.96rem;
}

.closing-section {
  isolation: isolate;
  padding-block: clamp(80px, 13vw, 160px);
  background: var(--paper);
  color: var(--brown);
}

.closing-glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(830px, 105vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 173, 61, 0.45) 0%, rgba(239, 123, 53, 0.17) 33%, rgba(255, 45, 170, 0.06) 53%, transparent 72%);
  filter: blur(3px);
  transform: translate(-50%, -50%);
}

.closing-inner {
  width: min(800px, 100%);
  margin-inline: auto;
  text-align: center;
}

.closing-inner .eyebrow-dark {
  justify-content: center;
}

.closing-inner h2,
#closing-title {
  max-width: 730px;
  margin: 0 auto;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-wrap: balance;
}

.closing-inner p {
  max-width: 580px;
  margin: 23px auto 0;
  color: rgba(77, 41, 36, 0.76);
  font-size: 1.05rem;
}

.split-cta-large {
  min-height: 57px;
  margin-top: clamp(29px, 5vw, 43px);
  font-size: 0.93rem;
}

.split-cta-large .text-cta,
.split-cta-large > span:first-child {
  padding-right: 26px;
  padding-left: 28px;
}

.split-cta-large::after {
  width: 55px;
  min-height: 55px;
  font-size: 1.35rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 45, 170, 0.15), transparent 26%),
    radial-gradient(circle at 14% 84%, rgba(0, 229, 255, 0.1), transparent 24%),
    var(--ink);
  color: var(--paper);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fuchsia), var(--electric), transparent);
  content: "";
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(215px, 0.75fr);
  gap: clamp(42px, 10vw, 160px);
  padding-block: clamp(66px, 10vw, 122px) 52px;
}

.footer-brand-block .brand {
  margin-bottom: 25px;
}

.footer-overline {
  color: var(--amber);
}

.footer-statement {
  max-width: 680px;
  margin: 0;
  color: var(--paper-strong);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.7vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-wrap: balance;
}

.footer-contact {
  align-self: end;
  padding-bottom: 5px;
}

.footer-label {
  color: var(--muted);
  font-size: 0.65rem;
}

.footer-contact a {
  display: inline-block;
  color: var(--paper-strong);
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 2.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-decoration-color: rgba(0, 229, 255, 0.55);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-contact a:hover {
  color: var(--electric);
  text-decoration-color: var(--electric);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 30px;
  padding-block: 22px 27px;
  border-top: 1px solid var(--line-dark);
  color: rgba(248, 250, 252, 0.55);
  font-size: 0.73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav,
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom a {
  color: rgba(248, 250, 252, 0.72);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--electric);
}

/* Legal document pages */
.legal-page {
  background: var(--paper);
  color: var(--brown);
}

.legal-page .site-header {
  background: rgba(9, 8, 23, 0.92);
}

.legal-main {
  position: relative;
  overflow: hidden;
  padding-block: clamp(61px, 10vw, 116px);
  background:
    radial-gradient(circle at 94% 0%, rgba(245, 173, 61, 0.22), transparent 22%),
    linear-gradient(100deg, rgba(233, 219, 201, 0.4), transparent 35%),
    var(--paper);
}

.legal-main::before {
  position: absolute;
  top: 100px;
  right: -140px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(201, 108, 63, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(201, 108, 63, 0.035);
  content: "";
}

.legal-doc {
  position: relative;
  width: min(820px, 100%);
  margin-inline: auto;
  padding: clamp(27px, 5vw, 62px);
  border: 1px solid rgba(77, 41, 36, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.84);
  box-shadow: var(--shadow-soft);
}

.legal-heading {
  max-width: 690px;
  margin: 0;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 6vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-wrap: balance;
}

.legal-date {
  display: inline-flex;
  align-items: center;
  margin: 24px 0 0;
  padding: 7px 11px;
  border: 1px solid rgba(201, 108, 63, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(245, 173, 61, 0.1);
  color: rgba(77, 41, 36, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
}

.legal-lead {
  max-width: 670px;
  margin: 29px 0 42px;
  color: rgba(77, 41, 36, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.75;
}

.legal-doc h2 {
  margin: 43px 0 14px;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(1.52rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.legal-doc h3 {
  margin: 28px 0 10px;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.19rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-doc p,
.legal-doc li {
  color: rgba(77, 41, 36, 0.8);
}

.legal-doc p {
  margin: 0 0 17px;
}

.legal-doc ul,
.legal-doc ol {
  padding-left: 1.3rem;
  margin: 0 0 20px;
}

.legal-doc li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-doc strong {
  color: var(--brown);
}

.legal-doc a {
  color: #9b3e54;
  font-weight: 700;
  text-decoration-color: rgba(155, 62, 84, 0.4);
}

.legal-doc a:hover {
  color: var(--clay);
  text-decoration-color: currentColor;
}

/* Shared form states for future same-origin form elements */
form {
  width: 100%;
}

label {
  display: inline-block;
  margin-bottom: 7px;
  color: inherit;
  font-size: 0.87rem;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(77, 41, 36, 0.28);
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
  color: var(--brown);
  line-height: 1.4;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 124px;
  padding: 11px 12px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--violet);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.form-message,
[role="status"] {
  margin-top: 13px;
  font-size: 0.88rem;
  font-weight: 650;
}

.form-message.is-success,
.form-success {
  color: var(--success);
}

.form-message.is-error,
.form-error {
  color: var(--danger);
}

@media (min-width: 1200px) {
  .hero-copy {
    margin-left: 5.5vw;
  }

  .route-ledger {
    margin-right: 3vw;
  }

  .journey-section .reading-measure {
    margin-left: 9.5vw;
  }

  .tips-section .reading-measure {
    margin-left: 9.5vw;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 1160px);
    --header-height: 68px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    border: 1px solid rgba(248, 250, 252, 0.13);
    border-radius: var(--radius);
    background: rgba(18, 16, 42, 0.98);
    box-shadow: var(--shadow-dark);
    opacity: 0;
    transition: max-height 240ms var(--ease-out), opacity 180ms ease, padding 240ms var(--ease-out), visibility 240ms ease;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .site-nav a {
    display: block;
    padding-block: 13px;
  }

  .site-nav a::after {
    right: auto;
    bottom: 6px;
    width: 25px;
  }

  .site-nav.is-open,
  .site-nav.open,
  .site-nav.active,
  .site-nav[aria-hidden="false"] {
    visibility: visible;
    max-height: 340px;
    padding-block: 8px;
    opacity: 1;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 700px;
    padding-top: clamp(68px, 13vw, 101px);
    gap: 38px;
  }

  .route-ledger {
    justify-self: start;
    width: min(280px, 100%);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    font-size: 0.81rem;
    letter-spacing: 0.08em;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .hero {
    min-height: 730px;
  }

  .hero-bg-desktop {
    display: none;
  }

  .hero-bg-mobile {
    display: block;
  }

  .hero-bg-image {
    object-position: center top;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(9, 8, 23, 0.79) 0%, rgba(9, 8, 23, 0.71) 46%, rgba(9, 8, 23, 0.95) 100%),
      radial-gradient(circle at 80% 42%, rgba(255, 45, 170, 0.16), transparent 29%);
  }

  .hero-grid-overlay {
    background-size: 43px 43px;
  }

  .hero-layout {
    min-height: 730px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
    line-height: 0.92;
  }

  .hero-summary {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    width: 100%;
  }

  .split-cta {
    width: 100%;
    max-width: 330px;
  }

  .hero-actions > a:not(.split-cta),
  .hero-actions > button:not(.split-cta) {
    min-height: 44px;
  }

  .route-ledger {
    padding: 14px;
  }

  .journey-section,
  .tips-section,
  .closing-section {
    padding-block: 73px;
  }

  .route-timeline::before {
    left: 25px;
  }

  .timeline-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    padding: 19px 16px 21px 0;
  }

  .step-index {
    width: 52px;
    height: 52px;
    font-size: 1.05rem;
  }

  .timeline-card p {
    font-size: 0.9rem;
  }

  .editorial-note {
    width: 100%;
    padding-right: 5px;
    padding-left: 22px;
  }

  .pull-quote {
    padding-left: 18px;
  }

  .tip-row {
    grid-template-columns: 47px minmax(0, 1fr);
    gap: 13px;
  }

  .tip-row:hover {
    padding-left: 4px;
  }

  .closing-inner p {
    font-size: 0.97rem;
  }

  .split-cta-large {
    width: 100%;
  }

  .footer-top {
    padding-bottom: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .legal-main {
    padding-block: 43px 67px;
  }

  .legal-doc {
    padding: 26px 20px 31px;
    border-radius: var(--radius);
  }

  .legal-lead {
    margin-bottom: 34px;
  }

  .legal-doc h2 {
    margin-top: 36px;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: min(100% - 26px, 1160px);
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .split-cta {
    font-size: 0.8rem;
  }

  .split-cta .text-cta,
  .split-cta > span:first-child {
    padding-right: 13px;
    padding-left: 15px;
  }

  .timeline-card {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 12px;
  }

  .step-index {
    width: 45px;
    height: 45px;
    font-size: 0.95rem;
  }

  .route-timeline::before {
    left: 22px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    animation: editorial-reveal 700ms var(--ease-out) both;
  }

  .route-ledger {
    animation: ledger-float 4.8s ease-in-out infinite;
  }

  .ledger-line::after {
    animation: route-pulse 2.4s ease-in-out infinite;
  }

  .closing-glow {
    animation: glow-drift 7s ease-in-out infinite alternate;
  }

  .split-cta-large {
    animation: cta-pulse 3.2s ease-in-out 1.2s infinite;
  }

  .route-timeline .timeline-card:nth-child(2) {
    animation-delay: 100ms;
  }

  .route-timeline .timeline-card:nth-child(3) {
    animation-delay: 180ms;
  }
}

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

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

@keyframes ledger-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes route-pulse {
  0%,
  100% {
    box-shadow: 0 0 9px var(--amber);
    transform: translateY(-50%) scale(1);
  }

  50% {
    box-shadow: 0 0 18px var(--amber);
    transform: translateY(-50%) scale(1.28);
  }
}

@keyframes glow-drift {
  from {
    transform: translate(-52%, -48%) scale(0.94);
  }

  to {
    transform: translate(-47%, -53%) scale(1.05);
  }
}

@keyframes cta-pulse {
  0%,
  78%,
  100% {
    box-shadow: 0 9px 0 rgba(108, 42, 30, 0.58), 0 13px 30px rgba(239, 123, 53, 0.22);
  }

  88% {
    box-shadow: 0 9px 0 rgba(108, 42, 30, 0.58), 0 0 0 8px rgba(245, 173, 61, 0.18), 0 17px 37px rgba(239, 123, 53, 0.34);
  }
}

@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;
  }
}