/* ============================================================
   ishqrecords - marketing homepage
   Design tokens + layout. Light theme lock; only the
   announcement bar, CTA block and footer are dark by design.
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-dark: #0a0a0a;
  --border: #e6e6e6;
  --hairline: #ececec;

  /* Text */
  --text: #0a0a0a;
  --muted: #6b7280;
  --text-on-dark: #ffffff;
  --muted-on-dark: #9ca3af;

  /* Buttons */
  --btn: #171717;
  --btn-hover: #2a2a2a;

  /* Accent (used sparingly) */
  --accent: #3b4cca;

  /* Type */
  --font-head: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: 24px;
  --radius: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--btn);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section-narrow {
  padding-block: clamp(48px, 7vw, 88px);
}

.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--btn);
  color: #fff;
}

.btn-primary:hover {
  background: var(--btn-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #cfcfcf;
  background: #fff;
}

.btn-white {
  background: #fff;
  color: #0a0a0a;
}

.btn-white:hover {
  background: #ececec;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 14px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}

.link-arrow svg {
  transition: transform 0.18s var(--ease);
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: #111;
  color: #eaeaea;
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
}

.announce a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 1px 8px;
  margin-right: 8px;
  font-size: 11px;
  letter-spacing: 0.03em;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 247, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    backdrop-filter 0.25s var(--ease);
}

.nav.scrolled {
  background: rgba(247, 247, 247, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.wordmark {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.wordmark .mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  color: #3f3f46;
  font-weight: 450;
  transition: color 0.15s var(--ease);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-actions .login {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.nav-signup {
  border-radius: 999px;
  padding: 10px 18px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
}

.hamburger svg {
  width: 20px;
  height: 20px;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.35);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.drawer.open .drawer-scrim {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: #fff;
  border-left: 1px solid var(--border);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-panel .drawer-link {
  padding: 13px 8px;
  font-size: 17px;
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
}

.drawer-cta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.drawer-cta .btn {
  width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  text-align: center;
  padding-top: clamp(48px, 8vw, 88px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 15ch;
  margin-inline: auto;
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  max-width: 46ch;
  margin-inline: auto;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #ededed;
  border-radius: 999px;
  margin-top: 30px;
}

.segmented button {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.segmented button.active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Hero dashboard mock ---------- */
.hero-mock-wrap {
  position: relative;
  margin-top: clamp(40px, 6vw, 64px);
}

.mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  text-align: left;
  min-height: 420px;
}

.mock-sidebar {
  border-right: 1px solid var(--hairline);
  padding: 18px 14px;
  background: #fbfbfb;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 20px;
}

.mock-brand .dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #0a0a0a;
}

.mock-nav {
  display: grid;
  gap: 3px;
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--muted);
}

.mock-nav-item .ico {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: #e4e4e7;
  flex: none;
}

.mock-nav-item.active {
  background: #f0f0f0;
  color: var(--text);
  font-weight: 500;
}

.mock-nav-item.active .ico {
  background: #0a0a0a;
}

.mock-main {
  padding: 20px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-topbar h4 {
  font-size: 16px;
  font-weight: 500;
}

.mock-pill {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 11px;
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 13px;
  background: #fff;
}

.metric-card .label {
  font-size: 12px;
  color: var(--muted);
}

.metric-card .value {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  margin-top: 4px;
}

.metric-card .delta {
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

.delta.up {
  color: #16794c;
}

.delta.down {
  color: #b4483a;
}

.mock-chart {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 16px;
}

.mock-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mock-chart-head span {
  font-size: 13px;
  color: var(--muted);
}

.chart-svg {
  width: 100%;
  height: 140px;
}

.floating-search {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: min(520px, 88%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.24);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: none;
}

.floating-search .fs-text {
  font-size: 14.5px;
  color: #52525b;
}

.floating-search .fs-cursor {
  width: 2px;
  height: 16px;
  background: #0a0a0a;
  margin-left: -6px;
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ============================================================
   Logo wall
   ============================================================ */
.logowall {
  text-align: center;
  padding-block: clamp(56px, 7vw, 80px);
}

.logowall .label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}

.logo-item {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #9aa0a6;
  opacity: 0.7;
  filter: grayscale(1);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.logo-item svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   Feature 4-card row
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card .ico-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fafafa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card .ico-box svg {
  width: 20px;
  height: 20px;
  color: #0a0a0a;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ============================================================
   Bento grid
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 18px;
}

.bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bento-card h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 14.5px;
  color: var(--muted);
}

.bento-visual {
  margin-top: auto;
  padding-top: 20px;
}

/* Sizing rhythm */
.b-a {
  grid-column: span 3;
  grid-row: span 2;
}
.b-b {
  grid-column: span 3;
}
.b-c {
  grid-column: span 3;
}
.b-d {
  grid-column: span 2;
}
.b-e {
  grid-column: span 2;
}
.b-f {
  grid-column: span 2;
}

/* Mini visuals built from CSS */
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
}

.mini-bars span {
  flex: 1;
  background: #ededed;
  border-radius: 5px 5px 3px 3px;
}

.mini-bars span.hl {
  background: #0a0a0a;
}

.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-chips span {
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  color: #52525b;
  background: #fafafa;
}

.mini-rows {
  display: grid;
  gap: 8px;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #52525b;
}

.mini-row .swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex: none;
}

.mini-row .track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #eee;
  overflow: hidden;
}

.mini-row .track i {
  display: block;
  height: 100%;
  background: #0a0a0a;
  border-radius: 999px;
}

.mini-models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-model {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 11px;
  font-size: 12.5px;
  color: #3f3f46;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fafafa;
}

.mini-model .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16794c;
  flex: none;
}

.mini-donut {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: conic-gradient(#0a0a0a 0 62%, #e4e4e7 62% 100%);
  position: relative;
}

.mini-donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: #fff;
  border-radius: 50%;
}

/* ============================================================
   Pull quote
   ============================================================ */
.pullquote {
  text-align: center;
}

.pullquote blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.pullquote .attrib {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4d4d8, #a1a1aa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  flex: none;
}

.attrib .who {
  text-align: left;
}

.attrib .who strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
}

.attrib .who span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ============================================================
   MCP split
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-text .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.split-text h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 400;
  margin-bottom: 16px;
}

.split-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 46ch;
}

