:root {
  --ink: #0a0e17;
  --ink-soft: #1a1f2e;
  --ink-muted: #2d3348;
  --slate: #6b7394;
  --silver: #9ba3c2;
  --pearl: #c8cde0;
  --cloud: #e8ebf4;
  --white: #f5f6fa;
  --pure: #ffffff;
  --accent: #3b6cf5;
  --accent-soft: #5a86ff;
  --accent-glow: rgba(59, 108, 245, 0.12);
  --warm: #f0ece4;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--pure);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── UTILITY ──────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ─── ANIMATIONS ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes subtlePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ─────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10,14,23,0.06);
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 1px 24px rgba(10,14,23,0.06);
}
.nav__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.nav__logo-mark::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 60%);
}
.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.nav__logo-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav__logo-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
  background: var(--cloud);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 450;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--ink);
  color: var(--pure) !important;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.nav__cta:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,14,23,0.15);
}

/* ─── HERO ────────────────────────── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--pure);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  animation: subtlePulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero__content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(59,108,245,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  animation: fadeIn 0.6s ease both;
}
.hero__eyebrow svg {
  width: 14px;
  height: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
  font-weight: 400;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--ink);
  color: var(--pure);
}
.btn--primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,14,23,0.18);
}
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--cloud);
}
.btn--secondary:hover {
  border-color: var(--silver);
  background: var(--white);
  transform: translateY(-2px);
}
.btn--secondary svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.btn--accent {
  background: var(--accent);
  color: var(--pure);
}
.btn--accent:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,108,245,0.25);
}

/* ─── SOCIAL PROOF BAR ────────────── */
.proof {
  padding: 64px 0;
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
  background: var(--white);
  overflow: hidden;
}
.proof__testimonial {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 860px;
  margin: 0 auto;
}
.proof__photo-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cloud);
  box-shadow: 0 8px 32px rgba(10,14,23,0.08);
}
.proof__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(15%);
  transition: filter 0.3s ease;
}
.proof__testimonial:hover .proof__photo {
  filter: grayscale(0%);
}
.proof__content {
  flex: 1;
  position: relative;
}
.proof__quote-mark {
  width: 32px;
  height: 26px;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 12px;
}
.proof__content blockquote {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.proof__attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof__name {
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.proof__role {
  font-size: 13px;
  color: var(--slate);
  font-weight: 450;
}
.proof__detail {
  font-size: 12px;
  color: var(--silver);
  font-weight: 400;
  margin-top: 1px;
}

/* ─── PROBLEM ─────────────────────── */
.problem {
  padding: 120px 0;
  background: var(--pure);
}
.problem__inner {
  text-align: center;
}
.problem__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.problem h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.problem__body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
}
.problem__body p + p {
  margin-top: 20px;
  color: var(--ink-muted);
  font-weight: 450;
}

/* ─── SOLUTION TABS ───────────────── */
.solutions {
  padding: 100px 0 120px;
  background: var(--ink);
  color: var(--pure);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,108,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.solutions__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.solutions__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.solutions h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
/* ─── CAPABILITIES SCROLL ─────────── */
.cap-scroll {
  padding: 20px 0 100px;
  position: relative;
  z-index: 1;
}
.cap-scroll__item {
  padding: 80px 0;
}
.cap-scroll__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.cap-scroll__number {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  font-weight: 400;
  letter-spacing: -0.03em;
  padding-top: 4px;
  min-width: 90px;
}
.cap-scroll__content {
  flex: 1;
  max-width: 680px;
}
.cap-scroll__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--pure);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cap-scroll__body {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--pearl);
  line-height: 1.75;
  opacity: 0.85;
}
.cap-scroll__divider {
  padding: 0;
}
.cap-scroll__line {
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.feature__icon {
  width: 40px;
  height: 40px;
  background: rgba(59,108,245,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
}
.feature h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.65;
}
.feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(59,108,245,0.12);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-soft);
  margin-top: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ─── MID CTA ─────────────────────── */
.mid-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #2952cc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mid-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--pure);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
}
.mid-cta .btn {
  position: relative;
}

