:root {
  --ink: #06152f;
  --navy: #06213c;
  --navy-2: #081b31;
  --muted: #546276;
  --line: #dbe3ef;
  --paper: #f7f9fc;
  --white: #ffffff;
  --cyan: #18c8f4;
  --blue: #315bff;
  --mint: #4de8b1;
  --coral: #ff6c67;
  --amber: #ffbe4b;
  --violet: #8657ff;
  --shadow: 0 28px 90px rgba(6, 21, 47, 0.14);
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.045) 1px, transparent 1px) 0 0 /
      20vw 20vw,
    var(--white);
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: break-word;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  color: var(--white);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(219, 227, 239, 0.75);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(6, 21, 47, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(6, 21, 47, 0.18));
  transform-origin: 50% 55%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  opacity: 1;
}

.nav-links a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--motion-ease);
  content: "";
}

.nav-links a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0 22px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button::after {
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 520ms var(--motion-ease);
  content: "";
}

.button:hover::after {
  left: 120%;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(6, 21, 47, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 132px 0 64px;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 13% 10%, rgba(134, 87, 255, 0.92), transparent 28%),
    radial-gradient(circle at 45% 12%, rgba(255, 190, 75, 0.86), transparent 26%),
    radial-gradient(circle at 84% 5%, rgba(255, 108, 103, 0.9), transparent 32%),
    radial-gradient(circle at 74% 36%, rgba(24, 200, 244, 0.68), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 78%);
  background-size:
    118% 118%,
    124% 124%,
    120% 120%,
    126% 126%,
    100% 100%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.hero-copy,
.split-copy,
.future-copy,
.section-heading,
.contact-section > div,
.intro-grid > *,
.vision-grid > * {
  min-width: 0;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  will-change: transform, opacity;
}

.hero-lede {
  max-width: 560px;
  margin-top: 28px;
  color: #173253;
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::after {
  position: absolute;
  inset: auto 8% -8% 12%;
  z-index: -1;
  height: 130px;
  border-radius: 50%;
  background: rgba(6, 21, 47, 0.16);
  filter: blur(28px);
  content: "";
}

.hero-visual img,
.dashboard-visual img,
.future-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-visual,
.future-visual {
  position: relative;
  isolation: isolate;
}

.dashboard-visual::before,
.future-visual::before {
  position: absolute;
  inset: -18%;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 28%, rgba(24, 200, 244, 0.18), transparent 34%),
    radial-gradient(circle at 22% 68%, rgba(255, 108, 103, 0.14), transparent 30%);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 900ms var(--motion-ease),
    transform 900ms var(--motion-ease);
  content: "";
}

.dashboard-visual.is-visible::before,
.future-visual.is-visible::before {
  opacity: 1;
  transform: scale(1);
}

.metric-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 239, 0.82);
  border-radius: 8px;
  background: rgba(219, 227, 239, 0.9);
  box-shadow: 0 18px 60px rgba(6, 21, 47, 0.08);
}

.metric-strip div {
  min-height: 128px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.metric-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.intro {
  padding: 88px 0 106px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 70px;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.band-light {
  position: relative;
  padding: 104px 0;
  background: var(--paper);
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.split-copy p:not(.eyebrow),
.future-copy > p,
.contact-panel p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.capability-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #19314d;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.creator-section,
.advantage-section,
.contact-section {
  padding: 112px 0;
}

.section-heading {
  max-width: 740px;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.creator-grid article,
.advantage-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(6, 21, 47, 0.06);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--motion-ease);
}

.creator-grid article::before,
.advantage-grid article::before,
.future-cards article::before,
.contact-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 38%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-46%);
  transition:
    opacity 260ms ease,
    transform 700ms var(--motion-ease);
  content: "";
  pointer-events: none;
}

.creator-grid article:hover,
.advantage-grid article:hover {
  border-color: rgba(49, 91, 255, 0.22);
  box-shadow: 0 26px 70px rgba(6, 21, 47, 0.11);
  transform: translateY(-6px);
}

.creator-grid article:hover::before,
.advantage-grid article:hover::before,
.future-cards article:hover::before,
.contact-panel:hover::before {
  opacity: 1;
  transform: translateX(46%);
}

.creator-grid strong {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.creator-grid p,
.advantage-grid p,
.future-cards p,
.vision-grid p,
.site-footer p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.future-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(24, 200, 244, 0.12), transparent 38%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.future-band::before,
.future-band::after {
  position: absolute;
  right: -10vw;
  width: 42vw;
  height: 10px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  content: "";
}

.future-band::before {
  top: 0;
}

.future-band::after {
  bottom: 0;
}

.future-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: center;
}

.future-band .eyebrow {
  color: var(--mint);
}

.future-copy > p,
.future-cards p {
  color: #bdd0e7;
}

.future-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.future-cards article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(189, 208, 231, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    transform 260ms var(--motion-ease);
}

