:root {
  --paper: #f5f7fb;
  --white: #ffffff;
  --ink: #101828;
  --muted: #5c667a;
  --line: #d9dee8;
  --blue: #165dff;
  --blue-dark: #0d3fbe;
  --orange: #ff6b2c;
  --lime: #c6ff4a;
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --radius: 22px;
  --shadow: 0 24px 70px rgba(16, 24, 40, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--blue); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 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: 200; top: 12px; left: 12px; padding: 12px 18px; color: var(--white); background: var(--ink); border-radius: 8px; transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; background: rgba(245, 247, 251, .88); border-bottom: 1px solid rgba(217, 222, 232, .8); backdrop-filter: blur(16px); }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 1rem; font-weight: 800; letter-spacing: .14em; }
.brand-mark { position: relative; display: grid; width: 31px; height: 31px; grid-template-columns: repeat(2, 1fr); gap: 3px; transform: rotate(-8deg); }
.brand-mark i { display: block; background: var(--blue); border-radius: 2px; }
.brand-mark i:first-child { grid-row: 1 / 3; border-radius: 4px 1px 1px 4px; }
.brand-mark i:nth-child(2) { background: var(--orange); }
.brand-mark i:nth-child(3) { background: var(--ink); }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 16px; padding: 13px 18px; color: var(--white); background: var(--ink); border-radius: 8px; transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--blue); transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform .25s; }

.hero { position: relative; overflow: hidden; padding-top: 78px; background: var(--paper); }
.hero-grid-lines { position: absolute; inset: 78px 0 0; pointer-events: none; background-image: linear-gradient(rgba(16, 24, 40, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 24, 40, .04) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 82%); }
.hero-grid { position: relative; display: grid; min-height: 760px; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 58px; align-items: center; padding-top: 76px; padding-bottom: 70px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--blue); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.hero h1, .section-heading h2, .process h2, .about h2, .manifesto h2, .contact h2, .legal-hero h1 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -.055em; line-height: .98; }
.hero h1 { max-width: 650px; font-size: clamp(4rem, 6.8vw, 7.2rem); }
h1 em, h2 em { display: block; color: var(--blue); font-weight: 600; }
.hero-lead { max-width: 590px; margin: 30px 0 0; color: var(--muted); font-size: 1.13rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 24px; padding: 14px 22px; font-weight: 700; border: 0; border-radius: 9px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 14px 32px rgba(22, 93, 255, .25); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 18px 34px rgba(22, 93, 255, .33); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; border-bottom: 1px solid var(--ink); }
.hero-proof { display: grid; max-width: 610px; grid-template-columns: repeat(3, 1fr); margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-proof div { padding-right: 16px; }
.hero-proof div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: var(--font-display); font-size: .95rem; }
.hero-proof span { margin-top: 3px; color: var(--muted); font-size: .75rem; }

