/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg: #f4f2ed;
  --bg-card: #ffffff;
  --bg-dark: #0e2e45;
  --bg-dark2: #162e4a;
  --ink: #0f1f33;
  --ink-mid: #2e4462;
  --ink-light: #5a7291;
  --ink-dim: #8ba0b8;
  --sapphire: #0b4f8a;
  --sapphire-l: #1a6ab5;
  --orange: #d4500a;
  --orange-l: #e8620a;
  --sand: #e8e4da;
  --sand-dark: #d5d0c4;
  --rule: #d8d3c8;
  --shadow: 0 4px 24px rgba(15, 31, 51, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 31, 51, 0.14);
  --radius: 10px;
  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Frank Ruhl Libre", serif;
  line-height: 1.15;
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--sapphire);
}

a {
  color: var(--sapphire);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

p {
  color: var(--ink-light);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.15;
    transform: scale(1.06);
  }
}

.fu {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

.d1 {
  animation-delay: 0.08s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.34s;
}

.d4 {
  animation-delay: 0.48s;
}

.d5 {
  animation-delay: 0.62s;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.ready {
  opacity: 0;
  transform: translateY(20px);
}

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

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0;
  background: rgba(244, 242, 237, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s;
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-wordmark {
  font-family: "Figtree", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav-wordmark span {
  color: var(--sapphire);
}

.nav-byline {
  font-family: "Figtree", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sapphire);
  white-space: nowrap;
  border-left: 1.5px solid var(--rule);
  padding-left: 12px;
}

a.nav-logo:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn-nav {
  padding: 9px 22px;
  background: var(--orange);
  color: #fff !important;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-nav:hover {
  background: var(--orange-l);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── BACK BAR ────────────────────────────────────────── */
.back-bar {
  position:fixed;
  top:0;
  width:100%;
  z-index:1001;
  background-color: #19141a;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.back-bar a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.back-bar a:hover {
  color: #c8a96e;  /* your burnt orange/gold accent */
  text-decoration: none;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: var(--orange);
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--orange-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 80, 10, 0.28);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ink-mid);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--sapphire);
  color: var(--sapphire);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
}

/* ── SECTION UTILITIES ──────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.section-sand {
  background: var(--sand);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sapphire);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--sapphire);
  display: block;
}

.section-heading {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 14px;
}

.section-dark .section-heading {
  color: #fff;
}

.section-dark .eyebrow {
  color: #7baaff;
}

.section-dark .eyebrow::before {
  background: #7baaff;
}

.section-sub {
  font-size: 0.98rem;
  color: var(--ink-light);
  max-width: 540px;
  line-height: 1.8;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered .eyebrow::before {
  display: none;
}

.centered .section-sub {
  margin: 0 auto;
}

.centered .section-heading::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--sapphire);
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-dark.centered .section-heading::after {
  background: #7baaff;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 72px;
  position: relative;
}

/* Subtle dot grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}

/* Warm glow bottom right */
.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(
    ellipse,
    rgba(11, 79, 138, 0.35) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0 96px;
}

.hero-label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(75, 139, 255, 0.15);
  border: 1px solid rgba(75, 139, 255, 0.3);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7baaff;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero h1 em {
  color: #ffba3b;
  font-style: italic;
}

.hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual — stat panel */
.hero-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero-panel-title {
  font-family: "Figtree", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(75, 139, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
  color: #7baaff;
  transition: color 0.2s ease;
}

.stat-val {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  transition: color 0.2s ease;
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.stat-item-highlight {
  border-color: rgba(245, 166, 35, 0.25);
  background: rgba(245, 166, 35, 0.06);
}

.stat-item-highlight .stat-icon {
  background: rgba(245, 166, 35, 0.2);
}

.stat-item-highlight .stat-icon svg {
  color: #ffba3b;
}

.stat-item-highlight .stat-val {
  color: #ffba3b;
}

.stat-item:hover {
  border-color: rgba(245, 166, 35, 0.25);
  background: rgba(245, 166, 35, 0.06);
}

.stat-item:hover .stat-icon {
  background: rgba(245, 166, 35, 0.2);
}

.stat-item:hover .stat-icon svg {
  color: #ffba3b;
}

.stat-item:hover .stat-val {
  color: #ffba3b;
}

/* ── PAIN POINTS ────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 52px;
}

.pain-card {
  padding: 40px 32px;
  background: var(--bg-card);
  transition: background 0.2s;
}

.pain-card:hover {
  background: #f8f6f1;
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(11, 79, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-icon svg {
  width: 22px;
  height: 22px;
  color: var(--sapphire);
}

.pain-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ink-light);
}

.pain-quote {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sand-dark);
  font-style: italic;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 1rem;
  color: var(--ink-mid);
}

/* ── HOW IT WORKS ───────────────────────────────────── */
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sapphire), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.xfeature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 79, 138, 0.2);
}

