:root {
  --bg: #f4f7fb;
  --bg-soft: #edf3f9;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-tint: rgba(245, 249, 255, 0.96);
  --line: rgba(111, 139, 176, 0.18);
  --line-strong: rgba(73, 120, 211, 0.28);
  --text: #12283f;
  --muted: #61748b;
  --brand: #5d8ff1;
  --brand-deep: #3158c7;
  --brand-soft: rgba(93, 143, 241, 0.12);
  --teal: #2fc7b0;
  --teal-soft: rgba(47, 199, 176, 0.12);
  --coral: #ff9b7e;
  --sand: #f5eee4;
  --warning: #d49438;
  --shadow: 0 28px 80px rgba(47, 74, 112, 0.12);
  --shadow-soft: 0 14px 36px rgba(47, 74, 112, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 4%, rgba(93, 143, 241, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(47, 199, 176, 0.12), transparent 18%),
    linear-gradient(180deg, #fbfdff 0%, #f4f7fb 24%, #eef3f9 100%);
  overflow-x: hidden;
}

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

main {
  display: grid;
  gap: 18px;
  padding-bottom: 44px;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  scroll-snap-align: start;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
  animation: float 18s ease-in-out infinite alternate;
}

.orb-a {
  width: 32vw;
  height: 32vw;
  min-width: 320px;
  min-height: 320px;
  top: -10vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(93, 143, 241, 0.28), rgba(93, 143, 241, 0));
}

.orb-b {
  width: 24vw;
  height: 24vw;
  min-width: 260px;
  min-height: 260px;
  top: 9vh;
  right: -4vw;
  background: radial-gradient(circle, rgba(47, 199, 176, 0.24), rgba(47, 199, 176, 0));
  animation-duration: 21s;
}

.orb-c {
  width: 26vw;
  height: 26vw;
  min-width: 280px;
  min-height: 280px;
  bottom: 8vh;
  right: 16vw;
  background: radial-gradient(circle, rgba(255, 155, 126, 0.18), rgba(255, 155, 126, 0));
  animation-duration: 24s;
}

.mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(101, 127, 164, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 127, 164, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
}

.nav {
  padding: 28px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 16px;
}

.brand img,
.footer-brand img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.brand span,
.footer-brand span {
  display: inline-block;
  transform: translateY(0.5px);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #6a7d93;
  text-decoration: none;
  font-weight: 800;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero-shell {
  min-height: min(82vh, 840px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: 34px;
  padding: 22px 0 16px;
}

.hero-copy {
  padding-top: 8px;
}

.pill,
.section-kicker,
.band-label,
.reel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pill,
.section-kicker,
.band-label,
.reel-eyebrow {
  color: var(--brand-deep);
  background: rgba(93, 143, 241, 0.1);
  border: 1px solid rgba(93, 143, 241, 0.15);
}

.section-kicker {
  margin-bottom: 16px;
}

.reel-eyebrow {
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
strong {
  font-family: "Outfit", sans-serif;
}

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

h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 760px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 980px;
}

.subcopy {
  max-width: 720px;
  color: #3e5874;
  font-size: 20px;
  line-height: 1.68;
  margin: 0;
}

.hero-support,
.section-lead {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
  margin: 18px 0 0;
}

.hero-note {
  max-width: 740px;
  color: #6d8198;
  font-size: 14px;
  line-height: 1.64;
  margin-top: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #5f93f2, #3d68d9);
  box-shadow: 0 16px 32px rgba(61, 104, 217, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(111, 139, 176, 0.18);
  box-shadow: var(--shadow-soft);
}

.hero-tags,
.integration-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.integration-chips span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(111, 139, 176, 0.14);
  color: #4f647b;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(47, 74, 112, 0.05);
}

.hero-visual {
  position: relative;
  border-radius: 34px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 255, 0.92));
  border: 1px solid rgba(111, 139, 176, 0.14);
  box-shadow: var(--shadow);
}

.hero-image-panel {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(93, 143, 241, 0.12), transparent 30%),
    radial-gradient(circle at 80% 14%, rgba(47, 199, 176, 0.12), transparent 26%),
    linear-gradient(180deg, #fffdfb 0%, #f6f9ff 100%);
  border: 1px solid rgba(111, 139, 176, 0.12);
  overflow: hidden;
}

.hero-image-panel img {
  width: min(100%, 600px);
  object-fit: contain;
}

.hero-visual-grid,
.spec-grid,
.capability-grid {
  display: grid;
  gap: 14px;
}

.hero-visual-grid {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.metric-card,
.band-card,
.spec-card,
.capability-card,
.compare-card,
.legal-box,
.integration-band,
.reel-chip,
.reel-stage {
  border-radius: 24px;
  border: 1px solid rgba(111, 139, 176, 0.14);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-card {
  min-height: 146px;
  padding: 18px;
}

.info-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(93, 143, 241, 0.1);
  color: var(--brand-deep);
  font-weight: 700;
}

.info-card h3,
.band-card h3,
.spec-card h3,
.capability-card h3,
.compare-card h3,
.legal-box h3,
.reel-copy h3 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.info-card p,
.metric-card p,
.band-card p,
.spec-card p,
.capability-card p,
.compare-card li,
.integration-copy p,
.legal-box p,
.reel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.metric-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.metric-card h3 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 48px);
}

