:root {
  --bg: #030303;
  --bg-soft: #08090d;
  --panel: #0f1117;
  --panel-2: #151821;
  --text: #f7f7f7;
  --muted: #b7bac4;
  --line: rgba(255,255,255,.12);
  --blue: #00a8ff;
  --blue-2: #037ec4;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--blue);
  color: #001018;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(3,3,3,.62);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(3,3,3,.88);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 142px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.76);
  font-size: .93rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.section-dark {
  background:
    radial-gradient(circle at 70% 20%, rgba(0,168,255,.12), transparent 34%),
    radial-gradient(circle at 18% 40%, rgba(255,255,255,.06), transparent 30%),
    var(--bg);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.mesh {
  position: absolute;
  inset: 0 0 auto 0;
  height: 210px;
  background: linear-gradient(180deg, rgba(0,0,0,.10), #030303 85%), url('../img/honeycomb-bg.jpg') center top / cover no-repeat;
  opacity: .7;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: 56px;
  align-items: center;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.065em;
  max-width: 850px;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.055em;
}
h3 { margin-bottom: 10px; font-size: 1.35rem; line-height: 1.1; }
.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.hero-actions, .cta-grid { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #001018;
  border-color: transparent;
  box-shadow: 0 18px 46px rgba(0,168,255,.22);
}
.btn-secondary { color: #fff; background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: rgba(0,168,255,.5); color: var(--blue); }
.quick-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
}
.quick-data span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: .94rem;
}
.quick-data strong { display: block; color: #fff; font-size: 1.35rem; }
.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  isolation: isolate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.22));
  pointer-events: none;
}
.hero-visual img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; }
.dots {
  position: absolute;
  pointer-events: none;
  opacity: .58;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.08));
}
.dots-hero { width: 760px; right: -140px; bottom: -80px; }

.services, .about, .contact { padding: 110px 0; background: #fff; color: #070707; }
.section-heading { max-width: 780px; margin-bottom: 46px; }
.section-heading p:not(.eyebrow) { color: #555b65; font-size: 1.14rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 265px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #e8e8e8;
  background: linear-gradient(180deg, #fff, #f6f7f9);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,255,.16), transparent 70%);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,168,255,.4);
  box-shadow: 0 22px 60px rgba(0,0,0,.09);
}
.service-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.service-head h3 {
  margin: 8px 0 0;
  flex: 1;
}
.service-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(0,168,255,.10);
  color: var(--blue-2);
  border: 1px solid rgba(0,168,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card p { color: #555b65; margin-bottom: 0; }

.method { position: relative; padding: 120px 0; overflow: hidden; }
.split-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 64px;
  align-items: start;
}
.large-text { color: var(--muted); font-size: 1.18rem; max-width: 560px; }
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(10px);
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,168,255,.12);
  color: var(--blue);
  font-weight: 900;
}
.step p { margin-bottom: 0; color: var(--muted); }
.dots-method { width: 940px; left: -180px; bottom: -170px; opacity: .35; }

.about {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.96)),
    url('../img/dark-mesh.jpg') center top / cover no-repeat;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.about-panel, .quote-card {
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
}
.about-panel {
  background: #fff;
  border: 1px solid #ebedf2;
  box-shadow: 0 26px 80px rgba(0,0,0,.08);
}
.about-panel p:not(.eyebrow) { color: #555b65; font-size: 1.08rem; }
.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(3,3,3,.2), rgba(3,3,3,.95)),
    url('../img/honeycomb-strip.jpg') center bottom / cover no-repeat,
    #040404;
  box-shadow: var(--shadow);
}
.quote-mark {
  display: block;
  color: var(--blue);
  font-size: 8rem;
  line-height: .7;
  font-weight: 900;
}
.quote-card p { font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.12; letter-spacing: -.04em; margin-bottom: 0; }

.cta-band { padding: 74px 0; border-block: 1px solid var(--line); }
.cta-grid { justify-content: space-between; gap: 30px; }
.cta-grid h2 { max-width: 850px; margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: start;
}
.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.contact-copy > p:not(.eyebrow) { color: #555b65; font-size: 1.1rem; }
.contact-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}
.contact-list a, .contact-list p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f4f6f9;
  border: 1px solid #e6e8ee;
  color: #101010;
  transition: transform .2s ease, border-color .2s ease;
}
.contact-list a:hover { transform: translateX(4px); border-color: rgba(0,168,255,.45); }
.contact-list span {
  display: block;
  color: var(--blue-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-dark {
  background: #070707;
  color: #fff;
}
.btn-dark:hover { border-color: rgba(0,168,255,.45); color: var(--blue); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #070707;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: #030303;
  color: #fff;
  text-align: center;
  padding: 0 0 44px;
}
.footer-strip {
  height: 160px;
  background: linear-gradient(180deg, #030303 0%, rgba(3,3,3,.2) 55%, #030303 100%), url('../img/honeycomb-strip.jpg') center / cover no-repeat;
  opacity: .7;
}
.footer-content { margin-top: -54px; position: relative; z-index: 2; }
.footer-content img { width: 190px; margin: 0 auto 14px; }
.footer-content p { margin: 0; }
.footer-small { color: rgba(255,255,255,.56); font-size: .92rem; margin-top: 8px !important; }

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

@media (max-width: 980px) {
  .hero-grid, .split-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-visual { transform: none; max-width: 640px; margin-inline: auto; }
  .quick-data { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-grid { align-items: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 118px; }
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(3,3,3,.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px; border-radius: 14px; }
  .main-nav a:hover { background: rgba(255,255,255,.06); }
  .hero { min-height: auto; padding: 112px 0 68px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.6rem); }
  .service-grid { grid-template-columns: 1fr; }
  .services, .about, .contact { padding: 76px 0; }
  .method { padding: 82px 0; }
  .step { grid-template-columns: 1fr; }
  .quote-card { min-height: 330px; }
  .dots-hero { width: 560px; right: -220px; bottom: -100px; }
  .socials a { flex: 1; text-align: center; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }
  .service-head { gap: 14px; }
  .service-icon { width: 50px; height: 50px; flex-basis: 50px; }
}
