:root {
  --bg: #07111f;
  --bg-strong: #050d17;
  --surface: rgba(10, 21, 36, 0.84);
  --surface-strong: rgba(12, 24, 40, 0.96);
  --surface-subtle: rgba(18, 34, 54, 0.72);
  --surface-border: rgba(107, 198, 255, 0.16);
  --surface-border-strong: rgba(107, 198, 255, 0.28);
  --text: #f4f8fb;
  --muted: #9db2c8;
  --muted-strong: #cbd8e5;
  --primary: #37f0ff;
  --primary-soft: rgba(55, 240, 255, 0.14);
  --accent: #7fa9ff;
  --accent-blue: #73a9ff;
  --accent-mint: #63eec7;
  --accent-gold: #f0c36a;
  --shadow: 0 22px 72px rgba(1, 8, 16, 0.34);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1280px, calc(100vw - 56px));
  --section-space: clamp(76px, 8vw, 112px);
  --content-gap: clamp(20px, 3vw, 32px);
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(55, 240, 255, 0.12), transparent 22%),
    radial-gradient(circle at 85% 8%, rgba(127, 169, 255, 0.14), transparent 20%),
    linear-gradient(180deg, #08111d 0%, #07111f 52%, #050c14 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

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

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

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

button {
  cursor: pointer;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 18px;
  left: 18px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #04121a;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

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

.eyebrow,
.card-kicker,
.difference-label,
.founder-role,
.method-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
}

h1 {
  max-width: 9.6ch;
  font-size: clamp(2.45rem, 4.4vw, 3.95rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.92rem, 3.85vw, 3.15rem);
}

h3 {
  font-size: clamp(1.12rem, 1.28vw, 1.42rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.section-heading > p:last-child,
.hero-text,
.story-copy p,
.contact-copy p {
  line-height: 1.82;
}

.surface-card {
  --card-tint: rgba(55, 240, 255, 0.08);
  --card-edge: rgba(55, 240, 255, 0.24);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, var(--card-tint), transparent 42%),
    linear-gradient(180deg, rgba(13, 25, 43, 0.94), rgba(8, 17, 30, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
}

.surface-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-edge), transparent);
  pointer-events: none;
}

.surface-subcard,
.surface-inline {
  border: 1px solid rgba(127, 169, 255, 0.16);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at top left, rgba(127, 169, 255, 0.08), transparent 40%),
    rgba(7, 17, 31, 0.42);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.surface-inline:hover,
.surface-inline:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #05101a;
  background: linear-gradient(135deg, #4df3ff 0%, #8df7ff 100%);
  box-shadow: 0 0 28px rgba(55, 240, 255, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: rgba(127, 169, 255, 0.22);
  background: rgba(8, 18, 31, 0.42);
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(5, 12, 20, 0.92), rgba(5, 12, 20, 0.42));
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(127, 169, 255, 0.12);
}

.header-bar,
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: clamp(124px, 14vw, 178px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a:not(.button) {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(127, 169, 255, 0.18);
  border-radius: 16px;
  background: rgba(8, 18, 31, 0.8);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-hero {
  overflow: clip;
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.hero-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-text {
  max-width: 56ch;
  margin-top: 26px;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  color: var(--muted-strong);
}

.hero-stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  max-width: 600px;
}

.trust-strip li {
  padding: 12px 15px;
  border: 1px solid rgba(127, 169, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.34);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.contact-points span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact-points strong,
.result-card strong {
  display: block;
  color: var(--text);
  font-size: 1.06rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 530px);
  min-height: clamp(400px, 44vw, 560px);
  margin-left: auto;
  border: 1px solid rgba(107, 198, 255, 0.18);
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(8, 18, 31, 0.92), rgba(6, 13, 23, 0.78)),
    radial-gradient(circle at top left, rgba(55, 240, 255, 0.08), transparent 30%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 34px 100px rgba(1, 8, 16, 0.46);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(55, 240, 255, 0.18), rgba(55, 240, 255, 0) 62%),
    conic-gradient(
      from 180deg,
      rgba(55, 240, 255, 0) 0deg,
      rgba(55, 240, 255, 0.12) 110deg,
      rgba(115, 169, 255, 0.3) 190deg,
      rgba(55, 240, 255, 0) 360deg
    );
  filter: blur(26px);
  opacity: 0.7;
  animation: heroSpin 20s linear infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(135deg, rgba(55, 240, 255, 0.06), transparent 45%);
  pointer-events: none;
}

.hero-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(127, 169, 255, 0.18);
  transform: translate(-50%, -50%);
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #c4fcff 0%, #37f0ff 48%, rgba(55, 240, 255, 0) 76%);
  box-shadow: 0 0 18px rgba(55, 240, 255, 0.5);
}

.hero-orbit-outer {
  width: min(84%, 430px);
  aspect-ratio: 1;
  animation: heroSpin 24s linear infinite;
}

.hero-orbit-middle {
  width: min(60%, 310px);
  aspect-ratio: 1;
  border-color: rgba(115, 169, 255, 0.22);
  animation: heroSpinReverse 17s linear infinite;
}

.hero-orbit-middle::after {
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  right: -5px;
  background: radial-gradient(circle, #f8fdff 0%, #73a9ff 50%, rgba(115, 169, 255, 0) 78%);
  box-shadow: 0 0 18px rgba(115, 169, 255, 0.38);
}

.hero-orbit-inner {
  width: min(37%, 190px);
  aspect-ratio: 1;
  border-color: rgba(99, 238, 199, 0.22);
  animation: heroSpin 12s linear infinite;
}

.hero-orbit-inner::after {
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  right: -4px;
  background: radial-gradient(circle, #f6fffb 0%, #63eec7 50%, rgba(99, 238, 199, 0) 78%);
  box-shadow: 0 0 16px rgba(99, 238, 199, 0.36);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-a {
  top: 12%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: rgba(55, 240, 255, 0.2);
}

.hero-glow-b {
  right: 14%;
  bottom: 12%;
  width: 140px;
  height: 140px;
  background: rgba(115, 169, 255, 0.18);
}

.hero-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(290px, calc(100% - 92px));
  padding: 26px 24px;
  border: 1px solid rgba(127, 169, 255, 0.18);
  border-radius: 28px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(180deg, rgba(12, 25, 41, 0.9), rgba(7, 16, 29, 0.84)),
    radial-gradient(circle at top left, rgba(55, 240, 255, 0.08), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(3, 9, 16, 0.34);
  backdrop-filter: blur(18px);
  text-align: center;
  animation: heroCoreFloat 5.2s ease-in-out infinite;
}

.hero-core-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-core strong {
  display: block;
  font-size: clamp(1.2rem, 1.95vw, 1.56rem);
  line-height: 1.24;
}

.hero-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(127, 169, 255, 0.18);
  border-radius: 999px;
  background: rgba(9, 20, 34, 0.78);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(2, 8, 15, 0.3);
  backdrop-filter: blur(14px);
  animation: heroFloat 6.6s ease-in-out infinite;
}

.hero-chip-a {
  top: 14%;
  left: 8%;
  animation-delay: -1.2s;
}

.hero-chip-b {
  top: 20%;
  right: 10%;
  animation-delay: -2.4s;
}

.hero-chip-c {
  bottom: 17%;
  left: 11%;
  animation-delay: -0.7s;
}

.hero-chip-d {
  right: 11%;
  bottom: 22%;
  animation-delay: -3.2s;
}

.hero-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-aura-a {
  top: 56px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: rgba(55, 240, 255, 0.2);
}

.hero-aura-b {
  top: 200px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(127, 169, 255, 0.18);
}

@keyframes heroSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes heroSpinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroCoreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 8px));
  }
}

