/* ==========================================================================
   10xmovers marketing site v3
   All assets local. No remote fonts, no CDNs, no trackers.
   Display face: Instrument Serif (bundled, OFL). Body: system sans.
   Motion: surgical. One hero simulation, per-section reveals, nothing else.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Fonts (local)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/satoshi-700.woff2") format("woff2");
}

@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/satoshi-500.woff2") format("woff2");
}

@font-face {
  font-family: "Satoshi";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/satoshi-500-italic.woff2") format("woff2");
}

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  --ink: #101418;
  --paper: #FAF8F4;
  --cream: #F6F1E7;
  --navy: #14213D;
  --navy-deep: #0D1730;
  --strap: #F26B1D;
  --strap-soft: #FFB27A;
  --money: #1E7A46;
  --money-soft: #4CBF82;
  --hairline: rgba(16, 20, 24, 0.12);
  --hairline-light: rgba(246, 241, 231, 0.18);

  --ink-soft: rgba(16, 20, 24, 0.68);
  --ink-faint: rgba(16, 20, 24, 0.52);
  --paper-deep: #F3EFE8;
  --cream-soft: rgba(246, 241, 231, 0.75);
  --cream-faint: rgba(246, 241, 231, 0.55);
  --strap-wash: rgba(242, 107, 29, 0.09);
  --white: #FFFFFF;

  --font-display: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Rhythm. Generous by default, this is a hard brand rule. */
  --section-y: clamp(4rem, 9vw, 7rem);
  --gutter: clamp(1rem, 3vw, 2rem);
  --maxw: 1120px;
  --prose: 65ch;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-panel: clamp(18px, 3vw, 32px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

@media (min-width: 720px) {
  body {
    font-size: 1.125rem;
  }
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}

p,
ul,
ol,
dl {
  margin: 0;
}

a {
  color: var(--navy);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(20, 33, 61, 0.35);
}

a:hover {
  text-decoration-color: var(--strap);
}

:focus-visible {
  outline: 2px solid var(--strap);
  outline-offset: 3px;
  border-radius: 2px;
}

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

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: var(--section-y);
  border-top: 1px solid var(--hairline);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   4. Shared type helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--strap);
  margin: 0 0 1.25rem;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head h2 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
}

.section-head p {
  max-width: var(--prose);
  margin-top: 1.25rem;
  color: var(--ink-soft);
}

/* More specific than .section-head p above, so the kicker keeps its color */
.section-head .eyebrow {
  color: var(--strap);
  margin-top: 0;
}

.money {
  color: var(--money);
  font-family: var(--font-serif);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 1.0625rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, transform 0.18s var(--ease-out), box-shadow 0.18s ease;
}

.btn--primary {
  background: var(--strap);
  border-color: var(--strap);
  color: var(--white);
}

.btn--primary:hover {
  background: #DC5C13;
  border-color: #DC5C13;
  color: var(--white);
}

.btn--big {
  font-size: 1.125rem;
  padding: 1.1875rem 2.125rem;
}

.btn--ghost {
  background: transparent;
  border-color: var(--hairline);
  color: var(--navy);
}

.btn--ghost:hover {
  border-color: var(--navy);
}

/* Outline variant for dark panels */
.btn--outline {
  background: transparent;
  border-color: var(--hairline-light);
  color: var(--cream);
}

.btn--outline:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.btn--small {
  font-size: 0.9375rem;
  padding: 0.6875rem 1.25rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--hairline);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s ease;
}

/* Smart collapse: hides scrolling down, returns scrolling up */
.site-header--hidden {
  transform: translateY(-100%);
}

.site-header--stuck {
  box-shadow: 0 10px 30px -22px rgba(16, 20, 24, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
  padding-block: 0.625rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.wordmark b {
  font-weight: 700;
  color: var(--strap);
}

.site-nav {
  display: none;
}

.site-header__cta {
  white-space: nowrap;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
  }

  .site-nav a {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    text-decoration: none;
  }

  .site-nav a:hover {
    color: var(--navy);
  }
}

/* Hamburger, mobile only */
.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex: none;
}

