:root {
  --ink: #15161b;
  --ink-2: #2b303a;
  --muted: #626b7a;
  --muted-2: #8a93a3;
  --line: #dde5ef;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --surface-3: #edf3f9;
  --orange: #ff6231;
  --orange-2: #e84d21;
  --yellow: #f7c948;
  --blue: #1640d9;
  --blue-2: #102ca6;
  --aqua: #00a7b7;
  --green: #16865a;
  --violet: #705ee8;
  --shadow: 0 22px 60px rgba(21, 22, 27, 0.11);
  --shadow-soft: 0 14px 34px rgba(21, 22, 27, 0.08);
  --radius: 8px;
  --container: 1200px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(36, 91, 255, 0.34);
  outline-offset: 3px;
}

.material-symbols-outlined {
  direction: ltr;
  display: inline-flex;
  font-family: "Material Symbols Outlined";
  font-feature-settings: "liga";
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
}

.page {
  padding-top: 77px;
  overflow: hidden;
}

.container {
  width: min(100% - 56px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 233, 240, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(207, 215, 226, 0.95);
  box-shadow: 0 8px 26px rgba(16, 18, 20, 0.08);
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  height: 76px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--blue);
  border-radius: var(--radius);
  color: #ffffff;
  display: inline-flex;
  font-family: inherit;
  font-size: 28px;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
}

.brand-type {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 13px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  background: var(--surface-2);
  color: var(--blue);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.nav-actions .login {
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
}

.menu-toggle {
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mobile-menu {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: none;
  padding: 0 24px 18px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  border-top: 1px solid var(--line);
  display: block;
  font-weight: 800;
  padding: 14px 0;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 26px rgba(22, 64, 217, 0.28);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2752f2, var(--blue-2));
  box-shadow: 0 16px 34px rgba(22, 64, 217, 0.34);
}

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

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: #c9d2df;
  box-shadow: var(--shadow-soft);
}

