:root {
  --blue-950: #06111f;
  --blue-900: #071a33;
  --blue-800: #0b2a55;
  --blue-700: #0d3e8a;
  --blue-600: #125cff;
  --blue-500: #2c74ff;
  --blue-100: #eaf1ff;
  --white: #ffffff;
  --black: #050608;
  --ink: #101522;
  --muted: #5d6678;
  --line: rgba(14, 34, 68, 0.13);
  --soft: #f4f7fb;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-strong: 0 32px 80px rgba(3, 13, 32, 0.32);
  --shadow-soft: 0 22px 55px rgba(5, 20, 44, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

p {
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(6, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(145deg, var(--blue-500), var(--blue-900) 72%, var(--black));
  box-shadow: 0 14px 34px rgba(18, 92, 255, 0.34);
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 2px;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(6, 17, 31, 0.08);
  border-radius: 999px;
  background: rgba(244, 247, 251, 0.74);
}

.main-nav a {
  padding: 10px 14px;
  color: #303849;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: all 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
  background: var(--blue-900);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  color: var(--white);
  background: var(--blue-900);
  font-size: 0.9rem;
  box-shadow: 0 16px 35px rgba(6, 17, 31, 0.18);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 17, 31, 0.96), rgba(7, 26, 51, 0.94) 46%, rgba(3, 7, 15, 0.99)),
    radial-gradient(circle at 72% 12%, rgba(18, 92, 255, 0.46), transparent 34%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 88%);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-bg-orb-one {
  width: 280px;
  height: 280px;
  background: rgba(18, 92, 255, 0.48);
  top: 16%;
  right: 9%;
}

.hero-bg-orb-two {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.16);
  bottom: 16%;
  left: 7%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow {
  color: #9fc0ff;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 8px rgba(44, 116, 255, 0.18);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 6vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.24rem);
}

.signature-line {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 12px 16px;
  color: #dfeaff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 20px 45px rgba(18, 92, 255, 0.32);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-white {
  color: var(--blue-900);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  padding: 20px;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.86rem;
}

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

.image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #091525;
  box-shadow: var(--shadow-strong);
}

.hero-image-shell {
  height: 560px;
  transform: rotate(1.2deg);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.hero-image-shell img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.image-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 6, 8, 0.76), transparent 52%),
    radial-gradient(circle at 80% 18%, rgba(18, 92, 255, 0.36), transparent 28%);
}

.floating-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: var(--white);
  background: rgba(6, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
}

.floating-card p,
.floating-card small {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.64);
}

.floating-card strong {
  display: block;
  font-size: 1.02rem;
}

.floating-card-top {
  top: 34px;
  left: -36px;
  padding: 18px 20px 18px 44px;
}

.status-dot {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #37ff9d;
  box-shadow: 0 0 0 7px rgba(55, 255, 157, 0.14);
}

.floating-card-bottom {
  right: -16px;
  bottom: 62px;
  width: min(270px, 80%);
  padding: 20px;
}

.section-light {
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 92, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6f8fc);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.sticky-copy h2,
.founder-copy h2,
.company-copy h2,
.final-cta h2 {
  margin: 14px 0 18px;
  color: var(--blue-950);
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading p,
.sticky-copy p,
.founder-copy p,
.company-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.bento-grid {
  display: grid;
  gap: 18px;
}

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

.method-card {
  min-height: 335px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.method-card:nth-child(2) {
  transform: translateY(28px);
}

.method-card:nth-child(3) {
  transform: translateY(-10px);
}

.method-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 0 0, rgba(44, 116, 255, 0.48), transparent 38%),
    linear-gradient(145deg, var(--blue-900), var(--black));
  border-color: rgba(255, 255, 255, 0.1);
}

.card-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  font-weight: 900;
  border-radius: 18px;
  background: var(--blue-100);
}

.method-card-dark .card-number {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.method-card h3,
.service-card h3,
.media-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.method-card p,
.service-card p,
.media-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.method-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(44, 116, 255, 0.5), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800) 52%, var(--black));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.section-kicker.light {
  color: #b7cdff;
}

.section-blue h2,
.section-blue p,
.company-section h2,
.company-section p {
  color: var(--white);
}

.section-blue p,
.company-section p {
  color: rgba(255, 255, 255, 0.72);
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
}

.service-card p {
  color: rgba(255, 255, 255, 0.67);
}

.founder-section {
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 76px;
  align-items: center;
}

.founder-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg, var(--blue-500), rgba(6, 17, 31, 0.1), var(--black)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}

.founder-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.founder-card-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 18px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(6, 17, 31, 0.7);
  backdrop-filter: blur(18px);
}

.founder-card-caption strong,
.founder-card-caption span {
  display: block;
}

.founder-card-caption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
}

.quote-block {
  margin-top: 32px;
  padding: 30px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(44, 116, 255, 0.48), transparent 34%),
    linear-gradient(135deg, var(--blue-950), var(--black));
  box-shadow: var(--shadow-soft);
}

.quote-block p {
  margin: 0;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(3, 220px);
  gap: 18px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-950);
  box-shadow: var(--shadow-soft);
}

.media-card.large {
  grid-row: span 3;
}

.media-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.media-card:hover img {
  transform: scale(1.055);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 15, 0.78), rgba(3, 7, 15, 0.04) 58%);
}

.media-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
}

.media-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #b7cdff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.media-card h3 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.1rem, 2vw, 2rem);
}

.media-card:not(.large) h3 {
  font-size: 1.1rem;
}

.company-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(44, 116, 255, 0.4), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 52%, var(--black));
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 60px;
  align-items: center;
}

.legal-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

.legal-card dl {
  margin: 0;
}

.legal-card div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 22px;
  padding: 28px;
}

.legal-card div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-card dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 1.55;
}

.legal-card a {
  color: #b7cdff;
}

.final-cta {
  background: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 92, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7f9fe);
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 800px;
}

.final-cta p {
  max-width: 690px;
  margin-bottom: 0;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-meta a {
  color: var(--white);
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

.footer-meta p {
  margin: 0 0 8px;
  max-width: 420px;
}

.reveal {
  animation: fadeUp 720ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 210ms;
}

.delay-3 {
  animation-delay: 300ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: start;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-grid,
  .two-column,
  .founder-grid,
  .company-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-image-shell {
    height: 500px;
  }

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

  .method-card:nth-child(2),
  .method-card:nth-child(3) {
    transform: none;
  }

  .sticky-copy {
    position: static;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .media-card,
  .media-card.large {
    min-height: 330px;
    grid-row: auto;
  }

  .final-cta-inner {
    padding: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

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

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

  .brand {
    min-width: auto;
  }

  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.1rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-image-shell {
    height: 420px;
    transform: none;
  }

  .floating-card-top,
  .floating-card-bottom {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: auto;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .founder-grid,
  .two-column,
  .company-grid {
    gap: 38px;
  }

  .media-card,
  .media-card.large {
    min-height: 280px;
  }

  .legal-card div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .final-cta-inner {
    padding: 28px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
