:root {
  --navy-950: #08182e;
  --navy-900: #0e2340;
  --navy-800: #17375e;
  --navy-700: #24517f;
  --blue-600: #1769e8;
  --blue-500: #2787ff;
  --cyan-400: #21c5e8;
  --ink: #10223d;
  --muted: #61708a;
  --line: #dce4ef;
  --soft: #f3f7fc;
  --white: #ffffff;
  --green: #20965e;
  --shadow: 0 26px 70px rgba(18, 43, 78, 0.13);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); 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: 1000; left: 16px; top: -80px; padding: 10px 16px; background: var(--white); color: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 82px; background: rgba(11, 31, 56, 0.92); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(18px); transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { background: rgba(8, 24, 46, .98); box-shadow: 0 12px 34px rgba(5, 16, 31, .25); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 222px; }
.brand img { width: 54px; height: 54px; border-radius: 11px; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; color: var(--white); }
.brand-copy strong { font-size: 25px; letter-spacing: -.7px; }
.brand-copy small { margin-top: 8px; color: #a8bad3; font-size: 9px; font-weight: 700; letter-spacing: 2.3px; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 28px; color: #ccdaea; font-size: 14px; font-weight: 650; }
.primary-nav > a:not(.button) { position: relative; padding: 28px 0; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 20px; background: var(--cyan-400); transition: right .2s ease; }
.primary-nav > a:not(.button):hover::after { right: 0; }
.primary-nav > a:hover { color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--white); border-radius: 2px; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 23px; border: 1px solid transparent; border-radius: 9px; font-weight: 750; font-size: 14px; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); box-shadow: 0 13px 28px rgba(23,105,232,.26); }
.button-primary:hover { box-shadow: 0 18px 32px rgba(23,105,232,.34); }
.button-secondary { color: var(--white); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.24); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.05); }
.button-small { min-height: 40px; padding-inline: 17px; }
.button-full { width: 100%; }