/* ─── USE CASES ───────────────────── */
.use-cases {
  padding: 120px 0;
  background: var(--white);
}
.use-cases__header {
  text-align: center;
  margin-bottom: 64px;
}
.use-cases__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.use-cases h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  border-color: rgba(59,108,245,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,14,23,0.08);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.card__item {
  padding: 14px 0;
  border-top: 1px solid var(--cloud);
}
.card__item:last-child {
  padding-bottom: 0;
}
.card__item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.card__item-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

/* ─── TRUST ───────────────────────── */
.trust {
  padding: 80px 0;
  background: var(--pure);
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}
.trust__header {
  text-align: center;
  margin-bottom: 48px;
}
.trust__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.trust h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cloud);
  transition: all 0.25s ease;
}
.trust__item:hover {
  border-color: rgba(59,108,245,0.15);
  box-shadow: 0 4px 16px rgba(10,14,23,0.04);
}
.trust__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--pure);
  letter-spacing: 0.03em;
}
.trust__badge--outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.trust__meta h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.trust__meta p {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
}

/* ─── FAQ ─────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--white);
}
.faq__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.faq h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.accordion {
  max-width: 720px;
  margin: 0 auto;
}
.accordion__item {
  border-bottom: 1px solid var(--cloud);
}
.accordion__trigger {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}
.accordion__trigger:hover { color: var(--accent); }
.accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.accordion__icon svg {
  width: 14px;
  height: 14px;
  color: var(--slate);
  transition: transform 0.3s ease;
}
.accordion__item.open .accordion__icon {
  background: var(--accent-glow);
}
.accordion__item.open .accordion__icon svg {
  transform: rotate(45deg);
  color: var(--accent);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion__item.open .accordion__body {
  max-height: 300px;
}
.accordion__content {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── FINAL CTA ───────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59,108,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta__text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--pure);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.final-cta__text p {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 8px;
}
.final-cta__reassurance {
  font-size: 13px !important;
  color: var(--slate) !important;
  margin-top: 4px;
}
.final-cta__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
.final-cta__form h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--pure);
  font-weight: 400;
  margin-bottom: 28px;
}
.form__group {
  margin-bottom: 16px;
}
.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--pearl);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form__group input,
.form__group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--pure);
  font-family: var(--sans);
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
}
.form__group input::placeholder {
  color: var(--slate);
}
.form__group input:focus,
.form__group select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(59,108,245,0.15);
}
.form__group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7394' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__group select option {
  background: var(--ink);
  color: var(--pure);
}
.form__submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--pure);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.form__submit:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(59,108,245,0.3);
}
.form__note {
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  margin-top: 12px;
}

/* ─── FOOTER ──────────────────────── */
.footer {
  padding: 40px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 13px;
  color: var(--slate);
}
.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__links a {
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--pearl); }

/* ─── RESPONSIVE ──────────────────── */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* Hamburger */
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; z-index: 101; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--ink-muted); transition: all 0.3s ease; border-radius: 2px; }
.nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__hamburger { display: flex; }
  .nav__links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--ink); flex-direction: column; padding: 24px 32px; gap: 8px; border-top: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav__links--open { display: flex; }
  .nav__links li a { color: var(--pearl); font-size: 1rem; padding: 12px 0; display: block; }
  .nav__links .nav__cta { margin-top: 8px; text-align: center; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 80px; }
  .cards { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .cap-scroll__inner { flex-direction: column; gap: 16px; }
  .cap-scroll__number { font-size: 48px; min-width: auto; }
  .cap-scroll__item { padding: 48px 0; }
  .features { grid-template-columns: 1fr; }
  .proof__logos { gap: 24px; }
  .proof__testimonial { flex-direction: column; text-align: center; gap: 28px; }
  .proof__quote-mark { margin: 0 auto 12px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; row-gap: 12px; }
}

/* ─── GET STARTED PAGE ────────────── */
.gs-hero {
  padding: calc(var(--nav-height) + 64px) 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--pure) 100%);
}
.gs-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.gs-hero__subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.gs-options { padding: 32px 0 80px; }
.gs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gs-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.gs-card:hover {
  border-color: var(--pearl);
  box-shadow: 0 8px 32px rgba(10, 14, 23, 0.06);
}
.gs-card__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.gs-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.gs-card__desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 24px;
}
.gs-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.gs-card__bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.gs-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
}
.gs-card__btn {
  align-self: stretch;
  text-align: center;
  padding: 18px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.gs-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 14, 23, 0.18);
}

