/* ==========================================================================
   VMA Management LLC — styles.css
   Mobile-first, written at 375px and scaled up.
   Six brand tokens plus device-only neutral tokens for the phone frame.
   ========================================================================== */

/* ---------- Fonts (self-hosted, latin subset, variable woff2) ------------- */
@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/jetbrains-mono-latin.woff2') format('woff2');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens -------------------------------------------------------- */
:root {
  --navy:  #082963;
  --cyan:  #00D7FF;
  --white: #FFFFFF;
  --paper: #F1F4F9;
  --rule:  #D7DEE8;
  --muted: #55637A;
  --device-black: #02050B;
  --device-metal: #8791A0;
  --device-edge: #C7CED8;

  --display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --wrap: 1120px;
  --col:  680px;
  --r:    4px;
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

/* ---------- Focus --------------------------------------------------------- */
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 2px; }
.hdr :focus-visible,
.ftr :focus-visible,
.sec--navy :focus-visible { outline-color: var(--white); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--white); color: var(--navy);
  padding: 14px 20px; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

/* ---------- Layout -------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.col  { max-width: var(--col); }

.sec { padding: 44px 0; }
.sec--paper { background: var(--paper); }
.sec--navy  { background: var(--navy); color: var(--white); }
.sec--rule  { border-top: 1px solid var(--rule); }

.sec h2 { font-size: clamp(26px, 6.4vw, 34px); font-weight: 700; margin-bottom: 20px; }
.eyebrow {
  margin-bottom: 12px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  line-height: 1.35; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted);
}
.sec--navy .eyebrow { color: var(--white); }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 14px 26px;
  border: 0; border-radius: var(--r);
  font-family: var(--body); font-size: 17px; font-weight: 600; line-height: 1.25;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
}
.btn--cyan {
  background: var(--cyan); color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--cyan);
}
.btn--cyan:hover { background: var(--white); box-shadow: inset 0 0 0 2px var(--navy); }
.sec--navy .btn--cyan:hover,
.hdr .btn--cyan:hover { box-shadow: inset 0 0 0 2px var(--white); }
.btn--wide { width: 100%; }

/* ==========================================================================
   1. HEADER
   ========================================================================== */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--muted);
}
.hdr__in {
  min-height: 68px;
  display: flex; align-items: center;
  gap: 12px; padding-top: 8px; padding-bottom: 8px;
}
.hdr__logo { display: block; margin-right: auto; line-height: 0; }
.hdr__logo img { height: 25px; width: auto; }

.hdr__tel {
  display: none; align-items: center; gap: 7px;
  color: var(--white); font-size: 15px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  min-height: 42px; padding: 0 2px;
}
.hdr__tel-icon { flex: none; }
.hdr__tel:hover span { text-decoration: underline; }

.hdr__btn {
  flex: none; min-height: 44px;
  padding: 10px 12px; font-size: 13px;
  white-space: nowrap;
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero { padding: 34px 0 48px; overflow: hidden; }
.hero__h1 {
  font-size: clamp(38px, 10.4vw, 64px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.03em;
  max-width: 15ch;
}
.hero__sub {
  margin-top: 18px; max-width: var(--col);
  font-size: 18px; line-height: 1.55;
}
.hero__actions { margin-top: 26px; }
.hero__call {
  min-height: 44px; margin-top: 10px;
  display: inline-flex; align-items: center;
  color: var(--navy); font-size: 15px; font-weight: 600;
  text-underline-offset: 3px;
}
.hero__terms {
  margin-top: 14px; max-width: 44ch;
  color: var(--muted); font-size: 14px; line-height: 1.5;
}
.demo__terms {
  width: min(310px, calc(100vw - 92px));
  margin: 16px auto 0;
  text-align: center;
}

/* ---------- Signature element: Phone Demo Frame & Micro-Interactions ----- */
.hero__demo { margin-top: 42px; }
.demo {
  width: 100%;
  max-width: 500px;
}
.demo__layout { display: grid; gap: 48px; }
.demo__tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.demo__tab {
  min-height: 46px; padding: 7px 5px;
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--white); color: var(--muted);
  font: 600 12px/1.2 var(--body);
  cursor: pointer;
  transition: all .2s ease;
}
.demo__tab:hover { border-color: var(--navy); color: var(--navy); }
.demo__tab.is-active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  box-shadow: 0 2px 8px rgba(8, 41, 99, .15);
}