.section { padding: 112px 0; }
.section-dark { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--navy-950), var(--navy-900) 55%, #112c50); }
.section-soft { background: var(--soft); }
.hero { padding: 172px 0 108px; min-height: 800px; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(63,196,255,.7), transparent); }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { left: -330px; top: 10px; background: radial-gradient(circle, rgba(16,190,235,.18), transparent 67%); }
.hero-glow-two { right: -300px; bottom: -280px; background: radial-gradient(circle, rgba(30,106,242,.28), transparent 67%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.35fr; gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #b8cee7; font-size: 12px; font-weight: 800; letter-spacing: 1.55px; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--cyan-400); }
.eyebrow-blue { color: var(--blue-600); }
.hero h1 { max-width: 590px; margin: 23px 0 25px; font-size: clamp(48px, 5.1vw, 76px); line-height: .99; letter-spacing: -3.2px; }
.hero h1 em { color: transparent; font-style: normal; background: linear-gradient(90deg, #42d8f5, #58a8ff); background-clip: text; -webkit-background-clip: text; }
.hero-copy > p { max-width: 570px; margin: 0; color: #b6c7dc; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin: 28px 0 0; padding: 0; list-style: none; color: #9eb1ca; font-size: 12px; font-weight: 650; }
.check { display: inline-flex; width: 17px; height: 17px; align-items: center; justify-content: center; margin-right: 5px; color: var(--white); background: var(--green); border-radius: 50%; font-size: 10px; }

.product-window { overflow: hidden; min-width: 680px; border: 1px solid rgba(255,255,255,.2); border-radius: 15px; background: #edf2f8; box-shadow: 0 42px 95px rgba(0,0,0,.38); transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.window-bar { height: 43px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 13px; color: #dce9f8; background: #17375e; font-size: 10px; font-weight: 750; letter-spacing: .5px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { display: block; width: 8px; height: 8px; border-radius: 50%; background: #ff6c6c; }
.window-dots i:nth-child(2) { background: #f5c45b; }
.window-dots i:nth-child(3) { background: #4ec98a; }
.local-status { justify-self: end; color: #a9bad0; font-size: 8px; text-transform: uppercase; }
.local-status i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: #49cf81; border-radius: 50%; box-shadow: 0 0 0 3px rgba(73,207,129,.15); }
.app-shell { height: 430px; display: grid; grid-template-columns: 122px 1fr 112px; color: #263955; background: #edf2f8; }
.app-sidebar { padding: 14px 10px; background: #fbfdff; border-right: 1px solid #d5deea; }
.app-step { display: flex; gap: 8px; margin-bottom: 8px; padding: 9px 6px; border-radius: 7px; color: #7b899d; font-size: 8px; font-weight: 750; }
.app-step.active { color: #1769e8; background: #edf5ff; box-shadow: inset 2px 0 #1769e8; }
.app-step b { display: flex; width: 18px; height: 18px; align-items: center; justify-content: center; color: inherit; border: 1px solid currentColor; border-radius: 50%; font-size: 7px; }
.app-step span { line-height: 1.25; }
.app-step small { display: block; margin-top: 3px; color: #a0acbb; font-size: 6px; font-weight: 500; }
.sheet-workspace { position: relative; overflow: hidden; background-color: #e7edf5; background-image: radial-gradient(#c9d3df 1px, transparent 1px); background-size: 12px 12px; }
.sheet-toolbar { height: 38px; display: flex; justify-content: space-between; align-items: center; padding: 0 12px; color: #40516a; background: #fff; border-bottom: 1px solid #d6dfeb; font-size: 8px; font-weight: 750; }
.sheet { position: absolute; inset: 58px 33px 24px; padding: 14px; background: white; border: 1px solid #c0ccdc; box-shadow: 0 10px 24px rgba(38,58,86,.14); }
.sheet::before { content: ""; position: absolute; inset: 7px; border: 1px dashed #bdc9d8; }
.sheet-label { position: relative; z-index: 2; margin-bottom: 10px; color: #4472a7; font-size: 6px; font-weight: 800; letter-spacing: .8px; }
.card-grid { position: relative; z-index: 2; display: grid; height: calc(100% - 20px); grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 7px; }
.print-card { position: relative; display: flex; align-items: center; justify-content: center; overflow: visible; color: white; background: linear-gradient(145deg, #11243e, #1b4e7d); border: 1px solid #ec5364; font-size: 8px; font-weight: 800; }
.print-card::before, .print-card::after { content: ""; position: absolute; width: 7px; height: 1px; top: -4px; background: #4b5667; box-shadow: 0 calc(100% + 7px) #4b5667; }
.print-card::before { left: -4px; }
.print-card::after { right: -4px; }
.print-card span { transform: rotate(-90deg); letter-spacing: .6px; }
.print-card i { position: absolute; width: 3px; height: 45%; right: 18%; background: linear-gradient(#22c7e7, #1769e8); }
.app-summary { padding: 17px 11px; background: #fff; border-left: 1px solid #d5deea; }
.app-summary span { display: block; color: #8290a5; font-size: 6px; font-weight: 850; letter-spacing: .7px; text-transform: uppercase; }
.app-summary strong { display: block; color: #132944; font-size: 36px; line-height: 1.1; }
.app-summary small { color: #738196; font-size: 6px; }
.ready-pill { margin: 18px 0 15px; padding: 7px 5px; color: #267748; background: #ecf9f1; border: 1px solid #c2e8d0; border-radius: 4px; font-size: 6px; font-weight: 800; text-align: center; text-transform: uppercase; }
.meter { height: 4px; margin: 9px 0 4px; overflow: hidden; background: #e6ebf0; border-radius: 5px; }
.meter i { display: block; width: 91%; height: 100%; background: #2083f1; }

.proof-strip { padding: 26px 0; color: #dfe9f5; background: #17375e; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 3px 22px; border-right: 1px solid rgba(255,255,255,.16); }
.proof-grid > div:last-child { border: 0; }
.proof-grid strong { color: var(--white); font-size: 22px; }
.proof-grid span { max-width: 120px; color: #aebfd2; font-size: 11px; line-height: 1.35; }

.section-heading { max-width: 650px; }
.section-heading.centered { margin: 0 auto 55px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .process-copy h2, .privacy-copy h2, .trial-copy h2 { margin: 17px 0 16px; font-size: clamp(36px, 4vw, 54px); line-height: 1.08; letter-spacing: -2.2px; }
.section-heading p, .process-copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: #b7d5fb; box-shadow: var(--shadow); }
.feature-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--blue-600); background: #eaf4ff; border-radius: 13px; font-size: 20px; font-weight: 800; }
.feature-card h3 { margin: 0 0 9px; font-size: 20px; letter-spacing: -.5px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 55px; }
.workflow-card { min-height: 370px; padding: 35px; color: var(--white); border-radius: var(--radius); box-shadow: 0 22px 45px rgba(14,35,64,.12); }
.workflow-blue { background: linear-gradient(145deg, #1769e8, #1450ac); }
.workflow-cyan { background: linear-gradient(145deg, #0d93b6, #0c6588); }
.workflow-navy { background: linear-gradient(145deg, #17375e, #0b213c); }
.workflow-number { color: rgba(255,255,255,.48); font-size: 13px; font-weight: 900; letter-spacing: 2px; }
.workflow-card h3 { margin: 45px 0 13px; font-size: 27px; letter-spacing: -1px; }
.workflow-card p { min-height: 78px; color: rgba(255,255,255,.78); font-size: 14px; }
.workflow-card ul { margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.workflow-card li { margin-top: 8px; color: rgba(255,255,255,.9); font-size: 12px; }
.workflow-card li::before { content: "✓"; margin-right: 8px; color: #76ebc4; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.process-copy { position: sticky; top: 130px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 28px; color: var(--blue-600); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.steps-list { position: relative; margin: 0; padding: 0; list-style: none; }
.steps-list::before { content: ""; position: absolute; top: 42px; bottom: 42px; left: 26px; width: 1px; background: #cbd8e8; }
.steps-list li { position: relative; z-index: 1; display: grid; grid-template-columns: 54px 1fr; gap: 22px; margin-bottom: 18px; padding: 25px 28px 25px 0; border: 1px solid var(--line); border-left: 0; border-radius: 0 15px 15px 0; background: var(--white); }
.steps-list b { display: flex; width: 54px; height: 54px; align-items: center; justify-content: center; color: var(--white); background: var(--blue-600); border: 7px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px #cbd8e8; }
.steps-list h3 { margin: 0 0 5px; font-size: 19px; }
.steps-list p { margin: 0; color: var(--muted); font-size: 14px; }

.privacy-section { padding: 100px 0; }
.privacy-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: center; }
.privacy-art { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.privacy-art::before { content: ""; position: absolute; inset: 10%; background: radial-gradient(circle, rgba(34,190,236,.24), transparent 67%); }
.privacy-ring { position: absolute; border: 1px solid rgba(56,193,235,.28); border-radius: 50%; }
.ring-one { width: 310px; height: 310px; }
.ring-two { width: 210px; height: 210px; border-style: dashed; animation: rotate 25s linear infinite; }
.privacy-lock { position: relative; width: 110px; height: 130px; display: flex; align-items: center; justify-content: center; color: var(--cyan-400); background: rgba(27,85,128,.45); border: 1px solid rgba(81,196,235,.5); border-radius: 26px; box-shadow: 0 0 55px rgba(31,176,222,.17); font-size: 48px; }
.privacy-lock span { position: absolute; bottom: 21px; font-size: 10px; font-weight: 900; letter-spacing: 2px; }
@keyframes rotate { to { transform: rotate(360deg); } }
.privacy-copy > p { color: #b7c7da; font-size: 17px; }
.privacy-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.privacy-list li { padding: 12px; color: #c5d4e4; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 9px; font-size: 11px; }
.privacy-list span { color: #5fe2ad; margin-right: 5px; }

.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: 1fr 460px; gap: 95px; align-items: center; }
.pricing-note { margin-top: 28px; padding: 16px 18px; color: #785715; background: #fff7de; border: 1px solid #efd68e; border-radius: 10px; font-size: 12px; }
.price-card { overflow: hidden; border: 1px solid #bcd5f6; border-radius: 22px; box-shadow: var(--shadow); }
.price-card-top { padding: 34px; color: var(--white); background: linear-gradient(145deg, #17375e, #1f5d94); }
.price-card-top span { display: block; color: #aad9f4; font-size: 11px; font-weight: 850; letter-spacing: 1.5px; text-transform: uppercase; }
.price-card-top strong { display: block; margin: 20px 0 5px; font-size: 32px; line-height: 1.1; letter-spacing: -1px; }
.price-card-top small { color: #c3d3e4; }
.price-card ul { margin: 0; padding: 27px 34px 10px; list-style: none; }
.price-card li { padding: 9px 0; color: #45546a; border-bottom: 1px solid #edf1f6; font-size: 14px; }
.price-card li span { color: var(--green); margin-right: 8px; font-weight: 900; }
.price-card .button { margin: 20px 34px 34px; width: calc(100% - 68px); }

.trial-section { padding: 105px 0; color: var(--white); background: linear-gradient(120deg, #1769e8, #0d4ba6 58%, #0b315d); }
.trial-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.trial-copy > p { max-width: 560px; color: #d2e2f6; font-size: 17px; }
.trial-facts { display: flex; gap: 45px; margin-top: 30px; }
.trial-facts div { display: flex; flex-direction: column; }
.trial-facts strong { font-size: 25px; }
.trial-facts span { color: #bfd2eb; font-size: 11px; }
.trial-form { padding: 30px; color: var(--ink); background: var(--white); border-radius: 18px; box-shadow: 0 28px 70px rgba(0,22,64,.3); }
.trial-form label { display: block; margin-bottom: 15px; color: #40506a; font-size: 11px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.trial-form input:not([type="checkbox"]), .trial-form select { width: 100%; height: 46px; margin-top: 6px; padding: 0 12px; color: var(--ink); background: #f9fbfd; border: 1px solid #ccd7e5; border-radius: 8px; outline: none; }
.trial-form input:focus, .trial-form select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(39,135,255,.12); }
.consent { display: flex !important; gap: 9px; align-items: flex-start; font-weight: 500 !important; }
.consent input { margin-top: 3px; }
.form-note { display: block; margin-top: 10px; color: #8794a7; text-align: center; }
.form-status { display: none; margin: 12px 0 0; padding: 10px; border-radius: 7px; font-size: 12px; text-align: center; }
.form-status.visible { display: block; color: #775514; background: #fff6d9; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }
.support-cards { display: grid; gap: 12px; }
.support-card { position: relative; display: flex; flex-direction: column; padding: 23px 65px 23px 25px; border: 1px solid var(--line); border-radius: 13px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.support-card:hover { transform: translateY(-3px); border-color: #a9cdf8; box-shadow: 0 18px 36px rgba(25,63,109,.1); }
.support-card span { color: var(--blue-600); font-size: 10px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; }
.support-card strong { margin-top: 5px; font-size: 18px; }
.support-card i { position: absolute; right: 25px; top: 50%; color: var(--blue-600); font-size: 23px; font-style: normal; transform: translateY(-50%); }

.site-footer { padding: 70px 0 25px; color: #aebed1; background: #08182e; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 45px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid p { max-width: 270px; color: #8194ad; font-size: 13px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid > div > strong { margin-bottom: 7px; color: var(--white); font-size: 13px; }
.footer-grid a, .footer-grid span { font-size: 12px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #71869f; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-short { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 1100px) {
  .primary-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .product-window { min-width: 0; max-width: 880px; width: 100%; margin-inline: auto; transform: none; }
  .pricing-grid, .trial-shell { gap: 50px; }
  .privacy-grid { gap: 45px; }
}

@media (max-width: 880px) {
  .site-header { height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 72px; left: 0; right: 0; display: none; align-items: stretch; padding: 18px 20px 24px; background: #0b203c; box-shadow: 0 25px 40px rgba(0,0,0,.22); }
  .primary-nav.open { display: flex; flex-direction: column; gap: 0; }
  .primary-nav > a:not(.button) { padding: 11px 0; }
  .primary-nav > a:not(.button)::after { display: none; }
  .hero { padding-top: 135px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 320px; }
  .workflow-card p { min-height: 0; }
  .process-grid, .privacy-grid, .pricing-grid, .trial-shell, .support-grid { grid-template-columns: 1fr; gap: 55px; }
  .process-copy { position: static; }
  .privacy-art { height: 300px; }
  .price-card { max-width: 540px; width: 100%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 15px 0; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .brand { min-width: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 22px; }
  .brand-copy small { letter-spacing: 1.6px; font-size: 7px; }
  .hero { min-height: 0; padding: 126px 0 75px; }
  .hero h1 { font-size: 45px; letter-spacing: -2px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .trust-row { flex-direction: column; gap: 8px; align-items: center; }
  .product-window { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { flex-direction: column; gap: 0; text-align: center; }
  .proof-grid span { max-width: 140px; }
  .section-heading h2, .process-copy h2, .privacy-copy h2, .trial-copy h2 { font-size: 37px; letter-spacing: -1.5px; }
  .feature-grid { grid-template-columns: 1fr; }
  .workflow-card { padding: 28px; }
  .privacy-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .trial-form { padding: 22px; }
  .trial-facts { gap: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

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