/* Blue Circles — marketing site (v2) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --sky-400: #38bdf8;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --max: 1180px;
  --section-y: clamp(5rem, 10vw, 7.5rem);
  --frame-inset: clamp(1.25rem, 4vw, 3.5rem);
  --header-h: 5rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--slate-600);
  background: var(--slate-950);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

/* —— Vertical frame lines (balance left + right) —— */
.frame-lines {
  pointer-events: none;
}

.frame-line {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(56, 189, 248, 0.08) 12%,
    rgba(59, 130, 246, 0.35) 45%,
    rgba(96, 165, 250, 0.35) 55%,
    rgba(56, 189, 248, 0.08) 88%,
    transparent 100%
  );
}

.frame-line--left {
  left: max(var(--frame-inset), calc(50% - var(--max) / 2 - 0.75rem));
}
.frame-line--right {
  right: max(var(--frame-inset), calc(50% - var(--max) / 2 - 0.75rem));
}

.frame-line::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky-400);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
  top: 38%;
}

@media (max-width: 640px) {
  .frame-line { opacity: 0.45; }
}

/* —— Nav —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.96);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(2, 6, 23, 1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
  min-height: var(--header-h);
}

@media (max-width: 767px) {
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-primary { padding: 0.625rem 1rem; font-size: 0.875rem; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 38px; height: 26px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand-mark { width: 44px; height: 30px; flex-shrink: 0; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.25s, background 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 14px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* —— Hero —— */
.hero {
  position: relative;
  isolation: isolate;
  z-index: 1;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: var(--header-h);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  background: var(--slate-950);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--slate-200);
}

.hero-nodes-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-nodes {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-nodes-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 42%, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.15) 45%, transparent 72%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37, 99, 235, 0.1) 0%, transparent 58%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.35) 0%, transparent 35%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-nodes-shade {
    background:
      radial-gradient(ellipse 55% 45% at 50% 42%, rgba(2, 6, 23, 0.6) 0%, rgba(2, 6, 23, 0.2) 50%, transparent 75%),
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 58%);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: clamp(2rem, 6vw, 3.5rem);
}

.hero-content {
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero-inner {
    min-height: clamp(360px, 44vh, 480px);
  }
}

@media (max-width: 899px) {
  .hero {
    min-height: auto;
    padding-bottom: clamp(3rem, 8vw, 4rem);
  }

  .hero-inner {
    min-height: 0;
    padding-block: clamp(2.5rem, 8vw, 3.5rem);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-400);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-400);
  box-shadow: 0 0 10px var(--sky-400);
}

.hero h1,
.hero-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-title {
  display: block;
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-title-line {
  display: block;
  font-size: inherit;
  color: #fff;
}

.hero-title-accent-inline {
  background: linear-gradient(120deg, #38bdf8 0%, #60a5fa 42%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-line:first-child {
  white-space: nowrap;
}

.hero-title-line--accent-block {
  display: block;
}

@media (max-width: 520px) {
  .hero-title-line:first-child {
    white-space: normal;
  }
}

.hero-title-line--accent {
  background: linear-gradient(120deg, #38bdf8 0%, #60a5fa 42%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 32px rgba(56, 189, 248, 0.4);
}

.hero-subline {
  font-size: clamp(1.0625rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  max-width: 32rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .hero-subline { max-width: 36rem; }
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 30%, var(--blue-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

@media (max-width: 540px) {
  .hero-cta .btn { width: 100%; }
  .hero-media-img { object-position: 75% center; }
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.02em;
}

.hero-note a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.hero-note a:hover {
  color: var(--sky-400);
  text-decoration-color: var(--sky-400);
}

/* —— Social proof strip —— */
.social-proof {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3.25rem);
  background: var(--slate-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.social-proof-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 56rem;
  margin-inline: auto;
}

.social-proof-slot {
  flex: 1 1 6.5rem;
  max-width: 9rem;
  height: 2rem;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  opacity: 0.55;
}

.social-proof-logos img {
  flex: 0 1 auto;
  max-height: 2rem;
  max-width: 9rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.15);
  opacity: 0.55;
  transition: opacity 0.25s;
}

.social-proof-logos img:hover {
  opacity: 0.85;
}

@media (max-width: 520px) {
  .social-proof-slot { flex: 1 1 4.5rem; max-width: 5.5rem; height: 1.5rem; }
}

/* —— Sections —— */
.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section-textured {
  background-color: var(--slate-50);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 40%);
}

#problem {
  position: relative;
  z-index: 2;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.section-header .section-intro + .section-intro {
  margin-top: 1rem;
}

.section-header--center .section-intro + .section-intro--emphasis {
  margin-top: 0.75rem;
}

#custom {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

#custom .section-header {
  margin-bottom: 0;
}

#custom .point-grid {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

#how {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

#capabilities {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

#model .section-header {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

#model .model-grid {
  margin-top: 0;
}

.section-dark {
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.75);
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 42rem;
}

.section-header--center {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.section-header--center .section-intro {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}

.section-dark .section-label { color: var(--sky-400); }

.section-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}

.section-dark .section-title { color: #fff; }

.section-title--ruled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 100%;
}

.section-title--ruled .title-rule {
  flex: 0 0 clamp(2rem, 8vw, 5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--slate-300));
}