.section-moments {
  padding-top: clamp(42px, 6vw, 74px);
}

.moments-grid,
.method-grid,
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--content-gap);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--content-gap);
}

.moment-card,
.difference-card,
.method-card,
.result-card,
.service-card,
.founder-card,
.contact-form {
  padding: 26px;
}

.moment-card,
.method-card,
.difference-card,
.result-card,
.service-card,
.founder-card,
.faq-item {
  will-change: transform;
}

.moment-card:hover,
.moment-card:focus-within,
.method-card:hover,
.method-card:focus-within,
.difference-card:hover,
.difference-card:focus-within,
.result-card:hover,
.result-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.founder-card:hover,
.founder-card:focus-within,
.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-6px);
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.15),
    0 26px 72px rgba(1, 8, 16, 0.4);
  border-color: rgba(88, 230, 255, 0.26);
}

.moments-grid .moment-card:nth-child(1) {
  --card-tint: rgba(55, 240, 255, 0.1);
  --card-edge: rgba(55, 240, 255, 0.28);
}

.moments-grid .moment-card:nth-child(2) {
  --card-tint: rgba(115, 169, 255, 0.11);
  --card-edge: rgba(115, 169, 255, 0.28);
}

.moments-grid .moment-card:nth-child(3) {
  --card-tint: rgba(99, 238, 199, 0.1);
  --card-edge: rgba(99, 238, 199, 0.28);
}