/* ─── TUTORIALS ──────────────────── */
.gs-tutorials {
  padding: 80px 0;
  background: var(--white);
}
.gs-tutorials__header {
  text-align: center;
  margin-bottom: 48px;
}
.gs-tutorials__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.gs-tutorials__header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.gs-tutorials__subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
}
.gs-tutorials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gs-video-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.gs-video-card:hover {
  border-color: var(--pearl);
  box-shadow: 0 8px 32px rgba(10, 14, 23, 0.06);
}
.gs-video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--ink);
}
.gs-video-card__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.gs-video-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  padding: 24px 24px 8px;
}
.gs-video-card__desc {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 0 24px 24px;
}

/* ─── MODALS ─────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--pure);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal--form { max-width: 440px; }

.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--silver);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.modal__close:hover { color: var(--ink); }

.modal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.modal__subtitle {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 24px;
}
/* ─── DOWNLOAD MODAL ─────────────── */
.modal--download {
  max-width: 680px;
  text-align: center;
}
.dl-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.dl-subtitle {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 28px;
}
.dl-subtitle strong { color: var(--ink-muted); }
.dl-subtitle--mobile {
  display: none;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 28px;
}

.dl-primary { margin-bottom: 28px; }
.dl-section-label {
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.dl-primary-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--accent);
  color: var(--pure);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.dl-primary-btn:hover {
  background: var(--accent-soft);
  box-shadow: 0 6px 20px rgba(59, 108, 245, 0.3);
}
.dl-primary-btn__icon { display: flex; align-items: center; }
.dl-primary-btn__icon svg { width: 32px; height: 32px; }
.dl-primary-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}
.dl-primary-btn__text strong { font-size: 1.15rem; }
.dl-primary-btn__text small { font-size: 0.82rem; opacity: 0.8; }

/* ─── ANDROID NOTICE ──────────────── */
.dl-android-notice {
  text-align: center;
  padding: 24px;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 12px;
}
.dl-android-notice p {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.dl-android-notice a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.dl-android-notice a:hover { color: var(--accent-soft); }

.dl-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--silver);
  font-size: 0.85rem;
}
.dl-divider::before, .dl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cloud);
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.dl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.dl-card:hover { border-color: var(--pearl); }
.dl-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.dl-card__arrow {
  width: 16px;
  height: 16px;
  color: var(--silver);
}
.dl-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--pure);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.dl-card__btn:hover { background: var(--accent-soft); }
.dl-card__store {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--slate);
}

.dl-message {
  font-size: 0.9rem;
  color: var(--slate);
  padding-top: 20px;
  border-top: 1px solid var(--cloud);
  margin-bottom: 8px;
}
.dl-sync {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--silver);
}

/* Mobile download variants (hidden on desktop) */
.dl-mobile-divider, .dl-list, .dl-mobile-message { display: none; }

.dl-mobile-divider {
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--slate);
  font-size: 0.9rem;
}
.dl-mobile-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cloud);
}

.dl-list {
  flex-direction: column;
  border: 1px solid var(--cloud);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.dl-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
}
.dl-list__item:not(:last-child) {
  border-bottom: 1px solid var(--cloud);
}
.dl-list__item:hover { background: var(--white); }
.dl-list__icon { display: flex; color: var(--accent); }
.dl-list__icon svg { width: 22px; height: 22px; }
.dl-list__name {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
}
.dl-list__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.dl-mobile-message {
  justify-content: center;
  font-size: 0.9rem;
  color: var(--slate);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--cloud);
}

/* ─── MODAL FORM ─────────────────── */
.modal__form .form__group { margin-bottom: 16px; }
.modal__form .form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.modal__form .form__required { color: var(--accent); }
.modal__form .form__input,
.modal__form .form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cloud);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.modal__form .form__input:focus,
.modal__form .form__select:focus {
  outline: none;
  border-color: var(--accent);
}
.modal__form .form__input::placeholder { color: var(--silver); }
.modal__form .form__submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--pure);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.modal__form .form__submit:hover { background: var(--accent-soft); }
.modal__form .form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--silver);
  margin-top: 12px;
}