.section-title--ruled .title-rule:last-child {
  background: linear-gradient(90deg, var(--slate-300), transparent);
}

.section-dark .section-title--ruled .title-rule {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
}

.section-dark .section-title--ruled .title-rule:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.section-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 40rem;
  color: var(--slate-600);
}

.section-dark .section-intro { color: rgba(255, 255, 255, 0.62); }

/* —— Problem split —— */
.problem-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .problem-split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

.problem-split .section-header {
  margin-bottom: 0;
}

.problem-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  background: #0f172a;
}

@media (min-width: 900px) {
  .problem-image {
    margin-top: 0.25rem;
  }
}

.problem-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) brightness(0.94);
}

.problem-image-rings {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(88%, 500px);
  height: auto;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(56, 189, 248, 0.75)) drop-shadow(0 0 90px rgba(37, 99, 235, 0.45));
}

.problem-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.35) 0%, transparent 48%),
    linear-gradient(270deg, transparent 40%, rgba(15, 23, 42, 0.25) 100%);
  pointer-events: none;
}

@media (max-width: 899px) {
  .problem-image-rings {
    right: -12%;
    width: min(85%, 360px);
  }

  .problem-image-photo {
    object-position: 38% center;
  }
}

/* —— Process —— */
.process-grid {
  display: grid;
  gap: 1.75rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.process-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(59, 130, 246, 0.25);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.process-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.65rem;
}

.process-card p { font-size: 1rem; line-height: 1.65; }

/* —— Capabilities —— */
.section-dark .container { position: relative; z-index: 1; }

.cap-depth-line {
  text-align: center;
  margin: clamp(2rem, 5vw, 3rem) auto clamp(2.5rem, 5vw, 3.5rem);
  max-width: 42rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cap-depth-line__main {
  display: block;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.cap-depth-line__sub {
  display: block;
  font-size: clamp(1.375rem, 3.5vw, 2.125rem);
  background: linear-gradient(120deg, #38bdf8 0%, #60a5fa 55%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cap-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.cap-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky-400), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.cap-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(96, 165, 250, 0.25);
  transform: translateY(-4px);
}

.cap-card:hover::before { opacity: 1; }

.cap-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.cap-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cap-card p { font-size: 0.9375rem; line-height: 1.6; }

.cap-card-detail {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* —— Industries —— */
.industry-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

.industry-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 2rem 2rem 2.25rem;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.industry-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--sky-400), var(--blue-600));
  border-radius: 4px 0 0 4px;
}

.industry-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.industry-card p { padding-left: 0.25rem; line-height: 1.65; }

/* —— Showcase band —— */
.showcase-band {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.section-intro--emphasis {
  font-weight: 600;
  color: var(--slate-700);
}

.section-dark .section-intro--emphasis {
  color: rgba(255, 255, 255, 0.88);
}

/* —— Point cards (custom work) —— */
.point-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .point-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.point-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
  border-color: rgba(59, 130, 246, 0.22);
}

.point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--blue-600);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
}

.point-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.65rem;
}

.point-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate-600);
}

/* —— Partner model —— */
.model-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .model-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.model-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1.75rem;
}

.model-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.model-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.showcase-band img {
  width: 100%;
  height: clamp(240px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.showcase-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--slate-50) 0%, transparent 18%),
    linear-gradient(to top, var(--slate-900) 0%, transparent 22%);
  pointer-events: none;
}

/* —— CTA band —— */
.cta-wrap {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: var(--section-y);
}

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 8vw, 5.5rem) clamp(2rem, 5vw, 3rem);
  background:
    url('/assets/hero-atmosphere.png?v=6') center / cover no-repeat,
    linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(37, 99, 235, 0.25);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 1.125rem;
  opacity: 0.92;
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media (max-width: 540px) {
  .cta-band-actions .btn { width: 100%; }
}

.cta-band .cta-band-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cta-band .cta-band-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-band-note {
  font-size: 0.875rem;
  opacity: 0.72;
  margin: 1.25rem auto 0;
  max-width: none;
}

.cta-band-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band-note a:hover {
  opacity: 1;
}

/* —— Footer —— */
.site-footer {
  background: var(--slate-950);
  color: rgba(255, 255, 255, 0.5);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  color: var(--blue-400);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* —— Partners page —— */
.partners-page {
  background: var(--slate-50);
}

.partners-hero {
  padding: clamp(7rem, 12vw, 9.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--slate-950);
  color: #fff;
}

.partners-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-400);
  margin-bottom: 1rem;
}

