@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap");

:root {
  --color-bg: #0b0f19;
  --color-bg-elevated: rgba(18, 24, 38, 0.84);
  --color-panel: rgba(31, 41, 55, 0.6);
  --color-panel-strong: rgba(18, 24, 38, 0.92);
  --color-border: rgba(148, 163, 184, 0.18);
  --color-text: #ffffff;
  --color-muted: #9ca3af;
  --color-soft: #e5e7eb;
  --color-blue: #2d7cff;
  --color-cyan: #00d1ff;
  --color-purple: #7c5cff;
  --shadow-panel: 0 24px 64px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 84px;
  --grid-gap: clamp(1rem, 2vw, 1.5rem);
}

html[data-theme="light"] {
  --color-bg: #f4f7fb;
  --color-bg-elevated: rgba(255, 255, 255, 0.92);
  --color-panel: rgba(255, 255, 255, 0.82);
  --color-panel-strong: rgba(255, 255, 255, 0.96);
  --color-border: rgba(100, 116, 139, 0.18);
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-soft: #0f172a;
  --shadow-panel: 0 22px 56px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 15%, rgba(45, 124, 255, 0.12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(124, 92, 255, 0.12), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(0, 209, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #0b0f19 0%, #0d1220 54%, #0a0d15 100%);
  overflow-x: hidden;
  text-wrap: pretty;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 12% 14%, rgba(45, 124, 255, 0.08), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(124, 92, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fb 52%, #e8eef8 100%);
}

body.is-nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
}

.page-shell {
  position: relative;
  padding-top: var(--header-height);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
}

.page-shell::before {
  top: -8rem;
  right: -8rem;
  background: rgba(45, 124, 255, 0.2);
}

.page-shell::after {
  bottom: -10rem;
  left: -8rem;
  background: rgba(124, 92, 255, 0.18);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(2.75rem, 4.4vw, 4.25rem) 0;
}

.section--tight {
  padding: 1.15rem 0;
}

body[data-page="home"] .section,
body[data-page="about"] .section,
body[data-page="research"] .section,
body[data-page="platform"] .section,
body[data-page="applications"] .section {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
}

body[data-page="home"] .section-heading,
body[data-page="about"] .section-heading,
body[data-page="research"] .section-heading,
body[data-page="platform"] .section-heading,
body[data-page="applications"] .section-heading {
  margin-bottom: 1.45rem;
}

body[data-page="home"] .page-intro,
body[data-page="about"] .page-intro,
body[data-page="research"] .page-intro,
body[data-page="platform"] .page-intro,
body[data-page="applications"] .page-intro {
  padding: clamp(1.35rem, 2.8vw, 2.1rem) 0;
}

body[data-page="home"] .page-intro__surface,
body[data-page="about"] .page-intro__surface,
body[data-page="research"] .page-intro__surface,
body[data-page="platform"] .page-intro__surface,
body[data-page="applications"] .page-intro__surface {
  padding: clamp(1.45rem, 2.8vw, 2.2rem);
}

body[data-page="home"] .split-grid,
body[data-page="about"] .split-grid,
body[data-page="research"] .split-grid,
body[data-page="platform"] .split-grid,
body[data-page="applications"] .split-grid,
body[data-page="home"] .two-column,
body[data-page="about"] .two-column,
body[data-page="research"] .two-column,
body[data-page="platform"] .two-column,
body[data-page="applications"] .two-column {
  gap: clamp(1rem, 1.6vw, 1.4rem);
}

body[data-page="home"] .hero {
  padding: 0;
  min-height: 100vh;
}

body[data-page="home"] .hero__surface {
  min-height: 100vh;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
}

body[data-page="home"] .hero__content,
body[data-page="home"] .hero__side,
body[data-page="home"] .metric-stack {
  gap: 0.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

h1,
.display {
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.22;
}

p {
  margin: 0;
  color: rgba(229, 231, 235, 0.84);
}

.lede,
.section-heading p {
  max-width: 44rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  color: #08111f;
  box-shadow: 0 14px 36px rgba(0, 209, 255, 0.16);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-soft);
}

.button--ghost {
  padding-inline: 0;
  min-height: auto;
  border-radius: 0;
  color: var(--color-cyan);
}

html[data-theme="light"] .button--secondary {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

html[data-theme="light"] .button--ghost {
  color: #0f172a;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(11, 15, 25, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

html[data-theme="light"] .site-header {
  background: rgba(248, 251, 255, 0.78);
  border-bottom-color: rgba(100, 116, 139, 0.12);
}

html[data-theme="light"] .site-header .brand__logo,
html[data-theme="light"] .hero__content .feature-logo--brand {
  filter: brightness(0) saturate(100%) invert(9%) sepia(18%) saturate(1110%) hue-rotate(186deg) brightness(96%) contrast(97%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: clamp(2.45rem, 3.4vw, 3.05rem);
  max-width: 13rem;
}

.brand__logo--footer {
  width: min(12.5rem, 100%);
  height: auto;
  max-width: 100%;
}

.brand--footer {
  max-width: fit-content;
}

.nav-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
}

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

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 2.7rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  transition: background 160ms ease, border-color 160ms ease;
}

.theme-toggle__track {
  position: relative;
  display: block;
  width: 2rem;
  height: 1rem;
  border-radius: 999px;
}

.theme-toggle__thumb {
  position: absolute;
  top: 0.08rem;
  left: 0.08rem;
  width: 0.84rem;
  height: 0.84rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 160ms ease;
}

html[data-theme="light"] .theme-toggle {
  background: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .theme-toggle__thumb {
  transform: translateX(0.98rem);
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.site-nav a,
.site-nav__trigger {
  position: relative;
  padding: 0.7rem 0.9rem;
  color: rgba(229, 231, 235, 0.78);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: inherit;
  border: 0;
  background: transparent;
  transition: color 160ms ease;
}

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

.site-nav a.is-active::after,
.site-nav__trigger.is-active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__trigger::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.8);
  box-shadow: 0 0 16px rgba(124, 92, 255, 0.5);
  vertical-align: middle;
}

.site-nav__trigger::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.site-nav__dropdown.is-open .site-nav__trigger::after {
  transform: rotate(-135deg) translateY(-1px);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 16rem;
  padding: 0.55rem;
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(9, 13, 23, 0.96);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 25;
}

html[data-theme="light"] .site-nav a,
html[data-theme="light"] .site-nav__trigger {
  color: rgba(15, 23, 42, 0.76);
}

html[data-theme="light"] .site-nav a:hover,
html[data-theme="light"] .site-nav a:focus-visible,
html[data-theme="light"] .site-nav a.is-active,
html[data-theme="light"] .site-nav__trigger:hover,
html[data-theme="light"] .site-nav__trigger:focus-visible,
html[data-theme="light"] .site-nav__trigger.is-active {
  color: #0f172a;
}

html[data-theme="light"] .site-nav__submenu {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.site-nav__submenu a {
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.site-nav__dropdown.is-open .site-nav__submenu,
.site-nav__dropdown:hover .site-nav__submenu,
.site-nav__dropdown:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__surface {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: clip;
  background:
    linear-gradient(140deg, rgba(17, 24, 39, 0.86), rgba(11, 15, 25, 0.92)),
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.1), transparent 40%);
  box-shadow: var(--shadow-panel);
}

.hero__surface::before,
.hero__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__surface::before {
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.12), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(45, 124, 255, 0.12), transparent 24%);
  z-index: 0;
}

.hero__surface::after {
  inset: 10% auto auto 6%;
  width: min(32vw, 20rem);
  height: min(32vw, 20rem);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 209, 255, 0.1), rgba(0, 209, 255, 0) 62%);
  filter: blur(10px);
  opacity: 0.7;
  z-index: 0;
  animation: heroPulse 12s ease-in-out infinite;
}

