/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --ink: #0a0f14;
  --ink-soft: #111820;
  --ink-muted: #1a2430;
  --surface: #ffffff;
  --surface-muted: #f5f7fa;
  --surface-elevated: #ffffff;
  --charcoal: #182125;
  --text: #182125;
  --text-muted: rgba(24, 33, 37, 0.62);
  --text-subtle: rgba(24, 33, 37, 0.42);
  --red: #fd112d;
  --red-hover: #e00f28;
  --red-subtle: rgba(253, 17, 45, 0.1);
  --red-glow: rgba(253, 17, 45, 0.35);
  --border: rgba(24, 33, 37, 0.08);
  --border-strong: rgba(24, 33, 37, 0.14);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container: 76rem;
  --radius: 1rem;
  --radius-sm: 0.625rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(10, 15, 20, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 15, 20, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 15, 20, 0.12);
  --shadow-glow: 0 0 40px var(--red-glow);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[id] {
  scroll-margin-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
}

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

a {
  color: var(--red);
}

/* ── Page atmosphere ─────────────────────────────────────────── */
.page-landing {
  position: relative;
  background: var(--ink);
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(253, 17, 45, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 10%, rgba(99, 102, 241, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(253, 17, 45, 0.06), transparent 50%);
}

.page-landing > *:not(.page-glow) {
  position: relative;
  z-index: 1;
}

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.container--narrow {
  max-width: 48rem;
}

/* ── Typography helpers ────────────────────────────────────────── */
.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.text-gradient {
  background: linear-gradient(135deg, #ff4d6a 0%, var(--red) 50%, #ff8fa3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}

.section__title--light {
  color: var(--surface);
}

.section__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 36rem;
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.72);
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__lead {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--surface);
  text-decoration: none;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
}

.btn--glow {
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn--glow:hover {
  box-shadow: 0 6px 28px var(--red-glow);
}

.btn--ghost {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--surface);
}

.btn--ghost-light {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
}

.btn--sm {
  min-height: 2.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  min-height: 3.25rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
}

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 20, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__icon {
  width: 1.75rem;
  height: 1.75rem;
}

.site-header__wordmark {
  width: min(9rem, 32vw);
  height: auto;
  filter: brightness(0) invert(1);
}

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

.site-nav__link {
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: color var(--transition), background var(--transition);
}

.site-nav__link:hover {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(10, 15, 20, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav__link {
    padding: 0.75rem 1rem;
  }

  .site-nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0 3rem;
  }
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.625rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--surface);
}

.hero__lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 0.125rem;
}

/* CRM preview mockup */
.hero__visual {
  perspective: 1200px;
}

.crm-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(253, 17, 45, 0.08);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.crm-preview:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.crm-preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.crm-preview__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.crm-preview__dot:first-child { background: #ff5f57; }
.crm-preview__dot:nth-child(2) { background: #febc2e; }
.crm-preview__dot:nth-child(3) { background: #28c840; }

.crm-preview__url {
  margin-left: 0.75rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
}

.crm-preview__body {
  display: flex;
  min-height: 16rem;
}

.crm-preview__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 3rem;
  padding: 1rem 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.crm-preview__nav-item {
  width: 100%;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.06);
}

.crm-preview__nav-item--active {
  background: var(--red-subtle);
  border: 1px solid rgba(253, 17, 45, 0.3);
}

.crm-preview__main {
  flex: 1;
  padding: 1rem;
  position: relative;
}

.crm-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.crm-preview__title-bar {
  width: 40%;
  height: 0.75rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.12);
}

.crm-preview__search {
  width: 30%;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.crm-preview__pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.crm-preview__col-label {
  height: 0.5rem;
  width: 60%;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
}

.crm-preview__card {
  padding: 0.625rem;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.crm-preview__card--highlight {
  background: rgba(253, 17, 45, 0.12);
  border-color: rgba(253, 17, 45, 0.25);
}

.crm-preview__card-line {
  height: 0.375rem;
  margin-bottom: 0.375rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.15);
}

.crm-preview__card-line--short {
  width: 60%;
  margin-bottom: 0;
}

.crm-preview__ai-bubble {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, rgba(253, 17, 45, 0.2), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(253, 17, 45, 0.25);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.crm-preview__ai-icon {
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.875rem;
}

/* ── Marquee ───────────────────────────────────────────────────── */
.marquee {
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.marquee__track span::after {
  content: "◆";
  margin-left: 3rem;
  font-size: 0.5rem;
  vertical-align: middle;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ──────────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section--problem {
  background: var(--surface);
  border-radius: 2rem 2rem 0 0;
  margin-top: 1rem;
}

.section--features {
  background: var(--surface-muted);
}

.section--ai {
  background: var(--ink);
  padding: 6rem 0;
}

.section--steps {
  background: var(--surface);
}

.section--about {
  background: var(--surface-muted);
}

.section--faq {
  background: var(--surface);
}

.section--cta {
  background: var(--ink);
  padding: 5rem 0 6rem;
}

/* ── Problem grid ──────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.problem-card__icon {
  display: block;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.7;
}

.problem-card__title {
  margin: 0 0 0.625rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
}

.problem-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Bento grid ────────────────────────────────────────────────── */
.bento {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
  }

  .bento__card--large {
    grid-row: span 2;
  }

  .bento__card--wide {
    grid-column: span 2;
  }
}

.bento__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.bento__card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bento__card-inner {
  padding: 2rem;
  height: 100%;
}

.bento__card-inner--row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .bento__card-inner--row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.bento__tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  border-radius: 999px;
}

.bento__title {
  margin: 0 0 0.625rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
}

.bento__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.bento__visual {
  margin-top: 1.5rem;
}

.mini-pipeline {
  display: flex;
  gap: 0.75rem;
}

.mini-pipeline__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--surface-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.mini-pipeline__stage--active {
  background: var(--red-subtle);
  border-color: rgba(253, 17, 45, 0.2);
}

.mini-pipeline__stage span {
  display: block;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: var(--border-strong);
}

.mini-pipeline__stage--active span {
  background: rgba(253, 17, 45, 0.25);
}

.bento__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  height: 5rem;
  flex-shrink: 0;
}

.bento__chart-bar {
  width: 2rem;
  height: var(--h);
  border-radius: 0.375rem 0.375rem 0 0;
  background: var(--border-strong);
}

.bento__chart-bar--accent {
  background: linear-gradient(180deg, var(--red), rgba(253, 17, 45, 0.6));
}

/* ── AI section ────────────────────────────────────────────────── */
.ai-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ai-section {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.ai-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.ai-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ai-list__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--red);
  background: rgba(253, 17, 45, 0.12);
  border-radius: 0.5rem;
}

.ai-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--surface);
}

