:root {
  --ink: #0f1419;
  --ink-2: #151b21;
  --panel: #1d242b;
  --teal: #00b5c8;
  --teal-light: #42d8e6;
  --mist: #e6e8ea;
  --white: #ffffff;
  --muted: #aeb6bd;
  --line: rgba(255, 255, 255, 0.12);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.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: 100; left: 1rem; top: -5rem; background: var(--teal); color: var(--ink); padding: .8rem 1rem; font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; background: rgba(15,20,25,.9); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: 238px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { font-size: .9rem; font-weight: 700; text-decoration: none; color: #d9dee2; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--teal-light); }
.site-nav .nav-cta { color: var(--ink); background: var(--teal); padding: .7rem 1rem; border-radius: 2px; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--ink); background: var(--teal-light); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: var(--white); }

.hero { min-height: 820px; position: relative; display: flex; align-items: stretch; padding-top: 84px; overflow: hidden; background: #090c0f; }
.hero-image { position: absolute; inset: 84px 0 0; width: 100%; height: calc(100% - 84px); object-fit: cover; object-position: center center; }
.hero-shade { position: absolute; inset: 84px 0 0; background: linear-gradient(90deg, rgba(7,10,13,.98) 0%, rgba(7,10,13,.88) 38%, rgba(7,10,13,.25) 68%, rgba(7,10,13,.08) 100%), linear-gradient(0deg, rgba(7,10,13,.85), transparent 35%); }
.hero-content { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 135px; }
.eyebrow, .section-kicker { margin: 0 0 1rem; color: var(--teal-light); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.08; }
h1 { max-width: 760px; margin-bottom: 1.5rem; font-size: clamp(3.2rem, 7vw, 6.7rem); letter-spacing: -.055em; }
h2 { margin-bottom: 1.3rem; font-size: clamp(2.25rem, 4.3vw, 4.25rem); letter-spacing: -.045em; }
h3 { margin-bottom: .8rem; font-size: 1.25rem; }
.hero-copy { max-width: 650px; margin: 0 0 2rem; color: #d2d8dc; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: 2px; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: var(--ink); }
.button-primary:hover { background: var(--teal-light); }
.button-secondary { background: rgba(15,20,25,.6); border-color: rgba(255,255,255,.32); color: var(--white); }
.button-secondary:hover { border-color: var(--teal); }
.hero-points { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 2rem 0 0; padding: 0; list-style: none; color: #c4cbd0; font-size: .9rem; font-weight: 700; }
.hero-points li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: .65rem; border-radius: 50%; background: var(--teal); box-shadow: 0 0 16px rgba(0,181,200,.85); }
.coverage-bar { position: absolute; z-index: 3; inset: auto 0 0; border-top: 1px solid rgba(255,255,255,.14); background: rgba(15,20,25,.83); backdrop-filter: blur(16px); }
.coverage-inner { min-height: 76px; display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem; color: #c0c7cc; font-size: .84rem; }
.coverage-inner strong { margin-right: .4rem; color: var(--white); text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; }
.coverage-inner span:not(:last-child)::after { content: "·"; margin-left: 1.3rem; color: var(--teal); }

.section { padding-block: 110px; }
.intro { padding-block: 125px; }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 8vw; align-items: start; }
.intro h2 { max-width: 720px; }
.intro-grid p { color: var(--muted); }
.lead { color: var(--white) !important; font-size: 1.2rem; line-height: 1.55; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 7vw; align-items: end; margin-bottom: 3.5rem; }
.section-heading > p, .compact-heading > p { color: var(--muted); }
.section-heading h2 { margin-bottom: 0; max-width: 800px; }

.services { background: #f2f4f5; color: var(--ink); }
.services .section-kicker, .packages .section-kicker { color: #008c9b; }
.services .section-heading > p { color: #5b656d; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #ccd2d6; border: 1px solid #ccd2d6; }
.service-card { position: relative; min-height: 390px; padding: 2.3rem; background: var(--white); overflow: hidden; }
.service-card::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-card:hover::after { transform: scaleX(1); }
.service-number { position: absolute; right: 1.4rem; top: 1.1rem; color: #a9b1b7; font-size: .74rem; font-weight: 800; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 2.5rem; border: 1px solid #b8c1c6; color: #008c9b; font-size: 1.6rem; }
.service-card h3 { font-size: 1.45rem; }
.service-card > p { color: #536069; }
.service-card ul { margin: 1.4rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid #dce1e4; list-style: none; color: #4f5a62; font-size: .9rem; }
.service-card li { margin-top: .35rem; }
.service-card li::before { content: "—"; margin-right: .55rem; color: #00a4b5; }
.service-card-accent { background: var(--ink-2); color: var(--white); }
.service-card-accent > p, .service-card-accent ul { color: #b7c0c7; }
.service-card-accent ul { border-color: var(--line); }

.custom-work { background: #10161b; }
.image-feature { display: grid; grid-template-columns: 1.08fr .92fr; gap: 7vw; align-items: center; }
.image-frame { position: relative; min-height: 610px; overflow: hidden; box-shadow: -22px 22px 0 rgba(0,181,200,.13); }
.image-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; }
.image-feature-copy > p:not(.section-kicker):not(.lead) { color: var(--muted); }
.custom-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.2rem; margin: 2rem 0 .5rem; padding: 1.5rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.custom-list li { color: #c3cbd0; font-size: .92rem; }
.custom-list li::before { content: "✓"; margin-right: .6rem; color: var(--teal-light); font-weight: 900; }

.examples { background: var(--ink-2); }
.examples-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; }
.examples-copy { position: sticky; top: 130px; align-self: start; }
.examples-copy > p:not(.section-kicker) { color: var(--muted); }
.text-link { display: inline-block; margin-top: 1rem; color: var(--teal-light); font-weight: 800; text-decoration: none; }
.text-link span { margin-left: .35rem; }
.automation-list article { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.automation-list article:last-child { border-bottom: 1px solid var(--line); }
.automation-list article > span { color: var(--teal-light); font-size: .78rem; font-weight: 800; }
.automation-list h3 { font-size: 1.5rem; }
.automation-list p { margin: 0; color: var(--muted); }

.packages { background: var(--white); color: var(--ink); }
.packages .section-heading > p { color: #5b656d; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.package-card { display: flex; flex-direction: column; min-height: 480px; padding: 2.3rem; border: 1px solid #d8dde0; background: #f8f9fa; }
.package-card.featured { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: inset 0 4px 0 var(--teal); }
.package-label { margin: 0 0 3rem; color: #74808a; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.featured .package-label { color: var(--teal-light); }
.package-card h3 { font-size: 2rem; }
.package-card > p:not(.package-label), .package-card li { color: #59656d; }
.package-card.featured > p:not(.package-label), .package-card.featured li { color: #bac2c8; }
.package-card ul { margin: 1.2rem 0 2rem; padding: 1.2rem 0 0; border-top: 1px solid #d8dde0; list-style: none; }
.package-card.featured ul { border-color: var(--line); }
.package-card li { margin: .55rem 0; }
.package-card li::before { content: "✓"; margin-right: .65rem; color: #008c9b; font-weight: 900; }
.package-card > a { margin-top: auto; color: #007a87; font-weight: 800; text-decoration: none; }
.package-card.featured > a { color: var(--teal-light); }

.security-feature { position: relative; min-height: 700px; display: flex; align-items: center; overflow: hidden; background: #090d10; }
.security-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.security-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,10,13,.97) 0%, rgba(7,10,13,.83) 38%, rgba(7,10,13,.15) 70%); }
.security-content { position: relative; z-index: 1; padding-block: 100px; }
.security-content h2 { max-width: 680px; }
.security-content > p:not(.section-kicker) { max-width: 560px; color: #c4ccd1; font-size: 1.08rem; }
.security-content .button { margin-top: 1rem; }

.platform { background: #0b0f13; }
.platform-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; align-items: center; }
.platform-mark { position: relative; width: min(360px, 76vw); aspect-ratio: 1; margin-inline: auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 90px rgba(0,181,200,.11); }
.platform-mark::before, .platform-mark::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); }
.platform-mark::before { inset: 13%; }
.platform-mark::after { inset: 27%; }
.platform-mark span { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 16px var(--teal); }
.platform-mark span:nth-child(1) { top: 12%; left: 48%; }
.platform-mark span:nth-child(2) { right: 13%; top: 46%; }
.platform-mark span:nth-child(3) { bottom: 16%; left: 26%; }
.platform-mark span:nth-child(4) { left: 17%; top: 28%; }
.platform-mark strong { z-index: 1; letter-spacing: .25em; font-size: 1.3rem; }
.platform p { color: var(--muted); }
.brand-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.brand-row span { border: 1px solid var(--line); padding: .45rem .7rem; color: #c9d0d5; font-size: .8rem; }

.process { background: #eef1f2; color: var(--ink); }
.process .section-kicker { color: #008c9b; }
.process .section-heading > p { color: #5b656d; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid #bfc7cc; }
.process-list li { min-height: 285px; padding: 1.8rem 1.8rem 1.8rem 0; border-right: 1px solid #cdd3d7; }
.process-list li:not(:first-child) { padding-left: 1.8rem; }
.process-list li:last-child { border-right: 0; }
.process-list span { display: block; margin-bottom: 4rem; color: #008c9b; font-size: .78rem; font-weight: 800; }
.process-list p { color: #5b656d; }

.about { background: var(--ink-2); }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.about-copy > p:not(.lead) { color: var(--muted); }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 2.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-grid div { min-height: 130px; padding: 1.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid strong, .value-grid span { display: block; }
.value-grid strong { color: var(--teal-light); }
.value-grid span { color: var(--muted); font-size: .9rem; }

.faq { background: var(--white); color: var(--ink); }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 9vw; }
.faq .section-kicker { color: #008c9b; }
.faq-grid > div:first-child > p:not(.section-kicker) { color: #5b656d; }
.faq-list details { border-top: 1px solid #cfd5d9; }
.faq-list details:last-child { border-bottom: 1px solid #cfd5d9; }
.faq-list summary { position: relative; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; font-size: 1.08rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .2rem; top: 1rem; color: #008c9b; font-size: 1.8rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -.3rem 0 1.4rem; color: #56626a; }

.contact { padding-block: 105px; background: var(--teal); color: var(--ink); }
.contact .section-kicker { color: #26434a; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: center; }
.contact h2 { margin-bottom: 0; }
.contact-copy p { font-size: 1.13rem; }
.contact .button-primary { background: var(--ink); color: var(--white); }
.contact .button-primary:hover { background: #252e36; }
.contact-email { display: block; width: fit-content; margin-top: 1rem; color: #18343a; font-size: .9rem; font-weight: 800; overflow-wrap: anywhere; }

.site-footer { padding-top: 70px; background: #080b0e; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 4rem; padding-bottom: 55px; }
.footer-brand img { width: 260px; height: auto; }
.footer-brand p { max-width: 300px; color: #929da4; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: .55rem; }
.footer-grid strong { margin-bottom: .45rem; color: var(--white); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { color: #929da4; font-size: .88rem; text-decoration: none; }
.footer-grid a:hover { color: var(--teal-light); }
.footer-bottom { min-height: 74px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid var(--line); color: #77828a; font-size: .76rem; }

@media (max-width: 980px) {
  .site-header { background: #0f1419; backdrop-filter: none; }
  .menu-toggle { display: flex; }
  .site-nav { position: fixed; z-index: 49; top: 84px; right: 0; bottom: auto; left: 0; height: calc(100dvh - 84px); display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 1.5rem 20px 3rem; overflow-y: auto; overscroll-behavior: contain; background: #0d1217; }
  .nav-open .site-nav { display: flex; }
  .site-nav a { min-height: 58px; display: flex; flex: 0 0 auto; align-items: center; padding: .9rem 0; border-bottom: 1px solid var(--line); color: #f5f7f8; font-size: 1.08rem; line-height: 1.4; white-space: normal; }
  .site-nav .nav-cta { margin-top: 1rem; padding: .9rem 1rem; border: 0; text-align: center; }
  .nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-toggle > span:not(.sr-only) { transition: transform .2s ease, opacity .2s ease; }
  .intro-grid, .section-heading, .examples-grid, .platform-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .image-feature { grid-template-columns: 1fr; gap: 4rem; }
  .image-frame, .image-frame img { min-height: 500px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: auto; }
  .examples-copy { position: static; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .header-inner { min-height: 72px; }
  .brand { width: 195px; }
  .site-nav { top: 72px; height: calc(100dvh - 72px); }
  .hero { min-height: 760px; padding-top: 72px; }
  .hero-image, .hero-shade { inset-block-start: 72px; height: calc(100% - 72px); }
  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,10,13,.97), rgba(7,10,13,.62)), linear-gradient(0deg, rgba(7,10,13,.9), transparent 55%); }
  .hero-content { padding-top: 100px; padding-bottom: 170px; }
  h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-points { gap: .65rem 1.1rem; }
  .coverage-inner { padding-block: 1rem; gap: .45rem .8rem; }
  .coverage-inner strong { flex: 0 0 100%; }
  .coverage-inner span:not(:last-child)::after { margin-left: .8rem; }
  .section, .intro { padding-block: 78px; }
  .service-grid, .process-list, .value-grid { grid-template-columns: 1fr; }
  .custom-list { grid-template-columns: 1fr; }
  .image-frame, .image-frame img { min-height: 420px; }
  .security-feature { min-height: 650px; }
  .security-feature > img { object-position: 58% center; }
  .security-shade { background: linear-gradient(90deg, rgba(7,10,13,.95), rgba(7,10,13,.46)), linear-gradient(0deg, rgba(7,10,13,.75), transparent 70%); }
  .service-card { min-height: auto; padding: 1.7rem; }
  .process-list li, .process-list li:not(:first-child) { min-height: auto; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid #cdd3d7; }
  .process-list span { margin-bottom: 1.8rem; }
  .platform-mark { width: min(290px, 76vw); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