.hero-media {
  display: none;
}

.hero__canvas,
.page-intro__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 1;
}

.hero__surface {
  position: relative;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: none;
  -webkit-animation: none;
}

/* Slow down video playback speed */
video.hero__bg-video {
  animation-play-state: paused !important;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 25, 0.75) 0%,
    rgba(11, 15, 25, 0.65) 25%,
    rgba(11, 15, 25, 0.6) 50%,
    rgba(11, 15, 25, 0.65) 75%,
    rgba(11, 15, 25, 0.75) 100%
  );
  backdrop-filter: blur(2px);
}

.hero__bg-gradient {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__bg-gradient--top {
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 124, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
}

.hero__bg-gradient--bottom {
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.06) 0%, transparent 70%);
  filter: blur(80px);
}

.hero__grid,
.page-intro__grid,
.split-grid,
.contact-grid,
.info-grid,
.application-grid,
.research-grid,
.two-column {
  display: grid;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 100%;
}

.hero__content-wrapper {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: 42rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(45, 124, 255, 0.2);
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero__badge .feature-logo--brand {
  width: 1.3rem;
  height: 1.3rem;
}

.hero__badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[data-theme="light"] .hero__content {
  border-color: rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.97)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero__content p {
  max-width: 36rem;
}

.hero__headline-wrapper {
  position: relative;
}

.hero__headline {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__headline-main {
  display: block;
  color: var(--color-text);
}

.hero__headline-accent {
  display: block;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero__subheading {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: var(--color-cyan);
  font-weight: 600;
}

.hero__description {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: rgba(229, 231, 235, 0.8);
}

.hero__headline-tagline {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.5;
  color: var(--color-cyan);
  font-weight: 600;
  margin-top: 0.5rem;
}

.hero__tagline {
  margin: 1.5rem 0 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.6;
  color: var(--color-cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CINTENT Platform Section */
.cintent-platform {
  position: relative;
  z-index: 1;
}

.cintent-intro {
  max-width: 48rem;
  margin: 1.5rem 0 2.5rem;
}

.cintent-intro__text {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  color: rgba(229, 231, 235, 0.85);
}

.cintent-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--grid-gap);
}

.cintent-capability {
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid rgba(45, 124, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(45, 124, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cintent-capability:hover {
  border-color: rgba(45, 124, 255, 0.3);
  background: rgba(45, 124, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 124, 255, 0.08);
}

.cintent-capability__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cintent-capability h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--color-text);
}

.cintent-capability p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.75);
}

/* COMPARISON CARDS GRID - Visual Comparison */
.comparison-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: var(--grid-gap);
  margin-top: 2rem;
}

.comparison-capability {
  padding: 1.75rem;
  border: 1px solid rgba(45, 124, 255, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.06), rgba(0, 209, 255, 0.02));
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison-capability:hover {
  border-color: rgba(45, 124, 255, 0.25);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.1), rgba(0, 209, 255, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 124, 255, 0.08);
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.comparison-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.comparison-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.comparison-competitors {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.competitor {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.competitor-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(229, 231, 235, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.competitor-value {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(229, 231, 235, 0.75);
}

.cintent-advantage {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-cyan);
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.08), transparent);
}

.advantage-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.advantage-value {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 600;
}

.hero__scan-list,
.hero-chip-row,
.trust-metrics,
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Logo strip - Center alignment when styled with justify-content-center */
.logo-strip[style*="justify-content: center"] {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero__cta--primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  color: #08111f;
  box-shadow: 0 12px 32px rgba(0, 209, 255, 0.25);
}

.hero__cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 209, 255, 0.35);
}

.hero__cta--secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text);
  backdrop-filter: blur(12px);
}

.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(45, 124, 255, 0.3);
  color: var(--color-cyan);
}

.hero__cta-label {
  display: block;
}

.hero__cta-arrow {
  font-weight: 400;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero__metric-value {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-cyan);
}

.hero__metric-label {
  font-size: 0.8rem;
  color: rgba(229, 231, 235, 0.6);
  font-weight: 500;
}

.hero__scan-list span,
.hero-chip,
.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 15, 28, 0.48);
  color: rgba(229, 231, 235, 0.88);
  font-size: 0.9rem;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}

html[data-theme="light"] .hero__scan-list span,
html[data-theme="light"] .hero-chip,
html[data-theme="light"] .trust-chip {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.82);
}

.feature-logo,
.page-intro__logo {
  display: block;
  width: min(100%, 12.5rem);
  height: auto;
}

.feature-logo {
  margin-bottom: 0.9rem;
}

.page-intro__logo {
  margin-bottom: 0.6rem;
}

html[data-theme="light"] .page-intro__logo,
html[data-theme="light"] .hero__side .feature-logo:not(.feature-logo--brand) {
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    linear-gradient(180deg, rgba(7, 12, 24, 0.92), rgba(10, 18, 32, 0.96)),
    rgba(15, 23, 42, 0.94);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.hero__visual-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: flex-end;
  justify-self: end;
  align-items: flex-end;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__info-card {
  padding: 1.8rem;
  border: 1px solid rgba(45, 124, 255, 0.25);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(45, 124, 255, 0.15), rgba(0, 209, 255, 0.08)),
    rgba(12, 18, 35, 0.8);
  backdrop-filter: blur(16px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(45, 124, 255, 0.1);
  animation: slideUp 0.8s ease-out 0.2s backwards;
  max-width: 320px;
  width: 100%;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__info-logo {
  width: 1.5rem;
  height: 1.5rem;
}

.hero__info-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__info-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.8);
}

.hero__info-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: rgba(229, 231, 235, 0.75);
}

.hero__info-feature:last-child {
  margin-bottom: 0;
}

.hero__info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(0, 209, 255, 0.2);
  color: var(--color-cyan);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero__side .info-panel {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(7, 12, 24, 0.74), rgba(10, 18, 32, 0.82)),
    rgba(15, 23, 42, 0.76);
}

html[data-theme="light"] .hero__side .info-panel {
  border-color: rgba(45, 124, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 12, 24, 0.88), rgba(10, 18, 32, 0.92)),
    rgba(15, 23, 42, 0.9);
  box-shadow: 0 18px 40px rgba(3, 10, 20, 0.16);
}