.future-cards article:hover {
  border-color: rgba(77, 232, 177, 0.32);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

.future-visual img {
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.icon-dot {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, #ffffff 0 12%, transparent 13%),
    var(--cyan);
  box-shadow: 0 0 0 8px rgba(24, 200, 244, 0.14);
}

.icon-dot.mint {
  background:
    radial-gradient(circle at 34% 34%, #ffffff 0 12%, transparent 13%),
    var(--mint);
  box-shadow: 0 0 0 8px rgba(77, 232, 177, 0.14);
}

.icon-dot.coral {
  background:
    radial-gradient(circle at 34% 34%, #ffffff 0 12%, transparent 13%),
    var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 108, 103, 0.14);
}

.icon-dot.violet {
  background:
    radial-gradient(circle at 34% 34%, #ffffff 0 12%, transparent 13%),
    var(--violet);
  box-shadow: 0 0 0 8px rgba(134, 87, 255, 0.14);
}

.icon-dot.amber {
  background:
    radial-gradient(circle at 34% 34%, #ffffff 0 12%, transparent 13%),
    var(--amber);
  box-shadow: 0 0 0 8px rgba(255, 190, 75, 0.16);
}

.vision-band {
  padding: 104px 0;
  background:
    linear-gradient(106deg, rgba(49, 91, 255, 0.08), transparent 36%),
    linear-gradient(90deg, #f7f9fc 0%, #ffffff 100%);
}

.vision-grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr 0.65fr;
  gap: 42px;
  align-items: start;
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(77, 232, 177, 0.26), transparent 32%),
    linear-gradient(135deg, var(--ink), #102f52 64%, #0d4167);
  box-shadow: var(--shadow);
  transition:
    box-shadow 260ms ease,
    transform 260ms var(--motion-ease);
}

.contact-panel:hover {
  box-shadow: 0 34px 100px rgba(6, 21, 47, 0.22);
  transform: translateY(-4px);
}

.contact-panel p {
  margin-top: 0;
  color: #d6e5f7;
}

.contact-panel .button {
  margin-top: 28px;
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  padding: 52px 0;
  color: #bdd0e7;
  background: var(--navy-2);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.motion-ready .brand-logo {
  animation: logoBreathe 5.8s ease-in-out infinite;
}

.motion-ready .hero-bg {
  animation: gradientDrift 16s ease-in-out infinite alternate;
}

.motion-ready .hero h1 span {
  opacity: 1;
  transform: translate3d(0, 34px, 0);
  animation: heroWord 900ms var(--motion-ease) forwards;
}

.motion-ready .hero h1 span:nth-child(2) {
  animation-delay: 90ms;
}

.motion-ready .hero h1 span:nth-child(3) {
  animation-delay: 180ms;
}

.motion-ready .hero-lede,
.motion-ready .hero-actions,
.motion-ready .metric-strip {
  opacity: 1;
  transform: translate3d(0, 22px, 0);
  animation: revealUp 820ms var(--motion-ease) forwards;
}

.motion-ready .hero-lede {
  animation-delay: 260ms;
}

.motion-ready .hero-actions {
  animation-delay: 380ms;
}

.motion-ready .metric-strip {
  animation-delay: 520ms;
}

.motion-ready .hero-visual {
  animation: floatVisual 7.5s ease-in-out infinite;
}

.motion-ready .future-band::before,
.motion-ready .future-band::after {
  animation: glowRail 4.5s ease-in-out infinite alternate;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 780ms var(--motion-ease),
    transform 780ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes heroWord {
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floatVisual {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes gradientDrift {
  0% {
    background-position:
      0% 0%,
      50% 8%,
      100% 0%,
      82% 32%,
      0 0;
  }

  100% {
    background-position:
      8% 5%,
      42% 0%,
      94% 6%,
      74% 38%,
      0 0;
  }
}

@keyframes logoBreathe {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 16px rgba(6, 21, 47, 0.18));
  }

  50% {
    transform: scale(1.035);
    filter: drop-shadow(0 12px 22px rgba(24, 200, 244, 0.24));
  }
}

@keyframes glowRail {
  from {
    opacity: 0.62;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: translateX(-24px);
  }
}

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

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero-grid,
  .intro-grid,
  .split-section,
  .future-grid,
  .contact-section,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .metric-strip,
  .creator-grid,
  .advantage-grid,
  .future-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: calc(100% - 28px);
    max-width: 1160px;
  }

  .site-header {
    width: calc(100% - 20px);
    grid-template-columns: auto minmax(0, auto);
    gap: 10px;
  }

  .site-header .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    max-width: 150px;
    overflow: hidden;
    padding: 0 12px;
    font-size: 12px;
    text-overflow: ellipsis;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 45px;
    line-height: 0.98;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 31px;
    overflow-wrap: anywhere;
  }

  .hero-lede,
  .intro-copy p,
  .split-copy p,
  .future-copy p,
  .contact-panel p,
  .vision-grid p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lede,
  .intro-copy,
  .split-copy p:not(.eyebrow),
  .future-copy > p,
  .contact-panel p {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .metric-strip,
  .creator-grid,
  .advantage-grid,
  .future-cards {
    grid-template-columns: 1fr;
  }

  .metric-strip div,
  .creator-grid article,
  .advantage-grid article {
    min-height: auto;
  }

  .band-light,
  .creator-section,
  .advantage-section,
  .contact-section,
  .future-band,
  .vision-band,
  .intro {
    padding-top: 74px;
    padding-bottom: 74px;
  }

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