.menu-btn span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--navy);
  transition: transform 0.22s var(--ease-out), opacity 0.22s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile menu panel */
.menu {
  border-top: 1px solid var(--hairline);
  background: var(--paper);
  padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem) 1.375rem;
}

.menu nav {
  display: grid;
}

.menu nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  padding-block: 0.8125rem;
  border-bottom: 1px solid var(--hairline);
}

.menu__cta {
  width: 100%;
  margin-top: 1.125rem;
}

@media (min-width: 900px) {
  .menu {
    display: none;
  }
}

@media (max-width: 899.98px) {
  .site-header__cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   7. Hero panel
   -------------------------------------------------------------------------- */

.hero {
  padding: clamp(0.75rem, 2vw, 1.5rem) var(--gutter) 0;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background:
    radial-gradient(52rem 30rem at 12% 108%, rgba(242, 107, 29, 0.34), transparent 62%),
    radial-gradient(40rem 26rem at 96% -8%, rgba(76, 191, 130, 0.14), transparent 58%),
    linear-gradient(168deg, #1C2C50 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.hero__grid {
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem);
  align-items: center;
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  }
}

.hero__kicker {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--strap-soft);
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6.2vw, 4.5rem);
  max-width: 16ch;
}

/* One-handed reading size. The clamp minimum above is tuned for tablets;
   on a 375px screen 46px headline turns the hero into two screens of scroll. */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.125rem;
  }
}

.hero__lede {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  max-width: 46ch;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--cream-soft);
}

.hero__actions {
  margin-top: clamp(2.25rem, 4vw, 3rem);
}

/* Demo steps: the demo must explain itself in one glance */
.demosteps {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid var(--hairline-light);
  padding-top: 1.25rem;
  max-width: 30rem;
}

.demosteps__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 0.875rem;
}

.demosteps ol {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5625rem;
}

.demosteps ol {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6875rem;
}

.demosteps li {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--cream-soft);
  line-height: 1.45;
}

.demosteps li b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--strap-soft);
  flex: none;
  width: 1.25rem;
  text-align: center;
}

/* Live dots */
.livedot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--strap);
  flex: none;
  animation: livedot-pulse 1.6s ease-in-out infinite;
}

.livedot--green {
  background: var(--money-soft);
}

@keyframes livedot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ------------------------------------------------ the call simulation --- */

.sim {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -40px rgba(6, 10, 22, 0.8);
  padding: 1rem 1.125rem 1.125rem;
  max-width: 400px;
  margin-inline: auto;
  color: var(--ink);
}

/* iMessage-style header: avatar, name, live dot */
.sim__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--hairline);
}

.sim__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2A3C66 0%, var(--navy) 100%);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex: none;
}

.sim__id {
  display: grid;
  gap: 0.0625rem;
  min-width: 0;
}

.sim__id b {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.sim__id span {
  font-size: 0.71875rem;
  color: var(--ink-faint);
  line-height: 1.3;
}

.sim__head .livedot {
  margin-left: auto;
}

/* Bottom-anchored thread, like a real message app: bubbles push up */
.sim__thread {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0.375rem;
  padding-block: 0.875rem;
  overflow: hidden;
}

.js .sim--armed .sim__thread {
  height: 248px;
}

.sim__turn {
  max-width: 82%;
  font-size: 0.875rem;
  line-height: 1.4;
  padding: 0.5625rem 0.8125rem;
  margin: 0;
}

.sim__turn--caller {
  background: var(--paper-deep);
  color: var(--ink);
  align-self: flex-start;
  border-radius: 18px 18px 18px 5px;
}

.sim__turn--desk {
  background: var(--navy);
  color: var(--cream);
  align-self: flex-end;
  border-radius: 18px 18px 5px 18px;
}

/* Typing indicator, both sides */
.sim__typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 0.6875rem 0.875rem;
  width: max-content;
}

