:root {
  --ink: #07131f;
  --navy: #061321;
  --navy-2: #0a1e31;
  --navy-3: #102a41;
  --paper: #f7f5ef;
  --paper-2: #ece9df;
  --white: #fff;
  --muted: #aeb9c4;
  --muted-dark: #536270;
  --gold: #d5a94f;
  --gold-light: #f1d899;
  --gold-deep: #9c6f24;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(7,19,31,.14);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6vw, 6.45rem); max-width: 10.5ch; margin-bottom: 26px; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.8rem); max-width: 13ch; margin-bottom: 22px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
p { color: var(--muted-dark); }
.section-shell { width: var(--shell); margin-inline: auto; }
.section { padding: 118px 0; }
.section-heading { max-width: 790px; margin-bottom: 56px; }
.section-heading > p:last-child { max-width: 670px; font-size: 1.08rem; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.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: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6,19,33,.9);
  color: var(--white);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--shell);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; margin-right: auto; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241,216,153,.65);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(241,216,153,.2), rgba(213,169,79,.04));
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: .98rem; letter-spacing: -.01em; }
.brand small { color: var(--muted); font-size: .69rem; letter-spacing: .04em; }
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.desktop-nav a { color: #d8e0e8; font-size: .87rem; font-weight: 650; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--gold-light); }
.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(241,216,153,.5);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 750;
}
.header-cta:hover, .header-cta:focus-visible { background: var(--gold-light); color: var(--ink); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .2s 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); }
.mobile-nav { padding: 4px 20px 18px; border-top: 1px solid var(--line); background: var(--navy); }
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: #e6edf3; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 78px);
  padding-top: clamp(76px, 9vw, 136px);
  padding-bottom: 95px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  color: var(--white);
}
main { overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  height: auto;
  min-height: 0;
  background:
    radial-gradient(circle at 73% 42%, rgba(213,169,79,.18), transparent 28%),
    radial-gradient(circle at 15% 0%, rgba(29,89,132,.28), transparent 32%),
    linear-gradient(135deg, #071725, var(--navy) 58%, #020a11);
  transform: translateX(-50%);
}
.hero h1 { text-wrap: balance; }
.hero .eyebrow { color: var(--gold-light); }
.hero-lead { max-width: 660px; color: #c6d0da; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-actions { margin: 34px 0 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #17120a; box-shadow: 0 12px 30px rgba(213,169,79,.18); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 16px 34px rgba(213,169,79,.3); }
.button-secondary { border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.06); color: var(--white); }
.proof-points { padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; color: #c8d2dc; font-size: .88rem; }
.proof-points li::before { content: "✓"; margin-right: 8px; color: var(--gold-light); font-weight: 900; }
.hero-visual { position: relative; isolation: isolate; }
.hero-visual > img { position: relative; z-index: 2; width: 100%; border: 1px solid rgba(241,216,153,.34); border-radius: 22px; box-shadow: 0 38px 90px rgba(0,0,0,.48); transform: perspective(1000px) rotateY(-5deg) rotateX(1deg); }
.hero-glow { position: absolute; inset: 4% -10%; z-index: 0; border-radius: 50%; background: rgba(213,169,79,.15); filter: blur(55px); }
.floating-note {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: -38px;
  max-width: 300px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(10,30,49,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: .9rem; }
.floating-note small { color: var(--muted); font-size: .75rem; }
.note-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(213,169,79,.18); color: var(--gold-light); font-weight: 900; }

.benefit-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy); color: var(--white); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.benefit-grid > div { min-height: 150px; padding: 34px clamp(20px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.benefit-grid > div:first-child { padding-left: 0; }
.benefit-grid > div:last-child { padding-right: 0; border-right: 0; }
.benefit-grid strong { margin-bottom: 6px; font-size: 1.05rem; }
.benefit-grid span { color: var(--muted); font-size: .9rem; }

.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; list-style: none; }
.process-card { min-height: 300px; padding: 30px 26px; display: flex; flex-direction: column; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.56); }
.process-card > span { margin-bottom: auto; color: var(--gold-deep); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.process-card h3 { margin: 34px 0 13px; }
.process-card p { margin-bottom: 0; font-size: .92rem; }

.demo-section { background: linear-gradient(155deg, #071927, #030b13); color: var(--white); }
.demo-section .eyebrow { color: var(--gold-light); }
.demo-section p { color: #afbdc9; }
.demo-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr); align-items: center; gap: clamp(54px, 9vw, 130px); }
.demo-copy h2 { max-width: 9ch; }
.demo-copy > p:not(.eyebrow,.quiet-note) { max-width: 590px; font-size: 1.07rem; }
.check-list { margin: 28px 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 900; }
.quiet-note { font-size: .82rem; }
.phone-stage { position: relative; min-height: 650px; display: grid; place-items: center; }
.phone-stage::before { content: ""; position: absolute; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle, rgba(213,169,79,.2), transparent 65%); }
.phone-shell { position: relative; width: min(340px, 82vw); padding: 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 42px; background: #02060a; box-shadow: 0 44px 100px rgba(0,0,0,.58); transform: rotate(2.2deg); }
.phone-shell::after { content: ""; position: absolute; inset: 8px; pointer-events: none; border: 1px solid rgba(255,255,255,.1); border-radius: 34px; }
.phone-island { position: absolute; z-index: 2; top: 18px; left: 50%; width: 92px; height: 20px; border-radius: 999px; background: #000; transform: translateX(-50%); }
.phone-shell video { width: 100%; aspect-ratio: 9 / 19.5; object-fit: cover; border-radius: 32px; background: #111; }
.screenshot-block { margin-top: 90px; }
.subheading-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.subheading-row h3 { margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.subheading-row > p { font-size: .78rem; }
.screenshot-rail { margin-top: 28px; padding: 0 0 26px; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(210px, 255px); gap: 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-color: var(--gold-deep) rgba(255,255,255,.08); }
.screenshot-rail figure { margin: 0; padding: 8px; scroll-snap-align: start; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.06); }
.screenshot-rail img { width: 100%; aspect-ratio: 9 / 19.5; object-fit: cover; object-position: top; border-radius: 18px; background: #111; }
.screenshot-rail figcaption { padding: 12px 9px 6px; color: #dce4eb; font-size: .82rem; }

.pdf-showcase { position: relative; background: #0a1c2b; color: var(--white); }
.pdf-showcase::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(213,169,79,.07), transparent 45%); pointer-events: none; }
.pdf-showcase .eyebrow { color: var(--gold-light); }
.pdf-showcase p { color: #afbdc9; }
.pdf-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr); align-items: center; gap: clamp(50px, 8vw, 116px); }
.pdf-copy h2 { max-width: 10ch; }
.result-chain { margin: 30px 0 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.result-chain span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.05); color: #e7edf2; font-size: .75rem; font-weight: 750; }
.result-chain i { color: var(--gold); font-style: normal; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-weight: 800; border-bottom: 1px solid rgba(241,216,153,.42); }
.text-link:hover, .text-link:focus-visible { color: var(--white); border-color: var(--white); }
.pdf-stage { position: relative; min-height: 650px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: #020a11; box-shadow: inset 0 0 100px rgba(0,0,0,.5), var(--shadow); perspective: 1200px; isolation: isolate; }
.stage-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 42px 42px; transform: perspective(600px) rotateX(58deg) scale(1.6) translateY(22%); transform-origin: bottom; }
.stage-light { position: absolute; left: 50%; bottom: -18%; width: 70%; height: 54%; border-radius: 50%; background: rgba(213,169,79,.2); filter: blur(55px); transform: translateX(-50%); }
.pdf-sheet { position: absolute; z-index: 2; top: 8%; left: 24%; width: 52%; max-height: 78%; object-fit: contain; border-radius: 3px; background: #fff; box-shadow: 0 30px 70px rgba(0,0,0,.62); opacity: 0; transform-origin: center; animation: pdf-flight 12s cubic-bezier(.3,.65,.3,1) infinite both; }
.pdf-page-one { animation-delay: 0s; }
.pdf-page-two { animation-delay: 4s; }
.pdf-page-three { animation-delay: 8s; }
.stage-caption { position: absolute; z-index: 4; right: 20px; bottom: 18px; left: 20px; color: #9cabb7; font-size: .72rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
@keyframes pdf-flight {
  0% { opacity: 0; transform: translate3d(95%,20%,0) rotateY(-22deg) rotateZ(13deg) scale(.72); filter: blur(4px); }
  6% { opacity: 1; }
  14%, 25% { opacity: 1; transform: translate3d(0,0,0) rotateY(-4deg) rotateZ(-3deg) scale(1); filter: blur(0); }
  34% { opacity: 0; transform: translate3d(-105%,-16%,0) rotateY(24deg) rotateZ(-14deg) scale(.78); filter: blur(5px); }
  35%, 100% { opacity: 0; transform: translate3d(95%,20%,0) rotateY(-22deg) rotateZ(13deg) scale(.72); }
}

.personalization { background: var(--paper); }
.personalization-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.personal-card { min-height: 310px; padding: clamp(27px, 4vw, 46px); border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.66); }
.personal-card h3 { max-width: 14ch; margin: 14px 0 17px; font-size: clamp(1.6rem, 2.6vw, 2.6rem); }
.personal-card p { max-width: 520px; }
.personal-card .check-list { margin-bottom: 0; }
.card-kicker { color: var(--gold-deep); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.feature-card { grid-row: span 2; min-height: 638px; display: flex; flex-direction: column; background: linear-gradient(145deg, #0d273c, var(--navy)); color: var(--white); overflow: hidden; }
.feature-card .card-kicker { color: var(--gold-light); }
.feature-card p { color: #b5c1cc; }
.brand-preview { position: relative; min-height: 260px; margin-top: auto; padding: 30px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); }
.brand-preview::before { content: ""; position: absolute; width: 240px; height: 240px; top: -60px; right: -40px; border: 1px solid rgba(241,216,153,.3); border-radius: 50%; box-shadow: 0 0 0 28px rgba(241,216,153,.04), 0 0 0 58px rgba(241,216,153,.025); }
.brand-preview span { position: relative; color: var(--gold-light); font-family: Georgia, serif; font-size: 2rem; font-weight: 700; }
.brand-preview i { position: relative; width: 100%; height: 1px; margin: 13px 0 15px; background: linear-gradient(90deg, var(--gold), transparent); }
.brand-preview strong { position: relative; font-size: 1.2rem; }
.compact { gap: 8px; }

.requirements-section { background: #eeeae0; }
.requirements-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr); align-items: start; gap: clamp(60px, 9vw, 130px); }
.requirements-copy { position: sticky; top: 130px; }
.requirements-copy .button { margin-top: 18px; }
.requirements-list { margin: 0; padding: 0; display: grid; list-style: none; border-top: 1px solid var(--line-dark); }
.requirements-list li { padding: 25px 0; display: grid; grid-template-columns: 52px 1fr; gap: 15px; border-bottom: 1px solid var(--line-dark); }
.requirements-list li > span { color: var(--gold-deep); font-size: .75rem; font-weight: 850; letter-spacing: .08em; }
.requirements-list strong { display: block; margin-bottom: 5px; font-size: 1.1rem; }
.requirements-list p { margin: 0; font-size: .92rem; }

.solution-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.solution-card { min-height: 270px; padding: 27px; display: flex; flex-direction: column; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.48); }
.solution-card > span { color: var(--gold-deep); font-size: .72rem; font-weight: 850; }
.solution-card h3 { margin-top: auto; margin-bottom: 13px; }
.solution-card p { margin: 0; font-size: .9rem; }
.custom-process { margin-top: 20px; padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1.15fr .9fr auto; align-items: center; gap: clamp(25px, 5vw, 65px); border-radius: var(--radius); background: var(--navy); color: var(--white); }
.custom-process h3 { margin: 0; font-size: clamp(1.6rem, 2.8vw, 2.75rem); }
.custom-process .eyebrow { color: var(--gold-light); }
.custom-process p { margin: 0; color: #afbdc9; }
.custom-process .text-link { white-space: nowrap; }

.start-section { background: var(--white); }
.start-timeline { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); list-style: none; counter-reset: stage; }
.start-timeline li { position: relative; padding-right: 34px; }
.start-timeline li::before { content: ""; position: absolute; top: 22px; left: 44px; right: 0; height: 1px; background: var(--line-dark); }
.start-timeline li:last-child::before { display: none; }
.start-timeline li > span { position: relative; z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid #cbb27c; border-radius: 50%; background: var(--white); color: var(--gold-deep); font-size: .82rem; font-weight: 850; }
.start-timeline strong { font-size: 1.08rem; }
.start-timeline p { margin: 7px 0 0; font-size: .9rem; }
.license-note { max-width: 830px; margin: 54px 0 0; padding: 22px 25px; border-left: 3px solid var(--gold); background: #f2eee5; font-size: .88rem; }

.faq-section .section-heading { margin-bottom: 35px; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { position: relative; padding: 25px 52px 25px 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 19px; right: 7px; color: var(--gold-deep); font-size: 1.65rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -5px 0 26px; }

.contact-section { background: linear-gradient(140deg, #0c2539, #030b12); color: var(--white); }
.contact-section .eyebrow { color: var(--gold-light); }
.contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(480px,1.2fr); align-items: start; gap: clamp(55px,9vw,130px); }
.contact-copy { position: sticky; top: 130px; }
.contact-copy h2 { max-width: 9ch; }
.contact-copy p { color: #afbdc9; }
.contact-email { color: var(--gold-light); font-size: clamp(1.15rem,2vw,1.5rem); font-weight: 750; border-bottom: 1px solid rgba(241,216,153,.4); }
.contact-form { padding: clamp(26px,4vw,48px); display: grid; gap: 17px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label:not(.consent) { display: grid; gap: 7px; color: #dfe7ee; font-size: .875rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; outline: none; background: rgba(2,10,17,.5); color: var(--white); }
.contact-form input, .contact-form select { min-height: 48px; padding: 0 13px; }
.contact-form textarea { padding: 12px 13px; resize: vertical; }
.contact-form select option { background: var(--navy); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,169,79,.13); }
.consent { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 9px; color: #b8c4ce; font-size: .875rem; }
.consent input { width: 16px; min-height: 16px; margin: 3px 0 0; accent-color: var(--gold); }
.consent a { color: var(--gold-light); text-decoration: underline; }
.contact-form .button { width: fit-content; }
.contact-form .button:disabled { cursor: not-allowed; opacity: .6; transform: none; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); pointer-events: none; }
.form-note, .form-status { margin: 0; color: #aebdc8; font-size: .875rem; }
.form-status { color: var(--gold-light); }

.site-footer { padding: 70px 0 25px; background: #02070c; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1fr; gap: 40px; padding-bottom: 55px; }
.footer-grid strong { font-size: 1.1rem; }
.footer-grid p { margin: 7px 0 0; color: #8696a3; font-size: .85rem; }
.footer-grid > div > span { display: block; margin-bottom: 9px; color: #728492; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { color: #dbe3e9; font-size: .88rem; }
.footer-grid a:hover, .footer-grid a:focus-visible, .footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--gold-light); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #738391; font-size: .75rem; }
.footer-bottom nav { display: flex; gap: 22px; }

.legal-page { background: #f5f2ea; }
.legal-header { border-bottom: 1px solid var(--line); background: var(--navy); color: var(--white); }
.legal-header > div { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-back { color: var(--gold-light); font-size: .88rem; font-weight: 750; }
.legal-main { max-width: 850px; padding-top: 74px; padding-bottom: 100px; }
.legal-main > h1 { max-width: none; margin-bottom: 52px; color: var(--ink); font-size: clamp(3rem,7vw,5.8rem); }
.legal-main section { padding: 27px 0; border-top: 1px solid var(--line-dark); }
.legal-main section h2 { max-width: none; margin-bottom: 17px; font-size: clamp(1.35rem,2vw,1.75rem); letter-spacing: -.02em; }
.legal-main section p { margin-bottom: 14px; }
.legal-main a { color: #7b5316; text-decoration: underline; }
.draft-notice { margin-bottom: 55px; padding: 20px 22px; display: grid; gap: 4px; border: 1px solid #d1b673; border-radius: 14px; background: #fff6da; color: #4b3911; }
.draft-notice span { font-size: .87rem; }
.placeholder { padding: 2px 5px; background: #fff0bd; color: #5e4612; }
.legal-todo { width: fit-content; padding: 7px 10px; border-radius: 6px; background: #fff0bd; color: #684f17; font-size: .78rem; }
.legal-footer { padding: 25px 0; background: #02070c; color: #82929e; font-size: .78rem; }
.legal-footer > div { display: flex; justify-content: space-between; gap: 20px; }
.legal-footer nav { display: flex; gap: 20px; }
.legal-footer a { color: #ced7de; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(800px, 96%); margin: 15px auto 25px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .demo-grid, .pdf-grid { grid-template-columns: 1fr 1fr; gap: 55px; }
  .solution-grid { grid-template-columns: repeat(2,1fr); }
  .custom-process { grid-template-columns: 1fr 1fr; }
  .custom-process .text-link { grid-column: 1 / -1; width: fit-content; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 680px); }
  .section { padding: 88px 0; }
  .header-cta { display: none; }
  .hero { padding-top: 80px; }
  .hero::before { min-height: 1060px; }
  .hero-visual > img { transform: none; }
  .floating-note { right: 5px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid > div, .benefit-grid > div:first-child, .benefit-grid > div:last-child { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid > div:last-child { border-bottom: 0; }
  .demo-grid, .pdf-grid, .requirements-grid, .contact-grid { grid-template-columns: 1fr; }
  .demo-copy h2, .pdf-copy h2, .contact-copy h2 { max-width: 12ch; }
  .phone-stage { min-height: 610px; }
  .pdf-stage { min-height: 610px; }
  .personalization-grid { grid-template-columns: 1fr; }
  .feature-card { grid-row: auto; min-height: 580px; }
  .requirements-copy, .contact-copy { position: static; }
  .start-timeline { grid-template-columns: 1fr 1fr; gap: 42px 18px; }
  .start-timeline li::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 70px; }
  body { font-size: 15px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.45rem); }
  .header-inner { min-height: 70px; }
  .brand small { display: none; }
  .brand-mark { width: 39px; height: 39px; }
  .hero { padding: 62px 0 75px; gap: 46px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .floating-note { position: relative; right: auto; bottom: auto; width: 95%; margin: -18px auto 0; }
  .process-grid, .solution-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 245px; }
  .phone-stage { min-height: 580px; }
  .screenshot-block { margin-top: 60px; }
  .subheading-row { align-items: start; flex-direction: column; }
  .pdf-stage { min-height: 510px; }
  .pdf-sheet { top: 9%; left: 17%; width: 66%; max-height: 76%; }
  .personal-card { min-height: auto; }
  .feature-card { min-height: 500px; }
  .brand-preview { min-height: 220px; }
  .custom-process { grid-template-columns: 1fr; }
  .custom-process .text-link { grid-column: auto; white-space: normal; }
  .start-timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .contact-form .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 40px; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .legal-header .brand small { display: none; }
  .legal-back { font-size: .78rem; }
  .legal-main { padding-top: 50px; }
  .legal-footer > div { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .pdf-stage { min-height: 480px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 65px 18px; }
  .pdf-sheet { position: relative; inset: auto; width: 29%; max-height: 340px; opacity: 1; transform: rotate(-2deg); }
  .pdf-page-two { transform: translateY(-10px) rotate(1deg); }
  .pdf-page-three { transform: rotate(3deg); }
}