.moment-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
}

.moment-card p,
.method-card p,
.founder-card p,
.difference-card li {
  margin-top: 14px;
}

.section-story {
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.36));
}

.story-grid {
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.difference-board {
  display: grid;
  gap: 18px;
}

.difference-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.difference-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(127, 169, 255, 0.12);
  color: var(--muted-strong);
}

.difference-card-positive {
  border-color: rgba(55, 240, 255, 0.24);
  --card-tint: rgba(99, 238, 199, 0.1);
  --card-edge: rgba(99, 238, 199, 0.32);
}

.section-method {
  background:
    radial-gradient(circle at 78% 20%, rgba(55, 240, 255, 0.09), transparent 18%),
    transparent;
}

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

.method-card {
  min-height: 100%;
}

.moment-card,
.method-card {
  padding: 32px;
}

.method-grid .method-card:nth-child(1) {
  --card-tint: rgba(55, 240, 255, 0.1);
  --card-edge: rgba(55, 240, 255, 0.3);
}

.method-grid .method-card:nth-child(2) {
  --card-tint: rgba(115, 169, 255, 0.1);
  --card-edge: rgba(115, 169, 255, 0.3);
}

.method-grid .method-card:nth-child(3) {
  --card-tint: rgba(99, 238, 199, 0.1);
  --card-edge: rgba(99, 238, 199, 0.3);
}

.method-grid .method-card:nth-child(4) {
  --card-tint: rgba(240, 195, 106, 0.09);
  --card-edge: rgba(240, 195, 106, 0.28);
}

.section-services {
  padding-top: clamp(52px, 6vw, 84px);
}

.platform-band {
  --card-tint: rgba(55, 240, 255, 0.08);
  --card-edge: rgba(55, 240, 255, 0.28);
  display: grid;
  gap: 22px;
  padding: 28px;
  margin-bottom: clamp(28px, 4vw, 38px);
}

.platform-copy {
  display: grid;
  gap: 10px;
  max-width: 56ch;
}

.platform-copy p {
  color: var(--muted-strong);
  line-height: 1.72;
}

.platform-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -4px;
}

.platform-marquee::before,
.platform-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 64px;
  pointer-events: none;
}

.platform-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 18, 32, 0.98), rgba(9, 18, 32, 0));
}

.platform-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(9, 18, 32, 0.98), rgba(9, 18, 32, 0));
}

.platform-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: platformMarquee 24s linear infinite;
}

.platform-marquee:hover .platform-track {
  animation-play-state: paused;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  min-height: 88px;
  padding: 0 18px;
  border: 1px solid rgba(127, 169, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 23, 39, 0.92), rgba(7, 15, 26, 0.92)),
    radial-gradient(circle at top left, rgba(55, 240, 255, 0.08), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.platform-pill strong {
  font-size: 1rem;
  line-height: 1.25;
}

.platform-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #04121a;
}

.platform-pill-cyan .platform-mark {
  background: linear-gradient(135deg, rgba(77, 243, 255, 0.98), rgba(144, 247, 255, 0.92));
  box-shadow: 0 0 26px rgba(55, 240, 255, 0.18);
}

.platform-pill-blue .platform-mark {
  background: linear-gradient(135deg, rgba(127, 169, 255, 0.96), rgba(170, 195, 255, 0.9));
  box-shadow: 0 0 26px rgba(115, 169, 255, 0.16);
}