.sim__typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  animation: typing-dot 1s ease-in-out infinite;
}

.sim__typing i:nth-child(2) { animation-delay: 0.16s; }
.sim__typing i:nth-child(3) { animation-delay: 0.32s; }

@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 0.9; transform: translateY(-3px); }
}

.sim__typing.is-on {
  display: flex;
}

.sim__typing--caller {
  background: var(--paper-deep);
  color: var(--ink-faint);
  align-self: flex-start;
  border-radius: 18px 18px 18px 5px;
}

.sim__typing--desk {
  background: var(--navy);
  color: var(--cream-soft);
  align-self: flex-end;
  border-radius: 18px 18px 5px 18px;
}

.sim__result {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(30, 122, 70, 0.1);
  border: 1px solid rgba(30, 122, 70, 0.28);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.875rem;
}

.sim__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--money);
  color: var(--white);
  font-size: 0.6875rem;
  flex: none;
}

.sim__value {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--money);
  font-variant-numeric: tabular-nums;
}

/* JS-driven playback: bubbles pop in from the bottom of the thread */
.js .sim--armed .sim__turn {
  display: none;
}

.js .sim--armed .sim__turn.is-in {
  display: block;
  animation: bubble-pop 0.38s var(--ease-out);
}

.js .sim--armed .sim__turn--caller.is-in {
  transform-origin: bottom left;
}

.js .sim--armed .sim__turn--desk.is-in {
  transform-origin: bottom right;
}

.js .sim--armed .sim__result {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.js .sim--armed .sim__result.is-in {
  opacity: 1;
  transform: none;
}

@keyframes bubble-pop {
  from {
    opacity: 0;
    transform: scale(0.82) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sim__caption {
  margin-top: 0.875rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--cream-faint);
}

/* --------------------------------------------------------------------------
   8. Ticker
   -------------------------------------------------------------------------- */

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  padding-block: 1.125rem;
  background: var(--paper);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: ticker-scroll 46s linear infinite;
  font-family: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--ink-faint);
  white-space: nowrap;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. Scroll reveals
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Stagger inside grids */
.js .steps [data-reveal]:nth-child(2),
.js .plans [data-reveal]:nth-child(2),
.js .phones [data-reveal]:nth-child(2) {
  transition-delay: 0.12s;
}

.js .steps [data-reveal]:nth-child(3),
.js .plans [data-reveal]:nth-child(3) {
  transition-delay: 0.24s;
}

/* --------------------------------------------------------------------------
   10. Proof band
   -------------------------------------------------------------------------- */

/* The numbers read like a ledger: hairline rows, figure left, fact right.
   Deliberately not a row of matching stat cards. */
.ledger {
  margin: 0;
  max-width: 46rem;
}

.ledger__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--hairline);
}

.ledger__row:last-child {
  border-bottom: 1px solid var(--hairline);
}

.ledger__row dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.875rem);
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  /* A figure never breaks across lines */
  white-space: nowrap;
  flex: 0 0 11rem;
}

.ledger__row dd {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1 1 16rem;
}

.proof-quote {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  line-height: 1.3;
  color: var(--navy);
  max-width: 26ch;
}


/* --------------------------------------------------------------------------
   11. How it works
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  gap: clamp(2.75rem, 5vw, 3.5rem);
  list-style: none;
  padding: 0;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }
}

.step {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* One small product visual per step, no paragraphs of description */
.step__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  background: var(--paper-deep);
  border-radius: var(--radius-md);
  padding: 1.125rem;
  min-height: 118px;
  margin-bottom: 1.25rem;
}

.fwd {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4375rem 0.8125rem;
  border-radius: 999px;
}

.fwd--you {
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
}

.fwd--us {
  background: var(--navy);
  color: var(--cream);
}

.fwd__link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-left: 0.8125rem;
  position: relative;
}

.fwd__link::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: -0.375rem;
  bottom: -0.375rem;
  border-left: 1px dashed rgba(16, 20, 24, 0.3);
}