/* ─── GET STARTED RESPONSIVE ─────── */
@media (max-width: 768px) {
  .gs-grid { grid-template-columns: 1fr; }
  .gs-tutorials__grid { grid-template-columns: 1fr; }
  .gs-card { padding: 28px; }
  .modal { padding: 28px; margin: 16px; }

  /* Mobile download modal: swap grid for list */
  .modal--download { max-width: 100%; padding: 28px 24px; }
  .dl-title { font-size: 1.5rem; }
  .dl-section-label { display: none; }
  .dl-primary-btn__text strong { font-size: 1.05rem; }
  .dl-primary-btn__text small { font-size: 0.78rem; }
  .dl-divider, .dl-grid, .dl-message, .dl-sync { display: none !important; }
  .dl-mobile-divider, .dl-list { display: flex; }
  .dl-mobile-message { display: none; }
  .dl-subtitle { display: none; }
  .dl-subtitle--mobile { display: block; }
  .dl-primary-btn__text small { display: none; }
}

/* ─── CONTACT PAGE ───────────────── */
.contact-hero {
  padding: calc(var(--nav-height) + 64px) 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--pure) 100%);
}
.contact-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-hero__subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-section { padding: 16px 0 80px; }
.contact-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 48px;
}

/* ─── FORM FIELDS ────────────────── */
.cf-group { margin-bottom: 24px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.cf-required { color: var(--accent); }
.cf-input, .cf-select, .cf-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cloud);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--silver); }
.cf-input--small { max-width: 160px; }
.cf-textarea { resize: vertical; min-height: 120px; }
.cf-select { cursor: pointer; }

/* ─── RADIO & CHECKBOX ───────────── */
.cf-radio-grid, .cf-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-radio-item, .cf-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--cloud);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink-muted);
  transition: all 0.2s;
  background: var(--white);
}
.cf-radio-item:hover, .cf-checkbox-item:hover {
  border-color: var(--pearl);
  background: var(--pure);
}
.cf-radio-item:has(input:checked), .cf-checkbox-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}
.cf-radio-item input, .cf-checkbox-item input {
  accent-color: var(--accent);
  margin: 0;
}
.cf-radio-item--other, .cf-checkbox-item--other {
  flex-wrap: wrap;
}
.cf-other-input {
  width: 140px;
  padding: 6px 10px;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ─── SUBMIT ─────────────────────── */
.cf-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--pure);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
}
.cf-submit:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 108, 245, 0.25);
}
.cf-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--silver);
  margin-top: 16px;
}

/* ─── CONTACT RESPONSIVE ─────────── */
@media (max-width: 768px) {
  .contact-card { padding: 28px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-radio-grid, .cf-checkbox-grid { flex-direction: column; }
}

/* ─── COMPANY PAGE ───────────────── */
.co-hero {
  padding: calc(var(--nav-height) + 64px) 0 80px;
  background: linear-gradient(180deg, var(--pure) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--cloud);
}
.co-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.co-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--pure);
  border: 1px solid var(--cloud);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.co-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.co-hero__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
  max-width: 600px;
}
.co-hero__tagline {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 32px;
}
.co-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Stats grid */
.co-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.co-stat {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.co-stat__value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.2;
}
.co-stat__label {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 6px;
}

/* Shared section styles */
.co-section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.co-section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 560px;
}
.co-two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

/* Our Story */
.co-story { padding: 80px 0; }
.co-story__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.co-story__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
}

/* Why Firms Trust */
.co-why {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--pure) 0%, var(--white) 100%);
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}
.co-why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.co-why-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.co-why-card--wide { grid-column: 1 / -1; }
.co-why-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.co-why-card__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate);
}

/* Leadership */
.co-leadership { padding: 80px 0; }
.co-leadership__header { margin-bottom: 40px; }
.co-leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.co-leader {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
}
.co-leader__photo {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.co-leader__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.co-leader__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.co-leader__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
  margin-top: 12px;
}

/* Trusted by */
.co-clients {
  padding: 64px 0;
  border-top: 1px solid var(--cloud);
}

