@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&family=Cabin:wght@500&family=Instrument+Serif:ital@1&family=Inter:wght@500&family=Manrope:wght@400;500;600&display=swap');

:root {
  --background: 213 45% 67%;
  --foreground: 0 0% 100%;
  --primary: 0 0% 100%;
  --primary-foreground: 213 45% 67%;
  --border: 0 0% 100% / 0.2;
  --radius: 9999px;
  --font-heading: 'Instrument Serif', serif;
  --font-body: 'Barlow', sans-serif;
  --page-width: 1240px;
  --section-x: clamp(1.5rem, 3vw, 3rem);
  --section-y: clamp(6rem, 8vw, 8rem);
  --muted: rgba(255, 255, 255, 0.6);
  --muted-strong: rgba(255, 255, 255, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.01);
  --glass-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  --glass-strong-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

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

.page-shell {
  background: #000;
  overflow: visible;
}

.container {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

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

.section-header {
  margin-bottom: 3.5rem;
}

.section-title,
.hero-title,
.feature-copy h3,
.info-card h3,
.cta-title {
  font-family: var(--font-heading);
  font-style: italic;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.section-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
}

.hero-title {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.75rem, 10vw, 5.5rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.feature-copy h3,
.info-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.body-copy,
.section-copy,
.hero-copy,
.feature-copy p,
.info-card p,
.testimonial-card p,
.stat-item span,
.site-footer,
.section-badge,
.nav-pill a {
  font-family: var(--font-body);
  font-weight: 300;
}

.section-copy,
.hero-copy,
.feature-copy p,
.info-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.max-copy {
  max-width: 38rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  background: #fff;
  color: #000;
  font-weight: 600;
}

.liquid-glass,
.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  border: none;
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
}

.liquid-glass {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: var(--glass-shadow);
}

.liquid-glass-strong {
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: var(--glass-strong-shadow);
}

.liquid-glass::before,
.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
}

.liquid-glass-strong::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}

.site-header.scrolled .nav-pill,
.site-header.scrolled .brand-mark {
  background: rgba(255, 255, 255, 0.03);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.brand-core {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0%, rgba(255, 255, 255, 0.85) 28%, transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.35);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem;
  border-radius: var(--radius);
}

