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

:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --panel: rgba(15, 31, 51, .72);
  --text: #f6f8fb;
  --muted: #a6b3c4;
  --line: rgba(255,255,255,.10);
  --accent: #72e6c5;
  --accent-2: #7ca6ff;
  --light: #f4f7fb;
  --light-text: #102034;
  --light-muted: #5c6a7b;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(1, 8, 20, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, .86);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07111f;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(114, 230, 197, .16);
}

.brand-text { font-weight: 600; letter-spacing: -.02em; }
.brand-text strong { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #d8e0ea;
}

.nav > a:not(.btn) { position: relative; }
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right .2s ease;
}
.nav > a:not(.btn):hover::after { right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 3px;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 8% 24%, rgba(124,166,255,.12), transparent 34%),
    radial-gradient(circle at 82% 65%, rgba(114,230,197,.09), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #091525 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}
.hero-orb-one {
  width: 360px; height: 360px;
  right: -120px; top: 160px;
  background: rgba(124, 166, 255, .08);
}
.hero-orb-two {
  width: 260px; height: 260px;
  left: -100px; bottom: 40px;
  background: rgba(114, 230, 197, .07);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.eyebrow,
.kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow span {
  width: 24px; height: 1px;
  background: var(--accent);
}

h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(54px, 6.3vw, 88px);
  max-width: 800px;
}
h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 17px; }
.btn-primary { background: var(--accent); color: #07111f; }
.btn-outline { border: 1px solid var(--line); }
.btn-ghost { border: 1px solid var(--line); color: #e6edf5; }
.btn-white { background: white; color: #0a1726; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  color: #91a0b2;
  font-size: 13px;
}
.trust-row span::before {
  content: "•";
  color: var(--accent);
  margin-right: 9px;
}

.hero-panel {
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,34,55,.82), rgba(10,22,38,.66));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.panel-top {
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  font: 700 10px/1 "Manrope", sans-serif;
  letter-spacing: .1em;
  color: #9baaba;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(114,230,197,.8);
}
.panel-live { margin-left: auto; color: var(--accent); }

.visual-core {
  height: 330px;
  position: relative;
  display: grid;
  place-items: center;
}
.core-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}
.ring-one { width: 245px; height: 245px; }
.ring-two { width: 188px; height: 188px; border-style: dashed; animation: spin 20s linear infinite; }
.ring-three {
  width: 132px; height: 132px;
  border-color: rgba(114,230,197,.35);
  box-shadow: inset 0 0 45px rgba(114,230,197,.05);
}
.core-center {
  width: 72px; height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07111f;
  display: grid;
  place-items: center;
  font: 800 34px/1 "Manrope", sans-serif;
  box-shadow: 0 0 60px rgba(114,230,197,.18);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.mini-grid article {
  min-height: 111px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mini-grid article:nth-child(2n) { border-right: 0; }
.mini-grid span { color: var(--accent); font: 700 10px/1 "Manrope", sans-serif; }
.mini-grid h3 { font-size: 15px; margin-top: 8px; }
.mini-grid p { margin: 6px 0 0; color: #8392a4; font-size: 12px; }

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--light);
  color: var(--light-text);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.section-heading h2,
.why-copy h2,
.contact-card h2 {
  font-size: clamp(38px, 5vw, 62px);
  max-width: 820px;
}
.section-heading > p:last-child {
  color: var(--muted);
  max-width: 620px;
  margin: 18px auto 0;
}
.section-light .section-heading > p:last-child { color: var(--light-muted); }

.about-copy {
  color: var(--light-muted);
  font-size: 18px;
}
.about-copy p:first-child {
  margin-top: 2px;
  color: var(--light-text);
  font-size: 22px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #0f6f60;
  font-weight: 700;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.services {
  background: #081320;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.service-card {
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17,35,57,.72), rgba(11,24,40,.62));
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114,230,197,.35);
}
.icon-box {
  width: 48px; height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(114,230,197,.24);
  background: rgba(114,230,197,.06);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
}
.service-card h3 { font-size: 22px; margin-top: 54px; }
.service-card p { color: var(--muted); font-size: 14px; margin-top: 14px; }
.card-line {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .35;
}

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.why-visual {
  min-height: 530px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(124,166,255,.22), transparent 28%),
    linear-gradient(145deg, #0c1a2b, #122944);
  box-shadow: var(--shadow);
}