.phone__stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --depth-lift: 0px;
  position: relative;
  display: grid; place-items: start center;
  padding: 0 24px 22px;
  perspective: 1200px;
  isolation: isolate;
}
.phone {
  position: relative; z-index: 2;
  width: min(310px, calc(100vw - 92px));
  margin: 0;
  transform-style: preserve-3d;
  transform-origin: center 45%;
}

/* Hardware Bezel Polish */
.phone__shell {
  position: relative;
  width: 100%; aspect-ratio: 9 / 19.5;
  padding: 8px;
  border: 1px solid var(--navy);
  border-radius: 50px;
  background: linear-gradient(145deg, #DFE5ED 0%, var(--device-metal) 30%, var(--navy) 70%, #9EB0C7 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .8),
    inset -3px 0 6px rgba(8, 41, 99, .4),
    0 24px 48px rgba(8, 41, 99, .22),
    0 6px 12px rgba(8, 41, 99, .12);
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border: 2px solid var(--device-black);
  border-radius: 42px;
  background: var(--white);
}
.phone__screen::after {
  content: "";
  position: absolute; z-index: 5; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 75%, rgba(255,255,255,.12) 100%);
}
.phone__status {
  position: relative; z-index: 3;
  min-height: 46px; padding: 12px 16px 6px;
  display: flex; align-items: center; justify-content: space-between;
  font: 700 10px/1 var(--body); color: var(--navy);
}
.phone__time { min-width: 35px; }
.phone__island {
  position: absolute; left: 50%; top: 7px;
  width: 82px; height: 24px;
  border-radius: 18px;
  background: var(--device-black);
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: flex-end; padding-right: 8px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.1);
}
.phone__camera {
  width: 8px; height: 8px; border-radius: 50%;
  background: #111B2B; border: 1px solid #1D2C42;
}
.phone__status-icons {
  display: inline-flex; align-items: center; justify-content: flex-end; gap: 3px;
}
.phone__status-icons img { display: block; width: auto; object-fit: contain; }

.phone__conversation {
  position: relative; z-index: 2;
  padding: 0 12px 38px;
  min-height: 310px;
}
.phone__scenario[hidden] { display: none; }
.phone__title {
  min-height: 58px; margin: 0 -12px 16px; padding: 8px 12px 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.phone__title span { font: 700 14px/1.2 var(--display); }
.phone__title small { margin-top: 2px; color: var(--muted); font-size: 11px; }

.phone__event {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 14px; padding: 9px 11px;
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--paper); color: var(--muted);
  font: 12px/1.3 var(--body);
}
.phone__event b { color: var(--navy); font-weight: 700; }
.phone__event time { font-family: var(--mono); font-size: 10px; }

/* Typing indicator micro-interaction */
.phone__typing {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: auto; margin-bottom: 12px; padding: 10px 14px;
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 16px; border-bottom-right-radius: 4px;
  width: fit-content;
}
.phone__typing[hidden] { display: none !important; }
.phone__typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--navy); opacity: .4;
  animation: typingPulse 1.2s infinite ease-in-out;
}
.phone__typing-dot:nth-child(2) { animation-delay: .2s; }
.phone__typing-dot:nth-child(3) { animation-delay: .4s; }

