:root {
  --bg: #07142b;
  --bg-2: #0d1f45;
  --panel: rgba(15, 34, 73, 0.78);
  --panel-strong: rgba(13, 28, 62, 0.94);
  --line: rgba(146, 179, 234, 0.18);
  --text: #eff5ff;
  --muted: #aeb9d1;
  --jade: #45e2cc;
  --sky: #55b8ff;
  --violet: #8f67ff;
  --gold: #ffd56c;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 32%, rgba(69, 226, 204, 0.10), transparent 18%),
    radial-gradient(circle at 88% 16%, rgba(143, 103, 255, 0.08), transparent 16%),
    linear-gradient(180deg, #07142b 0%, #0a1a37 55%, #071120 100%);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0; line-height: 1.78; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.site-glow,
.site-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.site-grid {
  opacity: .08;
  background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
}
.site-glow {
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: drift 16s ease-in-out infinite;
}
.glow-one {
  width: 380px; height: 380px; left: -120px; top: 240px;
  background: radial-gradient(circle, rgba(143,103,255,0.30), rgba(143,103,255,0) 70%);
}
.glow-two {
  width: 420px; height: 420px; right: -140px; bottom: 90px;
  background: radial-gradient(circle, rgba(69,226,204,0.22), rgba(69,226,204,0) 70%);
  animation-direction: reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(4, 12, 29, 0.75);
  border-bottom: 1px solid rgba(146, 179, 234, 0.12);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-badge {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(69,226,204,.18), rgba(143,103,255,.18));
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: .98rem;
  letter-spacing: -.03em;
}
.brand-copy small { color: var(--muted); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--jade), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta,
.btn,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nav-cta {
  padding: 14px 20px;
  background: rgba(69, 226, 204, 0.10);
  border: 1px solid rgba(69, 226, 204, 0.24);
}
.menu-toggle {
  display: none;
  padding: 11px 15px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--line);
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 52px;
  align-items: center;
  padding: 82px 0 94px;
}
.label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--jade);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -.05em;
  line-height: 1.06;
}
h1 {
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  margin: 18px 0 20px;
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  margin: 16px 0 14px;
}
h3 { font-size: 1.4rem; }
.hero-text,
.section-head p,
.story-panel p,
.story-card p,
.capability-card p,
.capability-card li,
.screen-copy p,
.walkthrough-copy p,
.service-box p,
.timeline-step p,
.contact-copy p,
.footer-grid p,
.footer-grid a,
.policy-card p,
.policy-nav a { color: var(--muted); }
.hero-actions,
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 28px; }
.btn { padding: 15px 22px; }
.btn-primary {
  color: #07142b;
  background: linear-gradient(135deg, var(--jade), #57dbc2);
  box-shadow: 0 16px 42px rgba(69, 226, 204, 0.22);
}
.btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.btn:hover, .nav-cta:hover, .menu-toggle:hover { transform: translateY(-2px); }
.pulse-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pulse-row div,
.backdrop-card,
.story-panel,
.story-card,
.capability-card,
.phone-card,
.service-box,
.timeline-step,
.contact-panel,
.contact-card,
.policy-nav,
.policy-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pulse-row div {
  padding: 18px;
  border-radius: 18px;
}
.pulse-row strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--jade);
}
.hero-visual { position: relative; min-height: 590px; }
.backdrop-card { border-radius: var(--radius-xl); overflow: hidden; }
.hero-frame { animation: floaty 10s ease-in-out infinite; }
.floating-card {
  position: absolute;
  left: 28px;
  bottom: 20px;
  width: min(360px, calc(100% - 56px));
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(7, 20, 43, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: floaty 8s ease-in-out infinite reverse;
}
.floating-card img { width: 68px; height: 68px; border-radius: 16px; }
.floating-card strong { display: block; margin-bottom: 5px; }

.section { padding: 24px 0 104px; }
.story-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 22px;
  align-items: start;
}
.story-panel,
.story-card,
.capability-card,
.phone-card,
.service-box,
.timeline-step,
.contact-panel,
.policy-nav,
.policy-card {
  border-radius: var(--radius-lg);
}
.story-panel { padding: 30px; min-height: 100%; }
.story-stack { display: grid; gap: 18px; }
.story-card { padding: 24px; }
.story-card.accent {
  background: linear-gradient(180deg, rgba(18, 39, 87, 0.92), rgba(12, 30, 65, 0.94));
}
.story-card h3 { margin-bottom: 10px; }