.metric-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,16,29,.62);
  backdrop-filter: blur(18px);
  color: white;
  border-radius: 22px;
}
.metric-main {
  left: 36px; right: 76px; top: 60px;
  padding: 34px;
}
.metric-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.metric-main strong {
  display: block;
  font: 700 46px/1.12 "Manrope", sans-serif;
  letter-spacing: -.04em;
}
.metric-main strong:first-of-type { margin-top: 24px; }
.metric-small {
  right: 28px; bottom: 34px;
  width: 230px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.metric-small p { margin: 0; font-size: 13px; }
.pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(114,230,197,.11);
}

.why-copy h2 { margin-top: 12px; }
.feature-list { margin-top: 38px; }
.feature-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  padding: 22px 0;
  border-top: 1px solid #d9e0e8;
}
.feature-list span {
  color: #0f826f;
  font-weight: 800;
  font-size: 12px;
  padding-top: 4px;
}
.feature-list h3 { font-size: 18px; }
.feature-list p {
  grid-column: 2;
  margin: 7px 0 0;
  color: var(--light-muted);
  font-size: 14px;
}

.contact-section {
  padding: 90px 0;
  background: #081320;
}
.contact-card {
  min-height: 330px;
  border-radius: 30px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  background:
    radial-gradient(circle at 80% 10%, rgba(124,166,255,.24), transparent 28%),
    linear-gradient(135deg, #10263f, #0b1b2e);
  border: 1px solid var(--line);
}
.contact-card h2 { max-width: 760px; margin-top: 10px; }
.contact-card p:not(.kicker) { color: var(--muted); margin: 18px 0 0; }
.kicker-light { color: #9cf1d9; }

.site-footer {
  padding: 34px 0;
  background: #06101c;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: #8594a5;
  font-size: 12px;
}
.footer-brand .brand-mark { width: 32px; height: 32px; border-radius: 10px; }
.copyright { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-grid { grid-template-columns: 1fr 1fr; }
  .hero-panel { min-height: 560px; }
  .contact-card { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { background: rgba(7,17,31,.92); backdrop-filter: blur(18px); }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0b1728;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 12px; }
  .nav .btn { margin-top: 6px; }
  .hero { padding-top: 120px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-panel { min-height: auto; }
  .visual-core { height: 290px; }
  .mini-grid { grid-template-columns: 1fr; }
  .mini-grid article { border-right: 0; }
  .section { padding: 78px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .why-visual { min-height: 440px; }
  .metric-main { left: 20px; right: 20px; top: 30px; padding: 26px; }
  .metric-main strong { font-size: 36px; }
  .metric-small { right: 20px; bottom: 22px; width: calc(100% - 40px); }
  .contact-card { padding: 34px 24px; }
  .btn-white { width: 100%; }
}


.process-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:50px;
}
.process-card {
  border:1px solid #dbe3ec;
  border-radius:20px;
  padding:28px;
  background:white;
}
.process-card span { color:#0f826f; font-weight:800; font-size:12px; }
.process-card h3 { margin-top:28px; font-size:22px; color:#102034; }
.process-card p { color:#5c6a7b; font-size:14px; }
.why-dark { background:#081320; color:#fff; }
.why-dark .why-copy h2 { color:#fff; }
.dark-list > div { border-top-color:rgba(255,255,255,.12); }
.dark-list p { color:#9ba9b9; }
.contact-meta { margin-top:28px; display:flex; flex-direction:column; gap:4px; }
.contact-meta span { color:#94a3b4; font-size:12px; text-transform:uppercase; letter-spacing:.12em; }
.contact-meta strong { font-size:18px; }
.footer-links { display:flex; justify-content:center; gap:22px; flex-wrap:wrap; }
.footer-links a:hover { color:#72e6c5; }
.legal-page { min-height:100vh; background:#f4f7fb; color:#102034; padding:130px 0 80px; }
.legal-wrap { width:min(860px, calc(100% - 40px)); margin:auto; }
.legal-wrap h1 { font-size:clamp(42px,7vw,70px); color:#102034; }
.legal-wrap h2 { font-size:24px; margin-top:36px; }
.legal-wrap p, .legal-wrap li { color:#5c6a7b; }
.legal-back { display:inline-block; margin-bottom:28px; color:#0f826f; font-weight:700; }
@media (max-width:980px){ .process-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:720px){ .process-grid{grid-template-columns:1fr;} .footer-links{justify-content:flex-start;} }