@keyframes typingPulse {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.phone__message {
  width: fit-content; max-width: 88%;
  margin-bottom: 13px; padding: 11px 12px;
  border-radius: 16px;
  font-size: 13px; line-height: 1.38; font-weight: 500;
}
.phone__message--sent {
  margin-left: auto;
  background: var(--cyan); color: var(--navy);
  border-bottom-right-radius: 4px;
}
.phone__message--received {
  background: var(--paper); color: var(--navy);
  border: 1px solid var(--rule);
  border-bottom-left-radius: 4px;
}
.phone__result {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--rule);
  color: var(--navy); font: 700 10px/1.4 var(--mono);
  letter-spacing: .02em; text-align: center;
}
.phone__home {
  position: absolute; z-index: 6; bottom: 8px; left: 50%;
  width: 90px; height: 4px;
  border-radius: 4px;
  background: var(--device-black);
  transform: translateX(-50%);
}
.phone__button {
  position: absolute; z-index: 1;
  width: 4px;
  border: 1px solid var(--navy);
  background: linear-gradient(90deg, var(--navy), var(--device-edge));
  box-shadow: inset 1px 0 0 var(--white);
}
.phone__button--action { top: 98px; left: -4px; height: 28px; border-radius: 3px 0 0 3px; }
.phone__button--volume-up { top: 145px; left: -4px; height: 52px; border-radius: 3px 0 0 3px; }
.phone__button--volume-down { top: 209px; left: -4px; height: 52px; border-radius: 3px 0 0 3px; }
.phone__button--power { top: 158px; right: -4px; height: 80px; border-radius: 0 3px 3px 0; background: linear-gradient(90deg, var(--device-edge), var(--navy)); }

.phone__stage.depth-enabled .phone {
  opacity: 1;
  transform: translate3d(0, var(--depth-lift), 40px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .45s ease-out, opacity .45s ease-out;
  will-change: transform;
}
.phone__stage.depth-enabled:not(.is-depth-visible) .phone {
  opacity: 0;
  transform: translate3d(0, 18px, 40px) scale(.985) rotateY(-3deg);
}
.phone__stage.depth-enabled.is-interacting .phone {
  transition-duration: .12s;
}

.demo.demo-ready [data-step] {
  opacity: 0; transform: translateY(8px);
}
.demo.demo-ready [data-step].is-visible {
  opacity: 1; transform: none;
  transition: opacity .35s ease-out, transform .35s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .demo.demo-ready [data-step] { opacity: 1; transform: none; transition: none; }
  .phone__typing-dot { animation: none; opacity: .8; }
  .phone__stage.depth-enabled .phone,
  .phone__stage.depth-enabled:not(.is-depth-visible) .phone { opacity: 1; transform: none; transition: none; }
}

@supports not (transform-style: preserve-3d) {
  .phone__stage .phone { transform: none !important; }
}

/* ==========================================================================
   3. THE PROBLEM — Non-stock typographic breakdown & arithmetic card
   ========================================================================== */
.problem-section { padding: 56px 0; }
.problem__intro h2 { max-width: 24ch; }

.problem__breakdown {
  margin-top: 36px;
  display: grid;
  gap: 32px;
}
.problem__chain {
  display: grid;
  gap: 16px;
}
.problem__step {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  border-left: 4px solid var(--navy);
}
.problem__step-num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.problem__step-body b {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  margin-bottom: 4px;
}
.problem__step-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* Financial Math Card */
.problem__math-card {
  padding: 28px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--navy);
  box-shadow: 0 12px 28px rgba(8, 41, 99, .15);
}
.problem__math-header h3 {
  font-size: 20px;
  margin-top: 8px;
  font-weight: 700;
}
.problem__math-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--cyan);
  color: var(--navy);
  font: 800 11px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 2px;
}
.problem__math-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.2fr;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  padding: 18px 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r);
  text-align: center;
}
.problem__math-item { display: flex; flex-direction: column; align-items: center; }
.problem__math-val {
  font-family: var(--display);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.problem__math-lbl {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.problem__math-op {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
}
.problem__math-item--total .problem__math-val { color: var(--white); }
.problem__math-note {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 16px;
  margin-top: 16px;
}

/* ==========================================================================
   4–8. CONVERSION SECTIONS
   ========================================================================== */
.section-intro { max-width: 760px; }
.section-intro h2 {
  max-width: 26ch;
  margin-bottom: 20px;
  font-size: clamp(28px, 7vw, 40px);
}
.section-intro > p:not(.eyebrow) {
  max-width: 64ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.sec--navy .section-intro > p:not(.eyebrow) { color: var(--white); }

.eyebrow--content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.eyebrow--content::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: none;
  background: var(--cyan);
}
.sec--navy .eyebrow--content { color: var(--cyan); }

.journey__steps {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}
.journey__steps li {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.journey__num {
  display: block;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}
.journey__steps h3 { font-size: 21px; font-weight: 700; }
.journey__steps p {
  margin-top: 9px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 16px;
}

.included__list {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .3);
}
.included__list li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.included__list h3 { font-size: 21px; font-weight: 700; }
.included__list p {
  margin-top: 9px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.6;
}

/* Trades We Serve — static grid, no interaction */
.trades__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.trades__tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  text-align: center;
}
.trades__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
}
.trades__tile span {
  padding: 10px 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.live-proof__grid { display: grid; gap: 34px; }
.live-proof__cta { margin-top: 28px; }
.accountability {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-self: end;
  padding: 24px;
  border: 1px solid var(--navy);
  border-radius: var(--r);
  background: var(--paper);
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
}
.accountability b {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 19px;
}
.accountability a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guarantee__list {
  max-width: 820px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .3);
}
.guarantee__list li {
  padding: 19px 0 19px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  border-left: 3px solid var(--cyan);
  font-size: 18px;
  font-weight: 600;
}