.partners-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.partners-hero-accent {
  background: linear-gradient(120deg, #38bdf8 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.partners-intro {
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.partners-regions .container {
  display: grid;
  gap: 3rem;
}

.region-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}

.region-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 1.75rem 1.75rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.region-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.22);
}

.region-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.region-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.region-status {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.region-status--active {
  color: #166534;
  background: #dcfce7;
}

.region-status--soon {
  color: #1e40af;
  background: #dbeafe;
}

.region-blurb {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
}

.region-slots {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.region-slots li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--slate-800);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--slate-100);
}

.region-slots li:last-child { border-bottom: none; }

.region-slot-placeholder {
  color: var(--slate-400);
  font-style: italic;
}

.slot-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.45);
}

.slot-dot--muted {
  background: var(--slate-300);
  box-shadow: none;
}

.region-cta {
  width: 100%;
  margin-top: auto;
}

.partners-note {
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.7;
}

.partners-note h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.partners-note p { margin-bottom: 1rem; }
.partners-note p:last-child { margin-bottom: 0; }

.partners-note a {
  color: var(--blue-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.partners-note a:hover { color: #fff; }

/* —— Find partner form page —— */
.page-form {
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: 100vh;
  background: var(--slate-50);
  background-image: radial-gradient(circle at 10% 20%, rgba(59,130,246,0.06), transparent 40%);
}

.form-wrap { max-width: 640px; margin: 0 auto; }

.form-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.form-card h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-sub {
  text-align: center;
  color: var(--slate-600);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate-800);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font: inherit;
  color: var(--slate-900);
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; gap: 1rem; }

@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-submit { width: 100%; margin-top: 0.5rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
}

.back-link:hover { color: var(--blue-600); }

.form-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--slate-400);
  text-align: center;
  line-height: 1.5;
}

/* —— Investor deck (password-gated) —— */
.investor-body {
  background: var(--slate-950);
  color: rgba(255, 255, 255, 0.82);
}

.investor-login-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
}

.investor-login-card,
.investor-admin-card {
  width: min(100%, 28rem);
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.investor-admin-card { width: min(100%, 960px); }

.investor-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.investor-login-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-400);
  margin-bottom: 0.75rem;
}

.investor-login-card h1,
.investor-admin-card h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.investor-login-lead {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.investor-login-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.investor-login-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  font: inherit;
}

.investor-login-form input:focus {
  outline: 2px solid rgba(56, 189, 248, 0.45);
  outline-offset: 2px;
}

.investor-login-foot {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.investor-login-foot a { color: var(--sky-400); }

.investor-error {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
  font-size: 0.875rem;
}

.investor-header { position: sticky; }

.investor-greeting {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sky-400);
  margin-right: 0.75rem;
}

.investor-deck {
  padding: clamp(2rem, 5vw, 4rem) 0 5rem;
}

.investor-read {
  width: min(100% - 2rem, 52rem);
}

.investor-hero {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.investor-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-400);
  margin-bottom: 1rem;
}

.investor-hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}

.investor-punch {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 1rem;
}

.investor-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.investor-section {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.investor-section--closing { border-bottom: none; padding-bottom: 0; }

.investor-section h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.investor-section h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sky-400);
  margin-bottom: 0.65rem;
}

.investor-section p {
  margin-bottom: 0.85rem;
  line-height: 1.75;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
}

.investor-section a { color: var(--sky-400); }

.investor-bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.investor-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
}

.investor-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-400);
}

.investor-bullets--compact li {
  margin-bottom: 0.5rem;
  font-size: 0.9875rem;
}

.investor-split {
  display: grid;
  gap: 1.25rem;
  margin: 1rem 0 1.25rem;
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 600px) {
  .investor-split { grid-template-columns: 1fr 1fr; }
}

.investor-callout {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-size: 1.0625rem;
}

.investor-callout--accent {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.28);
}

.investor-muted {
  font-size: 0.9375rem !important;
  color: rgba(255, 255, 255, 0.42) !important;
  margin-top: 0.5rem !important;
}

.investor-pricing {
  overflow-x: auto;
  margin: 1.25rem 0 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.investor-pricing--simple table { font-size: 0.9375rem; }

.investor-pricing table {
  width: 100%;
  border-collapse: collapse;
}

.investor-pricing th,
.investor-pricing td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.investor-pricing th {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 600;
}

.investor-pricing td { color: rgba(255, 255, 255, 0.72); }

.investor-contact {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
}

.investor-contact a { color: var(--sky-400); font-weight: 600; }

.investor-screens {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.investor-screen {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.investor-screen img {
  width: 100%;
  display: block;
  vertical-align: middle;
}

.investor-screen figcaption {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.investor-screen figcaption strong {
  color: rgba(255, 255, 255, 0.88);
}
