:root {
  --navy: #0a1020;
  --navy-2: #111a30;
  --ink: #141a2a;
  --muted: #626a7d;
  --blue: #3930ff;
  --blue-2: #645dff;
  --cyan: #37c8ff;
  --pale: #f3f5fa;
  --line: #e3e6ef;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 26px 70px rgba(9, 15, 32, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: absolute;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-wrap { height: 90px; display: flex; align-items: center; gap: 42px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: white; }
.brand-symbol {
  width: 50px; height: 50px; flex: none; display: grid; place-items: center;
}
.brand-symbol img { width: 50px; height: 50px; display: block; object-fit: contain; }
.brand-copy { display: grid; line-height: .9; }
.brand-copy strong { font: 800 24px/1 "Manrope", sans-serif; letter-spacing: -1.1px; }
.brand-copy strong span { color: #625aff; }
.brand-copy small { margin-top: 5px; font-size: 8px; font-weight: 600; letter-spacing: 3.4px; text-transform: uppercase; opacity: .7; }
.main-nav { margin-left: auto; display: flex; gap: 34px; }
.main-nav a { color: rgba(255,255,255,.72); font-size: 14px; font-weight: 600; transition: color .2s; }
.main-nav a:hover { color: white; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 24px; border: 0; border-radius: 9px;
  color: white; background: linear-gradient(135deg, var(--blue), #4b43ff);
  box-shadow: 0 12px 30px rgba(57,48,255,.25); font-weight: 700; font-size: 14px;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(57,48,255,.36); }
.button svg { width: 19px; }
.button-small { min-height: 43px; padding: 0 18px; font-size: 13px; box-shadow: none; }
.menu-toggle { display: none; background: none; border: 0; color: white; }

.hero {
  position: relative; overflow: hidden; color: white;
  background: radial-gradient(circle at 72% 43%, #1b2850 0, #0d1428 32%, var(--navy) 67%);
  padding: 185px 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: linear-gradient(to right, transparent 5%, black 78%, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 450px; height: 450px; right: -200px; top: 100px; background: rgba(57,48,255,.17); }
.hero-glow-two { width: 280px; height: 280px; left: 20%; bottom: -180px; background: rgba(55,200,255,.08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #c4c8d5; font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; background: var(--cyan); }
.hero h1, .section h2 {
  margin: 22px 0; font: 700 clamp(49px, 5.5vw, 76px)/1.02 "Manrope", sans-serif;
  letter-spacing: -3.4px;
}
.hero h1 em, .section h2 em { color: var(--blue-2); font-style: normal; }
.hero-lede { max-width: 625px; color: #aeb5c8; font-size: 19px; line-height: 1.68; }
.hero-actions { margin-top: 35px; display: flex; align-items: center; gap: 29px; }
.text-link { display: flex; align-items: center; gap: 12px; }
.text-link .phone-icon { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.text-link svg { width: 20px; }
.text-link > span:last-child { display: grid; font-size: 14px; font-weight: 700; }
.text-link small { margin-bottom: 2px; color: #8f97aa; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.hero-proof { margin-top: 55px; display: flex; gap: 40px; }
.hero-proof > div { display: flex; align-items: center; gap: 11px; padding-right: 35px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof > div:last-child { border: 0; }
.hero-proof strong { font: 700 22px/1 "Manrope"; }
.hero-proof span { color: #858da0; font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .9px; }

.hero-visual { position: relative; min-height: 515px; perspective: 1100px; transform-style: preserve-3d; }
.hero-visual > * { transition: transform .18s ease-out; }
.cursor-glow {
  position: absolute; z-index: 1; width: 260px; height: 260px; left: var(--glow-x, 55%); top: var(--glow-y, 42%);
  border-radius: 50%; pointer-events: none; opacity: .55; filter: blur(38px);
  background: radial-gradient(circle, rgba(72,65,255,.32), transparent 67%);
  transform: translate(-50%, -50%) !important;
}
.visual-card { position: absolute; z-index: 3; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: rgba(20,30,55,.82); backdrop-filter: blur(16px); box-shadow: 0 40px 90px rgba(0,0,0,.35); }
.visual-card-main { top: 20px; right: 10px; width: min(100%, 460px); padding: 24px; transform: rotate(1.5deg) translateZ(24px); transition: transform .22s ease-out, border-color .3s, box-shadow .3s; }
.hero-visual:hover .visual-card-main { border-color: rgba(111,104,255,.34); box-shadow: 0 44px 100px rgba(0,0,0,.42), 0 0 45px rgba(57,48,255,.08); }
.scan-line { position: absolute; z-index: 0; left: 0; right: 0; top: -15%; height: 70px; pointer-events: none; opacity: 0; background: linear-gradient(180deg, transparent, rgba(74,231,255,.065), transparent); animation: scan-card 5.5s ease-in-out infinite; }
.card-top { display: flex; align-items: center; gap: 9px; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.09); color: #cbd0dc; font-size: 12px; font-weight: 600; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #33df93; box-shadow: 0 0 0 5px rgba(51,223,147,.1); }
.live-pill { margin-left: auto; padding: 5px 9px; border-radius: 99px; color: #4ee0a3; background: rgba(51,223,147,.1); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
.security-score { padding: 28px 8px 24px; display: flex; align-items: center; gap: 22px; }
.score-ring { position: relative; width: 105px; height: 105px; flex: none; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(#4e47ff 0%, rgba(255,255,255,.08) 0); animation: score-fill 1.6s .3s cubic-bezier(.2,.75,.3,1) forwards, score-breathe 3s 2s ease-in-out infinite; }
.score-ring::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #151f39; }
.score-ring span { position: relative; display: flex; align-items: baseline; }
.score-ring strong { font: 700 29px/1 "Manrope"; }
.score-ring small { color: #6e7890; font-size: 10px; }
.security-score > div:last-child { display: grid; }
.security-score > div:last-child small { color: #7d879d; font-size: 11px; }
.security-score > div:last-child strong { margin-top: 6px; font: 600 15px/1.3 "Manrope"; }
.security-score p { margin: 6px 0 0; color: #4dcb99; font-size: 10px; }
.system-list { display: grid; gap: 10px; }
.system-list > div { display: flex; align-items: center; gap: 13px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.025); transition: transform .25s, border-color .25s, background .25s; }
.system-list > div:hover { transform: translateX(-5px); border-color: rgba(99,91,255,.32); background: rgba(255,255,255,.052); }
.system-icon { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border-radius: 9px; }
.system-icon svg { width: 18px; }
.system-icon.cloud { color: #5e86ff; background: rgba(68,99,255,.13); }
.system-icon.shield { color: #34d69b; background: rgba(51,223,147,.11); }
.system-icon.phone { color: #c36dff; background: rgba(182,82,255,.12); }
.system-list div > span:nth-child(2) { display: grid; }
.system-list strong { font-size: 11px; font-weight: 600; }
.system-list small { margin-top: 3px; color: #778197; font-size: 9px; }
.system-list .signal { width: 28px; height: 20px; margin-left: auto; display: flex; align-items: end; justify-content: flex-end; gap: 2px; }
.system-list .signal b { width: 3px; min-height: 4px; border-radius: 3px; background: #35d99a; box-shadow: 0 0 7px rgba(53,217,154,.35); animation: signal-bars 1.15s ease-in-out infinite alternate; }
.system-list .signal b:nth-child(2) { animation-delay: -.45s; }
.system-list .signal b:nth-child(3) { animation-delay: -.8s; }
.system-list .signal b:nth-child(4) { animation-delay: -.2s; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(20,30,55,.95); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.support-card { left: -20px; top: 90px; }
.support-avatar { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg, #746eff, var(--blue)); font-size: 11px; font-weight: 700; }
.floating-card > span:last-child { display: grid; }
.floating-card small { color: #7e879a; font-size: 9px; }
.floating-card strong { margin-top: 3px; font-size: 11px; }
.uptime-card { right: -16px; bottom: 74px; }
.uptime-card svg { width: 32px; height: 32px; padding: 7px; color: #32dc9d; border-radius: 50%; background: rgba(51,223,147,.1); }
.threat-card { left: 18px; bottom: 28px; opacity: .96; transform: translateZ(42px); animation: float-card 4.2s ease-in-out infinite; }
.threat-icon { width: 34px; height: 34px; display: grid; place-items: center; color: #ff9f68; border-radius: 9px; background: rgba(255,137,73,.1); }
.threat-icon svg { width: 19px; }
.network-orbit { position: absolute; border: 1px solid rgba(90,82,255,.19); border-radius: 50%; }
.network-orbit::after { content: ""; position: absolute; width: 8px; height: 8px; top: 12%; left: 20%; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(55,200,255,.08), 0 0 20px rgba(55,200,255,.5); }
.orbit-one { width: 530px; height: 530px; top: -35px; left: -35px; animation: orbit-spin 22s linear infinite; }
.orbit-two { width: 410px; height: 410px; top: 25px; left: 25px; animation: orbit-spin 17s linear infinite reverse; }
.orbit-node { position: absolute; z-index: 2; display: flex; align-items: center; gap: 6px; color: #69748c; font-size: 8px; letter-spacing: 1px; text-transform: uppercase; animation: node-float 3.5s ease-in-out infinite; }
.orbit-node span { width: 6px; height: 6px; border-radius: 50%; background: #655eff; box-shadow: 0 0 0 5px rgba(101,94,255,.09), 0 0 16px rgba(101,94,255,.5); }
.node-cloud { top: 5px; left: 42%; }
.node-office { top: 55%; left: -5px; animation-delay: -1.1s; }
.node-remote { right: 4%; bottom: 10px; animation-delay: -2.2s; }
.trusted-strip { position: relative; z-index: 3; margin-top: 70px; min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 35px; border-top: 1px solid rgba(255,255,255,.1); }
.trusted-strip p { color: #667087; font-size: 10px; text-transform: uppercase; letter-spacing: 1.4px; }
.tech-logos { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 35px; color: #81899b; font: 600 13px "Manrope"; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 55px; }
.section-kicker { display: block; color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.section h2 { margin: 16px 0 0; font-size: clamp(39px, 4.5vw, 57px); letter-spacing: -2.4px; }
.section-heading > p, .lead { margin: 0 0 7px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.service-card { position: relative; min-height: 395px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); background: white; transition: transform .25s, box-shadow .25s; }
.service-card:last-child { border-right: 0; }
.service-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: var(--shadow); }
.service-featured { color: white; background: linear-gradient(155deg, #181e39, #0b1122); }
.service-number { align-self: flex-end; color: #aeb4c2; font: 600 10px "Manrope"; }
.service-icon { width: 52px; height: 52px; margin: 41px 0 30px; display: grid; place-items: center; color: var(--blue); border-radius: 13px; background: #efefff; }
.service-featured .service-icon { color: white; background: var(--blue); }
.service-icon svg { width: 26px; }
.service-card h3 { margin: 0; font: 700 18px/1.3 "Manrope"; letter-spacing: -.4px; }
.service-card p { margin: 13px 0 25px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-featured p { color: #939bad; }
.service-card a { margin-top: auto; color: var(--blue); font-size: 12px; font-weight: 700; }
.service-featured a { color: #817bff; }
.service-card a span { margin-left: 6px; }

.approach { background: var(--pale); }
.approach-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.image-panel { position: relative; min-height: 610px; overflow: hidden; border-radius: 20px; background: radial-gradient(circle at 50% 45%, #273e72, #121a30 55%, #080e1d); box-shadow: var(--shadow); }
.image-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(130deg, transparent 35%, rgba(70,62,255,.3)), repeating-linear-gradient(90deg, transparent 0 49px, rgba(255,255,255,.025) 50px); }
.server-lines { position: absolute; inset: 70px 55px 100px; display: grid; gap: 14px; transform: perspective(600px) rotateY(-12deg) rotateX(3deg); }
.server-lines span { display: block; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,.07), rgba(57,48,255,.22)); box-shadow: 0 13px 25px rgba(0,0,0,.2); }
.server-lines span::before { content: ""; display: block; width: 8px; height: 8px; margin: 22px; border-radius: 50%; background: #35dc9d; box-shadow: 18px 0 #625bff, 36px 0 rgba(255,255,255,.2); }
.panel-badge { position: absolute; left: 28px; bottom: 28px; padding: 21px 27px; display: grid; color: white; border-radius: 12px; background: var(--blue); box-shadow: 0 18px 40px rgba(57,48,255,.32); }
.panel-badge strong { font: 700 23px "Manrope"; }
.panel-badge span { margin-top: 3px; font-size: 10px; color: #c5c2ff; }
.approach-copy h2 { margin-bottom: 24px; }
.benefit-list { margin-top: 38px; display: grid; }
.benefit-list > div { padding: 23px 0; display: grid; grid-template-columns: 43px 1fr; gap: 17px; border-top: 1px solid #dfe2eb; }
.benefit-list > div > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: white; font: 700 10px "Manrope"; }
.benefit-list h3 { margin: 0 0 6px; font: 700 16px "Manrope"; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.about { padding-top: 0; background: var(--pale); }
.about-card { padding: 70px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; color: white; border-radius: 22px; background: linear-gradient(130deg, #3c33ff 0%, #2620c9 52%, #141a35 100%); box-shadow: 0 28px 65px rgba(42,35,207,.2); }
.section-kicker.light { color: #a9e8ff; }
.about-card h2 { margin-top: 15px; color: white; font-size: clamp(34px, 4vw, 48px); }
.about-card > div:nth-child(2) > p { margin: 0; color: #d3d2ff; font-size: 15px; line-height: 1.75; }
blockquote { margin: 28px 0; padding-left: 18px; border-left: 2px solid var(--cyan); font: 600 16px/1.55 "Manrope"; }
.founder { display: flex; align-items: center; gap: 12px; }
.founder-photo {
  width: 64px; height: 64px; flex: none; display: block; overflow: hidden;
  border: 3px solid rgba(255,255,255,.88); border-radius: 50%;
  background: white; box-shadow: 0 10px 24px rgba(15,12,110,.24);
}
.founder-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 31%; }
.founder div { display: grid; }
.founder strong { font-size: 13px; }
.founder small { margin-top: 3px; color: #aaa8f5; font-size: 10px; }

.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: .87fr 1.13fr; gap: 110px; align-items: start; }
.contact-copy > p { max-width: 510px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.contact-details { margin: 38px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.contact-details a, .contact-details div { display: grid; padding-top: 17px; border-top: 1px solid var(--line); }
.contact-details span { margin-bottom: 8px; color: #8a91a2; font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; }
.contact-details strong { font: 600 14px/1.55 "Manrope"; }
.service-area { padding-left: 17px; border-left: 2px solid var(--blue); font-size: 12px !important; }
.contact-form { padding: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 19px; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.form-heading { grid-column: 1 / -1; margin-bottom: 8px; }
.form-heading h3 { margin: 0; font: 700 22px "Manrope"; letter-spacing: -.5px; }
.form-heading p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.contact-form label { display: grid; gap: 8px; color: #4a5162; font-size: 11px; font-weight: 700; }
.contact-form label:nth-of-type(3), .contact-form label:nth-of-type(4) { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 15px; color: var(--ink); border: 1px solid #dfe2eb; border-radius: 8px; outline: 0; background: #fafbfe; transition: border .2s, box-shadow .2s; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(57,48,255,.09); }
.contact-form .button { grid-column: 1 / -1; margin-top: 3px; }
.contact-form .button:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
.form-note { grid-column: 1 / -1; margin: -7px 0 0; color: #9a9fad; text-align: center; font-size: 9px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { grid-column: 1 / -1; min-height: 18px; margin: -4px 0 0; text-align: center; font-size: 12px; font-weight: 600; }
.form-status.success { color: #16875d; }
.form-status.error { color: #c33f4b; }

.site-footer { padding: 65px 0 25px; color: #8d96aa; background: var(--navy); }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 50px; }
.footer-main > p { font-size: 12px; }
.footer-links { display: flex; gap: 25px; color: #c3c8d4; font-size: 12px; }
.footer-bottom { margin-top: 50px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes score-fill {
  from { background: conic-gradient(#4e47ff 0%, rgba(255,255,255,.08) 0); }
  to { background: conic-gradient(#4e47ff 98%, rgba(255,255,255,.08) 0); }
}
@keyframes score-breathe {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(78,71,255,0)); }
  50% { filter: drop-shadow(0 0 11px rgba(78,71,255,.38)); }
}
@keyframes signal-bars {
  0% { height: 4px; opacity: .45; }
  100% { height: 17px; opacity: 1; }
}
@keyframes scan-card {
  0%, 12% { top: -15%; opacity: 0; }
  22% { opacity: 1; }
  68% { opacity: .7; }
  82%, 100% { top: 105%; opacity: 0; }
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes float-card {
  0%, 100% { transform: translateZ(42px) translateY(0); }
  50% { transform: translateZ(42px) translateY(-7px); }
}
@keyframes node-float {
  0%, 100% { transform: translateY(0); opacity: .65; }
  50% { transform: translateY(-8px); opacity: 1; }
}

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .nav-cta { margin-left: auto; }
  .hero-grid { gap: 25px; }
  .hero h1 { font-size: 57px; }
  .hero-visual { transform: scale(.88); transform-origin: right center; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-bottom: 1px solid var(--line); }
  .approach-grid { gap: 55px; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .site-header { position: absolute; }
  .nav-wrap { height: 75px; }
  .nav-cta { display: none; }
  .menu-toggle { margin-left: auto; width: 38px; height: 38px; display: grid; align-content: center; gap: 7px; }
  .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: white; }
  .main-nav.open { position: absolute; top: 75px; left: 16px; right: 16px; margin: 0; padding: 22px; display: grid; gap: 20px; border-radius: 12px; background: #151d32; box-shadow: var(--shadow); }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); letter-spacing: -2.5px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-proof { gap: 15px; justify-content: space-between; }
  .hero-proof > div { padding-right: 13px; gap: 7px; }
  .hero-proof strong { font-size: 17px; }
  .hero-visual { min-height: 470px; margin-top: 30px; transform: none; }
  .visual-card-main { right: 0; width: 94%; padding: 18px; }
  .support-card { left: 0; top: 55px; }
  .uptime-card { right: -3px; bottom: 42px; }
  .threat-card { left: 7px; bottom: -8px; }
  .orbit-node { display: none; }
  .trusted-strip { margin-top: 30px; padding: 30px 0; display: grid; }
  .tech-logos { justify-content: flex-start; gap: 18px; }
  .section { padding: 85px 0; }
  .section-heading, .approach-grid, .about-card, .contact-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 25px; }
  .section h2 { font-size: 39px; letter-spacing: -1.8px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; border-right: 0; }
  .approach-grid { gap: 45px; }
  .image-panel { min-height: 450px; }
  .about-card { padding: 42px 28px; gap: 30px; }
  .contact-grid { gap: 50px; }
  .contact-form { padding: 25px; grid-template-columns: 1fr; }
  .contact-form label, .contact-form label:nth-of-type(3), .contact-form label:nth-of-type(4), .contact-form .button, .form-heading, .form-note, .form-status { grid-column: 1; }
  .contact-details { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
  .score-ring { background: conic-gradient(#4e47ff 98%, rgba(255,255,255,.08) 0); }
}