/* Final CTA */
.co-cta {
  background: var(--ink);
  padding: 80px 0;
  border-top: 1px solid var(--ink-muted);
}
.co-cta__inner { max-width: 640px; }
.co-cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--pure);
  margin-bottom: 16px;
}
.co-cta__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 32px;
}
.co-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.co-cta__btn-primary {
  background: var(--pure) !important;
  color: var(--ink) !important;
}
.co-cta__btn-primary:hover { opacity: 0.9; }
.co-cta__btn-secondary {
  border-color: var(--ink-muted) !important;
  color: var(--pure) !important;
}
.co-cta__btn-secondary:hover {
  border-color: var(--slate) !important;
  background: rgba(255,255,255,0.05) !important;
}

/* ─── COMPANY RESPONSIVE ─────────── */
@media (max-width: 768px) {
  .co-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .co-stats { grid-template-columns: 1fr 1fr; }
  .co-two-col { grid-template-columns: 1fr; gap: 24px; }
  .co-why__cards { grid-template-columns: 1fr; }
  .co-leaders { grid-template-columns: 1fr; }
  .co-leader { flex-direction: column; }
}

/* ─── AI SUITE PAGE ──────────────── */
.ai-page {
  background: var(--pure);
  color: var(--ink);
}

.ai-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 88px) 0 104px;
  background:
    linear-gradient(135deg, rgba(59, 108, 245, 0.1), transparent 42%),
    radial-gradient(circle at 88% 35%, rgba(109, 89, 255, 0.24), transparent 28%),
    #080c16;
  color: var(--pure);
}
.ai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.ai-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.ai-hero__glow--one {
  width: 460px;
  height: 460px;
  top: 20%;
  right: 5%;
  background: radial-gradient(circle, rgba(59,108,245,0.18), transparent 68%);
}
.ai-hero__glow--two {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(111,75,255,0.18), transparent 68%);
}
.ai-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.ai-hero__copy { max-width: 670px; }
.ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(151,174,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #bac8ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.ai-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75a0ff;
  box-shadow: 0 0 0 5px rgba(117,160,255,0.12);
}
.ai-hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.ai-hero h1 em {
  color: #86a9ff;
  font-weight: 400;
}
.ai-hero__lead {
  max-width: 650px;
  color: #b7c0d7;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
}
.ai-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.ai-btn--bright {
  background: var(--pure);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0,0,0,0.24);
}
.ai-btn--bright:hover {
  transform: translateY(-2px);
  background: #eef2ff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.ai-btn--bright svg { width: 17px; height: 17px; }
.ai-btn--ghost {
  border: 1px solid rgba(255,255,255,0.23);
  background: rgba(255,255,255,0.05);
  color: var(--pure);
}
.ai-btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
}
.ai-hero__note {
  margin-top: 18px;
  color: #7f8ba8;
  font-size: 13px;
}