.xfeature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  background: var(--bg);
}

.feature-num {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 2.8rem;
  color: rgba(11, 79, 138, 0.12);
  line-height: 1;
  margin-bottom: 6px;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.845rem;
  line-height: 1.75;
  color: var(--ink-light);
}

.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  background: rgba(11, 79, 138, 0.08);
  border: 1px solid rgba(11, 79, 138, 0.15);
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sapphire);
}

/* ── COMPARISON TABLE ───────────────────────────────── */
.compare-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead th {
  padding: 20px 24px;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

thead th:first-child {
  text-align: left;
  background: var(--sand);
  color: var(--ink-light);
}

thead th:nth-child(2) {
  background: var(--sapphire);
  color: #fff;
}

thead th:nth-child(3) {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
}

tbody tr {
  border-top: 1px solid var(--rule);
}

tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.015);
}

tbody td {
  padding: 18px 24px;
  vertical-align: top;
  line-height: 1.6;
  color: var(--ink-light);
}

tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  background: var(--sand);
  font-size: 0.82rem;
}

tbody td:nth-child(2) {
  background: rgba(11, 79, 138, 0.04);
  color: var(--ink);
  font-weight: 500;
  text-align: center;
  border-left: 2px solid rgba(11, 79, 138, 0.15);
  border-right: 2px solid rgba(11, 79, 138, 0.15);
}

tbody td:nth-child(3) {
  text-align: center;
  font-style: italic;
  color: var(--ink-dim);
}

.check {
  color: var(--sapphire);
  font-weight: 700;
}

/* ── WHO IT'S FOR ───────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.audience-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(123, 170, 255, 0.3);
}

.audience-role {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7baaff;
  margin-bottom: 10px;
}

.audience-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}

.audience-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.845rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.audience-card li::before {
  content: "→";
  color: #7baaff;
  flex-shrink: 0;
}

.seg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.seg-card {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.seg-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(123, 170, 255, 0.3);
}

.seg-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/*.badge-emerging{background:rgba(123,170,255,.15);color:#7BAAFF;border:1px solid rgba(123,170,255,.3);}*/
.badge-emerging {
  background: rgba(245, 166, 35, 0.12);
  color: #ffba3b;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.badge-enterprise {
  background: rgba(245, 166, 35, 0.12);
  color: #ffba3b;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.seg-card h3 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 14px;
}

.seg-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.seg-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.845rem;
  color: rgba(255, 255, 255, 0.58);
}

.seg-list li::before {
  content: "✓";
  color: #ffba3b;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── DATA SOURCES ───────────────────────────────────── */
.sources-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  padding: 9px 18px;
  background: var(--bg-card);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.pill:hover {
  border-color: var(--sapphire);
  color: var(--sapphire);
}

.sources-callout {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 12px;
  padding: 40px 36px;
}

.sources-callout blockquote {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.4;
}

.sources-callout p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ── PRICING ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pricing-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--sapphire);
  background: rgba(11, 79, 138, 0.04);
}

.pricing-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.pricing-icon svg {
  width: 26px;
  height: 26px;
  color: var(--sapphire);
}

.pricing-card.featured .pricing-icon {
  background: rgba(11, 79, 138, 0.1);
}

.pricing-card h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.pricing-card p {
  font-size: 0.845rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ── ABOUT VIDIA ────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-layout p {
  margin-bottom: 16px;
}

.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 14px;
}

.trust-card:last-child {
  margin-bottom: 0;
}

.trust-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7baaff;
  margin-bottom: 6px;
}

.trust-card h4 {
  font-family: "Figtree", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.trust-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
  margin-top: 4px;
  margin-bottom: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(75, 139, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: #7baaff;
}

/* ── DEMO FORM ──────────────────────────────────────── */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.demo-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--ink-light);
}

.promise-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  font-size: 0.875rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sapphire);
  background: #fff;
}

select option {
  background: #fff;
  color: var(--ink);
}

select:has(option[value=""]:checked) {
  color: #757575;
}

textarea {
  resize: vertical;
  min-height: 88px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--orange-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 80, 10, 0.28);
}

.form-fine {
  font-size: 0.7rem;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
}

.form-success h3 {
  font-size: 1.8rem;
  color: var(--sapphire);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--ink-light);
}

/* ── DIVIDER ────────────────────────────────────────── */
.rule-line {
  height: 1px;
  background: var(--rule);
}

.rule-dark {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  padding: 36px 0;
  background: var(--bg-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-grid,
  .how-layout,
  .sources-layout,
  .about-layout,
  .demo-layout,
  .seg-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .pain-grid,
  .pricing-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .pain-card + .pain-card {
    border-top: 1px solid var(--rule);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
