:root {
  color-scheme: light;
  --navy: #061d3f;
  --control-blue: #0a2a66;
  --cyan: #20d6e7;
  --mint: #6ef2d4;
  --offwhite: #f8fafc;
  --ice: #e8eef5;
  --slate: #64748b;
  --violet: #8b7cff;
  --background: #f8fafc;
  --foreground: #0f172a;
  --card: #ffffff;
  --secondary: #e8eef5;
  --muted: #eef2f7;
  --border: #e2e8f0;
  --radius: 0.75rem;
  --shadow-blue: 0 18px 50px -20px rgba(10, 42, 102, 0.35);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

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

ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(226, 232, 240, 0.7);
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-main,
.footer-bottom {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}

.logo-link,
.logo {
  display: block;
}

.logo {
  width: auto;
  height: 4.25rem;
  object-fit: contain;
  user-select: none;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--slate);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.button-solid {
  background: var(--navy);
  color: var(--offwhite);
  box-shadow: 0 10px 30px -10px rgba(10, 42, 102, 0.6);
}

.button-solid:hover {
  background: var(--control-blue);
  box-shadow: 0 14px 40px -10px rgba(32, 214, 231, 0.55);
}

.button-outline {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--navy);
}

.button-outline:hover {
  border-color: var(--cyan);
  color: var(--control-blue);
}

.button-large {
  min-height: 3rem;
  padding: 0.95rem 1.5rem;
}

.button-mono {
  font-family: var(--font-mono);
  font-weight: 600;
}

.header-button {
  padding: 0.65rem 1rem;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.section-glow {
  position: relative;
  overflow: hidden;
}

.section-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1100px 500px at 78% 18%, rgba(32, 214, 231, 0.1), transparent 60%);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 1.5rem 5rem;
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
}

.pulse-dot,
.dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--cyan);
  flex: 0 0 auto;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

h1 {
  margin-top: 1.5rem;
  color: var(--navy);
  font-size: clamp(2.35rem, 8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  margin-top: 1.5rem;
  color: var(--slate);
  font-size: 1.125rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-note {
  max-width: 28rem;
  margin-top: 1.75rem;
  color: var(--slate);
  font-size: 0.875rem;
  line-height: 1.7;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual {
  position: relative;
  width: min(100%, 32.5rem);
  aspect-ratio: 1;
  margin: 0 auto;
}

.visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 45%, rgba(32, 214, 231, 0.16), transparent 62%);
}

.rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ring-spin {
  transform-origin: center;
  animation: ring-spin 24s linear infinite;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 1rem;
  box-shadow: 0 8px 30px -12px rgba(6, 29, 63, 0.25);
  backdrop-filter: blur(8px);
}

.floating-card span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.4rem;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 1.1rem;
}

.floating-card small {
  color: var(--slate);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
}

.dot-mint {
  background: var(--mint);
}

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

.dot-violet {
  background: var(--violet);
}

.card-one {
  top: 14%;
  left: 0;
}

.card-two {
  top: 8%;
  right: 0;
}

.card-three {
  bottom: 20%;
  left: -4%;
}

.card-four {
  right: 2%;
  bottom: 6%;
}

.section-border {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.section-muted {
  background: rgba(232, 238, 245, 0.4);
}

.section-inner {
  padding-block: 5rem;
}

.split-grid {
  display: grid;
  gap: 3rem;
}

.section-copy {
  max-width: 34rem;
}

.section-copy.narrow {
  max-width: 42rem;
}

.section-kicker {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-copy h2,
.for-whom h2,
.final-cta h2 {
  margin-top: 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-copy p {
  margin-top: 1.5rem;
  color: var(--slate);
  line-height: 1.75;
  text-wrap: pretty;
}

.statement-list {
  display: flex;
  flex-direction: column;
}

.statement-list li {
  display: flex;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  padding: 1.5rem 0;
}

.statement-list li:first-child {
  padding-top: 0;
}

.statement-list li:last-child {
  border-bottom: 0;
}

.statement-list > li > span {
  margin-top: 0.2rem;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.statement-list h3,
.capability-card h3,
.benefit h3 {
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 650;
}

.statement-list p,
.capability-card p,
.benefit p {
  margin-top: 0.45rem;
  color: var(--slate);
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  gap: 2.5rem 2rem;
  margin-top: 3.5rem;
}

.capability-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--card);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(32, 214, 231, 0.6);
  box-shadow: var(--shadow-blue);
}

.card-index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(100, 116, 139, 0.6);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgba(6, 29, 63, 0.05);
  color: var(--control-blue);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.capability-card:hover .icon-box {
  background: rgba(32, 214, 231, 0.12);
  color: var(--navy);
}

.capability-card h3 {
  margin-top: 1.25rem;
}

.for-whom {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--offwhite);
}

.background-mark {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 26rem;
  height: 26rem;
  opacity: 0.07;
  pointer-events: none;
}

.for-whom-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 380px at 18% 90%, rgba(32, 214, 231, 0.1), transparent 60%);
  pointer-events: none;
}