html[data-theme="light"] .hero__side .info-panel p,
html[data-theme="light"] .hero__side .info-panel h3,
html[data-theme="light"] .hero__side .info-panel li,
html[data-theme="light"] .hero__side .info-panel .muted {
  color: rgba(229, 231, 235, 0.84);
}

.info-panel,
.glass-panel,
.diagram-frame,
.signal-card,
.pilot-card,
.topic-block,
.publication,
.contact-card {
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(15, 23, 42, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="light"] .info-panel,
html[data-theme="light"] .glass-panel,
html[data-theme="light"] .diagram-frame,
html[data-theme="light"] .signal-card,
html[data-theme="light"] .pilot-card,
html[data-theme="light"] .topic-block,
html[data-theme="light"] .publication,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .stack-card,
html[data-theme="light"] .domain-card,
html[data-theme="light"] .page-intro__surface,
html[data-theme="light"] .hero__surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.9);
}

.metric-stack {
  display: grid;
  gap: 0.9rem;
}

.trust-metrics {
  gap: 0.7rem;
}

.trust-chip {
  min-height: auto;
  padding: 0.6rem 0.8rem;
  font-size: 0.84rem;
  color: rgba(229, 231, 235, 0.82);
}

.metric {
  display: grid;
  gap: 0.35rem;
}

.metric strong {
  font-size: 1.8rem;
  font-weight: 700;
}

.muted {
  color: rgba(229, 231, 235, 0.64);
}

html[data-theme="light"] .muted {
  color: rgba(15, 23, 42, 0.68);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

/* STACK GRID - Application Domains (6 cards = 2×3 perfect symmetry) */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: var(--grid-gap);
}

/* ===== PILOT SECTION STYLES ===== */

/* PILOT OVERVIEW - Category explanation cards */
.pilot-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 0;
}

.pilot-overview-item {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.08), rgba(0, 209, 255, 0.05));
  border: 1px solid rgba(45, 124, 255, 0.15);
  border-radius: var(--radius);
  transition: all 220ms ease;
}

.pilot-overview-item:hover {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08));
  border-color: rgba(45, 124, 255, 0.25);
  transform: translateY(-2px);
}

.pilot-overview-item h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1.1rem;
}

.pilot-overview-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

html[data-theme="light"] .pilot-overview-item {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.06), rgba(0, 209, 255, 0.03));
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .pilot-overview-item:hover {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.1), rgba(0, 209, 255, 0.06));
  border-color: rgba(45, 124, 255, 0.3);
}

/* PILOT GRID - 6 pilots in 3×2 layout */
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: var(--grid-gap);
  margin-bottom: 2rem;
}

/* FEATURED PILOT SECTION - Full-width hero-style pilot showcase */
.featured-pilot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08));
  border: 1px solid rgba(45, 124, 255, 0.2);
  border-radius: var(--radius);
  align-items: center;
  margin-bottom: 2rem;
}

.featured-pilot-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-pilot-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.featured-pilot-meta .tag {
  display: inline-flex;
}

.badge {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  background: rgba(0, 209, 255, 0.2);
  border: 1px solid rgba(0, 209, 255, 0.4);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-cyan);
  letter-spacing: 0.5px;
}

html[data-theme="light"] .badge {
  background: rgba(45, 124, 255, 0.15);
  border-color: rgba(45, 124, 255, 0.3);
  color: #2d7cff;
}

.featured-pilot-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-top: 0.5rem;
}

.featured-pilot h2 {
  margin: 0.5rem 0;
  color: var(--color-text);
  font-size: 1.8rem;
  line-height: 1.2;
}

.featured-pilot-description {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.featured-pilot-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(45, 124, 255, 0.15);
  border-bottom: 1px solid rgba(45, 124, 255, 0.15);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-item strong {
  color: var(--color-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.detail-item span {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

html[data-theme="light"] .featured-pilot {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.08), rgba(0, 209, 255, 0.04));
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .featured-pilot-details {
  border-top-color: rgba(45, 124, 255, 0.15);
  border-bottom-color: rgba(45, 124, 255, 0.15);
}

.featured-pilot-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-pilot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.15), rgba(0, 209, 255, 0.1));
  border: 1px dashed rgba(45, 124, 255, 0.25);
  border-radius: var(--radius);
  font-size: 5rem;
}

html[data-theme="light"] .featured-pilot-placeholder {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.1), rgba(0, 209, 255, 0.05));
  border-color: rgba(45, 124, 255, 0.2);
}

/* PILOT PROCESS TIMELINE */
.pilot-process {
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.08), rgba(0, 209, 255, 0.04));
  border: 1px solid rgba(45, 124, 255, 0.15);
  border-radius: var(--radius);
}

.pilot-process h3 {
  margin: 0 0 1.5rem 0;
  color: var(--color-text);
  font-size: 1.3rem;
}

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

.timeline-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(100% + 0.75rem);
  right: -0.75rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 124, 255, 0.4), transparent);
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #2d7cff, #00d1ff);
  border-radius: 50%;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.timeline-content h4 {
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

html[data-theme="light"] .pilot-process {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.06), rgba(0, 209, 255, 0.03));
  border-color: rgba(45, 124, 255, 0.2);
}

/* PILOT CTA BOX */
.pilot-cta-box {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(45, 124, 255, 0.08));
  border: 1px solid rgba(0, 209, 255, 0.2);
  border-radius: var(--radius);
  text-align: center;
}

.pilot-cta-content h3 {
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
  font-size: 1.3rem;
}

.pilot-cta-content p {
  margin: 0;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

html[data-theme="light"] .pilot-cta-box {
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(45, 124, 255, 0.05));
  border-color: rgba(0, 209, 255, 0.2);
}

/* PUBLICATION GRID - Publications (fallback 12-column) */
.publication-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.stack-card,
.domain-card,
.pilot-card,
.publication {
  grid-column: span 1;  /* Default to 1 span instead of 3 for new fixed grids */
}

.stack-card h3,
.domain-card h3,
.pilot-card h3,
.topic-block h3,
.publication h3,
.contact-card h3 {
  margin-bottom: 0.65rem;
}

.stack-card,
.domain-card {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.info-panel,
.signal-card,
.pilot-card,
.topic-block,
.stack-card,
.domain-card,
.publication,
.contact-card,
.team-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.info-panel:hover,
.signal-card:hover,
.pilot-card:hover,
.topic-block:hover,
.stack-card:hover,
.domain-card:hover,
.publication:hover,
.contact-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 209, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(3, 10, 20, 0.22);
}

.stack-card::before,
.domain-card::before,
.pilot-card::before,
.publication::before {
  content: "";
  position: absolute;
  inset: auto 1.4rem 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.45), transparent);
}

.stack-card .tag,
.domain-card .tag,
.pilot-card .tag,
.publication .tag,
.contact-card .tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(229, 231, 235, 0.84);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-logo {
  display: block;
  width: auto;
  height: 2.4rem;
  max-width: min(100%, 11rem);
  margin-bottom: 0.95rem;
  object-fit: contain;
}

.pilot-logo--wide {
  height: clamp(2.8rem, 5vw, 4rem);
  max-width: min(100%, 18rem);
}