.minibubble {
  font-size: 0.8125rem;
  line-height: 1.35;
  padding: 0.5rem 0.75rem;
  max-width: 100%;
}

.minibubble--caller {
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--ink);
  align-self: flex-start;
  border-radius: 14px 14px 14px 4px;
}

.minibubble--desk {
  background: var(--navy);
  color: var(--cream);
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
}

.mininotif {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 0.6875rem 0.875rem;
  box-shadow: 0 10px 22px -16px rgba(20, 33, 61, 0.4);
  width: 100%;
}

.mininotif__dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--strap);
  flex: none;
}

.mininotif__text {
  display: grid;
  font-size: 0.75rem;
  color: var(--ink-faint);
  line-height: 1.4;
}

.mininotif__text b {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. Hear it
   -------------------------------------------------------------------------- */

@media (min-width: 960px) {
  .hear__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 5vw, 4.5rem);
    align-items: start;
  }
}

.player {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: clamp(1.375rem, 2.5vw, 1.75rem);
}

.player h3 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}

.player__meta {
  font-size: 0.875rem;
  color: var(--ink-faint);
  margin-bottom: 1.375rem;
}

/* Custom player: round play button, waveform scrubber, time. The native
   <audio controls> stays for no-JS; JS hides it and drives it instead. */
.pcontrol audio {
  width: 100%;
}

.js .pcontrol audio {
  display: none;
}

.pcontrol {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.js .pcontrol {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.5rem 1.125rem 0.5rem 0.5rem;
}

.pcontrol__btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--strap);
  color: var(--white);
  cursor: pointer;
  flex: none;
  transition: transform 0.18s var(--ease-out), background-color 0.18s ease;
}

.js .pcontrol__btn {
  display: inline-flex;
}

.pcontrol__btn:hover {
  background: #DC5C13;
  transform: scale(1.06);
}

.pcontrol__btn .pcontrol__icon-play {
  display: block;
}

.pcontrol__btn .pcontrol__icon-pause {
  display: none;
}

.pcontrol--playing .pcontrol__btn .pcontrol__icon-play {
  display: none;
}

.pcontrol--playing .pcontrol__btn .pcontrol__icon-pause {
  display: block;
}

.pcontrol__bars {
  display: none;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 34px;
  cursor: pointer;
}

.js .pcontrol__bars {
  display: flex;
}

.pcontrol__bars i {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: rgba(16, 20, 24, 0.16);
  transition: background-color 0.15s ease;
}

.pcontrol__bars i.on {
  background: var(--strap);
}

.pcontrol--playing .pcontrol__bars i.on:last-of-type {
  animation: bar-live 0.9s ease-in-out infinite;
}

@keyframes bar-live {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.35); }
}

.pcontrol__time {
  display: none;
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink-faint);
  flex: none;
}

.js .pcontrol__time {
  display: block;
}

.player__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  list-style: none;
  padding-inline: 0;
}

.tag {
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 0.375rem 0.6875rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-soft);
}

.transcript {
  margin-top: clamp(2.5rem, 5vw, 0rem);
}

@media (min-width: 960px) {
  .transcript {
    margin-top: 0;
  }
}

.transcript__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.75rem;
}

/* Transcript as chat bubbles, same language as the hero simulation */
.transcript .turn {
  display: grid;
  gap: 0.3125rem;
  margin-bottom: 0.875rem;
  max-width: 85%;
}

.turn--desk {
  justify-self: end;
  justify-items: end;
}

.turn--caller {
  justify-self: start;
}

.transcript {
  display: grid;
}

.turn__who {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-inline: 0.375rem;
}

.turn--desk .turn__who {
  color: var(--strap);
}

.turn p:not(.turn__who) {
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.6875rem 0.9375rem;
}

.turn--caller p:not(.turn__who) {
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--ink);
  border-radius: 16px 16px 16px 5px;
}

.turn--desk p:not(.turn__who) {
  background: var(--navy);
  color: var(--cream);
  border-radius: 16px 16px 5px 16px;
}