.platform-pill-mint .platform-mark {
  background: linear-gradient(135deg, rgba(99, 238, 199, 0.96), rgba(168, 245, 222, 0.9));
  box-shadow: 0 0 26px rgba(99, 238, 199, 0.15);
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(55, 240, 255, 0.12);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-accent {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(127, 169, 255, 0.14);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.68;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(55, 240, 255, 0.34);
}

.services-grid .service-card:nth-child(1) {
  --card-tint: rgba(55, 240, 255, 0.1);
  --card-edge: rgba(55, 240, 255, 0.28);
}

.services-grid .service-card:nth-child(2) {
  --card-tint: rgba(115, 169, 255, 0.1);
  --card-edge: rgba(115, 169, 255, 0.28);
}

.services-grid .service-card:nth-child(3) {
  --card-tint: rgba(99, 238, 199, 0.1);
  --card-edge: rgba(99, 238, 199, 0.28);
}

.services-grid .service-card:nth-child(4) {
  --card-tint: rgba(240, 195, 106, 0.08);
  --card-edge: rgba(240, 195, 106, 0.24);
}

@keyframes platformMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.section-results {
  padding-bottom: clamp(64px, 7vw, 96px);
}

.section-results .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  column-gap: clamp(24px, 4vw, 44px);
  row-gap: 10px;
  align-items: end;
  max-width: none;
}

.section-results .section-heading .eyebrow,
.section-results .section-heading h2 {
  grid-column: 1;
}

.section-results .section-heading > p:last-child {
  grid-column: 2;
  align-self: end;
  max-width: 38ch;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--content-gap);
}

.result-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  grid-column: span 1;
}

.result-card-feature {
  grid-column: 1 / -1;
  --card-tint: rgba(55, 240, 255, 0.11);
  --card-edge: rgba(55, 240, 255, 0.32);
}

.results-grid .result-card:nth-child(2) {
  --card-tint: rgba(115, 169, 255, 0.1);
  --card-edge: rgba(115, 169, 255, 0.28);
}

.results-grid .result-card:nth-child(3) {
  --card-tint: rgba(99, 238, 199, 0.1);
  --card-edge: rgba(99, 238, 199, 0.28);
}

.results-grid .result-card:nth-child(4) {
  --card-tint: rgba(240, 195, 106, 0.09);
  --card-edge: rgba(240, 195, 106, 0.26);
}

.result-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.result-intro {
  max-width: 52ch;
  color: var(--muted-strong);
  line-height: 1.75;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.result-metrics > div,
.contact-points > div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(6, 15, 27, 0.34);
  border: 1px solid rgba(127, 169, 255, 0.12);
}

.result-metrics > div:nth-child(1),
.contact-points > div:nth-child(1) {
  background:
    radial-gradient(circle at top left, rgba(55, 240, 255, 0.1), transparent 38%),
    rgba(6, 15, 27, 0.34);
}

.result-metrics > div:nth-child(2),
.contact-points > div:nth-child(2) {
  background:
    radial-gradient(circle at top left, rgba(115, 169, 255, 0.1), transparent 38%),
    rgba(6, 15, 27, 0.34);
}

.result-metrics > div:nth-child(3),
.contact-points > div:nth-child(3) {
  background:
    radial-gradient(circle at top left, rgba(99, 238, 199, 0.09), transparent 38%),
    rgba(6, 15, 27, 0.34);
}

.result-card strong {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
}

.results-note {
  margin-top: 18px;
  max-width: 64ch;
  font-size: 0.88rem;
}

.founder-card {
  min-height: 100%;
  padding: 0;
  display: grid;
  overflow: hidden;
}

.founder-photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(55, 240, 255, 0.12), transparent 42%),
    #060d16;
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 13, 22, 0) 48%, rgba(6, 13, 22, 0.16) 72%, rgba(6, 13, 22, 0.34) 100%);
  pointer-events: none;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  transition:
    filter 320ms ease,
    transform 320ms ease;
}

.founder-photo-shift {
  object-position: center 28%;
}

.founder-card:hover .founder-photo,
.founder-card:focus-within .founder-photo {
  filter: grayscale(0);
  transform: scale(1.02);
}

.founder-copy {
  padding: 22px 24px 24px;
}

.founders-grid .founder-card:nth-child(1) {
  --card-tint: rgba(55, 240, 255, 0.1);
  --card-edge: rgba(55, 240, 255, 0.3);
}

.founders-grid .founder-card:nth-child(2) {
  --card-tint: rgba(115, 169, 255, 0.1);
  --card-edge: rgba(115, 169, 255, 0.28);
}

