:root {
  --cyan: #00adef;
  --cyan-bright: #32c8ff;
  --cyan-soft: rgba(0, 173, 239, .12);
  --ink: #0b1115;
  --ink-2: #11191f;
  --ink-3: #172229;
  --charcoal: #262626;
  --muted: #68737b;
  --line: #dfe7eb;
  --paper: #f4f7f8;
  --white: #ffffff;
  --success: #30d59b;
  --container: 1180px;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(6, 23, 32, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
body.nav-open::before {
  content: ""; position: fixed; inset: 70px 0 0; z-index: 95;
  background: rgba(11,17,21,.22); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 12px 16px; background: var(--cyan); color: var(--ink); font-weight: 800;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 118px 0; position: relative; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto;
  background: rgba(244,247,248,.82); border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-color: rgba(38,38,38,.09); box-shadow: 0 10px 30px rgba(20,35,43,.05); }
.nav-wrap { position: relative; z-index: 121; height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand-logo { width: 188px; height: auto; max-height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.main-nav > a { position: relative; transition: color .2s; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--cyan); transition: right .2s; }
.main-nav > a:hover { color: #007eaf; }
.main-nav > a:hover::after { right: 0; }
.nav-cta { padding: 11px 18px; color: white; background: var(--charcoal); border-radius: 999px; }
.nav-cta:hover { color: white !important; background: #008fc5; }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: .2s; }

.hero { min-height: 820px; padding-top: 170px; padding-bottom: 100px; color: var(--white); background: var(--ink); overflow: hidden; display: flex; align-items: center; }
.hero-grid { position: absolute; inset: 0; opacity: .25; 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: 52px 52px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(to top, rgba(0,173,239,.05), transparent); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .32; }
.hero-glow-one { width: 520px; height: 520px; background: radial-gradient(circle, rgba(0,173,239,.6), transparent 68%); right: -180px; top: 40px; }
.hero-glow-two { width: 360px; height: 360px; background: radial-gradient(circle, rgba(0,173,239,.26), transparent 70%); left: -120px; bottom: -100px; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 76px; align-items: center; }
.eyebrow { margin: 0 0 25px; display: flex; align-items: center; gap: 10px; color: #008fc5; font-size: 12px; line-height: 1.2; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow { color: var(--cyan-bright); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 7px rgba(0,173,239,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(0,173,239,0); } }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(52px, 6.2vw, 86px); line-height: .98; letter-spacing: -.065em; font-weight: 780; }
.hero h1 span { color: var(--cyan); }
.hero-lead { max-width: 690px; margin: 32px 0 0; color: #b9c7cf; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 37px; }
.button { min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; font-size: 14px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: #041118; box-shadow: 0 12px 40px rgba(0,173,239,.2); }
.button-primary:hover { background: var(--cyan-bright); }
.button-ghost { border-color: rgba(255,255,255,.16); color: #dce7eb; background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: rgba(0,173,239,.55); color: white; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 54px 0 0; }
.hero-metrics div { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-metrics dt { color: white; font-size: 13px; font-weight: 750; }
.hero-metrics dd { margin: 7px 0 0; color: #788b95; font-size: 11px; line-height: 1.45; }

.hero-console { border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: linear-gradient(145deg, rgba(24,35,42,.93), rgba(9,15,19,.95)); box-shadow: 0 38px 100px rgba(0,0,0,.38); overflow: hidden; transform: perspective(1100px) rotateY(-2deg); }
.console-topbar { height: 47px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.09); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #71838d; font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .05em; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border: 1px solid #54636c; border-radius: 50%; }
.console-online { justify-self: end; color: var(--success); }
.console-body { min-height: 430px; padding: 26px; display: grid; grid-template-columns: 42% 58%; gap: 18px; }
.logo-module { min-height: 360px; padding: 25px 15px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: #f7fafb; position: relative; overflow: hidden; }
.logo-module::before { content: "LOGO / PRIMARY"; position: absolute; top: 13px; left: 13px; color: #a2adb3; font: 8px/1 ui-monospace, monospace; letter-spacing: .15em; }
.logo-module::after { content: ""; position: absolute; inset: 8px; border: 1px dashed #d5dde0; border-radius: 9px; pointer-events: none; }
.logo-module img { width: min(235px, 86%); height: auto; max-height: 305px; object-fit: contain; position: relative; z-index: 1; }
.status-module { padding: 16px 6px 8px 10px; display: flex; flex-direction: column; }
.module-label { margin: 2px 0 12px; color: #60727c; font: 9px/1 ui-monospace, monospace; letter-spacing: .15em; }
.status-row { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 12px; font: 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; }
.status-row span { color: #91a1aa; }
.status-row strong { color: #d5e0e5; font-size: 9px; font-weight: 650; white-space: nowrap; }
.status-row i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px var(--success); }
.terminal-line { margin-top: auto; min-height: 67px; padding: 16px 14px; border: 1px solid rgba(0,173,239,.2); border-radius: 9px; background: rgba(0,173,239,.045); display: flex; align-items: flex-start; gap: 8px; color: var(--cyan); font: 10px/1.55 ui-monospace, monospace; }
.terminal-line code { color: #a8bac3; white-space: normal; }
.cursor { width: 6px; height: 14px; background: var(--cyan); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.console-footer { min-height: 46px; padding: 0 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; color: #62747e; font: 9px/1 ui-monospace, monospace; }

.trust-strip { position: relative; z-index: 2; border-bottom: 1px solid #d9e1e5; background: white; overflow: hidden; }
.trust-track { min-height: 80px; display: flex; justify-content: space-between; align-items: center; gap: 22px; color: #748089; font: 11px/1 ui-monospace, monospace; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.trust-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); flex: 0 0 auto; }

.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading h2 { margin: 0; color: var(--charcoal); font-size: clamp(39px, 5vw, 63px); line-height: 1.04; letter-spacing: -.055em; }
.section-heading > p:not(.eyebrow), .split-heading > p { max-width: 680px; margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 445px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.78); position: relative; overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card::before { content: ""; position: absolute; width: 160px; height: 160px; right: -70px; top: -80px; border-radius: 50%; background: var(--cyan-soft); transition: transform .3s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(0,173,239,.42); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scale(1.35); }
.card-index { position: absolute; right: 24px; top: 22px; color: #aab4b9; font: 10px/1 ui-monospace, monospace; }
.icon-box { width: 49px; height: 49px; display: grid; place-items: center; color: #0088bc; background: var(--cyan-soft); border: 1px solid rgba(0,173,239,.18); border-radius: 11px; }
.icon-box svg { width: 24px; }
.service-card h3 { margin: 36px 0 16px; font-size: 24px; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.service-card ul { list-style: none; padding: 0; margin: 26px 0 0; }
.service-card li { padding: 8px 0 8px 17px; border-top: 1px solid #edf1f3; color: #48545b; font-size: 12px; position: relative; }
.service-card li::before { content: "+"; position: absolute; left: 0; color: var(--cyan); font-weight: 900; }

.dark-section { color: white; background: var(--ink); overflow: hidden; }
.dark-section::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(rgba(0,173,239,.7) .7px, transparent .7px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent, black 30%, transparent 90%); }
.dark-section .container { position: relative; }
.dark-section .section-heading h2 { color: white; }
.dark-section .section-heading > p { color: #94a5ae; }
.projects-stack { border-top: 1px solid rgba(255,255,255,.14); }
.project-row { display: grid; grid-template-columns: 70px 1fr 260px; gap: 32px; padding: 42px 0; border-bottom: 1px solid rgba(255,255,255,.12); align-items: start; transition: background .2s; }
.project-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(0,173,239,.4); border-radius: 50%; color: var(--cyan); font: 12px/1 ui-monospace, monospace; }
.project-tag { margin: 0 0 10px; color: var(--cyan); font: 9px/1 ui-monospace, monospace; letter-spacing: .16em; }
.project-main h3 { margin: 0 0 14px; font-size: 27px; letter-spacing: -.035em; }
.project-main > p:last-child { max-width: 700px; margin: 0; color: #8fa0a9; font-size: 14px; line-height: 1.7; }
.project-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.project-meta span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #83959e; font: 9px/1 ui-monospace, monospace; }

.tech-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.tech-layout .section-heading { position: sticky; top: 125px; }
.tech-panel { border: 1px solid var(--line); border-radius: 18px; background: white; overflow: hidden; }
.tech-group { padding: 30px 32px; border-bottom: 1px solid var(--line); }
.tech-group:last-child { border-bottom: 0; }
.tech-group h3 { margin: 0 0 18px; font-size: 14px; letter-spacing: -.02em; }
.tech-group > div { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-group span { padding: 10px 13px; border-radius: 6px; color: #526069; background: #f1f5f6; font: 11px/1 ui-monospace, monospace; transition: color .2s, background .2s, transform .2s; }
.tech-group span:hover { color: #004e6b; background: var(--cyan-soft); transform: translateY(-2px); }

.process-section { padding-top: 40px; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfdadd; border-bottom: 1px solid #cfdadd; }
.process-grid li { min-height: 300px; padding: 33px 28px; border-right: 1px solid #cfdadd; position: relative; }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { color: var(--cyan); font: 11px/1 ui-monospace, monospace; }
.process-grid h3 { margin: 80px 0 14px; font-size: 22px; letter-spacing: -.03em; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.68; }
.process-grid li::after { content: ""; position: absolute; left: 28px; top: 75px; width: 42px; height: 2px; background: var(--cyan); }

.about-section { background: white; }
.about-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: center; }
.about-layout .section-heading { margin: 0; }
.about-layout .section-heading > p:not(.eyebrow) { font-size: 16px; }
.about-visual { min-height: 520px; padding: 44px; background: var(--ink); border-radius: 24px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.about-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 34px 34px; }
.about-code { position: relative; z-index: 2; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; overflow: hidden; background: rgba(8,14,18,.75); }
.about-code div { padding: 18px 20px; display: grid; grid-template-columns: 90px 1fr; border-bottom: 1px solid rgba(255,255,255,.09); font: 10px/1.35 ui-monospace, monospace; }
.about-code div:last-child { border: 0; }
.about-code span { color: var(--cyan); }
.about-code strong { color: #b7c7cf; font-weight: 500; }
.radar { position: absolute; width: 280px; height: 280px; border: 1px solid rgba(0,173,239,.28); border-radius: 50%; right: -45px; bottom: -50px; }
.radar i { position: absolute; inset: 16.6%; border: 1px solid rgba(0,173,239,.2); border-radius: 50%; }
.radar i:nth-child(2) { inset: 33.3%; }
.radar i:nth-child(3) { inset: 49%; }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(0,173,239,.22); }
.radar::before { width: 1px; top: 0; bottom: 0; left: 50%; }
.radar::after { height: 1px; left: 0; right: 0; top: 50%; }
.radar span { position: absolute; left: 50%; top: 50%; width: 48%; height: 48%; transform-origin: 0 0; background: linear-gradient(35deg, rgba(0,173,239,.2), transparent 70%); animation: rotate 5s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.text-link { display: inline-flex; gap: 12px; margin-top: 28px; padding-bottom: 6px; border-bottom: 1px solid var(--cyan); color: #007ba9; font-weight: 800; font-size: 14px; }

.contact-section { color: white; background: linear-gradient(135deg, #0b1115 0%, #111c22 100%); }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(40px, 4.8vw, 62px); line-height: 1.04; letter-spacing: -.055em; }
.contact-copy > p:not(.eyebrow) { margin: 27px 0 0; color: #96a8b1; line-height: 1.75; }
.contact-direct { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.13); }
.contact-direct a { min-height: 83px; display: grid; grid-template-columns: 85px 1fr auto; align-items: center; border-bottom: 1px solid rgba(255,255,255,.13); transition: background .2s, padding .2s; }
.contact-direct a:hover { padding-left: 12px; background: rgba(0,173,239,.055); }
.contact-direct small { color: var(--cyan); font: 9px/1 ui-monospace, monospace; letter-spacing: .13em; }
.contact-direct strong { font-size: 16px; }
.contact-direct span { color: var(--cyan); }
.contact-form { padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.045); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 18px; color: #cbd7dc; font-size: 12px; font-weight: 700; }
.contact-form label > span { color: #71838c; font-size: 10px; font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; outline: 0; padding: 14px 15px; color: white; background: rgba(4,10,13,.55); transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; min-height: 155px; line-height: 1.55; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #596a73; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,173,239,.1); }
.form-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.form-bottom p { max-width: 330px; margin: 0; color: #687b84; font-size: 10px; line-height: 1.5; }
.form-status { min-height: 22px; margin-top: 16px; color: #95a8b1; font-size: 12px; }
.form-status.success { color: var(--success); }
.form-status.error { color: #ff8e8e; }
.contact-form.is-loading button { opacity: .65; pointer-events: none; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { color: #8798a1; background: #070b0d; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { min-height: 155px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.footer-brand { display: grid; gap: 7px; align-items: center; }
.footer-logo { width: 148px; height: auto; max-height: 42px; object-fit: contain; object-position: left center; }
.footer-brand p { margin: 0; font-size: 10px; }
.footer-links { display: flex; gap: 23px; font-size: 11px; }
.footer-links a:hover { color: var(--cyan); }
.footer-meta { text-align: right; font: 9px/1.8 ui-monospace, monospace; }
.footer-meta p { margin: 0; }

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

@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 850px; }
  .hero-console { max-width: 650px; transform: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-layout, .about-layout, .contact-layout { gap: 55px; }
  .project-row { grid-template-columns: 60px 1fr; }
  .project-meta { grid-column: 2; justify-content: flex-start; }
}

@media (max-width: 820px) {
  .section { padding: 88px 0; }
  .main-nav { position: fixed; z-index: 120; inset: 78px 0 0; height: calc(100dvh - 78px); overflow-y: auto; padding: 28px 20px 32px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: #f4f7f8; border-top: 1px solid #dfe7ea; box-shadow: 0 24px 60px rgba(11,17,21,.14); transform: translateX(100%); transition: transform .25s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { display: block; padding: 18px 5px; color: var(--charcoal); border-bottom: 1px solid #dfe7ea; font-size: 19px; background: transparent; }
  .main-nav .nav-cta { margin-top: 20px; padding: 16px 18px; text-align: center; color: white; border: 0; border-radius: 999px; background: var(--charcoal); }
  .nav-toggle { display: block; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 140px; }
  .hero h1 { font-size: clamp(48px, 12vw, 72px); }
  .hero-metrics { grid-template-columns: 1fr; gap: 12px; }
  .hero-metrics div { display: grid; grid-template-columns: 150px 1fr; }
  .hero-metrics dd { margin: 0; }
  .console-body { grid-template-columns: 1fr 1.2fr; }
  .split-heading, .tech-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .tech-layout .section-heading { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid #cfdadd; }
  .about-visual { max-width: 610px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-links { display: none; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { height: 70px; }
  .brand-logo { width: 162px; max-height: 50px; }
  .main-nav { inset: 70px 0 0; height: calc(100dvh - 70px); }
  .hero { padding-top: 120px; padding-bottom: 75px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-metrics div { grid-template-columns: 1fr; }
  .hero-metrics dd { margin-top: 6px; }
  .hero-console { border-radius: 15px; }
  .console-topbar { grid-template-columns: 1fr auto; }
  .console-topbar > span:nth-child(2) { display: none; }
  .console-body { padding: 16px; grid-template-columns: 1fr; }
  .logo-module { min-height: 245px; }
  .logo-module img { width: min(210px, 78%); max-height: 220px; }
  .status-module { padding: 8px 2px 0; }
  .console-footer { gap: 15px; align-items: flex-start; padding: 15px; flex-direction: column; }
  .trust-track { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .trust-track::-webkit-scrollbar { display: none; }
  .section-heading h2, .contact-copy h2 { font-size: 39px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .project-row { grid-template-columns: 1fr; gap: 20px; }
  .project-meta { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li:nth-child(2) { border-right: 0; border-bottom: 1px solid #cfdadd; }
  .process-grid li:last-child { border-bottom: 0; }
  .process-grid li { min-height: 245px; }
  .about-visual { min-height: 460px; padding: 22px; }
  .about-code div { grid-template-columns: 70px 1fr; padding: 16px 13px; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-bottom { align-items: stretch; flex-direction: column; }
  .contact-direct a { grid-template-columns: 70px 1fr auto; }
  .contact-direct strong { font-size: 14px; }
  .footer-grid { padding: 35px 0; grid-template-columns: 1fr; }
  .footer-meta { 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; }
}

body.nav-open .site-header {
  background: rgba(244,247,248,.98);
  border-bottom-color: rgba(38,38,38,.09);
  box-shadow: 0 10px 30px rgba(20,35,43,.07);
}