.ai-list p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* AI terminal */
.ai-terminal {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.ai-terminal__header {
  padding: 0.875rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-terminal__body {
  padding: 1.25rem;
}

.ai-terminal__prompt,
.ai-terminal__response {
  margin-bottom: 1.25rem;
}

.ai-terminal__response {
  margin-bottom: 0;
  padding: 1rem;
  background: rgba(253, 17, 45, 0.06);
  border: 1px solid rgba(253, 17, 45, 0.12);
  border-radius: var(--radius-sm);
}

.ai-terminal__user,
.ai-terminal__ai {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-terminal__user {
  color: rgba(255, 255, 255, 0.4);
}

.ai-terminal__ai {
  color: var(--red);
}

.ai-terminal__prompt p,
.ai-terminal__response p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.ai-terminal__response ul {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.ai-terminal__response li {
  margin-bottom: 0.375rem;
}

.ai-terminal__response strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Steps ─────────────────────────────────────────────────────── */
.steps {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.step {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--surface);
  background: var(--red);
  border-radius: 0.625rem;
}

.step__title {
  margin: 0 0 0.625rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
}

.step__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── About ─────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
}

.about-values {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-value {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-value h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.about-value p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.founder-card {
  padding: 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.founder-card__photo {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--red-subtle);
}

.founder-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.founder-card__title {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.founder-card__bio {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list {
  margin: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__question {
  margin: 0 0 0.625rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-item__answer {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item__answer a {
  font-weight: 500;
}

/* ── CTA ───────────────────────────────────────────────────────── */
.cta-card {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--ink-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 5rem 3rem;
  }
}

.cta-card__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, var(--red-glow), transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.cta-card__title {
  position: relative;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--surface);
}

.cta-card__text {
  position: relative;
  margin: 0 auto 2rem;
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.cta-card__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-footer__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer__wordmark {
  width: 7rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

.site-footer__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__nav a:hover {
  color: var(--surface);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .site-footer__copy {
    flex-shrink: 0;
  }
}

/* ── 404 page ──────────────────────────────────────────────────── */
body:not(.page-landing) {
  background: var(--ink);
  color: var(--surface);
}

body:not(.page-landing) .site-header {
  background: rgba(10, 15, 20, 0.9);
}

body:not(.page-landing) .site-header__wordmark,
body:not(.page-landing) .site-footer__wordmark {
  filter: brightness(0) invert(1);
}

.not-found {
  padding: 5rem 0 6rem;
  text-align: center;
}

.not-found__code {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.not-found__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--surface);
}

.not-found__lead {
  margin: 0 auto 2rem;
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.not-found__path {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.4);
}

.not-found__help {
  margin: 3rem 0 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
}

.not-found__help a {
  color: var(--red);
  font-weight: 500;
}

.not-found .hero__actions {
  justify-content: center;
}

/* ── Accessibility ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .marquee__track {
    animation: none;
  }

  .hero__badge-dot {
    animation: none;
  }

  .crm-preview {
    transform: none;
  }

  .crm-preview:hover {
    transform: none;
  }

  .bento__card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}