.hero-visual { position: relative; min-height: 610px; }
.image-frame { position: absolute; inset: 0 0 45px 22px; overflow: hidden; background: var(--ink); border-radius: 170px 18px 18px 18px; box-shadow: var(--shadow); }
.image-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 60%, rgba(7, 14, 28, .33)); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-index { position: absolute; z-index: 2; right: 22px; bottom: 18px; color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.metric-card { position: absolute; z-index: 4; right: -24px; bottom: 0; width: 290px; padding: 21px; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.11); border-radius: 14px; box-shadow: 0 20px 50px rgba(16, 24, 40, .28); }
.metric-top, .metric-bottom { display: flex; justify-content: space-between; gap: 16px; }
.metric-top { color: #aeb7c8; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.live-dot { position: relative; padding-left: 10px; color: var(--lime); }
.live-dot::before { position: absolute; top: 5px; left: 0; width: 5px; height: 5px; content: ""; background: currentColor; border-radius: 50%; box-shadow: 0 0 0 4px rgba(198,255,74,.12); }
.metric-chart { display: flex; height: 74px; align-items: end; gap: 7px; margin: 22px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.metric-chart i { flex: 1; height: 18%; background: rgba(255,255,255,.16); border-radius: 3px 3px 0 0; }
.metric-chart i:nth-child(2) { height: 31%; }.metric-chart i:nth-child(3) { height: 27%; }.metric-chart i:nth-child(4) { height: 54%; background: var(--blue); }.metric-chart i:nth-child(5) { height: 70%; background: var(--blue); }.metric-chart i:nth-child(6) { height: 94%; background: var(--orange); }
.metric-bottom { align-items: end; }.metric-bottom strong { max-width: 130px; font-size: .85rem; }.metric-bottom span { color: #aeb7c8; font-size: .66rem; text-align: right; }
.orbit-badge { position: absolute; z-index: 5; top: 28px; left: -31px; display: grid; width: 112px; height: 112px; place-items: center; color: var(--ink); background: var(--lime); border: 7px solid var(--paper); border-radius: 50%; }
.orbit-badge svg { position: absolute; inset: 4px; width: 90px; height: 90px; animation: spin 18s linear infinite; }.orbit-badge text { font-family: var(--font-display); font-size: 9px; font-weight: 800; letter-spacing: 1.6px; }.orbit-badge > span { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; }
@keyframes spin { to { transform: rotate(360deg); } }
.capabilities { position: relative; overflow: hidden; padding: 18px 0; color: var(--white); background: var(--blue); transform: rotate(-1deg) scale(1.015); }
.capabilities-track { display: flex; width: max-content; align-items: center; gap: 28px; padding-left: 3vw; font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.capabilities-track i { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }

.section-heading { display: grid; grid-template-columns: 1.45fr .55fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .about h2 { max-width: 760px; font-size: clamp(2.8rem, 5vw, 5rem); }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; gap: 16px; }
.service-card { position: relative; display: flex; min-height: 360px; flex-direction: column; overflow: hidden; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s, box-shadow .3s, border-color .3s; }
.service-card:hover { z-index: 2; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-6px); }
.service-featured { color: var(--white); background: var(--blue); border-color: var(--blue); grid-row: span 2; }
.service-number { position: absolute; top: 26px; right: 28px; color: #7f899d; font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.service-featured .service-number { color: rgba(255,255,255,.55); }
.service-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: auto; color: var(--blue); background: #edf2ff; border-radius: 14px; }
.service-featured .service-icon { color: var(--ink); background: var(--lime); }
.service-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.service-card h3 { margin: 34px 0 12px; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); }
.service-featured p { color: rgba(255,255,255,.76); }
.service-featured ul { display: grid; gap: 11px; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.service-featured li { display: flex; align-items: center; gap: 9px; font-size: .86rem; }.service-featured li::before { width: 6px; height: 6px; content: ""; background: var(--lime); border-radius: 50%; }
.service-tag { align-self: flex-start; margin-top: 26px; padding: 7px 10px; color: var(--blue); background: #edf2ff; border-radius: 5px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-wide { display: grid; min-height: 280px; grid-column: 2 / 4; grid-template-columns: 1.35fr .65fr; gap: 32px; align-items: end; }
.service-wide-copy { display: flex; gap: 25px; align-items: flex-end; }.service-wide .service-icon { flex: 0 0 54px; margin: 0; }.service-wide h3 { margin-top: 0; }
.mini-dashboard { display: flex; height: 150px; align-items: end; gap: 9px; padding: 18px 18px 0; background: var(--ink); border-radius: 14px; }
.mini-dashboard span { flex: 1; height: 25%; background: #384155; border-radius: 5px 5px 0 0; }.mini-dashboard span:nth-child(2) { height: 48%; }.mini-dashboard span:nth-child(3) { height: 41%; background: var(--blue); }.mini-dashboard span:nth-child(4) { height: 72%; background: var(--blue); }.mini-dashboard span:nth-child(5) { height: 92%; background: var(--orange); }

.process { position: relative; color: var(--white); background: var(--ink); }
.process::before { position: absolute; inset: 0; content: ""; opacity: .09; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.process .container { position: relative; }
.process-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 70px; margin-bottom: 70px; }
.eyebrow-light { color: var(--lime); grid-column: 1 / -1; }
.process h2 { max-width: 760px; font-size: clamp(3rem, 5.4vw, 5.6rem); }
.process h2 em, .contact h2 em { color: var(--lime); }
.process-intro > p:last-child { align-self: end; max-width: 420px; margin: 0 0 8px; color: #aeb7c8; font-size: 1.05rem; }
.process-list { margin: 0; padding: 0; border-top: 1px solid #343c4d; list-style: none; }
.process-list li { display: grid; min-height: 170px; grid-template-columns: 90px 1fr 70px; gap: 26px; align-items: center; padding: 34px 10px; border-bottom: 1px solid #343c4d; transition: padding .25s, background .25s; }
.process-list li:hover { padding-right: 26px; padding-left: 26px; background: rgba(255,255,255,.035); }
.process-no { align-self: start; padding-top: 8px; color: var(--lime); font-family: var(--font-display); font-size: .75rem; font-weight: 800; }
.process-list li > div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; align-items: center; }
.process-list h3 { margin: 0; font-family: var(--font-display); font-size: 2rem; letter-spacing: -.03em; }.process-list p { max-width: 520px; margin: 0; color: #aeb7c8; }
.process-symbol { display: grid; width: 54px; height: 54px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 1.45rem; }

.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 80px; align-items: center; }
.about-image { position: relative; min-height: 660px; }
.about-image::before { position: absolute; z-index: -1; top: -20px; right: 28px; width: 70%; height: 80%; content: ""; background: var(--orange); border-radius: 20px; transform: rotate(4deg); }
.about-image img { width: 100%; height: 630px; object-fit: cover; border-radius: 24px 120px 24px 24px; box-shadow: var(--shadow); }
.about-stamp { position: absolute; right: -22px; bottom: 0; display: flex; width: 210px; height: 120px; align-items: center; justify-content: center; gap: 20px; color: var(--white); background: var(--blue); border: 8px solid var(--paper); border-radius: 18px; }
.about-stamp > span { font-family: var(--font-display); font-size: 3rem; font-weight: 800; }.about-stamp small { font-weight: 700; letter-spacing: .15em; line-height: 1.7; }
.about-copy { padding-left: 20px; }.about-lead { margin: 30px 0 18px; color: var(--ink) !important; font-size: 1.2rem; font-weight: 600; line-height: 1.65; }.about-copy > p { color: var(--muted); }
.about-values { display: grid; gap: 18px; margin-top: 36px; }.about-values > div { display: grid; grid-template-columns: 110px 1fr; gap: 28px; padding-top: 18px; border-top: 1px solid var(--line); }.about-values strong { color: var(--blue); }.about-values span { color: var(--muted); font-size: .9rem; }

.manifesto { padding: 100px 0; color: var(--white); background: var(--blue); text-align: center; }
.manifesto p { margin: 0 0 20px; color: #cbd8ff; font-size: .85rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }.manifesto h2 { max-width: 980px; margin-inline: auto; font-size: clamp(2.7rem, 5.1vw, 5.2rem); }.manifesto h2 span { color: var(--lime); }
.manifesto-foot { display: flex; justify-content: center; gap: 54px; margin-top: 54px; color: #dce5ff; font-size: .82rem; }.manifesto-foot span::before { display: inline-block; width: 6px; height: 6px; margin-right: 10px; content: ""; background: var(--lime); border-radius: 50%; }

.contact { color: var(--white); background: #0a1120; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }.contact h2 { max-width: 560px; font-size: clamp(3.2rem, 5.4vw, 5.6rem); }.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 30px 0; color: #aeb7c8; font-size: 1.05rem; }.contact-email { display: inline-flex; gap: 20px; padding-bottom: 5px; color: var(--lime); border-bottom: 1px solid currentColor; font-weight: 700; }
.contact-form { padding: 38px; background: #121c2e; border: 1px solid #273248; border-radius: 22px; }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.field { position: relative; margin-bottom: 22px; }.field label { display: block; margin-bottom: 8px; color: #dce1eb; font-size: .78rem; font-weight: 600; }.field input, .field textarea { width: 100%; color: var(--white); background: #0d1627; border: 1px solid #334057; border-radius: 9px; outline: none; transition: border .2s, box-shadow .2s; }.field input { height: 50px; padding: 0 14px; }.field textarea { min-height: 120px; padding: 13px 14px; resize: vertical; }.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,93,255,.16); }.field [aria-invalid="true"] { border-color: #ff8b69; }.field-error { display: block; min-height: 17px; margin-top: 5px; color: #ff9d80; font-size: .74rem; }
.form-bottom { display: flex; align-items: center; gap: 22px; }.button-light { color: var(--ink); background: var(--lime); }.button-light:hover { background: #d5ff78; }.form-bottom p { max-width: 180px; margin: 0; color: #7e8aa1; font-size: .7rem; }.form-status { min-height: 22px; margin: 14px 0 0; color: var(--lime); font-size: .84rem; }

.site-footer { padding: 72px 0 24px; color: #c4ccda; background: #070c15; border-top: 1px solid #202838; }.footer-top { display: grid; grid-template-columns: 1fr 1.2fr .8fr; gap: 60px; align-items: start; padding-bottom: 48px; }.brand-footer { color: var(--white); }.brand-footer .brand-mark i:nth-child(3) { background: var(--white); }.footer-top > p { margin: 0; color: #7e899b; font-size: 1rem; }.footer-top nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; font-size: .88rem; }.footer-top nav a:hover, .site-footer a:hover { color: var(--lime); }
.company-data { display: grid; grid-template-columns: 1.2fr .75fr 2.4fr 1.35fr; gap: 30px; padding: 28px 0; color: #808a9b; border-top: 1px solid #202838; border-bottom: 1px solid #202838; font-size: .72rem; }.company-data p { margin: 0; }.company-data strong { color: #b9c1cf; font-weight: 600; }.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; color: #6e788a; font-size: .7rem; }.footer-bottom div { display: flex; gap: 28px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }.js-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }.no-js [data-reveal] { opacity: 1; transform: none; }

.legal-page { background: var(--paper); }.legal-hero { padding: 170px 0 74px; color: var(--white); background: var(--ink); }.legal-hero .eyebrow { color: var(--lime); }.legal-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 6.2rem); }.legal-hero p:last-child { max-width: 630px; margin: 28px 0 0; color: #aeb7c8; font-size: 1.05rem; }.legal-content { padding: 80px 0 120px; }.legal-grid { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 80px; align-items: start; }.legal-aside { position: sticky; top: 112px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }.legal-aside strong { display: block; margin-bottom: 8px; font-family: var(--font-display); }.legal-aside span { color: var(--muted); font-size: .84rem; }.legal-article section { padding: 0 0 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }.legal-article section:last-child { margin-bottom: 0; border-bottom: 0; }.legal-article h2 { margin: 0 0 15px; font-family: var(--font-display); font-size: 1.55rem; letter-spacing: -.025em; }.legal-article p, .legal-article li { color: var(--muted); }.legal-article ul { padding-left: 20px; }.legal-article a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1080px) {
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 56px; padding-top: 130px; }
  .hero-copy { max-width: 760px; }.hero h1 { font-size: clamp(4.5rem, 10vw, 7rem); }.hero-visual { min-height: 650px; }.image-frame { left: 80px; }.orbit-badge { left: 30px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }.section-heading > p { max-width: 580px; }
  .service-grid { grid-template-columns: 1fr 1fr; }.service-featured { grid-row: span 2; }.service-wide { grid-column: 1 / -1; }
  .about-grid { gap: 50px; }.about-image { min-height: 580px; }.about-image img { height: 550px; }
  .contact-grid { gap: 55px; }.company-data { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 620px); --radius: 17px; }
  .section { padding: 82px 0; }.site-header { background: rgba(245,247,251,.96); }.header-inner { min-height: 68px; }.menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 99; inset: 68px 0 auto; display: grid; gap: 0; padding: 14px 16px 24px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgba(16,24,40,.12); transform: translateY(-130%); visibility: hidden; transition: transform .3s, visibility .3s; }.main-nav.is-open { transform: translateY(0); visibility: visible; }.main-nav a { padding: 16px 10px; border-bottom: 1px solid var(--line); }.main-nav .nav-cta { justify-content: space-between; margin-top: 12px; padding: 15px 18px; border: 0; }
  .hero { padding-top: 68px; }.hero-grid { gap: 44px; padding-top: 70px; padding-bottom: 78px; }.hero h1 { font-size: clamp(3.7rem, 17vw, 5.6rem); }.hero-lead { margin-top: 24px; font-size: 1rem; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }.hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }.hero-proof div + div { padding: 14px 0 0; border-top: 1px solid var(--line); border-left: 0; }.hero-proof div { padding-right: 0; }
  .hero-visual { min-height: 460px; }.image-frame { inset: 0 0 34px 0; border-radius: 86px 14px 14px 14px; }.metric-card { right: -5px; width: 235px; padding: 16px; }.orbit-badge { top: -30px; left: -10px; width: 88px; height: 88px; border-width: 5px; }.orbit-badge svg { width: 68px; height: 68px; }.orbit-badge text { font-size: 8px; }.orbit-badge > span { font-size: 1.3rem; }.capabilities { padding: 14px 0; }.capabilities-track { gap: 20px; font-size: .7rem; }
  .section-heading { margin-bottom: 38px; }.section-heading h2, .about h2 { font-size: clamp(2.55rem, 12vw, 4rem); }.service-grid { grid-template-columns: 1fr; }.service-card { min-height: 320px; }.service-featured { grid-row: auto; }.service-wide { display: flex; grid-column: auto; }.service-wide-copy { align-items: flex-start; flex-direction: column; }.mini-dashboard { width: 100%; }
  .process-intro { grid-template-columns: 1fr; gap: 25px; margin-bottom: 48px; }.process h2, .contact h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }.process-intro > p:last-child { align-self: auto; }.process-list li { min-height: auto; grid-template-columns: 48px 1fr; gap: 12px; padding: 28px 0; }.process-list li > div { grid-template-columns: 1fr; gap: 10px; }.process-list h3 { font-size: 1.55rem; }.process-symbol { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }.about-image { min-height: 440px; }.about-image img { height: 430px; border-radius: 18px 80px 18px 18px; }.about-stamp { right: -6px; width: 170px; height: 100px; }.about-copy { padding-left: 0; }.about-values > div { grid-template-columns: 90px 1fr; gap: 15px; }
  .manifesto { padding: 80px 0; }.manifesto-foot { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 36px; text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }.contact-form { padding: 24px 18px; }.field-row { grid-template-columns: 1fr; gap: 0; }.form-bottom { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }.company-data { grid-template-columns: 1fr; gap: 18px; }.footer-bottom { align-items: flex-start; flex-direction: column; }.footer-bottom div { flex-direction: column; gap: 10px; }
  .legal-hero { padding: 130px 0 60px; }.legal-grid { grid-template-columns: 1fr; gap: 42px; }.legal-aside { position: static; }.legal-content { padding: 60px 0 80px; }
}

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