.transcript__result {
  margin-top: 1.25rem;
}

.transcript__result .mininotif {
  width: auto;
}

/* --------------------------------------------------------------------------
   13. The app
   -------------------------------------------------------------------------- */

.app__grid {
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem);
}

.phones {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2rem);
  justify-content: center;
  perspective: 1200px;
}

/* On phones the two mockups become a swipe strip instead of a 1,200px stack:
   one screen of content, the second peeking in from the edge. */
@media (max-width: 679px) {
  .phones {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem 1.25rem;
    margin: 0 -1.25rem;
  }

  .phones::-webkit-scrollbar {
    display: none;
  }

  .phones .phone {
    flex: 0 0 82%;
    max-width: 272px;
    scroll-snap-align: center;
  }
}

.phone {
  width: 100%;
  max-width: 288px;
  flex: 0 1 288px;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(180deg, #E9E4DB 0%, #DED8CE 100%);
  border: 1px solid rgba(20, 33, 61, 0.18);
  box-shadow: 0 20px 40px -32px rgba(20, 33, 61, 0.55);
  display: flex;
  flex-direction: column;
}

@media (min-width: 680px) {
  .phone {
    max-width: 300px;
    flex-basis: 300px;
  }
}

.phone__screen {
  border-radius: 30px;
  background: var(--white);
  overflow: hidden;
  min-height: 480px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.phone__screen--lock {
  background: linear-gradient(170deg, #1B2A4A 0%, #14213D 55%, #0E1729 100%);
}

.phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.phone__screen--lock .phone__status {
  color: rgba(255, 255, 255, 0.85);
}

.phone__bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.phone__bars i {
  display: block;
  width: 3px;
  background: currentColor;
  border-radius: 1px;
  opacity: 0.85;
}

.phone__bars i:nth-child(1) { height: 4px; }
.phone__bars i:nth-child(2) { height: 6px; }
.phone__bars i:nth-child(3) { height: 8px; }
.phone__bars i:nth-child(4) { height: 10px; }

.phone__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  flex: 1;
}

.phone__kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.phone__headline {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  line-height: 1.24;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.phone__headline .money {
  font-size: 1.75rem;
  display: inline-block;
}

.phone__rows {
  display: grid;
}

.phone__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.6875rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.phone__row b {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.phone__feed {
  margin-top: auto;
}

.phone__feed-item {
  display: grid;
  gap: 0.1875rem;
  padding-block: 0.6875rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-faint);
}

.phone__feed-item strong {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--ink);
}

.phone__lockclock {
  text-align: center;
  padding: 2.25rem 1.25rem 1.75rem;
  color: var(--white);
}

.phone__lockclock time {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0;
}

.phone__lockclock span {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.notif {
  margin: 0 0.875rem 0.875rem;
  padding: 0.875rem 0.9375rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.notif__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.notif__dot {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--strap);
  flex: none;
}

.notif__app {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.notif__time {
  margin-left: auto;
  font-size: 0.625rem;
  color: var(--ink-faint);
}

.notif__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.notif p {
  font-size: 0.78125rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.notif--quiet {
  background: rgba(255, 255, 255, 0.82);
}

.phone__lockfoot {
  margin-top: auto;
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Feature cards, same kit as the step cards */
.featcards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .featcards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.featcards li {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.featcards li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--strap);
  margin-bottom: 1rem;
}

.featcards b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.featcards span {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
  display: block;
}

/* --------------------------------------------------------------------------
   14. Pricing
   -------------------------------------------------------------------------- */

.plans {
  display: grid;
  gap: 2rem;
  list-style: none;
  padding: 0;
}

/* Stacked plans: lead with the plan most movers pick, and drop the two
   duplicate call buttons since the sticky call bar is already on screen. */
@media (max-width: 899px) {
  .plan--featured {
    order: -1;
  }

  .plan .btn--ghost {
    display: none;
  }
}

@media (min-width: 900px) {
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }

  /* Subgrid: every zone (flag, title, price, pitch, list, button) shares its
     row height across all three cards, so the lines always align. */
  .plan {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    align-content: start;
  }
}

.plan {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.plan--featured {
  border-color: rgba(242, 107, 29, 0.5);
}

.plan__flag {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--strap);
  margin-bottom: 1rem;
}

.plan__flag--empty {
  display: none;
}

@media (min-width: 900px) {
  .plan__flag--empty {
    display: block;
    visibility: hidden;
  }
}

.plan h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.4375rem;
  margin-bottom: 1.25rem;
}

.plan__price b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.plan__price span {
  font-size: 0.9375rem;
  color: var(--ink-faint);
}

.plan__who {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}

.plan__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.875rem;
  flex: 1;
  align-content: start;
}

.plan__list li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.6875rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.plan__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.35;
  margin-top: 0.5625rem;
  margin-left: 0.25rem;
}

.plan .btn {
  width: 100%;
}

.pricing__fine {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .pricing__fine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.pricing__fine div b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.pricing__fine div span {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-faint);
  display: block;
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */

.faq {
  max-width: 820px;
}

.faq__item {
  border-top: 1px solid var(--hairline);
}

.faq__item:last-of-type {
  border-bottom: 1px solid var(--hairline);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--navy);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin-top: 0.5rem;
  border-right: 1.5px solid var(--strap);
  border-bottom: 1.5px solid var(--strap);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.faq__item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.75rem;
}

.faq__answer {
  padding-bottom: 1.75rem;
  max-width: 62ch;
}

.faq__answer p {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.faq__answer p + p {
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   16. Closer panel
   -------------------------------------------------------------------------- */

.closer {
  padding: 0 var(--gutter) clamp(1rem, 2.5vw, 2rem);
}

.closer__panel {
  border-radius: var(--radius-panel);
  overflow: hidden;
  background:
    radial-gradient(46rem 26rem at 88% 115%, rgba(242, 107, 29, 0.3), transparent 60%),
    linear-gradient(160deg, #1C2C50 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.closer h2 {
  color: var(--cream);
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  max-width: 18ch;
}

.closer p {
  margin-top: 1.5rem;
  max-width: 54ch;
  color: var(--cream-soft);
}

.closer .btn-row {
  margin-top: clamp(2.25rem, 4vw, 3rem);
}

.closer__note {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--cream-faint);
  max-width: 46ch;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--paper);
}

/* One quiet row of links, every item on a single line */
.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 2.25rem;
}

.footer__row a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}

