:root {
  --navy: #18324A;
  --navy-deep: #102639;
  --navy-soft: #244761;
  --teal: #2F8F83;
  --teal-dark: #24766d;
  --teal-light: #dff1ed;
  --off-white: #F7F6F2;
  --white: #FFFFFF;
  --ink: #172838;
  --muted: #60717f;
  --line: #dce4e7;
  --soft-blue: #eef4f6;
  --shadow-sm: 0 10px 30px rgba(20, 49, 72, .08);
  --shadow-lg: 0 28px 80px rgba(12, 38, 57, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
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.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.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: 9999; left: 16px; top: -60px; padding: 10px 16px; color: var(--white); background: var(--navy); border-radius: 0 0 8px 8px; transition: top .2s ease; }
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.96); border-color: rgba(24,50,74,.08); box-shadow: 0 8px 28px rgba(15,39,57,.06); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; display: block; }
.brand img { width: 166px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a:not(.button) { text-decoration: none; color: #435766; font-size: .92rem; font-weight: 650; transition: color .2s ease; }
.primary-nav > a:not(.button):hover { color: var(--teal-dark); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(47,143,131,.2);
  font-size: .95rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 14px 32px rgba(47,143,131,.26); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible { outline: 3px solid rgba(47,143,131,.32); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 19px; font-size: .88rem; }
.button-light { color: var(--navy); background: var(--white); border-color: var(--white); box-shadow: 0 12px 32px rgba(0,0,0,.14); }
.button-light:hover { color: var(--navy); background: var(--off-white); border-color: var(--off-white); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 780px;
  padding: 164px 0 96px;
  background:
    radial-gradient(circle at 8% 13%, rgba(47,143,131,.1), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, #f6f8f7 100%);
}
.hero::after { content: ""; position: absolute; z-index: -2; inset: auto 0 0; height: 180px; background: linear-gradient(180deg, transparent, rgba(24,50,74,.025)); }
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 560px; height: 560px; right: -180px; top: 80px; border: 1px solid rgba(47,143,131,.13); box-shadow: inset 0 0 90px rgba(47,143,131,.04); }
.hero-orb-two { width: 350px; height: 350px; right: 140px; top: 180px; border: 1px solid rgba(24,50,74,.08); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr); align-items: center; gap: 58px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-dark); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.eyebrow.light { color: #8dd1c8; }
.hero h1, .section h2, .cta-section h2 { margin: 22px 0 22px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.04em; line-height: 1.03; }
.hero h1 { max-width: 700px; font-size: clamp(3.45rem, 5.8vw, 5.35rem); }
.hero h1 em { color: var(--teal); font-weight: 500; }
.hero-lead { max-width: 650px; margin: 0; color: #4e6271; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.text-link { color: var(--navy); font-weight: 760; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--teal); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.trust-list { display: flex; flex-wrap: wrap; gap: 24px; margin: 32px 0 0; padding: 0; list-style: none; color: #566a78; font-size: .9rem; font-weight: 650; }
.trust-list span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 6px; color: var(--white); background: var(--teal); border-radius: 50%; font-size: .7rem; }

.product-preview { position: relative; min-width: 0; padding: 26px 16px 30px; }
.preview-label { position: absolute; z-index: 5; right: 28px; top: -4px; color: #69808e; font-size: .68rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.app-window { overflow: hidden; border: 1px solid rgba(24,50,74,.1); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-2.5deg) rotateX(1deg); transform-origin: center; }
.app-topbar { height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid #e7edef; }
.mini-brand { display: flex; align-items: center; gap: 8px; color: var(--navy); }
.mini-brand img { width: 25px; height: 25px; object-fit: contain; }
.mini-brand strong { font-size: .92rem; }
.user-pill { display: flex; align-items: center; gap: 8px; color: #657987; font-size: .72rem; font-weight: 650; }
.user-pill span { display: grid; place-items: center; width: 28px; height: 28px; color: var(--white); background: var(--navy-soft); border-radius: 50%; font-size: .64rem; }
.app-layout { display: grid; grid-template-columns: 54px minmax(0,1fr); min-height: 420px; }
.app-sidebar { padding-top: 28px; background: var(--navy); }
.side-dot { width: 24px; height: 24px; margin: 0 auto 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; }
.side-dot.active { background: rgba(47,143,131,.85); border-color: rgba(47,143,131,.85); box-shadow: inset 0 0 0 6px var(--navy); }
.app-content { min-width: 0; padding: 29px 26px 24px; background: #f8faf9; }
.app-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.app-kicker { display: block; color: #7a8c98; font-size: .64rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.app-heading h2 { margin: 3px 0 0; color: var(--navy); font-family: inherit; font-size: 1.28rem; font-weight: 760; letter-spacing: -.02em; }
.status { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; font-size: .65rem; font-weight: 800; }
.status-review { color: #926d1f; background: #fff3d6; }
.progress-steps { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: start; margin: 28px 4px; }
.progress-step { display: grid; justify-items: center; gap: 5px; color: #90a0aa; }
.progress-step span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid #cbd6db; border-radius: 50%; background: var(--white); font-size: .64rem; font-weight: 800; }
.progress-step small { white-space: nowrap; font-size: .58rem; font-weight: 700; }
.progress-step.complete, .progress-step.active { color: var(--teal-dark); }
.progress-step.complete span { color: var(--white); background: var(--teal); border-color: var(--teal); }
.progress-step.active span { border: 2px solid var(--teal); }
.progress-line { height: 1px; margin-top: 13px; background: #d7e0e4; }
.progress-line.complete { background: var(--teal); }
.dashboard-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(160px,.75fr); gap: 14px; }
.dashboard-card { min-width: 0; border: 1px solid #e1e8ea; border-radius: 13px; background: var(--white); box-shadow: 0 8px 20px rgba(24,50,74,.04); }
.deal-card { padding: 15px; }
.card-heading { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; }
.card-heading > div:last-child { display: grid; }
.card-heading strong, .update-card strong { color: var(--navy); font-size: .78rem; }
.card-heading small, .update-card small { color: #81919b; font-size: .59rem; }
.icon-tile { display: grid; place-items: center; width: 34px; height: 34px; color: var(--teal); background: var(--teal-light); border-radius: 9px; }
.icon-tile svg { width: 18px; }
.field-row { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; align-items: center; padding: 10px 0; border-top: 1px solid #edf1f2; }
.field-row span { grid-column: 1; color: #758994; font-size: .58rem; }
.field-row strong { grid-column: 1; color: #2d4556; font-size: .7rem; }
.field-row i { grid-row: 1 / span 2; grid-column: 2; align-self: center; padding: 3px 6px; color: #9b7124; background: #fff5de; border-radius: 5px; font-size: .52rem; font-style: normal; font-weight: 800; }
.field-row i.confirmed { color: var(--teal-dark); background: var(--teal-light); }
.field-row.attention { margin: 0 -7px -5px; padding: 10px 7px; border-radius: 8px; background: #fffaf0; }
.update-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px; }
.update-card p { margin: 7px 0 18px; color: #6c7f8c; font-size: .63rem; line-height: 1.55; }
.update-icon { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px; color: var(--white); background: var(--teal); border-radius: 50%; font-size: .82rem; font-weight: 800; }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; width: 212px; padding: 12px 14px; border: 1px solid rgba(24,50,74,.08); border-radius: 13px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { color: var(--navy); font-size: .68rem; }
.floating-note small { color: #788b96; font-size: .55rem; line-height: 1.4; }
.note-one { right: -24px; bottom: 70px; }
.note-two { left: -18px; top: 72px; }
.note-icon, .note-check { flex: 0 0 auto; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; font-size: .64rem; font-weight: 850; }
.note-icon { color: var(--teal-dark); background: var(--teal-light); }
.note-check { color: var(--white); background: var(--navy); border-radius: 50%; }

.principles { color: var(--white); background: var(--navy); }
.principles-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.principles-grid > div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 22px 30px; border-left: 1px solid rgba(255,255,255,.1); }
.principles-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.principles-grid strong { color: #f8fbfc; font-size: .95rem; }
.principles-grid span { margin-top: 3px; color: #aebec8; font-size: .78rem; line-height: 1.45; }

.split-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.section-intro { position: sticky; top: 130px; }
.section h2 { font-size: clamp(2.55rem, 4.2vw, 4rem); }
.section-intro p, .section-heading p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.problem-section { background: var(--white); }
.problem-stack { display: grid; gap: 15px; }
.problem-card { display: grid; grid-template-columns: 66px 1fr; gap: 22px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.problem-card:hover { transform: translateY(-3px); border-color: rgba(47,143,131,.35); box-shadow: var(--shadow-sm); }
.problem-number { display: grid; place-items: center; width: 52px; height: 52px; color: var(--teal-dark); background: var(--teal-light); border-radius: 50%; font-size: .75rem; font-weight: 850; }
.problem-card h3 { margin: 1px 0 7px; color: var(--navy); font-size: 1.12rem; }
.problem-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.workflow-section { background: var(--off-white); }
.section-heading { max-width: 900px; margin-bottom: 56px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { max-width: 690px; margin-inline: auto; }
.workflow-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.workflow-card { position: relative; overflow: hidden; min-height: 365px; padding: 26px; border: 1px solid #e3e5e1; border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 24px rgba(24,50,74,.035); }
.workflow-card::after { content: ""; position: absolute; right: -48px; bottom: -58px; width: 140px; height: 140px; border: 1px solid rgba(47,143,131,.1); border-radius: 50%; }
.workflow-top { display: flex; align-items: center; justify-content: space-between; }
.workflow-step { display: grid; place-items: center; width: 31px; height: 31px; color: var(--white); background: var(--navy); border-radius: 50%; font-size: .7rem; font-weight: 800; }
.role-tag { padding: 5px 9px; color: var(--teal-dark); background: var(--teal-light); border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.workflow-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 48px 0 26px; color: var(--teal); background: #edf7f5; border-radius: 18px; }
.workflow-icon svg { width: 29px; }
.workflow-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.12rem; }
.workflow-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.amendment-banner { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; margin-top: 22px; padding: 24px 28px; color: #dce9ed; background: var(--navy); border-radius: var(--radius-md); }
.amendment-icon { display: grid; place-items: center; width: 50px; height: 50px; color: var(--white); background: rgba(47,143,131,.6); border-radius: 15px; font-size: 1.5rem; }
.amendment-banner strong { color: var(--white); }
.amendment-banner p { margin: 3px 0 0; color: #bacad3; font-size: .9rem; }

.capabilities-section { color: var(--white); background: var(--navy-deep); }
.capabilities-section .section-heading h2 { color: var(--white); }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.1); }
.capability-card { min-height: 285px; padding: 34px; background: var(--navy-deep); transition: background .25s ease; }
.capability-card:hover { background: #16344a; }
.capability-icon { display: grid; place-items: center; width: 48px; height: 48px; color: #77c6bb; background: rgba(47,143,131,.14); border-radius: 13px; }
.capability-icon svg { width: 24px; }
.capability-card h3 { margin: 28px 0 10px; color: var(--white); font-size: 1.04rem; }
.capability-card p { margin: 0; color: #aebfc9; font-size: .88rem; }

.privacy-section { overflow: hidden; background: #f8faf9; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.privacy-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.shield-ring { position: absolute; border: 1px solid rgba(47,143,131,.16); border-radius: 50%; }
.ring-one { width: 410px; height: 410px; }
.ring-two { width: 290px; height: 290px; background: rgba(47,143,131,.025); }
.shield-core { display: grid; place-items: center; width: 142px; height: 142px; color: var(--white); background: linear-gradient(145deg, var(--teal), var(--teal-dark)); border: 14px solid var(--white); border-radius: 42px; box-shadow: 0 24px 60px rgba(47,143,131,.25); transform: rotate(-3deg); }
.shield-core svg { width: 62px; stroke-width: 1.5; }
.privacy-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 13px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .72rem; font-weight: 750; }
.privacy-chip span { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 4px var(--teal-light); }
.chip-one { left: 4px; top: 102px; }
.chip-two { right: 0; top: 175px; }
.chip-three { left: 38px; bottom: 78px; }
.privacy-copy h2 { margin-top: 20px; }
.privacy-copy > p { color: var(--muted); font-size: 1.03rem; }
.check-list { display: grid; gap: 17px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 27px 1fr; gap: 12px; }
.check-list li > span { display: grid; place-items: center; width: 24px; height: 24px; margin-top: 2px; color: var(--white); background: var(--teal); border-radius: 50%; font-size: .68rem; font-weight: 800; }
.check-list strong, .check-list small { display: block; }
.check-list strong { color: var(--navy); font-size: .92rem; }
.check-list small { margin-top: 1px; color: #6d808d; font-size: .82rem; }

.scope-section { padding-top: 30px; background: var(--white); }
.scope-box { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; padding: 54px; border: 1px solid #dfe7e9; border-radius: var(--radius-lg); background: linear-gradient(135deg, #ffffff 0%, #f7faf9 100%); box-shadow: var(--shadow-sm); }
.scope-box h2 { margin-top: 18px; font-size: clamp(2.2rem, 3.6vw, 3.4rem); }
.scope-box > div > p { margin: 0; color: var(--muted); }
.scope-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.scope-column { padding: 25px; border-radius: var(--radius-md); }
.scope-column.included { background: var(--teal-light); }
.scope-column.excluded { background: #edf1f3; }
.scope-column h3 { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; color: var(--navy); font-size: .92rem; }
.scope-column h3 span { display: grid; place-items: center; width: 23px; height: 23px; color: var(--white); background: var(--teal); border-radius: 50%; font-size: .67rem; }
.scope-column.excluded h3 span { background: #788c99; }
.scope-column ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: #536877; font-size: .82rem; }
.scope-column li { position: relative; padding-left: 14px; }
.scope-column li::before { content: ""; position: absolute; left: 0; top: .72em; width: 4px; height: 4px; background: currentColor; border-radius: 50%; }

.faq-section { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid #dde4e4; border-radius: 13px; background: var(--white); }
.faq-list summary { position: relative; display: flex; justify-content: space-between; gap: 20px; padding: 21px 24px; color: var(--navy); cursor: pointer; list-style: none; font-size: .96rem; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 4px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 8px; left: 2px; width: 14px; height: 2px; background: var(--teal); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: -5px 24px 22px; color: var(--muted); font-size: .9rem; }

.cta-section { padding: 78px 0; background: var(--teal); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-kicker { color: rgba(255,255,255,.75); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.cta-section h2 { margin: 10px 0 10px; color: var(--white); font-size: clamp(2.35rem, 4vw, 3.7rem); }
.cta-section p { max-width: 710px; margin: 0; color: rgba(255,255,255,.82); }
.cta-section .button { flex: 0 0 auto; }

.site-footer { padding: 72px 0 24px; color: #afc0ca; background: #0f2435; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 54px; }
.footer-brand img { width: 178px; height: auto; }
.footer-brand p { max-width: 410px; margin: 22px 0 0; font-size: .88rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; justify-self: end; width: min(100%, 420px); }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; color: var(--white); font-size: .82rem; }
.footer-links a { color: #afc0ca; font-size: .82rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }

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

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 800px; }
  .product-preview { width: min(100%, 780px); margin-inline: auto; }
  .workflow-grid { grid-template-columns: repeat(2,1fr); }
  .capability-grid { grid-template-columns: repeat(2,1fr); }
  .split-grid, .privacy-grid, .faq-grid { gap: 60px; }
  .scope-box { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .brand img { width: 148px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav > a:not(.button) { padding: 13px 14px; border-radius: 9px; }
  .primary-nav > a:not(.button):hover { background: var(--off-white); }
  .primary-nav .button { margin-top: 6px; }
  .hero { padding-top: 130px; }
  .split-grid, .privacy-grid, .faq-grid { grid-template-columns: 1fr; }
  .section-intro { position: static; }
  .principles-grid { grid-template-columns: repeat(2,1fr); }
  .principles-grid > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); }
  .principles-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); }
  .privacy-visual { order: 2; min-height: 460px; }
  .faq-grid { gap: 42px; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero { min-height: 0; padding: 116px 0 72px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 13px 18px; }
  .product-preview { padding: 18px 0 72px; }
  .preview-label { right: 8px; }
  .app-window { border-radius: 16px; transform: none; }
  .app-topbar { height: 53px; padding: 0 13px; }
  .user-pill { font-size: 0; }
  .app-layout { grid-template-columns: 39px minmax(0,1fr); min-height: 390px; }
  .app-sidebar { padding-top: 22px; }
  .side-dot { width: 19px; height: 19px; margin-bottom: 13px; }
  .app-content { padding: 20px 14px; }
  .app-heading h2 { font-size: 1rem; }
  .progress-step small { display: none; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .update-card { display: none; }
  .floating-note { width: 190px; }
  .note-one { right: 8px; bottom: 3px; }
  .note-two { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid > div { min-height: 96px; padding: 20px 18px; border-right: 1px solid rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.1); }
  .principles-grid > div:first-child { border-top: 0; }
  .section h2 { font-size: clamp(2.35rem, 12vw, 3.15rem); }
  .problem-card { grid-template-columns: 46px 1fr; gap: 14px; padding: 21px; }
  .problem-number { width: 42px; height: 42px; }
  .workflow-grid, .capability-grid, .scope-columns { grid-template-columns: 1fr; }
  .workflow-card { min-height: 320px; }
  .amendment-banner { grid-template-columns: 1fr; }
  .capability-card { min-height: 250px; }
  .privacy-visual { min-height: 390px; transform: scale(.87); margin: -18px; }
  .scope-section { padding-top: 10px; }
  .scope-box { padding: 29px 21px; border-radius: 20px; }
  .cta-section { padding: 62px 0; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom p:last-child { text-align: left; }
}

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