.founders-grid .founder-card:nth-child(3) {
  --card-tint: rgba(99, 238, 199, 0.09);
  --card-edge: rgba(99, 238, 199, 0.28);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item:nth-child(1) {
  --card-tint: rgba(55, 240, 255, 0.09);
  --card-edge: rgba(55, 240, 255, 0.28);
}

.faq-item:nth-child(2) {
  --card-tint: rgba(115, 169, 255, 0.09);
  --card-edge: rgba(115, 169, 255, 0.28);
}

.faq-item:nth-child(3) {
  --card-tint: rgba(99, 238, 199, 0.08);
  --card-edge: rgba(99, 238, 199, 0.26);
}

.faq-trigger {
  position: relative;
  width: 100%;
  padding: 24px 56px 24px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.faq-trigger::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.4rem;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "-";
}

.faq-content {
  padding: 0 24px 24px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
}

.contact-copy {
  display: grid;
  gap: 18px;
  max-width: 500px;
}

.contact-points {
  --card-tint: rgba(115, 169, 255, 0.08);
  --card-edge: rgba(115, 169, 255, 0.24);
  display: grid;
  gap: 12px;
  padding: 22px;
}

.contact-form {
  --card-tint: rgba(55, 240, 255, 0.11);
  --card-edge: rgba(55, 240, 255, 0.3);
  position: relative;
  background:
    linear-gradient(180deg, rgba(17, 32, 52, 0.78), rgba(8, 17, 30, 0.92)),
    radial-gradient(circle at top left, rgba(55, 240, 255, 0.12), transparent 40%);
  backdrop-filter: blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 32px 90px rgba(1, 8, 16, 0.42);
}

.contact-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(77, 243, 255, 0), rgba(77, 243, 255, 0.95), rgba(127, 169, 255, 0.65), rgba(77, 243, 255, 0));
  pointer-events: none;
}

.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.surface-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--text);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(167, 199, 229, 0.24);
  border-radius: 16px;
  background: rgba(5, 12, 22, 0.82);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(157, 178, 200, 0.72);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(77, 243, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(77, 243, 255, 0.75),
    0 0 0 4px rgba(77, 243, 255, 0.12);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid,
.consent-field input.is-invalid {
  border-color: rgba(255, 131, 131, 0.72);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.consent-field input.is-invalid {
  outline: 2px solid rgba(255, 131, 131, 0.72);
  outline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-feedback {
  min-height: 1.5em;
  color: var(--primary);
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(127, 169, 255, 0.1);
}

.site-footer p {
  color: var(--muted);
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .story-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-visual {
    margin: 0 auto;
  }

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

  .moments-grid,
  .founders-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-results .section-heading {
    grid-template-columns: 1fr;
  }

  .section-results .section-heading > p:last-child {
    grid-column: 1;
    max-width: 54ch;
  }

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

  .result-card {
    grid-column: span 1;
  }

  .result-card-feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100vw - 32px, 1280px);
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(127, 169, 255, 0.14);
    border-radius: 24px;
    background: rgba(5, 12, 20, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
  }

  .hero-panel-grid,
  .moments-grid,
  .method-grid,
  .services-grid,
  .founders-grid,
  .field-grid,
  .result-metrics {
    grid-template-columns: 1fr;
  }

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

  .result-card,
  .result-card-feature {
    grid-column: 1 / -1;
  }

  .header-bar,
  .footer-bar {
    flex-wrap: wrap;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 1280px);
    --section-space: 72px;
  }

  .brand-logo {
    width: 124px;
  }

  h1 {
    max-width: 10.2ch;
    font-size: clamp(2rem, 10.2vw, 2.82rem);
  }

  h2 {
    font-size: clamp(1.68rem, 7.4vw, 2.28rem);
    max-width: none;
  }

  .hero-actions,
  .contact-shortcuts {
    flex-direction: column;
  }

  .button,
  .surface-inline {
    width: 100%;
  }

  .hero-panel,
  .moment-card,
  .difference-card,
  .method-card,
  .result-card,
  .service-card,
  .contact-form,
  .contact-points {
    padding: 22px;
  }

  .platform-band {
    padding: 22px;
  }

  .platform-pill {
    min-width: 188px;
    min-height: 78px;
  }

  .hero-visual {
    min-height: 320px;
    border-radius: 28px;
  }

  .hero-core {
    width: calc(100% - 56px);
    padding: 22px 18px;
  }

  .hero-core strong {
    font-size: 1.05rem;
  }

  .hero-chip {
    padding: 8px 12px;
    font-size: 0.76rem;
  }

  .moment-card,
  .method-card {
    padding: 28px;
  }

  .founder-copy {
    padding: 20px 20px 22px;
  }

  .faq-trigger,
  .faq-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
