:root {
  --bg: #050a0f;
  --bg-soft: #0a1118;
  --panel: #0d161f;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3f7f9;
  --muted: #9eabb5;
  --cyan: #18c8f4;
  --cyan-soft: #83e7ff;
  --font-body: "Manrope", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --container: min(1280px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(24, 200, 244, .07);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(40px, calc((100vw - 1360px) / 2));
  border-bottom: 1px solid transparent;
  transition: background .3s, height .3s, border-color .3s;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(5, 10, 15, .86);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: fit-content;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 0 24px rgba(24, 200, 244, .18);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font: 700 22px var(--font-display);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 700 20px var(--font-display); letter-spacing: .15em; }
.brand-copy small { margin-top: 6px; color: var(--cyan-soft); font-size: 8px; letter-spacing: .36em; }

.desktop-nav { display: flex; gap: 44px; }
.desktop-nav a {
  position: relative;
  color: #dbe2e7;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .25s;
}
.desktop-nav a:hover::after { width: 100%; }

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: border-color .25s, background .25s;
}
.header-cta:hover { border-color: var(--cyan); background: rgba(24, 200, 244, .08); }
.header-cta svg, .button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 130px max(40px, calc((100vw - 1360px) / 2)) 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 48%, rgba(15, 119, 160, .22), transparent 30%),
    linear-gradient(115deg, #050a0f 44%, #07131b 100%);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 48%;
  opacity: .16;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  right: -3vw;
  top: 50%;
  border: 1px solid rgba(92, 214, 247, .14);
  border-radius: 50%;
  transform: translateY(-50%);
}
.orbit-one { width: 47vw; height: 47vw; animation: spin 28s linear infinite; }
.orbit-two { right: 5vw; width: 34vw; height: 34vw; border-style: dashed; animation: spin 22s linear infinite reverse; }
.hero-orbit::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.hero-content { position: relative; z-index: 3; max-width: 790px; }
.eyebrow, .section-kicker {
  color: var(--cyan-soft);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 700;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); }