.faq-section h2 { margin-bottom: 28px; }
.faq__intro {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 15px 48px 15px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
}
.faq details[open] summary::after { margin-top: -2px; transform: rotate(225deg); }
.faq__a { max-width: 60ch; padding: 0 0 24px; }
.faq__a p { color: var(--muted); }

/* ==========================================================================
   9. REDESIGNED BOOKING TERMINAL (#book)
   ========================================================================== */
#book { scroll-margin-top: 84px; }
.book__terminal {
  padding: 36px 24px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}
.book__header h2 { max-width: 20ch; font-size: clamp(28px, 6vw, 38px); }
.book__sub {
  margin-top: 12px;
  font-size: 17px;
  color: rgba(255, 255, 255, .9);
  max-width: 52ch;
}
.book__embed {
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--white);
  color: var(--navy);
  display: flex;
  flex-direction: column;
}
.book__embed iframe { display: block; width: 100%; height: min(700px, 80vh); border: 0; }

/* Fallback Card Layout */
.book__fallback {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.book__fallback-title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
}
.book__fallback-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 54ch;
}
.book__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

/* ==========================================================================
   10. THE PROCESS  —  onboarding steps, kept independent from .journey__steps
   so nothing here can affect the "How It Works" section above.
   ========================================================================== */
.process__steps {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}
.process__steps li {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.process__steps h3 { font-size: 21px; font-weight: 700; }
.process__steps h3 small {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
}
.process__steps p {
  margin-top: 9px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 16px;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.ftr { background: var(--navy); color: var(--white); padding: 40px 0 34px; border-top: 1px solid var(--muted); }
.ftr__logo { width: 160px; height: auto; margin-bottom: 24px; }
.ftr__tagline { max-width: 54ch; margin-bottom: 18px; font-weight: 600; }
.ftr__nap { display: flex; flex-direction: column; gap: 5px; font-style: normal; font-size: 15px; }
.ftr__name { font-family: var(--display); font-weight: 700; font-size: 17px; }
.ftr__nap a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.ftr__links { display: flex; gap: 22px; margin-top: 22px; }
.ftr__links a {
  color: var(--white); font-size: 15px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  min-height: 44px; display: inline-flex; align-items: center;
}
.ftr__copy { margin-top: 14px; font-size: 14px; }

/* ==========================================================================
   LEGAL PAGES (privacy.html / terms.html)
   ========================================================================== */
.legal { padding: 40px 0 60px; }
.legal h1 { font-size: clamp(30px, 8vw, 42px); font-weight: 800; }
.legal .updated { margin-top: 10px; color: var(--muted); font-size: 15px; }
.legal h2 { font-size: 21px; font-weight: 700; margin-top: 36px; margin-bottom: 10px; }
.legal p { margin-top: 12px; }
.legal ul { margin-top: 12px; }
.legal li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.legal li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 8px; height: 2px; background: var(--navy);
}
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal .back { display: inline-block; margin-top: 34px; font-weight: 600; }

.consent { display: flex; gap: 11px; align-items: flex-start; margin-top: 18px; }
.consent input { width: 22px; height: 22px; margin: 1px 0 0; flex: none; accent-color: var(--navy); }
.consent label { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ==========================================================================
   BREAKPOINTS
   ========================================================================== */
@media (min-width: 600px) {
  .btn--wide { width: auto; min-width: 280px; }
  .hero__demo { margin-left: auto; margin-right: auto; }
  .problem__chain { grid-template-columns: repeat(3, 1fr); }
  .problem__step { flex-direction: column; }
  .book__contact { flex-direction: row; align-items: center; }
  .book__contact .btn { width: auto; }
  .trades__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 860px) {
  body { font-size: 18px; }
  .wrap { padding-left: 48px; padding-right: 48px; }
  .sec { padding: 96px 0; }
  .sec h2 { margin-bottom: 26px; }

  .hdr__in { gap: 24px; padding-top: 0; padding-bottom: 0; min-height: 76px; }
  .hdr__logo img { height: 34px; }
  .hdr__tel { display: inline-flex; }
  .hdr__btn { flex: none; min-height: 48px; padding: 12px 22px; font-size: 16px; }

  .hero { padding: 64px 0 76px; }
  .hero__sub { font-size: 20px; }

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

  .journey__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .journey__steps li { min-height: 290px; padding: 28px 30px 28px 0; }
  .journey__steps li + li { padding-left: 30px; border-left: 1px solid var(--rule); }

  .included__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .included__list li:nth-child(odd) { padding-right: 38px; }
  .included__list li:nth-child(even) { padding-left: 38px; border-left: 1px solid rgba(255, 255, 255, .3); }

  .live-proof__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 72px;
    align-items: end;
  }
  .accountability { padding: 24px; font-size: 16px; }

  .book__terminal { padding: 48px; }
  .ftr__nap { font-size: 16px; }

  .trades__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .process__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process__steps li { min-height: 220px; padding: 28px 30px 28px 0; }
  .process__steps li + li { padding-left: 30px; border-left: 1px solid var(--rule); }
}

@media (min-width: 1080px) {
  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 58px; align-items: center;
  }
  .hero__demo { margin-top: 0; }
  .demo__layout {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 34px; align-items: center;
  }
  .demo__tabs { grid-template-columns: 1fr; align-self: center; }
  .demo__tab { min-height: 70px; padding: 12px; text-align: left; }
  .phone__stage { padding: 0 18px 22px; }
  .phone { width: 292px; }
  .demo__terms { width: 292px; margin: 16px 21px 0 auto; }
  .problem__breakdown { grid-template-columns: 1fr 440px; align-items: start; }
  .problem__chain { grid-template-columns: 1fr; }
  .problem__step { flex-direction: row; }
}

@media (min-width: 1120px) {
  .hero__grid { gap: 72px; }
}

/* ---------- Print --------------------------------------------------------- */
@media print {
  .hdr, .book__embed, .skip, .demo__tabs { display: none; }
  body { font-size: 12pt; }
}