.section {
  position: relative;
  padding: 74px clamp(20px, 4vw, 52px);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 255, 0.8));
  border: 1px solid rgba(111, 139, 176, 0.12);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.portfolio-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.band-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.band-card-image {
  min-height: 320px;
}

.band-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-card-copy,
.spec-card,
.capability-card,
.compare-card,
.legal-box,
.integration-band {
  padding: 24px;
}

.band-card-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list,
.reel-bullets {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.72;
}

.band-card-sport {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.96));
}

.band-card-wellness {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 247, 0.96));
}

.band-card-care {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
}

.spec-grid,
.capability-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.75fr);
  gap: 18px;
  margin-top: 28px;
  align-items: start;
}

.reel-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: auto;
  background:
    radial-gradient(circle at 10% 12%, rgba(93, 143, 241, 0.08), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(47, 199, 176, 0.09), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%);
}

.reel-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  animation: scenePulse 320ms ease;
}

.reel-overlay {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: auto;
  padding: 24px 24px 20px;
  border-top: 1px solid rgba(111, 139, 176, 0.12);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(245, 249, 255, 0.98));
  box-shadow: none;
  backdrop-filter: none;
}

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

.reel-progress-meta {
  margin-top: 18px;
}

.scene-progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(93, 143, 241, 0.12);
  overflow: hidden;
}

.scene-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--brand));
}

.reel-rail {
  display: grid;
  gap: 12px;
  align-content: start;
}

.reel-chip {
  position: relative;
  padding: 18px 18px 18px 68px;
  text-align: left;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.reel-chip span {
  position: absolute;
  inset: 16px auto auto 16px;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(93, 143, 241, 0.12);
  color: var(--brand-deep);
  font-weight: 700;
}

.reel-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.reel-chip em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.reel-chip:hover,
.reel-chip.active {
  transform: translateY(-2px);
  border-color: rgba(93, 143, 241, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 255, 0.96));
  box-shadow: 0 18px 36px rgba(47, 74, 112, 0.12);
}

.capability-grid {
  margin-top: 24px;
}

.integration-band {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  gap: 18px;
  background: linear-gradient(135deg, rgba(237, 245, 255, 0.98), rgba(250, 252, 255, 0.94));
}

.integration-copy h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

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

.compare-card ul {
  margin: 0;
  padding-left: 20px;
}

.compare-card li + li {
  margin-top: 12px;
}

.compare-card-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
}

.compare-card-brand {
  border-color: rgba(47, 199, 176, 0.2);
  background: linear-gradient(180deg, rgba(239, 253, 249, 0.98), rgba(246, 255, 253, 0.96));
}

.launch {
  padding-bottom: 88px;
}

.launch-form {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.launch-form input {
  min-width: min(100%, 320px);
  flex: 1 1 320px;
  border-radius: 16px;
  border: 1px solid rgba(111, 139, 176, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.launch-message {
  min-height: 24px;
  margin-top: 14px;
  color: #2a7f6f;
}

.legal-section {
  padding-top: 32px;
}

.legal-section .legal-box {
  max-width: 980px;
  margin: 0 auto;
}

.legal-box {
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(255, 252, 246, 0.98));
  border-color: rgba(212, 148, 56, 0.18);
}

.legal-box p {
  color: #7d6948;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 0 36px;
  color: #7b8ea6;
  font-size: 14px;
  scroll-snap-align: start;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 64px, 0) scale(0.985);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms ease;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2vw, 3vh, 0) scale(1.06);
  }
}

@keyframes scenePulse {
  0% {
    opacity: 0.45;
    transform: scale(0.988);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .hero-shell,
  .band-card,
  .reel-layout,
  .integration-band,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .hero-visual-grid,
  .spec-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .band-card-image {
    min-height: 280px;
  }

}

@media (max-width: 860px) {
  html {
    scroll-snap-type: none;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-visual-grid,
  .hero-metrics,
  .spec-grid,
  .capability-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(94vw, 1220px);
  }

  .section {
    padding: 56px 18px;
    border-radius: 28px;
  }

  .hero-visual,
  .info-card,
  .band-card-copy,
  .spec-card,
  .capability-card,
  .compare-card,
  .integration-band,
  .metric-card,
  .legal-box {
    padding: 18px;
  }

  .hero-image-panel {
    min-height: 300px;
  }

  .reel-overlay {
    padding: 18px 16px 16px;
  }

  .reel-chip {
    padding-right: 16px;
  }
}