.hero {
  background: linear-gradient(180deg, #fff7f2 0%, #ffffff 42%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 48px;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(21, 22, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 22, 27, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  padding: 34px 0 0;
}

.hero-copy {
  margin: 0 auto;
  max-width: 930px;
  text-align: center;
}

.eyebrow {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow-dot {
  background: var(--green);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero-lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 760px;
}

.insight-bar {
  align-items: center;
  background: var(--surface);
  border: 1px solid #d9e2ee;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto 24px;
  max-width: 790px;
  padding: 10px;
  text-align: left;
}

.insight-bar .search-icon {
  align-items: center;
  background: var(--surface-2);
  border-radius: var(--radius);
  color: var(--blue);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.insight-bar label {
  color: var(--muted);
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.insight-bar input {
  border: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  outline: 0;
  width: 100%;
}

.quick-links {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  margin-bottom: 34px;
}

.quick-links a {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 6px;
}

.quick-links a:hover {
  color: var(--blue);
}

.hero-product {
  margin: 0 auto;
  max-width: 1080px;
}

.dashboard-shell {
  background: #15161b;
  border: 1px solid rgba(21, 22, 27, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(21, 22, 27, 0.2);
  overflow: hidden;
}

.dashboard-top {
  align-items: center;
  color: #f8fafc;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 16px;
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
}

.traffic-lights span:nth-child(1) {
  background: var(--orange);
}

.traffic-lights span:nth-child(2) {
  background: var(--yellow);
}

.traffic-lights span:nth-child(3) {
  background: var(--green);
}

.dashboard-top strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-body {
  background: #f4f7fb;
  display: grid;
  gap: 18px;
  grid-template-columns: 196px 1fr;
  min-height: 386px;
  padding: 18px;
}

.dash-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.dash-sidebar strong {
  display: block;
  font-size: 13px;
  margin-bottom: 14px;
}

.dash-item {
  align-items: center;
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 6px;
  padding: 9px;
}

.dash-item.is-active {
  background: #fff0ea;
  color: var(--orange-2);
}

.dash-main {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
}

.mock-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(21, 22, 27, 0.055);
  padding: 18px;
}

.mock-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

.pipeline {
  display: grid;
  gap: 12px;
}

.pipeline-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 88px 1fr 52px;
}

.pipeline-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.bar {
  background: #edf1f6;
  border-radius: 999px;
  height: 13px;
  overflow: hidden;
}

.bar i {
  border-radius: inherit;
  display: block;
  height: 100%;
}

.bar-1 i {
  background: var(--orange);
  width: 74%;
}

.bar-2 i {
  background: var(--blue);
  width: 52%;
}

.bar-3 i {
  background: var(--aqua);
  width: 66%;
}

.bar-4 i {
  background: var(--green);
  width: 41%;
}

.quote-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.quote-tile {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 14px;
}

.quote-tile span {
  color: var(--muted);
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.quote-tile strong {
  display: block;
  font-size: 23px;
  line-height: 1.2;
}

.service-list {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
}

.service-row {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  padding: 13px 14px;
}

.status-dot {
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.service-row strong {
  display: block;
  font-size: 14px;
}

.service-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.status-pill {
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  text-transform: uppercase;
}

.status-pill.orange {
  background: #fff0ea;
  color: var(--orange-2);
}

.status-pill.blue {
  background: #eaf0ff;
  color: var(--blue);
}

.status-pill.green {
  background: #eaf8f1;
  color: var(--green);
}

.logo-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.logo-strip .container {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr;
}

.logo-strip p {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}

.logo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: #fff;
  box-shadow: 0 6px 18px rgba(21, 22, 27, 0.035);
  font-size: 12px;
  font-weight: 900;
  padding: 14px;
  text-align: center;
}

section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  margin-bottom: 46px;
}

.section-kicker {
  color: var(--orange-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 0;
}

.section-head p,
.section-copy {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 0;
}

.problem-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.problem-card,
.feature-card,
.role-card,
.pricing-card,
.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card:hover,
.feature-card:hover,
.role-card:hover,
.pricing-card:hover,
.resource-card:hover {
  border-color: #cbd4e2;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.card-icon {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 22px;
  width: 46px;
}

.problem-card:nth-child(2) .card-icon {
  background: var(--orange);
}

.problem-card:nth-child(3) .card-icon {
  background: var(--blue);
}

.problem-card h3,
.feature-card h3,
.role-card h3,
.resource-card h3 {
  font-size: 22px;
  line-height: 1.28;
  margin-bottom: 12px;
}

.problem-card p,
.feature-card p,
.role-card p,
.resource-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.solutions {
  background: linear-gradient(180deg, #15161b 0%, #1b1e28 100%);
  color: #fff;
  padding: 108px 0;
}

.solutions .section-kicker {
  color: var(--yellow);
}

.solutions .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-board {
  display: grid;
  gap: 30px;
  grid-template-columns: 370px 1fr;
}

.solution-tabs {
  display: grid;
  gap: 12px;
}

.solution-tab {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  padding: 18px;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease;
}

.solution-tab:hover,
.solution-tab.is-active {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.solution-tab .material-symbols-outlined {
  color: var(--orange);
  margin-top: 2px;
}

.solution-tab strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.solution-tab span:not(.material-symbols-outlined) {
  color: currentColor;
  display: block;
  font-size: 14px;
  opacity: 0.7;
}

.solution-stage {
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 520px;
  padding: 28px;
}

.stage-top {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.stage-top h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.stage-top p {
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.stage-badge {
  background: #fff0ea;
  border-radius: 999px;
  color: var(--orange-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.stage-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.stage-panel {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.stage-panel.large {
  grid-column: 1 / -1;
}

.stage-panel small {
  color: var(--muted);
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stage-panel strong {
  display: block;
  font-size: 30px;
  line-height: 1.2;
}

.metric-track {
  background: #dde4ee;
  border-radius: 999px;
  height: 15px;
  margin-top: 16px;
  overflow: hidden;
}

.metric-track i {
  background: var(--orange);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: var(--value, 70%);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-row {
  align-items: center;
  border-top: 1px solid #dbe2ec;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  padding: 16px 0;
}

.timeline-row:first-child {
  border-top: 0;
}

.timeline-row .number {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.timeline-row strong {
  display: block;
  font-size: 14px;
}

.timeline-row small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.workflow {
  background: #f8fafc;
}

.workflow-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card .step {
  color: var(--orange-2);
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.feature-card ul,
.pricing-card ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.feature-card li,
.pricing-card li {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.feature-card li .material-symbols-outlined,
.pricing-card li .material-symbols-outlined {
  color: var(--green);
  font-size: 18px;
  margin-top: 3px;
}

.stats {
  background: linear-gradient(135deg, #f2f6ff 0%, #e6ebff 100%);
  color: var(--ink);
  padding: 0;
}

.stats-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 460px;
}

.stats-copy {
  align-content: center;
  display: grid;
  padding: 74px 68px 74px 0;
}

.stats-copy h2 {
  color: var(--ink);
  margin-bottom: 22px;
}

.stats-copy p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 30px;
}

.stats-copy .btn {
  justify-self: start;
}

.stats-grid {
  background: #cbd4e2;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}

.stat-card {
  background: #ffffff;
  padding: 40px;
}

.stat-card strong {
  color: var(--blue);
  display: block;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
}

.stat-card span {
  color: var(--muted);
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.roles-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.role-card {
  padding: 24px;
}

.role-card .material-symbols-outlined {
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 22px;
}

.role-card h3 {
  font-size: 19px;
}

.role-card p {
  font-size: 14px;
}

.integrations {
  background: #f7f9fc;
}

.integration-layout {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.8fr 1.2fr;
}

.integration-map {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.integration-chip {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  font-weight: 800;
  gap: 12px;
  min-height: 68px;
  padding: 16px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.integration-chip:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.chip-mark {
  align-items: center;
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  flex: 0 0 34px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 32px;
}

.pricing-card.is-featured {
  background: linear-gradient(180deg, #15161b 0%, #202331 100%);
  border-color: #202331;
  color: #fff;
}

.pricing-card.is-featured p,
.pricing-card.is-featured li {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.pricing-card p {
  color: var(--muted);
  margin-bottom: 26px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 22px;
}

.price strong {
  font-size: 48px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
  padding-bottom: 5px;
}

.pricing-card.is-featured .price span {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.popular {
  align-self: flex-start;
  background: var(--yellow);
  border-radius: 999px;
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.resources {
  background: #f7f9fc;
}

.resource-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.resource-card .tag {
  color: var(--orange-2);
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.resource-card a {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 6px;
  margin-top: 22px;
}

.cta {
  background: linear-gradient(180deg, #15161b 0%, #0d0f14 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.cta h2 {
  color: #fff;
  margin: 0 auto 22px;
  max-width: 790px;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin: 0 auto 34px;
  max-width: 650px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.site-footer {
  background: #08090c;
  color: #fff;
  padding: 58px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.68);
  margin: 18px 0 0;
  max-width: 320px;
}

.footer-col strong {
  display: block;
  font-size: 13px;
  margin-bottom: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  font-size: 13px;
  gap: 16px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

/* Semrush Hero Redesign */
.semrush-hero {
  background: linear-gradient(135deg, #f2f6ff 0%, #ffffff 50%, #eef3ff 100%);
  text-align: center;
  padding: 0;
}

.semrush-hero .hero-grid {
  background-image:
    linear-gradient(rgba(22, 64, 217, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 64, 217, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  padding: 110px 0 70px;
}

.semrush-hero h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.email-capture-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 40px auto 16px;
  max-width: 580px;
}

.email-capture-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid #d9e2ee;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.email-capture-form button {
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  border: none;
  font-size: 16px;
  transition: background 0.2s ease;
}

.email-capture-form button:hover {
  background: var(--blue-2);
}

.hero-micro {
  font-size: 13px;
  color: var(--muted);
}

.post-hero-section {
  padding: 60px 0 30px;
  text-align: center;
}

.uppercase-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  max-width: 800px;
  margin: 0 auto;
}

.semrush-modules {
  padding: 40px 0 100px;
}

.module-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.module-box {
  border-radius: 12px;
  padding: 32px 32px 0 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.module-color-1 {
  background-color: #f2f6ff;
}

.module-color-2 {
  background-color: #eef3ff;
}

.module-color-3 {
  background-color: #eaefff;
}

.module-color-4 {
  background-color: #e6ebff;
}

.module-color-5 {
  background-color: #f0f4ff;
}

.module-color-6 {
  background-color: #eaf0ff;
}

.module-box-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-box-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.module-box-content li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.module-box-content li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #333;
}

.btn-module {
  background: transparent;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  color: #111;
  align-self: flex-start;
}

.btn-module:hover {
  background: #111;
  color: white;
}

.module-box-graphic {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.7);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 180px;
  width: 100%;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(20px);
}

.module-box-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {

  .nav-links,
  .nav-actions .login {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .module-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-board,
  .stats-layout,
  .integration-layout {
    grid-template-columns: 1fr;
  }

  .stats-copy {
    padding: 72px 0;
  }

  .workflow-grid,
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles-grid .role-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .hero {
    padding-top: 42px;
  }

  h1,
  .semrush-hero h1 {
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede,
  .section-head p,
  .section-copy,
  .stats-copy p,
  .cta p {
    font-size: 16px;
    line-height: 1.7;
  }

  .email-capture-form {
    flex-direction: column;
    width: 100%;
  }

  .email-capture-form input,
  .email-capture-form button {
    width: 100%;
  }

  .module-boxes-grid {
    grid-template-columns: 1fr;
  }

  .module-box {
    min-height: auto;
    padding: 24px 24px 0 24px;
  }

  .insight-bar {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .insight-bar .search-icon {
    display: none;
  }

  .insight-bar .btn {
    width: 100%;
  }

  .dashboard-body,
  .dash-main,
  .section-head,
  .problem-grid,
  .pricing-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .logo-strip .container,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-grid,
  .stats-grid,
  .integration-map {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .nav {
    height: 66px;
  }

  .page {
    padding-top: 67px;
  }

  .brand-type {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-menu {
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }

  .mobile-menu a {
    font-size: 15px;
    color: var(--ink-2);
  }

  .semrush-hero .hero-grid {
    padding: 60px 0 40px;
  }

  .email-capture-form {
    margin: 28px auto 16px;
  }

  .email-capture-form input {
    padding: 14px 20px;
    font-size: 15px;
  }

  .email-capture-form button {
    padding: 14px 20px;
    font-size: 15px;
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .logo-card {
    padding: 10px 8px;
    font-size: 11px;
  }

  h1,
  .semrush-hero h1 {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 24px;
  }

  section {
    padding: 50px 0;
  }

  .hero {
    padding: 24px 0 24px;
  }

  .hero-grid {
    background-size: 32px 32px;
  }

  .quick-links {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-body {
    padding: 12px;
  }

  .quote-grid,
  .workflow-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }

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

  .service-row .status-pill {
    grid-column: 2;
    justify-self: start;
  }

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

  .timeline-row .status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .stat-card {
    padding: 26px;
  }

  .stat-card strong {
    font-size: 40px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}