@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --ink: #050b14;
  --navy: #07111f;
  --navy-2: #0a192a;
  --panel: #0d1c2d;
  --panel-2: #102337;
  --line: rgba(158, 200, 218, 0.15);
  --line-strong: rgba(64, 224, 255, 0.33);
  --cyan: #3fe4ff;
  --cyan-2: #10b9df;
  --cyan-pale: #c3f7ff;
  --blue: #2e7cf6;
  --danger: #ff5a6f;
  --white: #f4fbff;
  --muted: #8fa9b8;
  --muted-2: #b9cad2;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.33);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(5, 11, 20, .82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { display: block; width: 164px; height: 43px; object-fit: contain; object-position: left center; }
.footer-logo { width: 210px; height: 55px; }
.brand-mark {
  position: relative;
  width: 42px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: linear-gradient(160deg, rgba(63, 228, 255, .19), rgba(46, 124, 246, .04));
  border: 1px solid rgba(63, 228, 255, .58);
  border-radius: 12px 12px 18px 18px;
  clip-path: polygon(50% 0, 95% 16%, 87% 71%, 50% 100%, 13% 71%, 5% 16%);
  box-shadow: inset 0 0 18px rgba(63, 228, 255, .1), 0 0 22px rgba(63, 228, 255, .12);
}
.brand-mark::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(63, 228, 255, .3); clip-path: inherit; border-radius: inherit; }
.brand-mark span { position: relative; z-index: 1; font-family: "Space Mono", monospace; font-weight: 700; font-size: 18px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 18px; letter-spacing: .22em; }
.brand-copy small { margin-top: 7px; color: var(--muted); font-family: "Space Mono", monospace; font-size: 8px; letter-spacing: .14em; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: var(--muted-2); font-size: 13px; font-weight: 700; letter-spacing: .02em; transition: color .2s ease; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav > a:hover, .main-nav > a:focus-visible { color: var(--white); }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-cta { padding: 11px 17px; color: var(--cyan-pale); border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(63, 228, 255, .06); }
.main-nav .nav-cta:hover { color: var(--ink); background: var(--cyan); }

.menu-button { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 860px;
  padding: 170px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 38%, rgba(24, 139, 206, .2), transparent 25%),
    radial-gradient(circle at 50% -20%, rgba(46, 124, 246, .18), transparent 36%),
    linear-gradient(145deg, #07111f 0%, #050b14 55%, #07101b 100%);
}
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: -300px; top: 210px; background: rgba(63, 228, 255, .07); filter: blur(90px); border-radius: 50%; }
.hero-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(84, 186, 219, .13) 1px, transparent 1px), linear-gradient(90deg, rgba(84, 186, 219, .13) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black 0%, transparent 85%); }
.hero-layout { position: relative; z-index: 2; min-height: 590px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.hero-copy { padding-bottom: 35px; }
.eyebrow { margin: 0 0 20px; color: var(--cyan); font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow.danger { color: #ff8c9a; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px var(--cyan); animation: pulse 2s infinite; }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(3rem, 5.4vw, 5.15rem); line-height: 1.02; letter-spacing: -.058em; }
.hero h1 span { color: var(--cyan); }
.hero-lede { max-width: 650px; margin: 28px 0 0; color: var(--muted-2); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; font-size: 13px; font-weight: 800; border: 1px solid transparent; border-radius: 10px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #00141b; background: var(--cyan); box-shadow: 0 12px 30px rgba(17, 187, 223, .2); }
.button.primary:hover { box-shadow: 0 16px 40px rgba(17, 187, 223, .36); }
.button.secondary { color: var(--white); background: rgba(255, 255, 255, .025); border-color: var(--line); }
.button.secondary:hover { color: var(--cyan); border-color: var(--line-strong); }
.button.wide { width: 100%; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 32px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.trust-list span { margin-right: 6px; color: var(--cyan); }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; perspective: 900px; }
.hero-visual::before { content: ""; position: absolute; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(63, 228, 255, .16), rgba(46, 124, 246, .05) 42%, transparent 70%); filter: blur(3px); }
.hero-visual::after { content: ""; position: absolute; bottom: 32px; width: 430px; height: 70px; background: radial-gradient(ellipse, rgba(63, 228, 255, .2), transparent 65%); filter: blur(12px); }
.hero-image-frame { position: relative; z-index: 2; width: min(100%, 550px); aspect-ratio: 3 / 2; padding: 8px; overflow: hidden; border: 1px solid rgba(63, 228, 255, .34); border-radius: 22px; background: rgba(4, 15, 26, .72); box-shadow: 0 30px 90px rgba(0, 0, 0, .45), 0 0 50px rgba(63, 228, 255, .11); transform: rotateY(-7deg) rotateX(2deg); }
.hero-image-frame::after { content: ""; position: absolute; inset: 8px; border-radius: 15px; box-shadow: inset 0 0 50px rgba(3, 11, 20, .28); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 15px; }
.orbit { position: absolute; border: 1px solid rgba(63, 228, 255, .22); border-radius: 50%; transform-style: preserve-3d; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 15px var(--cyan); }
.orbit-one { width: 380px; height: 380px; animation: spin 18s linear infinite; }
.orbit-one::before { top: 35px; left: 80px; }.orbit-one::after { right: -4px; top: 50%; }
.orbit-two { width: 275px; height: 275px; border-style: dashed; animation: spinReverse 14s linear infinite; }
.orbit-two::before { left: -3px; top: 50%; }.orbit-two::after { right: 34px; bottom: 25px; }
.core-shield { position: relative; z-index: 3; width: 150px; height: 174px; display: grid; place-items: center; color: var(--cyan); border: 1px solid rgba(63, 228, 255, .6); border-radius: 35px 35px 55px 55px; background: linear-gradient(150deg, rgba(63, 228, 255, .12), rgba(4, 21, 33, .84)); clip-path: polygon(50% 0, 96% 15%, 88% 70%, 50% 100%, 12% 70%, 4% 15%); box-shadow: inset 0 0 45px rgba(63, 228, 255, .09), 0 0 60px rgba(63, 228, 255, .15); animation: float 5s ease-in-out infinite; }
.core-shield::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(63, 228, 255, .28); clip-path: inherit; }
.core-shield span { font-family: "Space Mono", monospace; font-size: 50px; font-weight: 700; text-shadow: 0 0 24px rgba(63, 228, 255, .45); }
.signal-card { position: absolute; z-index: 4; min-width: 154px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(7, 19, 31, .86); backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.signal-card small { display: block; margin-bottom: 7px; color: var(--muted); font-family: "Space Mono", monospace; font-size: 8px; letter-spacing: .14em; }
.signal-card strong { display: flex; align-items: center; gap: 8px; font-family: "Space Mono", monospace; font-size: 14px; }
.signal-card strong i { width: 7px; height: 7px; background: #52e98a; border-radius: 50%; box-shadow: 0 0 10px #52e98a; }
.signal-one { left: -18px; top: 92px; animation: float 6s ease-in-out -2s infinite; }
.signal-two { right: -18px; top: 195px; animation: float 5.5s ease-in-out -1s infinite; }
.signal-three { left: 42px; bottom: 52px; animation: float 6.5s ease-in-out -3s infinite; }
.mini-bars { display: flex; align-items: end; gap: 5px; height: 28px; }
.mini-bars i { width: 13px; background: linear-gradient(to top, var(--blue), var(--cyan)); border-radius: 3px 3px 0 0; }
.mini-bars i:nth-child(1) { height: 40%; }.mini-bars i:nth-child(2) { height: 65%; }.mini-bars i:nth-child(3) { height: 88%; }.mini-bars i:nth-child(4) { height: 72%; }
.hero-strip { position: relative; z-index: 3; min-height: 90px; margin-top: 38px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: var(--muted); font-family: "Space Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; border-top: 1px solid var(--line); }
.hero-strip i { flex: 1; max-width: 70px; height: 1px; background: linear-gradient(90deg, transparent, rgba(63, 228, 255, .25), transparent); }

.emergency-section { padding-top: 80px; background: #07101b; }
.emergency-card { position: relative; display: grid; grid-template-columns: 190px 1fr auto; gap: 34px; align-items: center; padding: 24px; overflow: hidden; border: 1px solid rgba(255, 90, 111, .28); border-radius: var(--radius); background: linear-gradient(120deg, rgba(255, 90, 111, .08), rgba(13, 28, 45, .85) 44%, rgba(63, 228, 255, .04)); box-shadow: var(--shadow); }
.emergency-card::after { content: ""; position: absolute; right: 17%; top: -120px; width: 250px; height: 250px; background: rgba(255, 90, 111, .08); border-radius: 50%; filter: blur(70px); }
.emergency-icon { position: relative; z-index: 1; width: 74px; height: 74px; display: grid; place-items: center; color: #ff8b9a; font-family: "Space Mono", monospace; font-size: 30px; font-weight: 700; border: 1px solid rgba(255, 90, 111, .48); border-radius: 50%; background: rgba(255, 90, 111, .07); box-shadow: inset 0 0 22px rgba(255, 90, 111, .08); }
.emergency-art { position: relative; z-index: 1; height: 282px; overflow: hidden; border: 1px solid rgba(63, 228, 255, .28); border-radius: 15px; background: #07111f; box-shadow: 0 18px 45px rgba(0, 0, 0, .3); }
.emergency-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.emergency-copy { position: relative; z-index: 1; }
.emergency-copy .eyebrow { margin-bottom: 8px; }
.emergency-copy h2 { margin: 0; font-size: 28px; letter-spacing: -.03em; }
.emergency-copy > p:not(.eyebrow) { max-width: 680px; margin: 10px 0 16px; color: var(--muted-2); font-size: 14px; }
.emergency-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 5px 22px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.emergency-copy li::before { content: "✓"; margin-right: 7px; color: #ff8b9a; }
.emergency-price { position: relative; z-index: 1; min-width: 185px; display: grid; text-align: center; }
.emergency-price > span, .emergency-price small { color: var(--muted); font-size: 10px; }
.emergency-price strong { margin: 2px 0; font-family: "Space Mono", monospace; font-size: 43px; line-height: 1.2; }
.danger-button { margin-top: 14px; color: var(--white); background: var(--danger); }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .faq-intro h2, .contact-copy h2 { max-width: 780px; margin: 0; font-size: clamp(2.35rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.05em; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); }
.services-section { background: #07101b; }
.services-visual { position: relative; min-height: 310px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; margin: -15px 0 42px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(110deg, rgba(63, 228, 255, .055), rgba(5, 14, 24, .8)); }
.services-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 30%, rgba(5, 14, 24, .22) 52%, rgba(5, 14, 24, .76)); pointer-events: none; }
.services-visual img { width: 100%; height: 310px; display: block; object-fit: cover; }
.services-visual > div { position: relative; z-index: 1; padding: 42px; }
.services-visual span { display: block; margin-bottom: 12px; color: var(--cyan); font-family: "Space Mono", monospace; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.services-visual strong { display: block; max-width: 520px; font-size: clamp(1.65rem, 3vw, 2.8rem); line-height: 1.18; letter-spacing: -.04em; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 340px; padding: 34px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .01); transition: background .25s ease; }
.service-card::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 170px; height: 170px; border: 1px solid rgba(63, 228, 255, .12); border-radius: 50%; transition: transform .3s ease, border-color .3s ease; }
.service-card:hover { background: rgba(63, 228, 255, .035); }
.service-card:hover::after { transform: scale(1.22); border-color: rgba(63, 228, 255, .27); }
.service-card.featured { background: linear-gradient(145deg, rgba(63, 228, 255, .09), rgba(46, 124, 246, .025)); }
.card-number { color: var(--muted); font-family: "Space Mono", monospace; font-size: 9px; }
.service-symbol { width: 60px; height: 60px; display: grid; place-items: center; margin: 38px 0 24px; color: var(--cyan); font-family: "Space Mono", monospace; font-size: 22px; font-weight: 700; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(63, 228, 255, .04); box-shadow: inset 0 0 20px rgba(63, 228, 255, .05); }
.service-card h3 { margin: 0 0 12px; font-size: 19px; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--cyan); font-size: 12px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }.text-link:hover span { transform: translateX(4px); }

.approach-section { overflow: hidden; background: linear-gradient(135deg, #081728 0%, #07101b 55%, #0b1d30 100%); }
.approach-section::before { content: ""; position: absolute; width: 620px; height: 620px; left: -300px; top: -180px; border: 1px solid rgba(63, 228, 255, .08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(63, 228, 255, .016), 0 0 0 180px rgba(63, 228, 255, .009); }
.approach-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.approach-copy h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .99; letter-spacing: -.06em; }
.approach-copy h2 span { color: var(--cyan); }
.approach-copy > p:not(.eyebrow) { max-width: 470px; margin: 26px 0 30px; color: var(--muted-2); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 26px 8px; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--cyan); font-family: "Space Mono", monospace; font-size: 11px; }
.process-list h3 { margin: 0 0 5px; font-size: 18px; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; }

.shop-section { background: #06101c; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.shop-toolbar > span { color: var(--muted); font-family: "Space Mono", monospace; font-size: 10px; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { padding: 9px 14px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; cursor: pointer; transition: .2s ease; }
.filter:hover, .filter.active { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { min-height: 440px; display: flex; flex-direction: column; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: linear-gradient(145deg, rgba(255, 255, 255, .02), rgba(63, 228, 255, .015)); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 18px 44px rgba(0, 0, 0, .25); }
.product-card.hidden { display: none; }
.product-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.product-media { position: relative; height: 184px; margin: -24px -24px 0; overflow: hidden; background: #06101b; border-bottom: 1px solid var(--line); }
.product-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(5, 14, 24, .68)); pointer-events: none; }
.product-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-media .product-tag { position: absolute; z-index: 1; left: 14px; bottom: 12px; padding: 6px 9px; color: var(--cyan-pale); background: rgba(5, 14, 24, .78); border: 1px solid rgba(63, 228, 255, .28); border-radius: 999px; backdrop-filter: blur(8px); }
.product-tag { color: var(--cyan); font-family: "Space Mono", monospace; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.product-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--cyan-pale); font-family: "Space Mono", monospace; font-size: 12px; font-weight: 700; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(63, 228, 255, .04); }
.product-card h3 { margin: 34px 0 12px; font-size: 18px; line-height: 1.32; }
.product-card p { margin: 0; color: var(--muted); font-size: 12.5px; }
.product-bottom { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-top: auto; padding-top: 28px; }
.product-bottom strong { font-family: "Space Mono", monospace; font-size: 19px; }
.product-bottom strong small { margin-left: 3px; color: var(--muted); font-size: 9px; font-weight: 400; }
.round-link { width: 39px; height: 39px; display: grid; place-items: center; color: var(--ink); background: var(--cyan); border-radius: 50%; font-weight: 800; transition: transform .2s ease; }
.round-link:hover { transform: rotate(12deg) scale(1.08); }

.pricing-section { background: #081421; }
.pricing-visual { position: relative; height: 390px; margin: -12px 0 36px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #06101b; }
.pricing-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(2, 9, 16, .32); pointer-events: none; }
.pricing-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(4, 13, 22, .45); }
.price-card.popular { border-color: rgba(63, 228, 255, .45); background: linear-gradient(160deg, rgba(63, 228, 255, .105), rgba(4, 13, 22, .56) 47%); box-shadow: 0 22px 60px rgba(0, 0, 0, .2); }
.popular-badge { position: absolute; top: 0; right: 25px; padding: 7px 12px; color: var(--ink); background: var(--cyan); border-radius: 0 0 8px 8px; font-family: "Space Mono", monospace; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.plan-label { margin: 0 0 24px; color: var(--cyan); font-family: "Space Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.price-card h3 { margin: 0 0 10px; font-size: 24px; }
.plan-copy { min-height: 68px; margin: 0; color: var(--muted); font-size: 13px; }
.plan-price { display: flex; align-items: baseline; margin: 28px 0; }
.plan-price sup { color: var(--cyan); font-family: "Space Mono", monospace; font-size: 17px; }
.plan-price strong { font-family: "Space Mono", monospace; font-size: 44px; line-height: 1; letter-spacing: -.05em; }
.plan-price span { margin-left: 8px; color: var(--muted); font-size: 10px; }
.price-card ul { flex: 1; display: grid; gap: 12px; margin: 0 0 30px; padding: 25px 0 0; list-style: none; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 12.5px; }
.price-card li::before { content: "✓"; margin-right: 9px; color: var(--cyan); }
.enterprise-pricing { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; margin-top: 70px; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .015); }
.enterprise-intro h3 { margin: 0; font-size: 27px; line-height: 1.2; }
.enterprise-intro > p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.enterprise-list { border-top: 1px solid var(--line); }
.enterprise-list div { display: flex; justify-content: space-between; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.enterprise-list span { color: var(--muted-2); }
.enterprise-list strong { color: var(--cyan-pale); font-family: "Space Mono", monospace; font-size: 10px; text-align: right; }

.faq-section { background: #06101b; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:not(.eyebrow) { margin: 23px 0 0; color: var(--muted); }
.faq-visual { margin-top: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #07111f; box-shadow: 0 18px 45px rgba(0, 0, 0, .25); }
.faq-visual img { width: 100%; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 2px; list-style: none; font-size: 15px; font-weight: 700; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 24px; height: 24px; flex: 0 0 24px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: var(--cyan); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary { color: var(--cyan-pale); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details p { max-width: 690px; margin: -5px 50px 25px 2px; color: var(--muted); font-size: 13px; }

.contact-section { overflow: hidden; background: linear-gradient(130deg, #0b1e31 0%, #081522 48%, #06101b 100%); }
.contact-section::before { content: ""; position: absolute; right: -180px; bottom: -260px; width: 620px; height: 620px; border: 1px solid rgba(63, 228, 255, .12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(63, 228, 255, .018), 0 0 0 180px rgba(63, 228, 255, .008); }
.contact-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 23px 0 36px; color: var(--muted-2); }
.contact-points { display: grid; gap: 15px; }
.contact-points > a, .contact-points > div { display: flex; align-items: center; gap: 14px; }
.contact-points > a > span, .contact-points > div > span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--cyan); font-family: "Space Mono", monospace; border: 1px solid var(--line-strong); border-radius: 10px; }
.contact-points small, .contact-points strong { display: block; }
.contact-points small { color: var(--muted); font-family: "Space Mono", monospace; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.contact-points strong { margin-top: 2px; font-size: 12px; }
.contact-form { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(3, 11, 19, .55); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 15px; color: var(--muted-2); font-size: 11px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--white); background: rgba(255, 255, 255, .025); border: 1px solid var(--line); border-radius: 9px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form option { color: var(--white); background: var(--navy); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #637b89; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(63, 228, 255, .08); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .consent { grid-template-columns: auto 1fr; align-items: start; gap: 9px; font-weight: 500; line-height: 1.5; }
.contact-form .consent input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--cyan); }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.form-status { display: none; margin-bottom: 15px; padding: 10px 12px; color: var(--cyan-pale); background: rgba(63, 228, 255, .07); border: 1px solid var(--line-strong); border-radius: 8px; font-size: 11px; }
.form-status.visible { display: block; }

.site-footer { padding: 70px 0 20px; background: #030911; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 60px; }
.footer-brand > p { max-width: 370px; margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links h3 { margin: 0 0 15px; color: var(--muted); font-family: "Space Mono", monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a, .footer-links button { display: block; margin: 9px 0; padding: 0; color: var(--muted-2); background: none; border: 0; font-size: 12px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; color: #687e8c; border-top: 1px solid var(--line); font-size: 10px; }

.legal-dialog { width: min(860px, calc(100% - 30px)); max-height: min(850px, calc(100vh - 40px)); padding: 0; color: var(--white); background: var(--navy-2); border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: 0 35px 100px rgba(0, 0, 0, .65); }
.legal-dialog::backdrop { background: rgba(1, 6, 12, .84); backdrop-filter: blur(6px); }
.dialog-head { position: sticky; top: 0; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 30px; background: rgba(10, 25, 42, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.dialog-head .eyebrow { margin: 0 0 4px; }
.dialog-head h2 { margin: 0; font-size: 27px; }
.dialog-close { width: 40px; height: 40px; flex: 0 0 40px; color: var(--white); background: rgba(255, 255, 255, .03); border: 1px solid var(--line); border-radius: 50%; font-size: 25px; line-height: 1; cursor: pointer; }
.dialog-close:hover { color: var(--ink); background: var(--cyan); }
.legal-content { padding: 30px; color: var(--muted-2); font-size: 13px; }
.legal-content h3 { margin: 28px 0 8px; color: var(--white); font-size: 17px; }
.legal-content p { margin: 0 0 13px; }
.legal-content a { color: var(--cyan); text-decoration: underline; }
.noscript { position: fixed; z-index: 9999; bottom: 0; left: 0; right: 0; padding: 10px; color: var(--ink); background: var(--cyan); text-align: center; font-size: 12px; }

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

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }

@media (max-width: 1080px) {
  .hero-layout { gap: 25px; }
  .hero-visual { transform: scale(.88); transform-origin: center; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { gap: 60px; }
  .approach-layout { gap: 60px; }
}

@media (max-width: 900px) {
  .section { padding: 86px 0; }
  .menu-button { display: block; z-index: 3; }
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); padding: 105px 30px 40px; flex-direction: column; align-items: stretch; gap: 8px; background: rgba(5, 14, 24, .98); border-left: 1px solid var(--line); box-shadow: -30px 0 70px rgba(0, 0, 0, .4); transform: translateX(105%); transition: transform .25s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 12px 4px; font-size: 15px; }
  .main-nav .nav-cta { margin-top: 15px; padding: 13px 18px; text-align: center; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-layout { grid-template-columns: 1fr; gap: 5px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .hero-strip { flex-wrap: wrap; justify-content: center; padding: 27px 0; }
  .hero-strip i { display: none; }
  .emergency-card { grid-template-columns: 170px 1fr; }
  .emergency-price { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; gap: 14px; text-align: left; }
  .emergency-price small { display: none; }
  .emergency-price .button { margin-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .price-card { padding: 34px 40px; }
  .plan-copy { min-height: auto; }
  .enterprise-pricing { grid-template-columns: 1fr; gap: 35px; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { font-size: 16px; }.brand-copy small { font-size: 7px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero-lede { font-size: 16px; }
  .hero-visual { min-height: 440px; transform: scale(.78); margin: -30px -60px; }
  .hero-strip { font-size: 9px; }
  .emergency-card { grid-template-columns: 1fr; gap: 22px; padding: 28px; }
  .emergency-icon { width: 58px; height: 58px; }
  .emergency-art { height: 360px; }
  .emergency-copy ul { grid-template-columns: 1fr; }
  .emergency-price { grid-column: auto; grid-template-columns: 1fr; }
  .emergency-price .button { margin-top: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { min-height: 420px; }
  .services-visual { grid-template-columns: 1fr; }
  .services-visual::after { background: linear-gradient(to bottom, transparent 30%, rgba(5, 14, 24, .88)); }
  .services-visual img { height: 290px; }
  .services-visual > div { margin-top: -130px; padding: 34px; }
  .pricing-visual { height: 330px; }
  .enterprise-list div { flex-direction: column; gap: 4px; }
  .enterprise-list strong { text-align: left; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 37px; height: 42px; }
  .hero { padding-top: 125px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; }
  .hero-visual { min-height: 390px; transform: scale(.66); margin: -55px -105px -30px; }
  .signal-one { left: -10px; }.signal-two { right: -20px; }
  .emergency-section { padding-top: 60px; }
  .section-heading h2, .faq-intro h2, .contact-copy h2 { font-size: 2.35rem; }
  .approach-copy h2 { font-size: 3.2rem; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .shop-toolbar { align-items: flex-end; }
  .shop-toolbar > span { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 410px; }
  .product-media { height: 178px; }
  .pricing-visual { height: 250px; }
  .price-card { padding: 28px; }
  .enterprise-pricing { padding: 28px; }
  .faq-list summary { font-size: 14px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .dialog-head, .legal-content { padding: 22px; }
}

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

@media print {
  .site-header, .hero-visual, .hero-strip, .button, .filter-group, .site-footer, .contact-form { display: none !important; }
  body { color: #111; background: #fff; }
  .section, .hero { min-height: auto; padding: 30px 0; background: #fff !important; }
  .reveal { opacity: 1; transform: none; }
  * { box-shadow: none !important; }
}