.ai-hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.ai-orbit {
  position: absolute;
  border: 1px solid rgba(132,158,255,0.18);
  border-radius: 50%;
}
.ai-orbit--outer { width: 460px; height: 460px; }
.ai-orbit--inner {
  width: 300px;
  height: 300px;
  border-style: dashed;
  border-color: rgba(132,158,255,0.14);
  animation: aiSpin 32s linear infinite;
}
@keyframes aiSpin { to { transform: rotate(360deg); } }
.ai-hero__core {
  position: relative;
  z-index: 2;
  width: 188px;
  height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(151,174,255,0.26);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(72,105,219,0.26), rgba(255,255,255,0.04));
  box-shadow: 0 28px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ai-hero__core-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6d8fff, #8f6cff);
  color: white;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 30px rgba(92,119,255,0.35);
}
.ai-hero__core strong { font-size: 20px; }
.ai-hero__core small { margin-top: 4px; color: #93a0bd; font-size: 11px; }
.ai-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 178px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 13px;
  background: rgba(18,24,42,0.78);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ai-float-card strong,
.ai-float-card small { display: block; }
.ai-float-card strong { font-size: 13px; font-weight: 600; }
.ai-float-card small { margin-top: 1px; color: #808ca7; font-size: 10px; }
.ai-float-card__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(80,123,255,0.18);
  color: #83a5ff;
  font-weight: 700;
}
.ai-float-card__icon--red { background: rgba(246,86,109,0.14); color: #ff8396; }
.ai-float-card__icon--violet { background: rgba(160,109,255,0.15); color: #b696ff; }
.ai-float-card__icon--green { background: rgba(69,209,154,0.14); color: #5ddba8; font-size: 11px; }
.ai-float-card--conflicts { top: 52px; left: -5px; }
.ai-float-card--timeline { top: 90px; right: -14px; }
.ai-float-card--agents { bottom: 80px; left: -22px; }
.ai-float-card--mcp { right: -5px; bottom: 38px; }

.ai-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.ai-intro {
  padding: 104px 0;
  border-bottom: 1px solid var(--cloud);
  background: linear-gradient(180deg, var(--pure), #fafbff);
}
.ai-intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.ai-intro h2,
.ai-section-head h2,
.ai-beta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.ai-intro h2 {
  max-width: 500px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
}
.ai-intro__body {
  display: grid;
  gap: 18px;
  padding-top: 28px;
}
.ai-intro__body p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.78;
}

.ai-features { padding: 112px 0 64px; }
.ai-section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.ai-section-head h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
}
.ai-feature {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid var(--cloud);
}
.ai-feature--reverse { grid-template-columns: 1.22fr 0.78fr; }
.ai-feature--reverse .ai-feature__copy { order: 2; }
.ai-feature--reverse .ai-feature__media { order: 1; }
.ai-feature__copy { position: relative; }
.ai-feature__number {
  position: absolute;
  top: -38px;
  right: 0;
  color: rgba(59,108,245,0.09);
  font-family: var(--serif);
  font-size: 104px;
  line-height: 1;
  pointer-events: none;
}
.ai-feature__label {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ai-feature h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.ai-feature__copy > p:not(.ai-feature__label) {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}
.ai-feature__points {
  display: grid;
  gap: 11px;
  margin-top: 26px;
  list-style: none;
}
.ai-feature__points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
}
.ai-feature__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.ai-feature__media { min-width: 0; }
.ai-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,14,23,0.11);
  border-radius: 20px;
  background: #0a1020;
  box-shadow: 0 28px 70px rgba(10,14,23,0.16), 0 2px 8px rgba(10,14,23,0.06);
}
.ai-video-frame video {
  display: block;
  width: 100%;
  height: auto;
  background: #0a1020;
}
.ai-video-frame__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(5,9,17,0.72);
  color: rgba(255,255,255,0.88);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ai-video-caption {
  margin-top: 14px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.ai-mcp-card {
  overflow: hidden;
  border: 1px solid rgba(127,156,255,0.2);
  border-radius: 20px;
  background: #0b101d;
  color: var(--pure);
  box-shadow: 0 28px 70px rgba(10,14,23,0.18);
}
.ai-mcp-card__top,
.ai-mcp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-color: rgba(255,255,255,0.08);
}
.ai-mcp-card__top { border-bottom: 1px solid rgba(255,255,255,0.08); }
.ai-mcp-card__footer {
  justify-content: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ai-mcp-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c3cde4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ai-mcp-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4bd69c;
  box-shadow: 0 0 0 5px rgba(75,214,156,0.1);
}
.ai-mcp-card__code {
  color: #77839c;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}
.ai-mcp-card__flow {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  align-items: center;
  gap: 18px;
  padding: 38px;
  background:
    radial-gradient(circle at center, rgba(75,112,255,0.14), transparent 42%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}
.ai-mcp-node {
  padding: 28px 20px;
  border: 1px solid rgba(126,154,255,0.25);
  border-radius: 16px;
  background: rgba(31,43,78,0.66);
  text-align: center;
}
.ai-mcp-node__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5e82ff, #8e68ff);
  font-weight: 700;
}
.ai-mcp-node strong,
.ai-mcp-node small { display: block; }
.ai-mcp-node strong { font-size: 15px; }
.ai-mcp-node small { margin-top: 4px; color: #7f8ca6; font-size: 10px; }
.ai-mcp-connection {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, #6488ff, #9272ff);
}
.ai-mcp-connection::before,
.ai-mcp-connection::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7896ff;
  transform: translateY(-50%);
}
.ai-mcp-connection::before { left: 0; }
.ai-mcp-connection::after { right: 0; }
.ai-mcp-connection span {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  animation: aiSignal 2.4s linear infinite;
}
.ai-mcp-connection span:nth-child(2) { animation-delay: 0.8s; }
.ai-mcp-connection span:nth-child(3) { animation-delay: 1.6s; }
@keyframes aiSignal {
  from { left: 4px; opacity: 0; }
  15%, 85% { opacity: 1; }
  to { left: calc(100% - 8px); opacity: 0; }
}
.ai-mcp-tools { display: grid; gap: 10px; }
.ai-mcp-tools div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}
.ai-mcp-tools span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(122,146,255,0.13);
  color: #9eb3ff;
  font-size: 9px;
  font-weight: 700;
}
.ai-mcp-tools strong { font-size: 12px; font-weight: 600; }
.ai-mcp-card__footer code {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: #77839c;
  font-size: 9px;
}