.for-whom .section-inner {
  position: relative;
}

.for-whom h2 {
  color: var(--offwhite);
}

.panel-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.audience-panel {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease;
}

.audience-panel:hover {
  border-color: rgba(32, 214, 231, 0.4);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.panel-title span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--cyan);
}

.panel-title h3 {
  color: var(--offwhite);
  font-size: 1.25rem;
  font-weight: 650;
}

.dashboard-preview {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: clamp(28rem, 52vw, 46rem);
  margin: 1.75rem -1.25rem 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dashboard-preview img {
  width: min(122%, 42rem);
  height: 100%;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.28));
}

.audience-panel p {
  margin-top: 1rem;
  color: rgba(232, 238, 245, 0.8);
  line-height: 1.75;
}

.role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.role-chips span {
  border: 1px solid rgba(32, 214, 231, 0.24);
  border-radius: 999px;
  color: rgba(232, 238, 245, 0.86);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1;
  padding: 0.45rem 0.7rem;
}

.audience-panel ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.audience-panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(232, 238, 245, 0.9);
  line-height: 1.7;
}

.audience-panel svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  color: var(--mint);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.benefit-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--border);
  margin-top: 3.5rem;
}

.benefit {
  min-height: 10rem;
  background: var(--card);
  padding: 1.75rem;
  transition: background-color 0.2s ease;
}

.benefit:hover {
  background: rgba(232, 238, 245, 0.5);
}

.benefit h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.benefit h3 span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--cyan);
  transition: transform 0.2s ease;
}

.benefit:hover h3 span {
  transform: scale(1.25);
}

.final-cta {
  overflow: hidden;
}

.cta-inner {
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.cta-symbol {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-symbol svg {
  width: 4rem;
  height: 4rem;
}

.cta-orbit {
  transform-origin: center;
  animation: ring-spin 12s linear infinite;
}

.final-cta p {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  color: var(--slate);
  font-size: 1.125rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.email-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 6vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-color: rgba(32, 214, 231, 0.5);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.5rem;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.email-link:hover {
  color: var(--control-blue);
  text-decoration-color: var(--cyan);
}

.final-cta .button {
  margin-top: 2.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  color: var(--foreground);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 3rem;
}

.footer-logo {
  width: auto;
  height: 4rem;
  object-fit: contain;
}

.footer-main p {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 0.875rem;
}

.footer-main a {
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}

.footer-bottom p {
  color: var(--slate);
  font-size: 0.75rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
}

.js .reveal.is-visible {
  animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

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

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

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .footer-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .header-inner,
  .section-inner,
  .footer-main,
  .footer-bottom {
    padding-inline: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    padding: 5rem 2rem 7rem;
  }

  .section-inner {
    padding-block: 7rem;
  }

  .split-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

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

  .capability-card.stagger-down {
    margin-top: 2rem;
  }

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

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

  .cta-inner {
    padding-block: 8rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .logo {
    height: 3.5rem;
  }

  .header-button {
    padding-inline: 0.85rem;
    font-size: 0.78rem;
  }

  .floating-card {
    padding: 0.65rem 0.75rem;
  }

  .floating-card span {
    font-size: 0.6rem;
  }

  .floating-card strong {
    font-size: 0.95rem;
  }

  .card-one {
    left: -0.3rem;
  }

  .card-two {
    right: -0.25rem;
  }

  .card-three {
    left: -0.6rem;
  }

}