.feature-belt {
  padding: 100px 0;
  border-top: 1px solid rgba(146, 179, 234, 0.10);
  border-bottom: 1px solid rgba(146, 179, 234, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.section-head { max-width: 900px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.narrow { max-width: 760px; }
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: end;
}
.feature-layout {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 22px;
  align-items: start;
}
.capability-card {
  padding: 28px;
  position: sticky;
  top: 108px;
}
.capability-card h3 { margin-bottom: 16px; }
.feature-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .72em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--sky));
}
.text-link { color: var(--jade); font-weight: 800; }
.feature-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.phone-card { padding: 18px; }
.phone-card.tall { min-height: 100%; }
.phone-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: center;
}
.screen {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(146, 179, 234, 0.12);
}
.screen-copy { padding: 6px 4px 4px; }
.screen-copy h3 { margin-bottom: 10px; }

.alternate-layout {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 26px;
  align-items: center;
}
.walkthrough-art.slim { padding: 18px; }
.mini-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.mini-points strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Sora", sans-serif;
  color: var(--gold);
}

.service-zone {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-box {
  padding: 24px;
  min-height: 220px;
  transition: transform .24s ease, border-color .24s ease;
}
.service-box.featured {
  background: linear-gradient(180deg, rgba(18, 45, 96, 0.92), rgba(14, 32, 68, 0.94));
}
.service-box:hover,
.story-card:hover,
.phone-card:hover,
.timeline-step:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 226, 204, 0.26);
}
.service-box h3 { margin-bottom: 12px; }

.workflow .timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.timeline-step {
  position: relative;
  padding: 26px;
  overflow: hidden;
}
.timeline-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jade), var(--violet));
}
.timeline-step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--jade);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.timeline-step h3 { margin-bottom: 10px; }

.contact-panel {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 24px;
}
.contact-card {
  padding: 10px 24px;
  background: rgba(255,255,255,0.04);
}
.contact-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(146, 179, 234, 0.12);
}
.contact-item:last-child { border-bottom: none; }
.contact-item span { color: var(--muted); }
.contact-item strong,
.contact-item a { font-weight: 800; }

.site-footer {
  padding: 74px 0 26px;
  border-top: 1px solid rgba(146, 179, 234, 0.10);
  background: rgba(3, 10, 24, 0.56);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}
.brand-foot { margin-bottom: 14px; }
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(146, 179, 234, 0.10);
  color: var(--muted);
  font-size: .92rem;
}

/* Privacy */
.legal-page { padding-top: 40px; }
.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}
.policy-nav {
  position: sticky;
  top: 108px;
  height: fit-content;
  padding: 18px;
}
.policy-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 14px;
  font-weight: 700;
}
.policy-nav a:hover {
  color: var(--text);
  background: rgba(69, 226, 204, 0.08);
}
.policy-card { padding: 10px 30px 30px; }
.policy-card section {
  padding: 24px 0;
  border-bottom: 1px solid rgba(146, 179, 234, 0.12);
}
.policy-card section:last-child { border-bottom: none; }
.policy-card h2 { font-size: 1.46rem; margin-bottom: 12px; }
.policy-card a { color: var(--jade); font-weight: 800; }
.desktop-static { opacity: 1 !important; }

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

@keyframes drift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-24px,0) scale(1.05); }
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1120px) {
  .hero,
  .story-layout,
  .feature-layout,
  .alternate-layout,
  .section-head.split,
  .contact-panel,
  .policy-layout { grid-template-columns: 1fr; }
  .service-grid,
  .footer-grid,
  .workflow .timeline { grid-template-columns: repeat(2, 1fr); }
  .capability-card,
  .policy-nav { position: static; }
}

@media (max-width: 860px) {
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(7,20,43,0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
  }
  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .pulse-row,
  .service-grid,
  .footer-grid,
  .workflow .timeline { grid-template-columns: 1fr; }
  .feature-showcase { grid-template-columns: 1fr; }
  .phone-card.wide { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .floating-card { left: 16px; right: 16px; width: auto; bottom: 10px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  .btn { width: 100%; }
  .pulse-row,
  .mini-points { grid-template-columns: 1fr; }
  .contact-item { grid-template-columns: 1fr; gap: 8px; }
  .story-panel,
  .story-card,
  .capability-card,
  .phone-card,
  .service-box,
  .timeline-step,
  .contact-panel,
  .contact-card,
  .policy-card,
  .policy-nav { border-radius: 24px; }
  .policy-card { padding-inline: 18px; }
}
