:root {
  color-scheme: light;
  --ink: #071a2d;
  --ink-soft: #102f4e;
  --navy: #123354;
  --navy-light: #1a466f;
  --coral: #ff6b59;
  --coral-deep: #e75547;
  --coral-pale: #fff0eb;
  --sky: #d9eef4;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #617080;
  --line: rgba(7, 26, 45, 0.13);
  --shadow: 0 28px 80px rgba(7, 26, 45, 0.16);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 48px));
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}
.site-header.scrolled {
  background: rgba(7, 26, 45, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; }
.brand img { border-radius: 11px; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 0.92rem; font-weight: 600; }
.site-nav > a:not(.button) { color: rgba(255, 255, 255, 0.78); transition: color 150ms ease; }
.site-nav > a:not(.button):hover { color: var(--white); }
.nav-toggle { display: none; border: 0; background: none; color: inherit; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--coral);
  border-radius: 15px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 34px rgba(255, 107, 89, 0.23);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 18px 42px rgba(255, 107, 89, 0.3); }
.button:focus-visible, .text-link:focus-visible, .site-nav a:focus-visible, .brand:focus-visible {
  outline: 3px solid rgba(255, 107, 89, 0.55);
  outline-offset: 4px;
}
.button-small { min-height: 41px; padding: 0 17px; border-radius: 12px; font-size: 0.84rem; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); box-shadow: none; }
.button-light:hover { color: var(--white); background: var(--coral); border-color: var(--coral); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.text-link span { color: var(--coral); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--coral-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow > span { width: 26px; height: 2px; background: currentColor; }
.eyebrow.light { color: #ff9587; }
.eyebrow.centred { justify-content: center; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { margin-bottom: 27px; font-size: clamp(3.3rem, 6.3vw, 6.2rem); letter-spacing: -0.065em; }
h2 { margin-bottom: 24px; font-size: clamp(2.4rem, 4.2vw, 4.5rem); letter-spacing: -0.055em; }
h3 { margin-bottom: 14px; font-size: 1.55rem; letter-spacing: -0.035em; }

.hero {
  position: relative;
  min-height: 850px;
  padding: 170px 0 116px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 22%, rgba(35, 85, 129, 0.62), transparent 34%),
    linear-gradient(135deg, #061727 0%, #0a233a 58%, #0e2b46 100%);
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(3, 16, 29, 0.28));
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr); align-items: center; gap: 50px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 620px; margin: 0 0 34px; color: rgba(255, 255, 255, 0.72); font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 35px; }
.hero .text-link { color: rgba(255, 255, 255, 0.9); }
.trust-list { display: flex; flex-wrap: wrap; gap: 16px 24px; padding: 0; margin: 0; list-style: none; color: rgba(255, 255, 255, 0.64); font-size: 0.8rem; font-weight: 600; }
.trust-list span { color: #ff9587; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { width: 440px; height: 440px; right: 3%; top: 18%; background: rgba(255, 107, 89, 0.08); }
.hero-glow-two { width: 360px; height: 360px; left: 34%; bottom: 4%; background: rgba(69, 160, 203, 0.09); }

.product-stage { position: relative; min-height: 555px; perspective: 1000px; }
.orbit { position: absolute; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 50%; }
.orbit-one { width: 650px; height: 650px; inset: -45px auto auto -20px; }
.orbit-two { width: 470px; height: 470px; inset: 45px auto auto 70px; }
.app-window {
  position: absolute;
  z-index: 2;
  width: 660px;
  top: 35px;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #f9f7f2;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.45);
  color: var(--ink);
  transform: rotateY(-4deg) rotateX(1deg);
}
.window-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 53px; padding: 0 17px; border-bottom: 1px solid #dce1e5; background: rgba(255, 255, 255, 0.88); }
.traffic-lights { display: flex; gap: 7px; }
.traffic-lights i { width: 9px; height: 9px; border-radius: 50%; background: #d5dbe0; }
.traffic-lights i:first-child { background: #ff7b6d; }
.window-title { display: flex; align-items: center; gap: 7px; font-size: 0.75rem; font-weight: 800; }
.window-title img { border-radius: 6px; }
.avatar { justify-self: end; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #ff8b7c; background: var(--ink); font-size: 0.59rem; font-weight: 800; }
.app-body { display: grid; grid-template-columns: 112px 1fr 166px; min-height: 426px; }
.app-sidebar { padding: 21px 11px; border-right: 1px solid #dfe5e8; background: #f1f0ec; }
.app-sidebar b { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; padding: 9px 8px; border-radius: 8px; color: #6e7a85; font-size: 0.58rem; white-space: nowrap; }
.app-sidebar b.active { color: var(--coral-deep); background: var(--white); box-shadow: 0 3px 11px rgba(7, 26, 45, 0.06); }
.app-sidebar span { width: 14px; text-align: center; }
.app-feed { padding: 20px 17px; background: #fbfaf7; }
.feed-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 14px; }
.feed-heading div { display: grid; gap: 3px; }
.feed-heading small, .coach-heading small, .phone-head small { color: var(--coral-deep); font-size: 0.48rem; font-weight: 900; letter-spacing: 0.1em; }
.feed-heading strong { font-size: 0.95rem; }
.feed-heading > span { padding: 3px 7px; border-radius: 12px; color: #537187; background: #e3eef3; font-size: 0.52rem; font-weight: 800; }
.post-card { margin-bottom: 11px; padding: 14px; border: 1px solid #dde5e8; border-radius: 13px; background: var(--white); box-shadow: 0 7px 20px rgba(10, 37, 59, 0.05); }
.featured-card { border-color: rgba(255, 107, 89, 0.36); }
.post-author { display: flex; align-items: center; gap: 9px; }
.post-author > div:last-child { display: grid; }
.post-author strong { font-size: 0.68rem; }
.post-author small { color: #81909c; font-size: 0.51rem; }
.mini-avatar { display: grid; flex: 0 0 auto; place-items: center; width: 31px; height: 31px; border-radius: 50%; font-size: 0.56rem; font-weight: 900; }
.mini-avatar.coral { color: #a23831; background: #ffe1dc; }
.mini-avatar.blue { color: #174f72; background: #dceff6; }
.post-card > p { margin: 11px 0; font-size: 0.63rem; line-height: 1.55; }
.why-row { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 7px; padding: 7px 8px; border-radius: 8px; background: #fff4f0; }
.why-row span { color: var(--coral-deep); font-size: 0.47rem; font-weight: 900; text-transform: uppercase; }
.why-row p { margin: 0; color: #697680; font-size: 0.48rem; }
.post-card button { width: 100%; margin-top: 10px; padding: 7px; border: 0; border-radius: 8px; color: var(--white); background: var(--ink-soft); font-size: 0.53rem; font-weight: 800; }
.post-card button span { color: #ff9182; }
.quiet-card { opacity: 0.7; }
.coach-panel { padding: 20px 13px; border-left: 1px solid #dfe5e8; background: #eff4f4; }
.coach-heading { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.coach-heading > span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; color: #ff7866; background: var(--ink-soft); }
.coach-heading div { display: grid; gap: 2px; }
.coach-heading strong { font-size: 0.61rem; }
.coach-panel > p { padding: 12px; border-radius: 10px; background: var(--white); box-shadow: 0 6px 18px rgba(7, 26, 45, 0.06); font-size: 0.58rem; line-height: 1.6; }
.coach-note { display: flex; gap: 7px; margin-top: 15px; color: #71808b; font-size: 0.48rem; line-height: 1.45; }
.coach-note i { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 3px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255, 107, 89, 0.13); }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 14px; background: rgba(15, 45, 73, 0.92); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3); backdrop-filter: blur(12px); }
.floating-chip > span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; color: var(--ink); background: #ff8d7e; font-weight: 900; }
.floating-chip div { display: grid; }
.floating-chip strong { font-size: 0.63rem; }
.floating-chip small { color: rgba(255, 255, 255, 0.58); font-size: 0.48rem; }
.chip-left { left: -34px; bottom: 31px; }
.chip-right { right: -58px; top: 10px; }

.principle-strip { color: #864139; background: #ffe6df; }
.strip-inner { display: grid; place-items: center; min-height: 116px; text-align: center; }
.strip-inner p { margin: 0; font-size: clamp(1rem, 2vw, 1.24rem); }

.section { padding: 130px 0; }
.section-heading { max-width: 850px; margin-bottom: 64px; }
.section-heading.centred { margin-inline: auto; text-align: center; }
.section-heading.centred .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 470px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card::after { content: ""; position: absolute; width: 210px; height: 210px; right: -90px; top: -85px; border: 1px solid currentColor; border-radius: 50%; opacity: 0.07; }
.feature-coral { background: var(--coral-pale); }
.feature-navy { color: var(--white); background: var(--ink-soft); }
.feature-sky { background: #e8f4f6; }
.feature-number { position: absolute; right: 27px; top: 24px; color: currentColor; font-size: 0.7rem; font-weight: 800; opacity: 0.38; }
.feature-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 60px; border-radius: 15px; color: var(--white); background: var(--coral); font-size: 1.05rem; font-weight: 900; box-shadow: 0 12px 25px rgba(255, 107, 89, 0.2); }
.feature-navy .feature-icon { color: var(--coral); background: rgba(255, 255, 255, 0.1); box-shadow: none; }
.feature-sky .feature-icon { color: var(--ink); background: #b8dce7; box-shadow: none; }
.feature-card > p { color: var(--muted); }
.feature-navy > p { color: rgba(255, 255, 255, 0.66); }
.mini-ui { display: flex; align-items: center; gap: 10px; margin-top: 32px; padding: 13px; border-radius: 12px; background: rgba(255, 255, 255, 0.75); box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08); }
.mini-ui .status-dot { width: 10px; height: 10px; border-radius: 50%; background: #42aa77; box-shadow: 0 0 0 5px rgba(66, 170, 119, 0.14); }
.mini-ui div { display: grid; margin-right: auto; }
.mini-ui strong { font-size: 0.74rem; }
.mini-ui small { color: var(--muted); font-size: 0.6rem; }
.mini-ui b { color: var(--coral-deep); }
.feature-card blockquote { margin: 30px 0 0; padding: 18px; border-left: 3px solid var(--coral); border-radius: 0 12px 12px 0; color: rgba(255, 255, 255, 0.88); background: rgba(255, 255, 255, 0.07); font-size: 0.9rem; }
.sparkline { margin-top: 28px; padding: 15px; border-radius: 14px; background: rgba(255, 255, 255, 0.66); }
.spark-label { display: block; color: var(--muted); font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }
.sparkline svg { overflow: visible; }
.sparkline .area { fill: rgba(255, 107, 89, 0.12); }
.sparkline .line { fill: none; stroke: var(--coral); stroke-width: 3; stroke-linecap: round; }

.workflow-section { color: var(--white); background: var(--ink); }
.workflow-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 105px; }
.workflow-copy { position: sticky; top: 140px; align-self: start; }
.workflow-copy > p:not(.eyebrow) { max-width: 480px; margin-bottom: 34px; color: rgba(255, 255, 255, 0.62); }
.workflow-list { margin: 0; padding: 0; list-style: none; counter-reset: workflow; }
.workflow-list li { display: grid; grid-template-columns: 58px 1fr; gap: 24px; min-height: 160px; padding: 10px 0 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.workflow-list li + li { padding-top: 35px; }
.workflow-list li > span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 50%; color: #ff9587; font-size: 0.78rem; font-weight: 900; }
.workflow-list h3 { margin-bottom: 8px; }
.workflow-list p { margin: 0; color: rgba(255, 255, 255, 0.58); }

.continuity-section { background: var(--cream); }
.continuity-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 100px; }
.phone-wrap { position: relative; display: grid; place-items: center; min-height: 650px; }
.phone-halo { position: absolute; width: 550px; height: 550px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 107, 89, 0.18), transparent 68%); }
.phone { position: relative; z-index: 1; width: 300px; height: 625px; padding: 18px 17px; overflow: hidden; border: 8px solid #061725; border-radius: 48px; color: var(--white); background: #071a2d; box-shadow: 0 35px 75px rgba(7, 26, 45, 0.28); }
.phone::after { content: ""; position: absolute; top: 10px; left: 50%; width: 84px; height: 22px; border-radius: 20px; background: #020b12; transform: translateX(-50%); }
.phone-top { display: flex; justify-content: space-between; padding: 0 7px 27px; font-size: 0.58rem; font-weight: 800; }
.phone-top i { width: 17px; height: 8px; border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 3px; }
.phone-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 21px; }
.phone-head > div:first-child { display: grid; }
.phone-head strong { font-size: 1.05rem; }
.phone-summary { display: grid; gap: 3px; padding: 15px; border: 1px solid #2d587b; border-radius: 16px; background: #163b5d; }
.phone-summary strong { font-size: 0.72rem; }
.phone-summary span { color: #a9bdce; font-size: 0.58rem; }
.phone-post { margin-top: 14px; padding: 14px; border: 1px solid #2d587b; border-radius: 17px; background: #153b5d; }
.phone-post .post-author strong { font-size: 0.63rem; }
.phone-post p { margin: 14px 0; font-size: 0.7rem; line-height: 1.55; }
.phone-post > b { color: #ff8c7d; font-size: 0.64rem; }
.phone-tabs { position: absolute; inset: auto 13px 13px; display: flex; justify-content: space-around; padding: 9px 4px; border: 1px solid #2d587b; border-radius: 22px; background: rgba(15, 48, 77, 0.96); }
.phone-tabs span { display: grid; place-items: center; min-width: 42px; color: #bad0df; font-size: 0.8rem; }
.phone-tabs small { font-size: 0.42rem; }
.phone-tabs .active { color: #ff8d7e; }
.continuity-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.check-list { display: grid; gap: 14px; padding: 0; margin: 34px 0 0; list-style: none; font-weight: 650; }
.check-list li { display: flex; align-items: center; gap: 13px; }
.check-list span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: #9b3c33; background: #ffdcd6; font-size: 0.72rem; }

.plans-section { background: var(--white); }
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 510px)); justify-content: center; gap: 24px; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 575px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.plan-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px; }
.plan-top span { color: var(--coral-deep); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.plan-top strong { color: #8a969f; font-size: 0.66rem; }
.plan-card > p { color: var(--muted); }
.plan-card ul { display: grid; gap: 13px; padding: 26px 0 30px; margin: 0 0 auto; border-top: 1px solid var(--line); list-style: none; }
.plan-card li::before { content: "✓"; margin-right: 11px; color: var(--coral-deep); font-weight: 900; }
.pro-card { color: var(--white); border-color: var(--ink); background: var(--ink); box-shadow: var(--shadow); }
.pro-card .plan-top strong, .pro-card > p { color: rgba(255, 255, 255, 0.62); }
.pro-card ul { border-color: rgba(255, 255, 255, 0.14); }
.popular { position: absolute; top: -14px; right: 28px; padding: 7px 13px; border-radius: 9px; color: #8a342d; background: #ffd9d1; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.08em; }
.pricing-note { margin: 28px 0 0; color: var(--muted); text-align: center; font-size: 0.82rem; }

.trust-section { color: var(--white); background: linear-gradient(135deg, #0a2238, #143a5c); }
.trust-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; }
.trust-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-points article { padding: 25px 20px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 18px; background: rgba(255, 255, 255, 0.05); }
.trust-points span { color: #ff9789; font-size: 0.65rem; font-weight: 900; }
.trust-points h3 { margin: 30px 0 12px; font-size: 1.05rem; }
.trust-points p { margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }

.final-cta { padding: 130px 0; background: var(--coral-pale); }
.final-card { display: flex; flex-direction: column; align-items: center; max-width: 900px; text-align: center; }
.final-card img { margin-bottom: 30px; border-radius: 22px; box-shadow: 0 18px 38px rgba(7, 26, 45, 0.16); }
.final-card h2 { max-width: 760px; }
.final-card > p:not(.eyebrow) { max-width: 610px; margin: 0 0 30px; color: var(--muted); font-size: 1.08rem; }

.site-footer { padding: 55px 0; color: rgba(255, 255, 255, 0.62); background: #04111e; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; }
.site-footer .brand { color: var(--white); }
.site-footer p { margin: 0; font-size: 0.88rem; }
.site-footer nav { display: flex; gap: 24px; font-size: 0.82rem; font-weight: 700; }
.site-footer nav a:hover { color: var(--white); }
.site-footer small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.72rem; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-page .site-header { position: static; color: var(--white); background: var(--ink); }
.legal-main { padding: 84px 0 120px; }
.legal-shell { width: min(760px, calc(100vw - 48px)); margin-inline: auto; }
.legal-intro { margin-bottom: 52px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-intro h1 { margin-bottom: 18px; font-size: clamp(2.7rem, 6vw, 4.6rem); color: var(--ink); }
.legal-intro p { max-width: 650px; color: var(--muted); }
.legal-date { display: inline-flex; padding: 6px 10px; border-radius: 8px; color: #864139 !important; background: #ffe5de; font-size: 0.74rem; font-weight: 800; }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.65rem; letter-spacing: -0.035em; }
.legal-content h3 { margin: 28px 0 10px; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: #435361; }
.legal-content ul { display: grid; gap: 9px; padding-left: 21px; }
.legal-content a { color: var(--coral-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-callout { margin: 34px 0; padding: 20px 22px; border-left: 4px solid var(--coral); border-radius: 0 12px 12px 0; background: var(--coral-pale); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal-late { transition-delay: 150ms; }
.reveal-mid { transition-delay: 80ms; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1160px) {
  .hero-grid { grid-template-columns: 0.85fr 1.15fr; gap: 15px; }
  .product-stage { transform: scale(0.88); transform-origin: left center; }
  .chip-right { right: -15px; }
  .trust-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 40px, 760px); }
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .product-stage { width: 680px; margin: 20px auto -35px; transform: scale(0.93); transform-origin: top left; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 390px; }
  .workflow-grid, .continuity-grid { grid-template-columns: 1fr; gap: 70px; }
  .workflow-copy { position: static; }
  .continuity-copy { order: -1; }
  .trust-points { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 32px); --radius: 22px; }
  .nav-shell { min-height: 68px; }
  .nav-toggle { position: relative; z-index: 3; display: grid; gap: 6px; width: 42px; height: 42px; place-content: center; border-radius: 12px; background: rgba(255, 255, 255, 0.08); }
  .nav-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: var(--white); transition: transform 180ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; justify-content: center; padding: 80px 30px; background: rgba(4, 17, 30, 0.98); transform: translateX(100%); transition: transform 220ms ease, visibility 0s linear 220ms; }
  .site-nav.open { visibility: visible; transform: translateX(0); transition-delay: 0s; }
  .site-nav > a:not(.button) { padding: 10px 0; color: var(--white); font-size: 1.6rem; }
  .site-nav .button { margin-top: 20px; }
  .hero { min-height: auto; padding: 125px 0 75px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  h1 { font-size: clamp(3.15rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-list { display: grid; }
  .product-stage { width: 660px; height: 510px; margin: 10px 0 -125px; transform: scale(0.61); transform-origin: top left; }
  .principle-strip { position: relative; }
  .section { padding: 90px 0; }
  .section-heading { margin-bottom: 42px; }
  .feature-card { padding: 27px; }
  .workflow-list li { grid-template-columns: 44px 1fr; gap: 17px; }
  .workflow-list li > span { width: 40px; height: 40px; }
  .phone-wrap { min-height: 590px; transform: scale(0.9); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; padding: 30px; }
  .plan-card ul { margin-bottom: 25px; }
  .trust-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer small { grid-column: auto; }
  .legal-shell { width: calc(100vw - 32px); }
  .legal-page .site-nav { position: static; inset: auto; visibility: visible; flex-direction: row; justify-content: flex-end; gap: 14px; width: auto; padding: 0; background: none; transform: none; }
  .legal-page .site-nav > a:not(.button) { padding: 0; font-size: 0.75rem; }
  .legal-page .site-nav a:last-child { display: none; }
}

@media (max-width: 430px) {
  .product-stage { transform: scale(0.52); margin-bottom: -175px; }
  .phone-wrap { margin: -45px 0; transform: scale(0.78); }
  .final-cta { padding: 90px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