.split-grid,
.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
  align-items: center;
}

.layer-list,
.checklist,
.detail-list,
.principles {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.layer-list li,
.checklist li,
.detail-list li,
.principles li {
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 2px solid rgba(0, 209, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.layer-list strong,
.checklist strong,
.detail-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-soft);
}

.diagram-frame {
  overflow: hidden;
}

.diagram-frame figcaption {
  margin-top: 1rem;
  color: rgba(229, 231, 235, 0.72);
  font-size: 0.96rem;
}

html[data-theme="light"] .diagram-frame figcaption {
  color: rgba(15, 23, 42, 0.68);
}

/* MAIN PROOF GRID - Fixed 3 columns for perfect symmetry (12 domain cards = 4 rows × 3 columns) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: var(--grid-gap);
}

/* Proof card base styling */
.proof-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 124, 255, 0.12);
  background: rgba(45, 124, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.proof-card:hover {
  border-color: rgba(45, 124, 255, 0.25);
  background: rgba(45, 124, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(45, 124, 255, 0.1);
}

.proof-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--color-text);
}

.proof-card p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.8);
}

/* SPECIAL CARDS GRID - For Ask COGNI + Your Domain + Start Building (3-column layout) */
.special-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

/* CTA Fill Card - Transparent, full-height, no borders */
.cta-fill-card {
  background: transparent !important;
  border: none !important;
  padding: 1.8rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.cta-fill-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.cta-fill-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.85);
}

.cta-fill-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 180ms ease;
  cursor: pointer;
}

.cta-fill-card a:first-of-type {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  color: #08111f;
  box-shadow: 0 8px 24px rgba(0, 209, 255, 0.2);
}

.cta-fill-card a:first-of-type:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 209, 255, 0.3);
}

.cta-fill-card a:nth-of-type(2) {
  background: rgba(45, 124, 255, 0.12);
  border: 1px solid rgba(45, 124, 255, 0.25);
  color: var(--color-cyan);
}

.cta-fill-card a:nth-of-type(2):hover {
  background: rgba(45, 124, 255, 0.18);
  border-color: rgba(45, 124, 255, 0.35);
}

.cta-fill-card a:nth-of-type(3) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(229, 231, 235, 0.8);
}

.cta-fill-card a:nth-of-type(3):hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(229, 231, 235, 0.95);
}

.section--highlight {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.02), rgba(0, 209, 255, 0.01));
  border-top: 1px solid rgba(45, 124, 255, 0.1);
  border-bottom: 1px solid rgba(45, 124, 255, 0.1);
}

/* Light mode - Special cards section */
html[data-theme="light"] .section--highlight {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.04), rgba(0, 209, 255, 0.02));
  border-top: 1px solid rgba(45, 124, 255, 0.12);
  border-bottom: 1px solid rgba(45, 124, 255, 0.12);
}

/* Light mode - Proof cards in main grid */
html[data-theme="light"] .proof-card {
  border-color: rgba(45, 124, 255, 0.2);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.08), rgba(0, 209, 255, 0.04)), rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .proof-card:hover {
  border-color: rgba(45, 124, 255, 0.35);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(45, 124, 255, 0.15);
}

html[data-theme="light"] .proof-card h3 {
  color: #0f172a;
}

html[data-theme="light"] .proof-card p {
  color: #334155;
}

/* Light mode - CTA Fill Card */
html[data-theme="light"] .cta-fill-card h3 {
  color: #0f172a;
}

html[data-theme="light"] .cta-fill-card p {
  color: #334155;
}

html[data-theme="light"] .cta-fill-card a:nth-of-type(2) {
  background: rgba(45, 124, 255, 0.08);
  border-color: rgba(45, 124, 255, 0.25);
  color: #2d7cff;
}

html[data-theme="light"] .cta-fill-card a:nth-of-type(2):hover {
  background: rgba(45, 124, 255, 0.15);
  border-color: rgba(45, 124, 255, 0.35);
}

html[data-theme="light"] .cta-fill-card a:nth-of-type(3) {
  background: rgba(45, 124, 255, 0.05);
  border-color: rgba(45, 124, 255, 0.15);
  color: #334155;
}

html[data-theme="light"] .cta-fill-card a:nth-of-type(3):hover {
  background: rgba(45, 124, 255, 0.1);
  border-color: rgba(45, 124, 255, 0.25);
  color: #0f172a;
}

.custom-usecase-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.custom-usecase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.custom-usecase-card:hover {
  border-color: rgba(124, 92, 255, 0.4);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(0, 209, 255, 0.08)), rgba(12, 18, 35, 0.9);
  transform: translateY(-2px);
}

.custom-usecase-card:hover::before {
  opacity: 1;
}

.custom-usecase-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.custom-usecase-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.8);
  margin: 0.5rem 0;
}

.custom-usecase-card a {
  transition: all 180ms ease;
  border-radius: 8px;
}

.custom-usecase-card a:hover {
  transform: translateX(2px);
  background-color: rgba(124, 92, 255, 0.15) !important;
  border-color: rgba(124, 92, 255, 0.4) !important;
}

/* Light mode adjustments */
html[data-theme="light"] .custom-usecase-card {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(0, 209, 255, 0.04)), rgba(255, 255, 255, 0.9);
  border-color: rgba(124, 92, 255, 0.2);
}

html[data-theme="light"] .custom-usecase-card:hover {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.95);
  border-color: rgba(124, 92, 255, 0.3);
}

html[data-theme="light"] .custom-usecase-card h3 {
  color: #0f172a;
}