.nav-pill a {
  padding: 0.8rem 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-pill a:hover,
.nav-pill a:focus-visible {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: var(--radius);
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease,
    border-color 220ms ease;
}

.nav-cta {
  background: #fff;
  color: #000 !important;
  font-weight: 600 !important;
}

.nav-cta svg,
.button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  padding: 0.95rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.button-glass {
  color: #fff;
}

.button-strong {
  border-radius: var(--radius);
}

.button-ghost {
  color: #fff;
  padding-left: 0;
  padding-right: 0;
}

.button-solid {
  background: #fff;
  color: #000;
}

.hero {
  position: relative;
  min-height: 1000px;
  background: #000;
  overflow: visible;
}

.hero-video {
  position: absolute;
  top: 20%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 0;
}

.hero-content,
.section-content {
  position: relative;
  z-index: 10;
}

.hero-content {
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 150px;
}

.hero-copy {
  max-width: 44rem;
  margin: 1.5rem auto 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.partners-bar {
  margin-top: auto;
  padding-top: 4rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.partner-logos span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.hero .hero-video {
  position: absolute;
  left: 50%;
  bottom: 0;
  top: auto;
  z-index: 0;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center bottom;
  transform: translateX(-50%);
  opacity: 0.78;
}

.hero-blur-pill {
  position: absolute;
  top: 215px;
  left: 50%;
  z-index: 1;
  width: min(801px, calc(100vw - 3rem));
  height: 384px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
  filter: blur(77.5px);
  pointer-events: none;
}

.hero-navbar-shell {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-navbar {
  width: min(100%, 1440px);
  min-height: 102px;
  margin: 0 auto;
  padding: 16px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-nav-left {
  display: flex;
  align-items: center;
  gap: 80px;
  min-width: 0;
}

.hero-logo {
  display: inline-flex;
  width: 134px;
  height: 25px;
  align-items: center;
  flex: 0 0 auto;
}

.hero-logo svg {
  width: 134px;
  height: 25px;
  fill: #fff;
}

.hero-logo text {
  fill: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hero-nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
}

.hero-nav-services {
  gap: 3px;
}

.hero-nav-services svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.hero-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.hero-button-signin {
  color: #171717;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d4d4d4;
}

.hero-button-primary {
  color: #fafafa;
  background: #7b39fc;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.04);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  min-height: auto;
  padding-top: 162px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 871px;
}

.hero-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-heading-line {
  margin: 0;
  color: #fff;
  font-size: 76px;
  letter-spacing: -2px;
  line-height: 1.15;
}

.hero-heading-primary {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.hero-heading-secondary {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  max-width: 613px;
  margin: 0;
  color: rgba(246, 247, 249, 0.9);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-cta-primary {
  background: #7b39fc;
  color: #fff;
}

.hero-cta-secondary {
  background: #2b2344;
  color: #f6f7f9;
}

.hero-dashboard-wrap {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.hero-dashboard-shell {
  width: min(1163px, 90vw);
  padding: 22.5px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-dashboard-panel {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(123, 57, 252, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(18, 18, 26, 0.96), rgba(8, 8, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-topbar,
.dashboard-status,
.dashboard-main-grid,
.dashboard-side-stack,
.dashboard-bottom-grid {
  display: flex;
}

.dashboard-topbar {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 24px;
}

.dashboard-status {
  align-items: center;
  gap: 10px;
  color: #f6f7f9;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7b39fc;
  box-shadow: 0 0 14px rgba(123, 57, 252, 0.9);
}

.dashboard-chip,
.dashboard-label,
.dashboard-main-card span,
.dashboard-metric-card p {
  font-family: 'Manrope', sans-serif;
}

.dashboard-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(123, 57, 252, 0.16);
  color: #e6dcff;
  font-size: 13px;
  font-weight: 500;
}

.dashboard-main-grid {
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-main-card,
.dashboard-metric-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-main-card {
  padding: 20px;
}

.dashboard-connection-card {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 260px;
}

.dashboard-side-stack {
  flex: 1;
  flex-direction: column;
  gap: 18px;
}

.dashboard-label {
  margin: 0 0 10px;
  color: rgba(246, 247, 249, 0.68);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-main-card strong,
.dashboard-metric-card strong {
  display: block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.dashboard-main-card span {
  display: block;
  margin-top: 8px;
  color: rgba(246, 247, 249, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.dashboard-shield {
  width: 104px;
  height: 104px;
  margin: 8px 0 18px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(123, 57, 252, 0.28), transparent 62%),
    linear-gradient(180deg, rgba(123, 57, 252, 0.16), rgba(255, 255, 255, 0.02));
}

.dashboard-shield-core {
  width: 54px;
  height: 54px;
  clip-path: polygon(50% 0%, 85% 14%, 85% 48%, 50% 100%, 15% 48%, 15% 14%);
  background: linear-gradient(180deg, #c6a9ff, #7b39fc);
  box-shadow: 0 0 24px rgba(123, 57, 252, 0.45);
}

.dashboard-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 18px;
}

.dashboard-metric-card {
  padding: 20px;
}

.dashboard-metric-card p {
  margin: 0 0 12px;
  color: rgba(246, 247, 249, 0.68);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-map-card {
  min-height: 146px;
}

.dashboard-map {
  position: relative;
  height: 78px;
  margin-top: 8px;
}

.dashboard-map .map-node,
.dashboard-map .map-link {
  position: absolute;
}

.dashboard-map .map-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.map-node-a {
  top: 8px;
  left: 10%;
}

.map-node-b {
  top: 26px;
  left: 36%;
}

.map-node-c {
  top: 12px;
  right: 32%;
}

.map-node-d {
  bottom: 8px;
  right: 10%;
}

.dashboard-map .map-link {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(123, 57, 252, 0.1), rgba(123, 57, 252, 0.95), rgba(123, 57, 252, 0.1));
}

.map-link-a {
  top: 12px;
  left: 12%;
  width: 28%;
  transform: rotate(18deg);
}

.map-link-b {
  top: 28px;
  left: 39%;
  width: 25%;
  transform: rotate(-14deg);
}

.map-link-c {
  top: 26px;
  left: 64%;
  width: 18%;
  transform: rotate(22deg);
}

.video-section {
  position: relative;
  min-height: 700px;
}

.video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.desaturated {
  filter: saturate(0);
}

.section-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.section-fade-top {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}

.section-fade-bottom {
  bottom: 0;
  background: linear-gradient(to bottom, transparent, #000);
}

.section-center {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.process-section .section-content,
.cta-section .section-content {
  min-height: 700px;
}

.features-chess .section-title,
.features-grid .section-title,
.testimonials .section-title {
  max-width: 14ch;
}

.section-center-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.feature-row + .feature-row {
  margin-top: 2rem;
}

.feature-row-reverse {
  flex-direction: row-reverse;
}

.feature-copy,
.feature-media {
  flex: 1 1 50%;
}

.feature-copy p {
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.feature-media {
  min-height: 420px;
  border-radius: 1.5rem;
  padding: 1rem;
}

.feature-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 388px;
  border-radius: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.feature-visual-map,
.feature-visual-shield {
  display: grid;
  place-items: center;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 92%);
}

.map-node,
.map-link,
.map-pulse {
  position: absolute;
}

.map-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.node-1 {
  top: 24%;
  left: 18%;
}

.node-2 {
  top: 34%;
  right: 22%;
}

.node-3 {
  top: 58%;
  left: 28%;
}

.node-4 {
  bottom: 22%;
  left: 52%;
}

.node-5 {
  bottom: 28%;
  right: 18%;
}

.map-link {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.link-1 {
  top: 26.5%;
  left: 20%;
  width: 58%;
  transform: rotate(7deg);
}

.link-2 {
  top: 57%;
  left: 30%;
  width: 27%;
  transform: rotate(17deg);
}

.link-3 {
  bottom: 29%;
  left: 53%;
  width: 24%;
  transform: rotate(-8deg);
}

.map-pulse {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 48%, transparent 70%);
  filter: blur(6px);
}

.shield-shell {
  width: 42%;
  aspect-ratio: 0.92;
  clip-path: polygon(50% 0%, 88% 14%, 88% 52%, 50% 100%, 12% 52%, 12% 14%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.08);
}

.shield-core {
  position: absolute;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.1) 70%, transparent 80%);
  filter: blur(4px);
}

.shield-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbit-1 {
  width: 68%;
  height: 44%;
}

.orbit-2 {
  width: 52%;
  height: 70%;
}

.orbit-3 {
  width: 78%;
  height: 54%;
  transform: rotate(32deg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-card {
  min-height: 260px;
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.icon-pill {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.icon-pill svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-pill svg path:first-child:last-child {
  fill: rgba(255, 255, 255, 0.12);
}

.stats-section .section-content {
  min-height: 700px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.stats-panel {
  width: 100%;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.pricing-header {
  width: 100%;
}

.pricing-header .section-title {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.pricing-panel {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-card-featured {
  background:
    radial-gradient(circle at top right, rgba(123, 57, 252, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.05);
}

.pricing-card-top,
.pricing-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-card-top {
  margin-bottom: 1.5rem;
}

.pricing-plan-label {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan-title {
  margin: 0;
  max-width: 12ch;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #f5f5f5;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-pill-featured {
  background: rgba(123, 57, 252, 0.2);
  color: #efe7ff;
}

.pricing-price-row {
  margin-bottom: 1.5rem;
  align-items: baseline;
}

.pricing-price-row strong {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.pricing-price-row span {
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.pricing-benefits {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.pricing-benefits li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.pricing-benefits li::before {
  content: '';
  position: absolute;
  top: 0.46rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #c6a9ff, #7b39fc);
  box-shadow: 0 0 14px rgba(123, 57, 252, 0.42);
}

.pricing-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Cabin', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-card-cta-featured {
  background: #7b39fc;
  box-shadow: 0 12px 30px rgba(123, 57, 252, 0.18);
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  color: #fff;
  font-size: clamp(2.75rem, 5vw, 5.5rem);
  line-height: 0.9;
}

.stat-item span {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.5rem;
}

.testimonial-card p {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.testimonial-meta strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.testimonial-meta span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 300;
}

.site-footer {
  width: 100%;
  margin-top: 8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.blur-word {
  display: inline-block;
  margin-right: 0.28em;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(50px);
  will-change: filter, opacity, transform;
}

.blur-word.is-visible {
  animation: blurReveal 0.35s ease forwards;
}

.intro-fade {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(16px);
  animation: introFade 0.9s ease forwards;
}

.intro-delay-1 {
  animation-delay: 0.15s;
}

.intro-delay-2 {
  animation-delay: 0.8s;
}

.intro-delay-3 {
  animation-delay: 1.1s;
}

@keyframes introFade {
  0% {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(16px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-4px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes blurReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(50px);
  }
  60% {
    opacity: 0.5;
    filter: blur(5px);
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero-navbar {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-heading-line {
    font-size: 62px;
  }

  .hero-dashboard-panel {
    padding: 22px;
  }

  .dashboard-main-grid,
  .dashboard-bottom-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .dashboard-side-stack {
    display: grid;
  }

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

  .feature-row,
  .feature-row-reverse {
    flex-direction: column;
  }

  .feature-copy,
  .feature-media {
    width: 100%;
  }

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

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

@media (max-width: 820px) {
  .hero-navbar {
    padding: 16px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-nav-left {
    width: 100%;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-nav-links {
    flex-wrap: wrap;
  }

  .hero-nav-actions {
    width: 100%;
  }

  .hero .hero-content {
    padding-top: 104px;
  }

  .hero-heading-line {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-blur-pill {
    top: 240px;
    height: 300px;
  }

  .site-header {
    align-items: stretch;
    padding: 0 0.75rem;
  }

  .nav-pill {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 920px;
  }

  .hero-content {
    min-height: 920px;
    padding-top: 180px;
  }

  .hero-video {
    top: 25%;
    width: 135%;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-center,
  .process-section .section-content,
  .cta-section .section-content,
  .stats-section .section-content {
    min-height: 620px;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-navbar {
    padding: 16px;
  }

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

  .hero-button {
    width: 100%;
  }

  .hero-heading-line {
    font-size: 38px;
    line-height: 1.05;
  }

  .hero-cta-row {
    width: 100%;
    flex-direction: column;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-dashboard-shell {
    width: min(1163px, calc(100vw - 1.5rem));
    padding: 14px;
  }

  .hero-dashboard-panel {
    padding: 16px;
  }

  .dashboard-main-card strong,
  .dashboard-metric-card strong {
    font-size: 22px;
  }

  .site-header {
    gap: 0.75rem;
  }

  .nav-pill {
    width: min(100%, 22rem);
    padding: 0.55rem;
    gap: 0.2rem;
  }

  .nav-pill a {
    padding: 0.7rem 0.8rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    min-height: 860px;
    padding-top: 170px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .partner-logos {
    gap: 1rem 1.75rem;
  }

  .cards-grid,
  .testimonial-grid,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 1.4rem;
  }

  .pricing-card-top,
  .pricing-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-price-row span {
    text-align: left;
  }

  .feature-media {
    min-height: 320px;
  }

  .feature-visual {
    min-height: 288px;
  }
}

@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;
  }

  .blur-word,
  .intro-fade {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