.hero-title {
  margin: 25px 0 26px;
  font: 600 clamp(60px, 6.6vw, 108px)/.92 var(--font-display);
  letter-spacing: -.065em;
}
.title-line { display: block; }
.title-accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(128, 226, 252, .75);
  text-shadow: 0 0 46px rgba(24, 200, 244, .1);
}
.hero-description { max-width: 620px; color: #b8c4cc; font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 25px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  transition: transform .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #001018; background: var(--cyan); box-shadow: 0 12px 40px rgba(24, 200, 244, .2); }
.button-primary:hover { box-shadow: 0 16px 50px rgba(24, 200, 244, .35); }
.text-link { color: #d8e0e5; font-size: 13px; border-bottom: 1px solid #57636b; padding-bottom: 5px; }
.text-link span { color: var(--cyan); margin-left: 8px; }

.hero-visual {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(34vw, 510px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: transform .15s ease-out;
}
.image-frame {
  width: 66%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(166, 230, 248, .35);
  box-shadow: 0 0 100px rgba(24, 200, 244, .14), inset 0 0 50px rgba(24, 200, 244, .08);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.09); }
.visual-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(128, 226, 252, .18); }
.ring-a { inset: 3%; border-style: dashed; animation: spin 36s linear infinite; }
.ring-b { inset: 12%; border-color: rgba(128, 226, 252, .35); animation: spin 20s linear infinite reverse; }
.ring-c { inset: 21%; border-left-color: var(--cyan); border-right-color: var(--cyan); animation: spin 14s linear infinite; }
.floating-tag {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(8, 17, 24, .78);
  backdrop-filter: blur(10px);
  color: #c7d0d6;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag-top { right: -2%; top: 20%; }
.tag-top span { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: #4cf0a8; box-shadow: 0 0 10px #4cf0a8; }
.tag-bottom { bottom: 16%; left: -3%; }
.tag-bottom strong { color: var(--cyan); font: 700 19px var(--font-display); margin-right: 7px; }

.hero-foot {
  position: absolute;
  bottom: 28px;
  left: max(40px, calc((100vw - 1360px) / 2));
  right: max(40px, calc((100vw - 1360px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #697781;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-foot a { display: flex; align-items: center; gap: 12px; }
.hero-foot svg { width: 16px; fill: none; stroke: var(--cyan); stroke-width: 1.5; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #071018; }
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}
.marquee span { font: 500 13px var(--font-display); letter-spacing: .12em; text-transform: uppercase; color: #a9b5bd; }
.marquee i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

.section { width: var(--container); margin: 0 auto; padding: 135px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 50px; margin-bottom: 70px; }
.section h2 {
  margin: 15px 0 0;
  font: 600 clamp(48px, 5.3vw, 78px)/1.02 var(--font-display);
  letter-spacing: -.055em;
}
.section h2 em, .process h2 em { color: var(--cyan); font-style: normal; }
.section-heading > p { color: var(--muted); font-size: 15px; line-height: 1.8; }

.services-list { border-top: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 215px;
  display: grid;
  grid-template-columns: 70px 110px 1fr 55px;
  align-items: center;
  gap: 30px;
  padding: 38px 20px 38px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s, background .35s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 200, 244, .1), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover { padding-left: 25px; }
.service-card:hover::before { opacity: 1; }
.service-number { align-self: start; color: #63717b; font: 500 11px var(--font-display); }
.service-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .3s, transform .3s;
}
.service-card:hover .service-icon { border-color: var(--cyan); transform: rotate(-5deg); }
.service-icon svg { width: 37px; fill: none; stroke: var(--cyan-soft); stroke-width: 1.2; }
.service-copy { display: grid; grid-template-columns: 38% 1fr; align-items: center; gap: 35px; }
.service-copy h3 { margin: 0; font: 600 clamp(25px, 2.5vw, 38px) var(--font-display); letter-spacing: -.035em; }
.service-copy p { color: var(--muted); font-size: 13px; line-height: 1.75; }
.service-tags { grid-column: 2; display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 20px; color: #7f8d96; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.service-arrow { justify-self: end; color: var(--cyan); font-size: 28px; transition: transform .3s; }
.service-card:hover .service-arrow { transform: translate(5px, -5px); }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.about-media { position: relative; }
.about-image {
  aspect-ratio: .82;
  max-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #020507;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.8) contrast(1.1); }
.about-media::after {
  content: "";
  position: absolute;
  inset: 12% -5% -5% 12%;
  z-index: -1;
  border: 1px solid rgba(24, 200, 244, .2);
}
.about-badge {
  position: absolute;
  right: -48px;
  bottom: 80px;
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #041017;
}
.about-badge svg { position: absolute; inset: 7px; width: calc(100% - 14px); animation: spin 18s linear infinite; }
.about-badge text { font: 700 8px var(--font-body); letter-spacing: 2px; fill: #041017; }
.about-badge > span { font: 700 33px var(--font-display); }
.about-content h2 { font-size: clamp(45px, 4.6vw, 70px); }
.about-lead { margin: 36px 0 20px; color: #e2e9ed; font-size: 17px; line-height: 1.7; }
.about-body { color: var(--muted); font-size: 14px; line-height: 1.85; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.stats > div { display: flex; gap: 11px; align-items: flex-start; }
.stats strong { color: var(--cyan); font: 600 37px/1 var(--font-display); }
.stats span { color: #7e8b94; font-size: 9px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }

.process { background: #e8eef1; color: #071018; }
.process-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.process .section-kicker { color: #167d9b; }
.process h2 { margin: 15px 0 0; font: 600 clamp(45px, 4.8vw, 72px)/1 var(--font-display); letter-spacing: -.055em; }
.process-steps { border-top: 1px solid rgba(7, 16, 24, .18); }
.process-steps article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(7, 16, 24, .18); }
.process-steps article > span { color: #168db0; font: 600 11px var(--font-display); }
.process-steps h3 { margin: 0 0 9px; font: 600 25px var(--font-display); }
.process-steps p { margin: 0; color: #58636a; font-size: 13px; line-height: 1.7; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.contact-copy > p:not(.section-kicker) { max-width: 540px; color: var(--muted); line-height: 1.8; }
.contact-meta { display: flex; gap: 60px; margin-top: 52px; }
.contact-meta div { display: flex; flex-direction: column; gap: 8px; }
.contact-meta span { color: #60717d; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.contact-meta a, .contact-meta p { margin: 0; color: #d7e0e5; font-size: 13px; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 22px; padding: 40px; background: var(--panel); border: 1px solid var(--line); }
.contact-form label { display: flex; flex-direction: column; gap: 10px; }
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form label:has(select),
.contact-form label:has(textarea),
.contact-form button,
.form-status { grid-column: 1 / -1; }
.contact-form label > span { color: #8d9aa3; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #34414a;
  border-radius: 0;
  outline: 0;
  padding: 12px 0;
  font-size: 13px;
  resize: vertical;
  transition: border-color .25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); }
.contact-form option { background: var(--panel); }
.contact-form .button { justify-self: start; margin-top: 10px; }
.contact-form .button:disabled { cursor: wait; opacity: .72; transform: none; }
.form-status { min-height: 18px; margin: 0; color: var(--cyan-soft); font-size: 12px; }
.form-status.error { color: #ff8e8e; }

footer { padding: 70px max(40px, calc((100vw - 1360px) / 2)) 28px; border-top: 1px solid var(--line); background: #03070a; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; padding-bottom: 55px; }
.footer-top > p { justify-self: center; margin: 0; color: #7e8c95; font-size: 13px; line-height: 1.6; }
.back-top { justify-self: end; color: var(--cyan-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #4e5a62; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.title-line:nth-child(2) { transition-delay: .1s; }
.hero-description { transition-delay: .18s; }
.hero-actions { transition-delay: .24s; }
.hero-visual { transition-delay: .2s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  :root { --container: min(100% - 50px, 900px); }
  .desktop-nav, .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 25px; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { display: block; width: 28px; height: 1px; background: white; transition: transform .3s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 8vw 50px;
    background: rgba(4, 10, 15, .97);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font: 600 clamp(34px, 8vw, 60px) var(--font-display); }
  .mobile-menu a span { display: inline-block; width: 45px; color: var(--cyan); font-size: 10px; }
  .mobile-menu > p { margin-top: 35px; color: var(--muted); font-size: 12px; }
  .hero { min-height: 780px; grid-template-columns: 1fr; padding-inline: 6vw; }
  .hero-content { z-index: 4; }
  .hero-title { font-size: clamp(56px, 10vw, 88px); }
  .hero-visual { position: absolute; right: -9vw; width: 54vw; opacity: .48; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 560px; }
  .service-card { grid-template-columns: 45px 85px 1fr 40px; gap: 18px; }
  .service-copy { grid-template-columns: 1fr; gap: 4px; }
  .service-tags { grid-column: auto; }
  .about, .contact { gap: 6vw; }
  .about { grid-template-columns: .8fr 1.2fr; }
  .stats { grid-template-columns: 1fr; }
  .process-inner { gap: 5vw; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 38px); }
  .cursor-glow { display: none; }
  .site-header { height: 76px; }
  .brand img { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 16px; }
  .hero {
    min-height: 760px;
    height: 100svh;
    max-height: 850px;
    display: flex;
    align-items: center;
    padding: 105px 20px 80px;
  }
  .hero-content { width: 100%; }
  .eyebrow { font-size: 8px; gap: 8px; }
  .hero-title { margin-top: 20px; font-size: clamp(49px, 15.2vw, 72px); }
  .hero-description { max-width: 90%; font-size: 14px; line-height: 1.7; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 30px; }
  .hero-visual { right: -35vw; top: 19%; width: 92vw; opacity: .32; }
  .floating-tag { display: none; }
  .hero-grid { inset-left: 15%; }
  .hero-foot { left: 20px; right: 20px; }
  .hero-foot > p { display: none; }
  .hero-foot a { margin-left: auto; }
  .section { padding: 92px 0; }
  .section-heading { margin-bottom: 45px; }
  .section h2 { font-size: clamp(43px, 13vw, 60px); }
  .section-heading > p { font-size: 13px; }
  .service-card {
    min-height: 0;
    grid-template-columns: 40px 1fr 30px;
    padding: 30px 0;
  }
  .service-card:hover { padding-left: 0; }
  .service-icon { display: none; }
  .service-number { grid-column: 1; }
  .service-copy { grid-column: 2; }
  .service-arrow { grid-column: 3; }
  .service-copy h3 { font-size: 27px; }
  .service-copy p { font-size: 12px; }
  .service-tags { margin-top: 8px; }
  .about, .contact, .process-inner { grid-template-columns: 1fr; }
  .about { gap: 80px; }
  .about-image { max-height: 560px; }
  .about-badge { right: -8px; bottom: -44px; width: 105px; height: 105px; }
  .about-content h2 { font-size: clamp(41px, 12vw, 58px); }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stats > div { flex-direction: column; }
  .stats strong { font-size: 30px; }
  .process-inner { gap: 55px; }
  .contact { gap: 60px; }
  .contact-meta { flex-direction: column; gap: 24px; }
  .contact-form { grid-template-columns: 1fr; padding: 28px 22px; }
  .contact-form label { grid-column: 1 / -1; }
  .contact-form .button { width: 100%; }
  footer { padding-inline: 20px; }
  .footer-top { grid-template-columns: 1fr auto; gap: 35px; }
  .footer-top > p { display: none; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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