:root {
  --navy-950: #041021;
  --navy-900: #071527;
  --navy-850: #0a1d35;
  --navy-800: #0d2745;
  --blue-600: #2563eb;
  --blue-500: #2f7df6;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --soft: #f8fbff;
  --line: rgba(148, 163, 184, 0.22);
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.section-pad {
  padding: 112px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--blue-600);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 16, 33, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  padding: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu .nav-cta {
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: transform 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.42), transparent 30%),
              radial-gradient(circle at 12% 78%, rgba(6, 182, 212, 0.24), transparent 32%),
              linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #071a35);
  padding-top: 132px;
  padding-bottom: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 76%);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-400);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  color: rgba(226, 232, 240, 0.86);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions,
.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  color: var(--white);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-secondary.dark {
  color: var(--navy-900);
  background: var(--white);
  border-color: rgba(15, 23, 42, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.dashboard-card {
  position: absolute;
  inset: 46px 28px auto 0;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 22, 45, 0.74);
  border-radius: 30px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.panel-top p {
  margin: 0 0 0 9px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.blue {
  background: var(--blue-500);
}

.dot.cyan {
  background: var(--cyan-400);
}

.dot.navy {
  background: #93c5fd;
}

.terminal {
  padding: 28px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.terminal p {
  margin: 0 0 20px;
  color: rgba(226, 232, 240, 0.88);
}

.terminal span {
  color: var(--cyan-400);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  width: 145px;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card strong {
  font-size: 1.8rem;
  line-height: 1;
}

.floating-card span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.86rem;
}

.card-one {
  top: 18px;
  right: 0;
}

.card-two {
  left: 10px;
  bottom: 34px;
}

.node-map {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 210px;
  height: 160px;
}

.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: var(--cyan-400);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
}

.n1 { left: 10px; top: 62px; }
.n2 { left: 86px; top: 20px; }
.n3 { right: 22px; top: 68px; }
.n4 { left: 94px; bottom: 10px; }

.line {
  position: absolute;
  height: 2px;
  background: rgba(34, 211, 238, 0.45);
  transform-origin: left center;
}

.l1 { left: 26px; top: 70px; width: 78px; transform: rotate(-27deg); }
.l2 { left: 101px; top: 30px; width: 86px; transform: rotate(31deg); }
.l3 { left: 102px; top: 92px; width: 80px; transform: rotate(-26deg); }

.logo-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 20px 0;
}

.strip-grid p {
  margin: 0;
  text-align: center;
  color: var(--slate-600);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading p:not(.eyebrow),
.split-grid p,
.founder-copy p,
.contact-copy p {
  color: var(--slate-600);
  font-size: 1.02rem;
}

.card-grid,
.services-grid,
.solution-grid,
.why-grid,
.problem-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.solution-card,
.why-item,
.problem-item,
.process-step,
.credential-panel,
.contact-form,
.founder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(2, 6, 23, 0.06);
}

.service-card {
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 22px 65px rgba(37, 99, 235, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
}

.service-card p,
.solution-card p,
.why-item p,
.process-step p,
.faq-answer p,
.footer p,
.form-note {
  color: var(--slate-600);
}

.card-expand {
  margin-top: 10px;
  color: var(--blue-600);
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 800;
  cursor: pointer;
}

.card-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.card-detail ul {
  overflow: hidden;
  margin: 0;
  padding-left: 18px;
  color: var(--slate-600);
}

.service-card.is-open .card-detail {
  grid-template-rows: 1fr;
  margin-top: 12px;
}

.section-soft {
  background: var(--soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.platform-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.platform-grid div,
.engagement-grid div {
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  color: var(--navy-900);
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue-600);
  font-weight: 900;
}

.solution-grid {
  grid-template-columns: repeat(4, 1fr);
}

.solution-card {
  padding: 28px;
}

.dark-section {
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.32), transparent 35%),
              linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.dark-section .section-heading p:not(.eyebrow) {
  color: rgba(226, 232, 240, 0.78);
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-item {
  padding: 22px;
  color: var(--white);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.founder-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at 8% 18%, rgba(37, 99, 235, 0.08), transparent 28%),
    var(--white);
}

.credential-panel {
  padding: 28px;
  background: var(--navy-900);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.credential-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(226, 232, 240, 0.84);
}

.credential-panel li {
  margin-bottom: 10px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-item {
  padding: 26px;
}

.why-item span,
.process-step span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-weight: 950;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-step {
  padding: 24px;
  min-height: 245px;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--navy-900);
  text-align: left;
  font-weight: 900;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.contact-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: start;
}

.contact-copy p {
  color: rgba(226, 232, 240, 0.78);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-details a:hover {
  color: var(--cyan-400);
}

.contact-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-row select option {
  color: var(--navy-900);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
}

.form-btn {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.86rem;
  margin: 14px 0 0;
}

.hidden-field {
  display: none;
}

.footer {
  background: var(--slate-950);
  color: var(--white);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 0.78fr 0.95fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p {
  color: rgba(226, 232, 240, 0.72);
  max-width: 390px;
}

.footer h3 {
  font-size: 0.95rem;
  color: var(--white);
}

.footer a,
.footer span {
  display: block;
  color: rgba(226, 232, 240, 0.72);
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.9);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .services-grid,
  .why-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split-grid,
  .founder-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 78px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(4, 16, 33, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .dashboard-card {
    inset: 34px 0 auto 0;
  }

  .floating-card {
    width: 132px;
  }

  .card-one {
    right: 8px;
  }

  .card-two {
    left: 8px;
  }

  .node-map {
    display: none;
  }

  .services-grid,
  .solution-grid,
  .why-grid,
  .problem-grid,
  .process-line,
  .platform-grid,
  .engagement-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .founder-card,
  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.simple-page {
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 30%), var(--navy-950);
  color: var(--white);
}

.simple-wrap {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.simple-brand {
  margin-bottom: 24px;
}

.simple-card {
  background: var(--white);
  color: var(--slate-900);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 58px);
  box-shadow: var(--shadow);
}

.simple-card h1 {
  color: var(--navy-900);
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.simple-card p,
.simple-card li {
  color: var(--slate-600);
}

.simple-card.legal h2 {
  font-size: 1.25rem;
  margin-top: 28px;
  letter-spacing: -0.025em;
}

.simple-card.legal a:not(.btn) {
  color: var(--blue-600);
  font-weight: 800;
}