.footer__row a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.footer__base {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: baseline;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.footer__base a {
  color: var(--ink-faint);
}

/* --------------------------------------------------------------------------
   18. Mobile sticky call bar
   -------------------------------------------------------------------------- */

.callbar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--strap);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 1.0625rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px -14px rgba(16, 20, 24, 0.5);
  transform: translateY(140%);
  transition: transform 0.35s var(--ease-out);
}

.callbar--show {
  transform: translateY(0);
}

.callbar .livedot {
  background: var(--white);
}

@media (min-width: 720px) {
  .callbar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   19. Legal pages
   -------------------------------------------------------------------------- */

.legal {
  padding-block: clamp(3.5rem, 7vw, 5.5rem) var(--section-y);
}

.legal__head {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.legal__head h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal__head p {
  margin-top: 1.25rem;
  max-width: var(--prose);
  color: var(--ink-soft);
}

.legal__body {
  max-width: var(--prose);
}

.legal__body section {
  padding-top: clamp(2.25rem, 4vw, 3rem);
}

.legal__body section + section {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid var(--hairline);
}

.legal__body section:first-child {
  padding-top: 0;
}

.legal__body h2 {
  font-size: 1.5rem;
  margin-bottom: 1.125rem;
}

.legal__body h3 {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.75rem;
}

.legal__body p,
.legal__body li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.legal__body p + p {
  margin-top: 1rem;
}

.legal__body ul {
  margin: 1.125rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.legal__body ul li::marker {
  color: var(--strap);
}

.legal__back {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.9375rem;
}