/* Proof Card (Ask COGNI) */
html[data-theme="light"] .proof-card {
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(45, 124, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .proof-card h3 {
  color: #0f172a;
}

html[data-theme="light"] .proof-card p {
  color: #334155;
}

html[data-theme="light"] .proof-card a {
  color: var(--color-cyan);
}

html[data-theme="light"] .proof-card:hover {
  border-color: rgba(0, 209, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(45, 124, 255, 0.08)), rgba(255, 255, 255, 0.98);
}

/* ===== LIGHT MODE FIXES FOR HOMEPAGE CARDS ===== */

/* CINTENT Capability Cards */
html[data-theme="light"] .cintent-capability {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .cintent-capability h3 {
  color: #0f172a;
}

html[data-theme="light"] .cintent-capability p {
  color: #334155;
}

html[data-theme="light"] .cintent-capability:hover {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.25);
}

/* Impact Cards */
html[data-theme="light"] .impact-card {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .impact-card h3 {
  color: #0f172a;
}

html[data-theme="light"] .impact-card p {
  color: #334155;
}

html[data-theme="light"] .impact-card__features {
  color: #475569;
}

html[data-theme="light"] .impact-card__features li::before {
  color: var(--color-blue);
}

html[data-theme="light"] .impact-card:hover {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

/* Comparison Capability Cards */
html[data-theme="light"] .comparison-capability {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .comparison-capability h4,
html[data-theme="light"] .comparison-header {
  color: #0f172a;
}

html[data-theme="light"] .comparison-capability p {
  color: #334155;
}

html[data-theme="light"] .competitor,
html[data-theme="light"] .cintent-advantage {
  background: rgba(45, 124, 255, 0.05);
}

html[data-theme="light"] .competitor-name,
html[data-theme="light"] .advantage-title {
  color: #0f172a;
}

html[data-theme="light"] .competitor-value,
html[data-theme="light"] .advantage-value {
  color: #334155;
}

html[data-theme="light"] .comparison-capability:hover {
  border-color: rgba(45, 124, 255, 0.2);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
}

/* AI Gap Cards */
html[data-theme="light"] .ai-gap-card {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .ai-gap-card h3,
html[data-theme="light"] .ai-gap-card h4 {
  color: #0f172a;
}

html[data-theme="light"] .ai-gap-card p {
  color: #334155;
}

html[data-theme="light"] .gap-problem,
html[data-theme="light"] .gap-header {
  color: #334155;
}

html[data-theme="light"] .ai-gap-card:hover {
  border-color: rgba(45, 124, 255, 0.2);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
}

/* Domain Cards */
html[data-theme="light"] .domain-card {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .domain-card h3 {
  color: #0f172a;
}

html[data-theme="light"] .domain-card p {
  color: #334155;
}

html[data-theme="light"] .status-badge {
  background: rgba(0, 209, 255, 0.12);
  color: var(--color-blue);
  border: 1px solid rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .domain-card:hover {
  border-color: rgba(45, 124, 255, 0.2);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
}

/* Section Headings */
html[data-theme="light"] .section-heading h2 {
  color: #0f172a;
}

html[data-theme="light"] .section-heading p {
  color: #475569;
}

html[data-theme="light"] .eyebrow {
  color: var(--color-blue);
}

/* Step Cards */
html[data-theme="light"] .steps-grid > div {
  background: linear-gradient(180deg, rgba(45, 124, 255, 0.12), rgba(45, 124, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .steps-grid h3 {
  color: #0f172a;
}

html[data-theme="light"] .steps-grid p {
  color: #475569;
}

html[data-theme="light"] .steps-grid > div:hover {
  border-color: rgba(45, 124, 255, 0.2);
  background: linear-gradient(180deg, rgba(45, 124, 255, 0.08), rgba(45, 124, 255, 0.04)), rgba(255, 255, 255, 0.98);
}

/* Comparison Row (Response vs Decision) */
html[data-theme="light"] .comparison-row > div {
  border-color: rgba(45, 124, 255, 0.2);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
}

html[data-theme="light"] .comparison-row h4 {
  color: #0f172a;
}

html[data-theme="light"] .comparison-row p {
  color: #334155;
}

/* Code Block */
html[data-theme="light"] .code-block {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(0, 209, 255, 0.08)), rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.2);
}

html[data-theme="light"] .code-block h4 {
  color: #0f172a;
}

html[data-theme="light"] .code-block code {
  color: #334155;
  background: rgba(45, 124, 255, 0.08);
}

.hero-visual,
.application-hero-media {
  padding: 0;
  overflow: hidden;
  margin: 0 -1.35rem;
  width: calc(100% + 2.7rem);
}

.hero-visual img,
.application-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.04);
  max-width: 100%;
}

.application-hero-media img {
  background: rgba(255, 255, 255, 0.94);
}

html[data-theme="light"] .hero-visual,
html[data-theme="light"] .application-hero-media,
html[data-theme="light"] .ecosystem-map {
  border-color: rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgba(45, 124, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(124, 92, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.96), rgba(10, 14, 24, 0.9));
}

html[data-theme="light"] .hero-visual img,
html[data-theme="light"] .application-hero-media img {
  background: transparent;
}

html[data-theme="light"] .hero-visual figcaption,
html[data-theme="light"] .application-hero-media figcaption {
  color: rgba(248, 250, 252, 0.86);
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.04), rgba(8, 12, 20, 0.48));
}

.hero-visual figcaption,
.application-hero-media figcaption {
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
}

.ecosystem-map {
  position: relative;
  min-height: 32rem;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 124, 255, 0.12), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(124, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.96), rgba(10, 14, 24, 0.88));
}

.ecosystem-map canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.ecosystem-map__labels,
.ecosystem-map__tooltip {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem-map__label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(11, 15, 25, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.ecosystem-map__label:hover,
.ecosystem-map__label:focus-visible {
  border-color: rgba(0, 209, 255, 0.42);
  background: rgba(10, 20, 34, 0.86);
  color: #ffffff;
  outline: none;
}

.ecosystem-map__tooltip {
  inset: auto;
  max-width: 14rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(0, 209, 255, 0.18);
  border-radius: 14px;
  background: rgba(9, 14, 24, 0.92);
  color: rgba(229, 231, 235, 0.86);
  font-size: 0.85rem;
  line-height: 1.45;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.signal-strip {
  display: grid;
  gap: 1rem;
}

.signal-card {
  display: grid;
  gap: 0.35rem;
}

.page-intro {
  position: relative;
  overflow: clip;
  padding: clamp(1.8rem, 4vw, 2.9rem) 0;
}

.page-intro__surface {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(120deg, rgba(13, 18, 32, 0.92), rgba(15, 23, 42, 0.84)),
    radial-gradient(circle at 75% 20%, rgba(124, 92, 255, 0.12), transparent 28%);
  overflow: clip;
}

.page-intro__grid {
  position: relative;
  z-index: 1;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.6fr);
}

.page-intro__meta {
  display: grid;
  gap: 0.9rem;
}

.page-intro__meta .meta-item {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.meta-title {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(229, 231, 235, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.platform-capability-card {
  min-height: 100%;
}

.logo-strip {
  gap: 1rem;
  align-items: center;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13rem;
  min-height: 6.1rem;
  min-width: 13rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 124, 255, 0.25);
  background:
    linear-gradient(135deg, rgba(45, 124, 255, 0.15) 0%, rgba(0, 209, 255, 0.1) 100%),
    rgba(30, 45, 75, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 16px rgba(45, 124, 255, 0.12);
  transition: all 0.3s ease;
}

.logo-pill:hover {
  border-color: rgba(45, 124, 255, 0.4);
  background:
    linear-gradient(135deg, rgba(45, 124, 255, 0.2) 0%, rgba(0, 209, 255, 0.15) 100%),
    rgba(35, 55, 90, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 24px rgba(45, 124, 255, 0.2);
}

.logo-pill--wide {
  width: 13rem;
}

.logo-pill--compact {
  width: 13rem;
}

html[data-theme="light"] .logo-pill {
  background:
    linear-gradient(135deg, rgba(45, 124, 255, 0.15) 0%, rgba(0, 209, 255, 0.1) 100%),
    rgba(245, 250, 255, 0.95);
  border-color: rgba(45, 124, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(45, 124, 255, 0.1), 0 4px 16px rgba(45, 124, 255, 0.1);
}

html[data-theme="light"] .logo-pill:hover {
  background:
    linear-gradient(135deg, rgba(45, 124, 255, 0.2) 0%, rgba(0, 209, 255, 0.15) 100%),
    rgba(240, 248, 255, 0.98);
  border-color: rgba(45, 124, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(45, 124, 255, 0.15), 0 8px 24px rgba(45, 124, 255, 0.15);
}

html[data-theme="light"] .logo-pill:hover {
  background:
    linear-gradient(135deg, rgba(45, 124, 255, 0.18) 0%, rgba(0, 209, 255, 0.12) 100%),
    rgba(225, 240, 255, 0.95);
}

.logo-pill__image {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  max-height: 3rem;
  filter: brightness(1.1) contrast(1.15);
  transition: filter 0.3s ease;
}

.logo-pill:hover .logo-pill__image {
  filter: brightness(1.25) contrast(1.25);
}

/* Light mode - enhance logo visibility */
html[data-theme="light"] .logo-pill__image {
  filter: brightness(0.9) contrast(1.2) saturate(1.1);
}

html[data-theme="light"] .logo-pill:hover .logo-pill__image {
  filter: brightness(1) contrast(1.3) saturate(1.2);
}

.logo-pill__image--cintent {
  height: 2.7rem;
  max-width: 8.4rem;
}

.logo-pill__image--bliss {
  height: 2.7rem;
  max-width: 8rem;
}

.logo-pill__image--nyay {
  height: 3rem;
  max-width: 5.4rem;
}

.logo-pill__image--chaxu {
  height: 3rem;
  max-width: 7.4rem;
}

.team-intro {
  max-width: 56rem;
}

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

.team-card {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(45, 124, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(15, 23, 42, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.team-card--featured {
  grid-column: span 6;
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.9), rgba(0, 209, 255, 0.82));
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.team-card__copy {
  display: grid;
  gap: 0.45rem;
}

.team-role {
  color: var(--color-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-note {
  margin-top: 1.1rem;
  color: rgba(229, 231, 235, 0.62);
  font-size: 0.96rem;
  font-style: italic;
}

.publication-grid .publication {
  grid-column: span 4;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.timeline-step:first-child {
  border-top: 0;
}

.timeline-step .stage {
  color: var(--color-cyan);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(229, 231, 235, 0.84);
  font-size: 0.88rem;
}

.contact-card,
.topic-block,
.publication,
.pilot-card {
  position: relative;
}

.topic-block .button-row,
.domain-card .button-row {
  margin-top: 0.35rem;
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.form-panel {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 23, 42, 0.8);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: rgba(229, 231, 235, 0.82);
  font-size: 0.92rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(0, 209, 255, 0.3);
  border-color: rgba(0, 209, 255, 0.4);
}

.form-status {
  min-height: 1.5rem;
  color: var(--color-cyan);
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 15% 15%, rgba(45, 124, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(9, 14, 24, 0.86), rgba(7, 11, 20, 0.96));
}

html[data-theme="light"] .site-footer {
  border-top-color: rgba(148, 163, 184, 0.16);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 1.5rem;
  padding: 1.8rem 0 1.2rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(229, 231, 235, 0.76);
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(229, 231, 235, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 209, 255, 0.32);
  background: rgba(0, 209, 255, 0.08);
  color: #ffffff;
  outline: none;
}

.footer-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: rgba(229, 231, 235, 0.6);
  font-size: 0.92rem;
}

.footer-powered {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.footer-powered__label {
  color: rgba(229, 231, 235, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-powered__logo {
  width: min(100%, 12.5rem);
  height: auto;
  opacity: 0.94;
}

html[data-theme="light"] .site-footer p,
html[data-theme="light"] .site-footer h3,
html[data-theme="light"] .site-footer li,
html[data-theme="light"] .site-footer .footer-note,
html[data-theme="light"] .site-footer .footer-powered__label {
  color: rgba(229, 231, 235, 0.78);
}

html[data-theme="light"] .site-footer .footer-links a {
  color: rgba(229, 231, 235, 0.76);
}

html[data-theme="light"] .site-footer .footer-links a:hover,
html[data-theme="light"] .site-footer .footer-links a:focus-visible {
  color: #ffffff;
}

.tab-shell {
  display: grid;
  gap: 1.5rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tab-button {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(229, 231, 235, 0.84);
}

.tab-button.is-active {
  border-color: rgba(0, 209, 255, 0.34);
  background: rgba(0, 209, 255, 0.08);
  color: #ffffff;
}

.tab-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.2rem;
}

.login-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.76);
}

.login-card h3 {
  margin-bottom: 0.8rem;
}

.login-card p + p {
  margin-top: 0.8rem;
}

.cognites-links {
  display: grid;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.grid-span-12 {
  grid-column: span 12;
}

@media (max-width: 1100px) {
  .stack-card,
  .domain-card,
  .pilot-card,
  .proof-card,
  .custom-usecase-card {
    grid-column: span 6;
  }

  .publication-grid .publication {
    grid-column: span 6;
  }

  .team-card {
    grid-column: span 6;
  }

  .team-card--featured {
    grid-column: span 12;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .split-grid,
  .page-intro__grid,
  .two-column,
  .contact-grid,
  .application-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual-area {
    align-self: center;
    justify-self: center;
    align-items: center;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem-map {
    min-height: 28rem;
  }

  /* Pilot section responsive - tablet */
  .pilot-overview {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .pilot-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .featured-pilot {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .featured-pilot-visual {
    justify-content: flex-start;
  }

  .featured-pilot-placeholder {
    width: 240px;
    height: 240px;
    font-size: 4rem;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .timeline-step:nth-child(2)::after,
  .timeline-step:nth-child(4)::after {
    display: none;
  }

  .timeline-step:nth-child(odd):not(:last-child)::after {
    left: calc(100% + 0.5rem);
    right: -0.5rem;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: clamp(2.4rem, 5vw, 3.4rem) 0;
  }

  .section-heading {
    margin-bottom: 1.8rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .site-nav__panel {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 0.25rem;
    overflow: hidden;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(11, 15, 25, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-top: 0;
    transform-origin: top center;
    transition: max-height 240ms ease, padding 240ms ease;
    pointer-events: auto;
  }

  html[data-theme="light"] .site-nav__panel {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header__actions {
    gap: 0.45rem;
  }

  .site-nav__panel.is-open {
    max-height: calc(100svh - var(--header-height) - 1rem);
    overflow-y: auto;
    padding: 0.6rem;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }

  .site-nav__trigger {
    text-align: left;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav a.is-active,
  .site-nav__trigger.is-active {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav__dropdown.is-open .site-nav__submenu {
    display: grid;
  }

  .stack-card,
  .domain-card,
  .pilot-card,
  .proof-card,
  .custom-usecase-card,
  .publication-grid .publication,
  .team-card {
    grid-column: span 12;
  }

  .field-row,
  .site-footer__grid,
  .tab-panel-grid {
    grid-template-columns: 1fr;
  }

  .platform-capability-grid {
    grid-template-columns: 1fr;
  }

  .brand__logo {
    height: clamp(2rem, 6vw, 2.45rem);
  }

  .ecosystem-map {
    min-height: 24rem;
  }

  /* Tablet-specific responsive improvements */
  .hero__bg-gradient--top {
    width: 400px;
    height: 400px;
  }

  .hero__bg-gradient--bottom {
    width: 350px;
    height: 350px;
  }

  .page-shell::before,
  .page-shell::after {
    width: 25rem;
    height: 25rem;
  }

  /* Ensure proper layout stacking */
  .comparison-row {
    grid-template-columns: 1fr;
  }

  /* Responsive container on tablets */
  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  /* Improve touch targets on tablets */
  .button,
  .hero__cta,
  a[role="button"],
  input[type="button"],
  input[type="submit"] {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 2rem 0;
  }

  .section-heading {
    gap: 0.8rem;
    margin-bottom: 1.35rem;
  }

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

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .hero__surface,
  .page-intro__surface {
    padding: 1.5rem;
  }

  .hero__surface {
    min-height: auto;
  }

  body[data-page="home"] .hero__surface {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__content-wrapper {
    gap: 1rem;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .hero__subheading {
    font-size: 1rem;
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .hero__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }

  .hero__metric-value {
    font-size: 1.3rem;
  }

  .hero__metric-label {
    font-size: 0.7rem;
  }

  .hero__cta-group {
    gap: 0.8rem;
  }

  .hero__cta {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }

  .hero__info-card {
    padding: 1.2rem;
  }

  .hero-visual,
  .application-hero-media {
    margin: 0;
    width: 100%;
  }

  .hero-visual img {
    aspect-ratio: 16 / 9;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .logo-pill,
  .logo-pill--wide,
  .logo-pill--compact {
    width: 100%;
    min-width: 0;
  }

  .hero__content,
  .page-intro__meta,
  .hero__side,
  .metric-stack,
  .signal-strip {
    gap: 0.8rem;
  }

  .theme-toggle {
    width: 2.45rem;
    height: 1.45rem;
  }

  .info-panel,
  .glass-panel,
  .diagram-frame,
  .signal-card,
  .pilot-card,
  .topic-block,
  .publication,
  .contact-card,
  .login-card {
    padding: 1.05rem;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .footer-note {
    display: grid;
    justify-content: stretch;
    gap: 0.65rem;
  }

  /* Enhanced mobile responsiveness */
  .hero__bg-gradient--top,
  .hero__bg-gradient--bottom {
    display: none;
  }

  .page-shell::before,
  .page-shell::after {
    width: 20rem;
    height: 20rem;
    top: auto;
    bottom: -6rem;
  }

  .page-shell::before {
    right: auto;
    left: -6rem;
  }

  .page-shell::after {
    bottom: 30%;
    left: auto;
    right: -6rem;
  }

  /* Ensure all images are responsive */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Responsive video */
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  /* Responsive tables */
  table {
    font-size: 0.85rem;
    overflow-x: auto;
    display: block;
  }

  /* Small screens: extra tight spacing */
  .section {
    padding: 1.5rem 0;
  }

  .hero {
    min-height: auto;
    padding: 1rem 0;
  }

  .hero__surface {
    min-height: auto;
    padding: 1rem;
  }

  .container {
    width: min(var(--container), calc(100% - 0.75rem));
  }

  /* Stack all two-column layouts on small screens */
  .info-grid,
  .logo-pill--wide,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  /* Reduce hero surface border radius on mobile */
  .hero__surface,
  .page-intro__surface {
    border-radius: 12px;
  }

  /* Responsive button sizing */
  .button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Reduce info card padding */
  .hero__info-card,
  .info-panel,
  .glass-panel {
    padding: 1rem;
  }

  /* Make badges responsive */
  .hero__badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  /* Responsive metric display */
  .hero__metrics {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero__metric-value {
    font-size: 1.2rem;
  }

  /* Reduce CTA gap */
  .hero__cta-group {
    gap: 0.6rem;
  }

  /* Responsive heading hierarchy */
  h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }

  h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  p {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }

  /* Ensure flex items wrap */
  .hero-chip-row,
  .hero__scan-list {
    flex-wrap: wrap;
  }

  /* Responsive form inputs */
  input,
  textarea,
  select {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }

  /* Ensure proper line height on mobile */
  body {
    line-height: 1.5;
  }

  /* Reduce shadow for performance */
  .hero__surface,
  .glass-panel,
  .info-panel {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   VALUE IMPACT SECTION (Post-Hero)
   ============================================ */

.value-impact {
  padding: 3.5rem 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(45, 124, 255, 0.04) 50%,
    transparent 100%);
  position: relative;
}

.impact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: var(--grid-gap);
  margin-top: 2rem;
}

.impact-card {
  padding: 1.8rem;
  background: rgba(18, 24, 38, 0.6);
  border: 1px solid rgba(45, 124, 255, 0.15);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(45, 124, 255, 0.5),
    transparent);
}

.impact-card:hover {
  border-color: rgba(0, 209, 255, 0.3);
  background: rgba(18, 24, 38, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(45, 124, 255, 0.1);
}

.impact-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  min-height: 2.5rem;
}

.impact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0 0.8rem 0;
  color: var(--color-cyan);
  font-family: "Sora", sans-serif;
}

.impact-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.8);
  margin-bottom: 1.2rem;
}

.impact-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(229, 231, 235, 0.7);
}

.impact-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.impact-card__features li::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Responsive: Mobile */
@media (max-width: 680px) {
  .value-impact {
    padding: 2.5rem 0;
  }

  .impact-cards-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    padding: 1.5rem;
  }

  .impact-card__icon {
    font-size: 2rem;
  }

  .impact-card h3 {
    font-size: 1.1rem;
  }

  .impact-card p {
    font-size: 0.9rem;
  }
}

/* Responsive: Tablet */
@media (min-width: 681px) and (max-width: 1023px) {
  .impact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-capabilities-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .ai-gap-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }

  /* Adjust proof grid for tablet */
  .proof-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }

  /* Stack grid remains 3 columns for tablet */
  .stack-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
  }

  /* Pilot grid 2 columns on tablet */
  .pilot-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  /* Special cards on tablet - 1 column stack */
  .special-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive: Mobile */
@media (max-width: 680px) {
  /* Proof grid - 1 column on mobile */
  .proof-grid {
    grid-template-columns: 1fr;
  }

  /* Stack grid - 1 column on mobile */
  .stack-grid {
    grid-template-columns: 1fr;
  }

  /* Pilot grid - 1 column on mobile */
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  /* Pilot section responsive - mobile */
  .pilot-overview {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .featured-pilot {
    gap: 1rem;
    padding: 1rem;
  }

  .featured-pilot h2 {
    font-size: 1.4rem;
  }

  .featured-pilot-logo {
    max-width: 150px;
  }

  .featured-pilot-placeholder {
    width: 100%;
    max-width: 200px;
    height: 200px;
    font-size: 3rem;
    margin: 0 auto;
  }

  .featured-pilot-details {
    padding: 0.75rem 0;
  }

  .detail-item {
    gap: 0.2rem;
  }

  .detail-item strong {
    font-size: 0.8rem;
  }

  .detail-item span {
    font-size: 0.85rem;
  }

  .pilot-process {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .pilot-process h3 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-step:not(:last-child)::after {
    display: none;
  }

  .timeline-marker {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.85rem;
  }

  .timeline-content h4 {
    font-size: 0.9rem;
  }

  .timeline-content p {
    font-size: 0.8rem;
  }

  .pilot-cta-box {
    padding: 1.5rem 1rem;
  }

  .pilot-cta-box h3 {
    font-size: 1.15rem;
  }

  .pilot-cta-box p {
    font-size: 0.9rem;
  }

  /* Special cards - 1 column stack on mobile */
  .special-cards-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Fill Card adjustments for mobile */
  .cta-fill-card {
    padding: 1.5rem !important;
  }

  .cta-fill-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .cta-fill-card a {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Comparison row on mobile */
  .comparison-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   NEW SECTIONS: PROOF OF REALITY & FEATURES
   ============================================ */

/* Proof of Reality Section */
.proof-of-reality {
  border-top: 1px solid var(--color-border);
}

.comparison-block {
  /* Base styling handled by inline styles */
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 2rem 0;
}

/* Feature Comparison Table */
.feature-comparison {
  border-top: 1px solid var(--color-border);
}

.comparison-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(229, 231, 235, 0.84);
  font-size: 0.95rem;
}

.comparison-table-wrapper thead {
  border-bottom: 2px solid var(--color-blue);
}

.comparison-table-wrapper th {
  text-align: left;
  padding: 1rem;
  color: var(--color-text);
  font-weight: 600;
  font-family: "Sora", sans-serif;
}

.comparison-table-wrapper th:last-child {
  color: var(--color-blue);
}

.comparison-table-wrapper tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.comparison-table-wrapper td {
  padding: 1rem;
  color: rgba(229, 231, 235, 0.84);
}

.comparison-table-wrapper td:first-child {
  font-weight: 500;
  color: var(--color-text);
}

.comparison-table-wrapper td:last-child {
  color: var(--color-blue);
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}

.status-badge.pilot {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  border: 1px solid #ff9800;
}

.status-badge.mvp {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.status-badge.live {
  background: rgba(45, 124, 255, 0.1);
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
}

/* Start in 5 Minutes Section */
.start-in-five {
  border-top: 1px solid var(--color-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin: 3rem 0;
}

.steps-grid > div {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(15, 23, 42, 0.78);
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.steps-grid > div:hover {
  border-color: var(--color-blue);
  background:
    linear-gradient(180deg, rgba(45, 124, 255, 0.08), rgba(45, 124, 255, 0.03)),
    rgba(15, 23, 42, 0.88);
}

.steps-grid h3 {
  color: var(--color-text);
  margin: 1rem 0;
}

.steps-grid p {
  color: rgba(229, 231, 235, 0.84);
  font-size: 0.95rem;
}

/* Code Block */
.code-block {
  background: rgba(18, 24, 38, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
  overflow-x: auto;
}

.code-block h4 {
  color: var(--color-cyan);
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  font-family: "Sora", sans-serif;
}

.code-block pre {
  color: #4caf50;
  font-size: 0.85rem;
  margin: 0;
  font-family: 'Courier New', monospace;
  line-height: 1.5;
}

.code-block code {
  color: #4caf50;
}

/* CTA Section */
.cta-section {
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 2rem;
}

.cta-section p {
  max-width: 44rem;
  margin: 0 auto 3rem;
  color: rgba(229, 231, 235, 0.84);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

/* ===== CAPABILITY EXPANDABLE CARDS ===== */
.capability-expandable {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.capability-expandable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 124, 255, 0.15);
}

.capability-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.capability-header h3 {
  margin: 0;
  flex: 1;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-text);
}

.capability-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  background: rgba(45, 124, 255, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-blue);
  font-size: 1.25rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-family: inherit;
}

.capability-toggle:hover {
  background: rgba(45, 124, 255, 0.2);
  border-color: var(--color-blue);
}

.capability-toggle[aria-expanded="true"] {
  background: rgba(45, 124, 255, 0.15);
  border-color: var(--color-blue);
}

.toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.capability-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.capability-summary {
  margin: 1rem 0 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.capability-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.capability-details:not(.hidden) {
  max-height: 500px;
  opacity: 1;
}

.capability-details p {
  margin: 0.75rem 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.capability-details p:last-child {
  margin-bottom: 0;
}

.capability-details strong {
  color: var(--color-cyan);
  font-weight: 600;
}

/* ===== COMPARISON TABLE INTERACTIVE ELEMENTS ===== */
.comparison-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(11, 15, 25, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table-wrapper th,
.comparison-table-wrapper td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.comparison-table-wrapper th {
  background: rgba(45, 124, 255, 0.08);
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-blue);
}

.comparison-table-wrapper th.cintent-column {
  background: rgba(45, 124, 255, 0.12);
  color: var(--color-blue);
}

.comparison-table-wrapper tbody tr {
  transition: background 0.3s ease;
}

.comparison-table-wrapper tbody tr:hover {
  background: rgba(45, 124, 255, 0.04);
}

.comparison-table-wrapper td.cintent-value {
  color: var(--color-blue);
  font-weight: 500;
  background: rgba(45, 124, 255, 0.05);
}

.capability-cell {
  position: relative;
}

.capability-info-toggle {
  background: none;
  border: none;
  color: var(--color-blue);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  padding: 0;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.capability-info-toggle:hover {
  color: var(--color-cyan);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  background: rgba(0, 209, 255, 0.15);
  border-radius: 50%;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.capability-info-toggle:hover .info-icon {
  background: rgba(0, 209, 255, 0.3);
  transform: scale(1.1);
}

.capability-info-popup {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(11, 15, 25, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 0.5rem;
  z-index: 10;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.capability-info-popup.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.capability-info-popup strong {
  color: var(--color-cyan);
  display: block;
  margin-bottom: 0.5rem;
}

.capability-info-popup p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(229, 231, 235, 0.84);
  line-height: 1.6;
}

/* ===== AI GAP GRID ===== */
.ai-gap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ai-gap-card {
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.08) 0%, rgba(0, 209, 255, 0.04) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.ai-gap-card:hover {
  border-color: var(--color-blue);
  box-shadow: 0 8px 24px rgba(45, 124, 255, 0.15);
  transform: translateY(-4px);
}

.gap-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.gap-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text);
}

.gap-problem {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(229, 231, 235, 0.8);
  line-height: 1.6;
}

.gap-solution h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: var(--color-cyan);
  font-weight: 600;
}

.gap-solution p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(229, 231, 235, 0.8);
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid > div {
    padding: 1.5rem;
  }

  .impact-cards-grid {
    grid-template-columns: 1fr;
  }

  .comparison-capabilities-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .ai-gap-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .code-block {
    padding: 1.5rem;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
  }

  .comparison-table-wrapper table {
    font-size: 0.85rem;
  }

  .comparison-table-wrapper th,
  .comparison-table-wrapper td {
    padding: 0.75rem;
  }
}