.ai-beta { padding: 68px 0 112px; }
.ai-beta__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 68px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(108,139,255,0.28), transparent 36%),
    #0a0f1c;
  color: var(--pure);
}
.ai-beta__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ai-beta__copy,
.ai-beta__actions { position: relative; z-index: 1; }
.ai-beta h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.08;
}
.ai-beta__copy > p:last-child {
  max-width: 630px;
  color: #9ba6bf;
  font-size: 16px;
  line-height: 1.65;
}
.ai-beta__actions {
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}
.ai-beta__contact {
  color: #a9b7d7;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}
.ai-beta__contact:hover { color: var(--pure); }
.ai-beta__contact span { margin-left: 4px; }

@media (max-width: 1100px) {
  .ai-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ai-hero__copy { max-width: 760px; }
  .ai-hero__visual { min-height: 470px; max-width: 620px; width: 100%; margin: 0 auto; }
  .ai-feature,
  .ai-feature--reverse { grid-template-columns: 0.9fr 1.1fr; gap: 44px; }
  .ai-mcp-card__flow { padding: 28px 24px; }
}

@media (max-width: 768px) {
  .ai-hero { padding: calc(var(--nav-height) + 54px) 0 76px; }
  .ai-hero h1 { font-size: clamp(44px, 14vw, 62px); }
  .ai-hero__lead { font-size: 16px; }
  .ai-hero__actions { flex-direction: column; align-items: stretch; }
  .ai-hero__actions .btn { justify-content: center; }
  .ai-hero__visual { min-height: auto; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .ai-orbit { display: none; }
  .ai-hero__core { grid-column: 1 / -1; width: 160px; height: 160px; margin: 0 auto 14px; }
  .ai-float-card { position: static; min-width: 0; width: 100%; padding: 11px; }
  .ai-float-card__icon { width: 31px; height: 31px; }
  .ai-intro { padding: 76px 0; }
  .ai-intro__grid { grid-template-columns: 1fr; gap: 24px; }
  .ai-intro__body { padding-top: 0; }
  .ai-features { padding-top: 82px; }
  .ai-section-head { margin-bottom: 28px; }
  .ai-feature,
  .ai-feature--reverse { grid-template-columns: 1fr; gap: 36px; padding: 70px 0; }
  .ai-feature--reverse .ai-feature__copy,
  .ai-feature--reverse .ai-feature__media { order: initial; }
  .ai-feature__number { top: -24px; font-size: 78px; }
  .ai-mcp-card__flow { min-height: 0; grid-template-columns: 1fr; gap: 18px; padding: 26px; }
  .ai-mcp-connection { width: 2px; height: 50px; margin: 0 auto; background: linear-gradient(#6488ff, #9272ff); }
  .ai-mcp-connection::before,
  .ai-mcp-connection::after { left: 50%; top: auto; transform: translateX(-50%); }
  .ai-mcp-connection::before { top: 0; }
  .ai-mcp-connection::after { top: auto; bottom: 0; }
  .ai-mcp-connection span { display: none; }
  .ai-beta { padding: 36px 0 80px; }
  .ai-beta__panel { grid-template-columns: 1fr; gap: 34px; padding: 42px 30px; }
  .ai-beta__actions { min-width: 0; }
  .ai-beta__actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .ai-eyebrow { font-size: 10px; letter-spacing: 0.07em; }
  .ai-hero__visual { grid-template-columns: 1fr; }
  .ai-hero__core { grid-column: 1; }
  .ai-video-frame { border-radius: 14px; }
  .ai-video-frame__badge { top: 9px; right: 9px; }
  .ai-mcp-card__top { align-items: flex-start; flex-direction: column; }
  .ai-mcp-card__code { word-break: break-all; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-orbit--inner,
  .ai-mcp-connection span { animation: none; }
}