/* terminal card */
.terminal {
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  border: 1px solid #1e1e1e;
  overflow: hidden;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid #1e1e1e;
}

.terminal-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #333;
}

.terminal-bar span {
  margin-left: 8px;
  font-size: 12px;
  color: #6b6b6b;
}

.terminal-body {
  padding: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #d4d4d4;
}

.terminal-body .c-dim {
  color: #6b6b6b;
}
.terminal-body .c-green {
  color: #4ade80;
}
.terminal-body .c-blue {
  color: #7ca6ff;
}
.terminal-body .c-pink {
  color: #f0a4d0;
}

/* ============================================================
   Reports section
   ============================================================ */
.reports-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.report-chart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.report-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.report-chart-head strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
}

.report-chart-head span {
  font-size: 12px;
  color: var(--muted);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 200px;
}

.bar-chart .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.bar-chart .bar {
  width: 100%;
  max-width: 42px;
  border-radius: 6px 6px 2px 2px;
  background: #e4e4e7;
}

.bar-chart .bar.hl {
  background: #0a0a0a;
}

.bar-chart .lbl {
  font-size: 11px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 6px;
}

.feature-list-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}

.feature-list-item:last-child {
  border-bottom: none;
}

.feature-list-item h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list-item h4 svg {
  width: 18px;
  height: 18px;
  color: #0a0a0a;
}

.feature-list-item p {
  font-size: 14.5px;
  color: var(--muted);
  padding-left: 28px;
}

/* ============================================================
   Prompt pills cloud
   ============================================================ */
.pills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
}

.pill {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  color: #3f3f46;
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
}

.pill:hover {
  border-color: #cfcfcf;
  transform: translateY(-1px);
}

.pill .q {
  color: var(--muted);
  margin-right: 6px;
}

/* ============================================================
   Testimonials grid
   ============================================================ */
.testi-grid {
  columns: 3;
  column-gap: 20px;
}

.testi-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
}

.testi-card p {
  font-size: 15px;
  color: #27272a;
  line-height: 1.55;
  margin-bottom: 18px;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-foot .avatar {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.testi-foot .who strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
}

.testi-foot .who span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   Black CTA
   ============================================================ */
.cta-wrap {
  padding-block: clamp(40px, 6vw, 72px);
}

.cta-block {
  background: var(--surface-dark);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 96px) 24px;
  text-align: center;
  color: #fff;
}

.cta-block h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 400;
  max-width: 18ch;
  margin-inline: auto;
}

.cta-block p {
  color: var(--muted-on-dark);
  margin-top: 18px;
  font-size: 17px;
}

.cta-block .hero-cta {
  margin-top: 32px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq-q .plus {
  width: 22px;
  height: 22px;
  flex: none;
  position: relative;
  transition: transform 0.25s var(--ease);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: #0a0a0a;
  border-radius: 2px;
}

.faq-q .plus::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-q .plus::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
  transition: opacity 0.2s var(--ease);
}

.faq-item.open .plus::after {
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq-a-inner {
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 62ch;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--surface-dark);
  color: #d4d4d8;
  padding-block: clamp(56px, 7vw, 80px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}

.footer-brand .wordmark {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .wordmark .mark {
  background: #fff;
  color: #0a0a0a;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted-on-dark);
  max-width: 30ch;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted-on-dark);
  transition: color 0.15s var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-on-dark);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    columns: 2;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  /* Bento collapses to 2-wide rhythm */
  .bento {
    grid-template-columns: repeat(4, 1fr);
  }
  .b-a {
    grid-column: span 4;
    grid-row: span 1;
  }
  .b-b,
  .b-c {
    grid-column: span 2;
  }
  .b-d,
  .b-e,
  .b-f {
    grid-column: span 4;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-actions .login,
  .nav-actions .nav-signup {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .split,
  .reports-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mock {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .mock-sidebar {
    display: none;
  }
}

@media (max-width: 620px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    columns: 1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .b-a,
  .b-b,
  .b-c,
  .b-d,
  .b-e,
  .b-f {
    grid-column: span 1;
    grid-row: span 1;
  }
  .mock-metrics {
    grid-template-columns: 1fr;
  }
  .hero-cta .btn {
    flex: 1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .floating-search .fs-cursor {
    animation: none;
  }
}
