/* =========================================================
   1. Global variables / base
   全局变量与基础样式

   用途：
   - 定义全站颜色、字体、阴影、背景色等变量
   - 设置 body、a、h1、h2、p 等基础样式
   - 控制 box-sizing、scroll behavior、默认文字颜色

   对应内容：
   :root
   *
   html
   body
   body *
   a
   h1 / h2 / h3 / p
   ========================================================= */
:root {
  --ink: #f7f8fb;
  --dark: #08090d;
  --dark-2: #10131a;
  --text-dark: #111318;
  --muted: #8d93a1;
  --soft: #f4f5f8;
  --line: #242834;
  --paper: #f7f8fb;
  --white: #ffffff;
  --accent: #181816;
  --accent-dark: #000000;
  --sage: #a8b0c2;
  --shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-dark);
}

body,
body * {
  color: #232323;
}

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

/* =========================================================
   2. Header
   顶部导航栏

   用途：
   - 控制网页顶部 sticky header
   - 控制 logo 大小
   - 控制桌面导航菜单
   - 控制右上角 Get Started 按钮

   对应内容：
   .site-header
   .brand
   .brand-logo
   .desktop-nav
   .header-action
   ========================================================= */


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(222, 219, 214, 0.78);
  background: rgba(8, 9, 13, 0.78);
  backdrop-filter: blur(16px);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #c7cad4;
  font-size: 15px;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #08090d;
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.12);
}

.header-action,
.button-primary,
.assistant-button,
.queue-mini span,
.mini-chat p:last-child {
  color: #181816;
}

/* =========================================================
   3. Hero
   首屏主视觉区域

   用途：
   - 控制第一屏大标题、说明文字、CTA 按钮
   - 控制 hero 区域的布局、背景、间距
   - 控制左侧文字与右侧 dashboard 图片的位置

   对应内容：
   .hero-section
   .hero-copy
   h1
   .hero-lede
   .hero-actions
   .button
   .button-primary
   .button-secondary
   .hero-visual
   .demo-screenshot
   ========================================================= */


.hero-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(620px, 1.55fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 78px 32px 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(108, 92, 255, 0.28), transparent 30%),
    radial-gradient(circle at 83% 44%, rgba(79, 140, 255, 0.14), transparent 27%),
    linear-gradient(180deg, #08090d 0%, #10131a 72%, #f7f8fb 72%);
  color: var(--ink);
}

.hero-copy {
  max-width: 400px;
  padding-left: clamp(0px, 4vw, 64px);
}

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

h1,
.intro-strip h2 {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 510;
  letter-spacing: 0;
}

h1 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(64px, 5.5vw, 90px);
  line-height: 1;
  font-weight: 500;
}


.hero-lede {
  max-width: 600px;
  color: #232323;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;

}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 780;
  cursor: default;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: rgba(255, 255, 255, 0.08);
  color: #08090d;
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.12);
}

.button-primary:hover {
  background: #f0f2f8;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #08090d;
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.12);
}


.hero-visual {
  min-width: 0;
}
/* =========================================================
   4. Dashboard mockup
   仪表盘模拟界面

   用途：
   - 控制 hero 右侧的 dashboard / browser mockup
   - 这是视觉展示，不是真实后台系统
   - 包括 sidebar、dashboard card、metric、assistant panel 等

   对应内容：
   .browser-frame
   .browser-topbar
   .app-shell
   .app-sidebar
   .dashboard-panel
   .dashboard-head
   .health-score
   .metric-grid
   .workspace-grid
   .analysis-card
   .website-card
   .assistant-panel
   .module-rail
   ========================================================= */
.browser-frame {
  min-width: 780px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #10131a;
  box-shadow: var(--shadow);
}

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #141823;
}

.browser-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: #464b59;
}

.browser-topbar span:first-child {
  background: #ff6b5f;
}

.browser-topbar span:nth-child(2) {
  background: #f5bd4f;
}

.browser-topbar span:nth-child(3) {
  background: #62c56f;
}

.browser-topbar p {
  width: 330px;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #aab0bd;
  font-size: 13px;
  text-align: center;
}

.app-shell {
  display: grid;
  grid-template-columns: 168px minmax(420px, 1fr) 230px;
  min-height: 620px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: #0d1017;
}

.project-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 14px;
  background: #151923;
  box-shadow: inset 0 0 0 1px #262b38;
}

.project-pill small,
.assistant-panel small {
  display: block;
  color: var(--muted);
}

.project-icon,
.spark-dot {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 11px;
  background:
    radial-gradient(circle at 65% 35%, #f4d35e 0 15%, transparent 16%),
    linear-gradient(135deg, #181816, #b6a68e);
}

.app-sidebar a,
.app-sidebar span {
  padding: 10px 12px;
  border-radius: 10px;
  color: #9aa1af;
  font-size: 14px;
  font-weight: 700;
}

.app-sidebar a.active,
.app-sidebar span.active {
  background: #1b2030;
  color: var(--ink);
}

.dashboard-panel {
  min-width: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(108, 92, 255, 0.08), transparent 38%),
    #11151f;
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-head h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.08;
}

.health-score {
  display: grid;
  place-items: center;
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #11151f 58%, transparent 59%),
    conic-gradient(var(--accent) 0 74%, #303647 74% 100%);
}

.health-score span {
  font-size: 28px;
  font-weight: 820;
  color: var(--ink);
}

.health-score small {
  margin-top: -18px;
  color: var(--muted);
  font-size: 11px;
}

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

.metric-grid article,
.analysis-card,
.website-card,
.assistant-panel,
.feature-card,
.workflow-grid article,
.mock-workspace,
.pricing-grid article {
  border: 1px solid rgba(126, 134, 153, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid article {
  padding: 16px;
}

.metric-grid small {
  color: var(--muted);
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
}

.metric-grid p,
.analysis-card p,
.website-card p {
  margin: 0;
  color: #aab0bd;
  font-size: 13px;
  line-height: 1.45;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 12px;
  margin-top: 12px;
}

.analysis-card,
.website-card {
  padding: 18px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-title.compact {
  margin-bottom: 12px;
}

.card-title h3 {
  margin: 0;
  font-size: 17px;
}

.line-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 10px;
  color: #dfe3ee;
}

.chart-icon::before,
.search-icon::before,
.target-icon::before,
.checklist-icon::before,
.pages-icon::before,
.grow-icon::before,
.wand-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.search-icon::before {
  inset: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.target-icon::before {
  inset: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.checklist-icon::before {
  inset: 9px 7px;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.pages-icon::before {
  inset: 7px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: translate(3px, -3px);
}

.grow-icon::before {
  inset: 9px;
  border: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg);
}

.wand-icon::before {
  inset: 8px 14px;
  border: 0;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 138px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #242b3c, #151a25);
}

.bars span {
  width: 100%;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(#181816, #b6a68e);
  opacity: 0.92;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(108, 92, 255, 0.14);
  color: #d7daf5;
  font-size: 12px;
  font-weight: 760;
}

.site-preview {
  min-height: 146px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 16px;
  background: #1a1f2c;
}

.preview-hero {
  height: 68px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(135deg, #1e1e1c, #8f6f52 55%, #d9c6aa);
}

.preview-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.preview-lines span {
  height: 9px;
  border-radius: 999px;
  background: #3b4356;
}

.preview-lines span:nth-child(2) {
  width: 72%;
}

.preview-lines span:nth-child(3) {
  width: 44%;
}

.task-list,
.pricing-grid ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #b1b7c4;
  font-size: 14px;
}

.task-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.task-list span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.assistant-panel {
  padding: 18px;
  border-width: 0 0 0 1px;
  border-radius: 0;
  background: #0d1017;
}

.assistant-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.chat-bubble {
  margin-bottom: 12px;
  padding: 13px;
  border-radius: 15px;
  background: #1a2030;
  color: #dce1ec;
  font-size: 13px;
  line-height: 1.45;
}

.chat-bubble.soft {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(126, 134, 153, 0.22);
}

.assistant-button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.section {
  padding: 50px;
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.62fr);
  gap: 90px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.intro-strip h2,
.section-head h2,
.insight-copy h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.98;
}

.intro-strip,
.feature-band,
.workflow-section,
.insight-section,
.demo-section,
.pricing-section,
.site-footer {
  color: var(--text-dark);
}

.intro-copy p:last-child {
  margin-bottom: 0;
  color: #51514e;
  font-size: 20px;
  line-height: 1.6;
}

.intro-copy .intro-statement {
  margin: 0 0 18px;
  color: var(--text-dark);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px 112px;
}

.feature-card {
  min-height: 240px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.05);
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-card.muted {
  background: #eef1f8;
}

.feature-card p,
.workflow-grid p,
.mock-panel p,
.pricing-grid p {
  color: #5a5a56;
  line-height: 1.55;
}

.feature-card .line-icon,
.workflow-grid .line-icon {
  color: var(--text-dark);
}

.workflow-section,
.demo-section,
.pricing-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 112px 32px;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 900px;
  margin-bottom: 48px;
}

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

.workflow-grid article {
  min-height: 270px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.05);
}

.workflow-grid span {
  display: inline-flex;
  margin-bottom: 62px;
  color: var(--accent);
  font-weight: 860;
}

.workflow-grid h3 {
  font-size: 24px;
  line-height: 1.1;
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1fr;
  gap: 80px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 112px 32px;
  border-top: 1px solid var(--line);
}

.stat-list {
  border-top: 1px solid var(--line);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
}

.stat-row p {
  margin: 0;
  color: #3f3f3c;
  font-size: 22px;
  line-height: 1.38;
}

.stat-row strong {
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 520;
  letter-spacing: 0;
}

.mock-workspace {
  padding: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(38, 34, 28, 0.09);
}

.mock-tabs {
  display: flex;
  width: fit-content;
  padding: 5px;
  border-radius: 999px;
  background: var(--soft);
}

.mock-tabs button {
  min-width: 112px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #77736f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mock-tabs button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.mock-panel {
  display: none;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 210px;
  margin-top: 18px;
  padding: 28px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(178, 71, 47, 0.1), transparent 38%),
    #f8f7f4;
}

.mock-panel.is-active {
  display: grid;
}

.mock-panel h3 {
  font-size: 30px;
}

.mock-panel strong {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 560;
}

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

.pricing-grid article {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 560px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.pricing-grid article.featured {
  background: #eef1ff;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.1);
}

.pricing-grid h3 {
  font-size: 22px;
}

.pricing-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 56px;
  line-height: 1;
}

.pricing-grid strong span {
  color: var(--muted);
  font-size: 22px;
}

.pricing-grid .button {
  width: 100%;
}

.pricing-grid .button-primary {
  background: var(--text-dark);
  color: #ffffff;
  box-shadow: none;
}

.pricing-grid .button-secondary {
  border-color: #d9dde7;
  background: #ffffff;
  color: var(--text-dark);
}

.pricing-grid ul {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  border-top: 1px solid var(--line);
  color: #585855;
}

.site-footer p {
  margin: 0;
}

.site-footer .brand-mark {
  border-color: var(--text-dark);
  background:
    linear-gradient(135deg, transparent 42%, var(--text-dark) 43%, var(--text-dark) 53%, transparent 54%),
    linear-gradient(45deg, transparent 42%, var(--text-dark) 43%, var(--text-dark) 53%, transparent 54%),
    #ffffff;
  box-shadow: inset 0 0 0 5px var(--paper);
}

/* Taito-inspired white product-site treatment */
:root {
  --ink: #181816;
  --text-dark: #181816;
  --muted: #6d6a65;
  --soft: #f4f4f2;
  --line: #e1dfda;
  --paper: #fbfbfa;
  --accent: #181816;
  --accent-dark: #000000;
  --sage: #77736d;
  --shadow: 0 30px 90px rgba(49, 45, 38, 0.16);
}

.site-header {
  background: rgba(250, 249, 247, 0.88);
  color: var(--ink);
}

.brand-mark {
  border-color: var(--ink);
  background:
    linear-gradient(135deg, transparent 42%, var(--ink) 43%, var(--ink) 53%, transparent 54%),
    linear-gradient(45deg, transparent 42%, var(--ink) 43%, var(--ink) 53%, transparent 54%),
    var(--white);
  box-shadow: inset 0 0 0 5px var(--paper);
}

.desktop-nav {
  color: #45433f;
}

.desktop-nav a:hover {
  color: #000000;
}

.site-header .desktop-nav a,
.site-header .desktop-nav .nav-static,
.site-header .desktop-nav a:hover,
.site-header .desktop-nav a:active,
.site-header .desktop-nav a:visited {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.header-action {
  background: var(--ink);
}

.hero-section {
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 76px 32px 52px;
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 238, 235, 0.36), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  color: var(--ink);
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(49, 45, 38, 0.05);
}

h1 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(42px, 4.4vw, 88px);
  line-height: 1;
  font-weight: 500;
}

.hero-lede {
  margin-left: auto;
  margin-right: auto;
  color: #55514b;
}

.hero-actions {
  justify-content: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(24, 24, 22, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #5a5751;
  font-size: 13px;
  font-weight: 760;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.button-primary:hover {
  background: #000000;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.browser-frame {
  width: min(1180px, 100%);
  min-width: 0;
  border-color: var(--line);
  background: var(--white);
}

.browser-topbar {
  border-color: var(--line);
  background: #f0efec;
}

.browser-topbar span {
  background: #c9c4bc;
}

.browser-topbar p {
  background: rgba(255, 255, 255, 0.72);
  color: #76716a;
}

.app-sidebar {
  border-color: var(--line);
  background: #fbfaf8;
}

.project-pill {
  background: var(--white);
  box-shadow: inset 0 0 0 1px #e7e3dc;
}

.project-icon,
.spark-dot {
  background:
    radial-gradient(circle at 65% 35%, #f4d35e 0 15%, transparent 16%),
    linear-gradient(135deg, #181816, #b6a68e);
}

.app-sidebar a,
.app-sidebar span {
  color: #625f59;
}

.app-sidebar a.active,
.app-sidebar span.active {
  background: #eeeae4;
  color: var(--ink);
}

.dashboard-panel {
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.8), transparent 38%),
    #f8f7f4;
}

.health-score {
  background:
    radial-gradient(circle at center, #f8f7f4 58%, transparent 59%),
    conic-gradient(var(--accent) 0 74%, #e4ded6 74% 100%);
}

.metric-grid article,
.analysis-card,
.website-card,
.assistant-panel,
.feature-card,
.workflow-grid article,
.mock-workspace,
.pricing-grid article {
  border-color: #e4e0d9;
  background: rgba(255, 255, 255, 0.84);
}

.metric-grid p,
.analysis-card p,
.website-card p {
  color: #62625f;
}

.module-rail {
  border-color: #e4e0d9;
  background: #ffffff;
}

.module-rail span {
  color: #77736d;
}

.module-rail .active {
  background: #eeeae4;
  color: var(--ink);
}

.line-icon {
  color: var(--ink);
}

.bars {
  background: linear-gradient(135deg, #efe6de, #d9e1d2);
}

.bars span {
  background: linear-gradient(#181816, #b6a68e);
}

.tag-row span {
  background: #f0ece6;
  color: #55524d;
}

.site-preview {
  background: #eee9e2;
}

.preview-hero {
  background:
    radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(135deg, #1e1e1c, #8f6f52 55%, #d9c6aa);
}

.preview-lines span {
  background: #c8c1b6;
}

.task-list {
  color: #52524f;
}

.assistant-panel {
  background: #fbfaf8;
}

.chat-bubble {
  background: #ece8e1;
  color: #3d3b38;
}

.chat-bubble.soft {
  background: #ffffff;
  border-color: #e5e1dc;
}

.assistant-button {
  background: var(--ink);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1050px;
  margin: 4px auto 0;
  color: #77736d;
}

.logo-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 760;
}

.feature-visual {
  display: grid;
  min-height: 170px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.68), transparent 22%),
    linear-gradient(135deg, #d8d2c8, #f2eee8);
  overflow: hidden;
}

.blurred-tools {
  grid-template-columns: repeat(3, 58px);
  place-content: center;
  gap: 14px;
  filter: saturate(0.9);
}

.blurred-tools span {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 44px rgba(49, 45, 38, 0.18);
}

.mini-chat {
  align-content: center;
  gap: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, #ddd6cc, #c9d2ce);
}

.mini-chat p,
.country-list p {
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #3d3b38;
  font-size: 13px;
  line-height: 1.35;
}

.mini-chat p:last-child {
  margin-left: 28px;
  background: #181816;
  color: #ffffff;
}

.country-list {
  gap: 8px;
  background: #f0efec;
}

.country-list p {
  display: grid;
  gap: 3px;
}

.country-list span {
  color: #77736d;
  font-size: 12px;
}

.storefront-mini {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, #e4ded4, #cfd8d1);
}

.storefront-mini span {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(49, 45, 38, 0.11);
}

.storefront-mini span:first-child {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 45%),
    linear-gradient(135deg, #1d1d1b, #8f765f);
}

.queue-mini {
  align-content: center;
  gap: 9px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, #e9e5dd, #f6f3ee);
}

.queue-mini p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(24, 24, 22, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #3d3b38;
  font-size: 13px;
}

.queue-mini span {
  min-width: 54px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #f0efec;
  color: #181816;
  font-size: 11px;
  text-align: center;
}

.final-cta {
  max-width: 1480px;
  margin: 0 auto;
  padding: 118px 32px 128px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin: 0 auto 30px;
  font-size: clamp(52px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

/* Final typography rule: all visible text stays black, per art direction. */
body :where(a, p, span, small, strong, h1, h2, h3, li, button, div) {
  color: #181816 !important;
}

.button-primary,
.header-action,
.assistant-button {
  border: 1px solid #181816;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(24, 24, 22, 0.08);
}

.button-primary:hover,
.header-action:hover,
.assistant-button:hover {
  background: #f4f4f2;
}

.mini-chat p:last-child {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 22, 0.1);
}

@media (max-width: 1180px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 900px;
    padding-left: 0;
  }

  .hero-visual {
    overflow-x: auto;
    padding-bottom: 18px;
  }

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

  .feature-card.wide {
    grid-column: span 1;
  }

  .insight-section,
  .intro-strip {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 13px;
  }

  .hero-section,
  .section,
  .workflow-section,
  .demo-section,
  .pricing-section,
  .insight-section {
    padding: 72px 18px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 50px);
    line-height: 1;
  }

  .hero-lede,
  .intro-strip p:last-child {
    font-size: 17px;
  }

  .logo-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .logo-strip span {
    flex: 0 0 auto;
  }

  .browser-frame {
    min-width: 700px;
  }

  .feature-visual {
    min-height: 150px;
  }

  .feature-band {
    grid-template-columns: 1fr;
    padding: 0 18px 72px;
  }

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

  .stat-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .stat-row strong {
    font-size: 64px;
  }

  .mock-tabs {
    width: 100%;
  }

  .mock-tabs button {
    min-width: 0;
    width: 100%;
  }

  .mock-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
.module-rail {
  display: flex;
  gap: 8px;
  margin: 2px 0 12px;
  padding: 5px;
  border: 1px solid rgba(126, 134, 153, 0.2);
  border-radius: 12px;
  background: rgba(8, 9, 13, 0.28);
}

.module-rail span {
  flex: 1;
  padding: 8px 9px;
  border-radius: 9px;
  color: #8f96a6;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.module-rail .active {
  background: rgba(108, 92, 255, 0.18);
  color: #ffffff;
}

/* Demo screenshot replacement */
.hero-visual .browser-frame {
  display: none;
}

.demo-screenshot {
  display: block;
  width: min(1180px, 100%);
  height: auto;
  border: 1px solid #e4e0d9;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(49, 45, 38, 0.14);
}

@media (max-width: 760px) {
  .demo-screenshot {
    width: 100%;
    border-radius: 18px;
  }
}

/* Hero alignment: Linear-style left title with CTA on right */
.hero-copy {
  width: min(1280px, 100%);
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

.hero-copy h1 {
  margin-left: 0;
  margin-right: 0;
}

.hero-lede {
  margin-left: 0;
  margin-right: 0;
}

.hero-actions {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

.hero-actions .button-primary {
  order: 2;
  margin-left: auto;
}

.hero-actions .button-secondary {
  order: 1;
}

@media (max-width: 760px) {
  .hero-copy {
    text-align: left;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button-primary {
    order: 1;
    margin-left: 0;
  }

  .hero-actions .button-secondary {
    order: 2;
  }
}

/* Hero CTA buttons match header action */
.hero-actions .button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #181816;
  font-size: 15px;
  font-weight: 500;
  box-shadow: none;
}

.hero-actions .button:hover {
  background: #f4f4f2;
  transform: none;
}

.hero-actions .button-primary,
.hero-actions .button-secondary {
  border: none;
  background: transparent;
  color: #181816;
  box-shadow: none;
}

/* Hero CTA visible button background */
.hero-actions .button,
.hero-actions .button-primary,
.hero-actions .button-secondary {
  background: #f4f4f2;
  border: 1px solid rgba(24, 24, 22, 0.08);
  box-shadow: none;
}

.hero-actions .button:hover,
.hero-actions .button-primary:hover,
.hero-actions .button-secondary:hover {
  background: #ececea;
}

/* Header CTA without border */
.header-action {
  border: none;
  box-shadow: none;
  background: transparent;
}

.header-action:hover {
  background: #f4f4f2;
}

/* Hero text width and title line spacing */
.hero-copy {
  width: min(66.666%, 1120px);
  max-width: 1120px;
  margin-left: 0;
  margin-right: auto;
}

.hero-copy h1 {
  line-height: 1;
  margin-bottom:18px
}

@media (max-width: 760px) {
  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-copy h1 {
    line-height: 1.06;
  }
}

/* Revert hero text width and title spacing */
.hero-copy {
  width: min(1280px, 100%);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-copy h1 {
  line-height: 1;
}

@media (max-width: 760px) {
  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-copy h1 {
    line-height: 1;
  }
}

/* Header CTA matches See More Details button */
.header-action {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 22, 0.08);
  background: #f4f4f2;
  color: #181816;
  font-size: 15px;
  font-weight: 500;
  box-shadow: none;
}

.header-action:hover {
  background: #ececea;
}

/* Match hero h1 line-height with paragraph */
.hero-copy h1 {
  line-height: 1.65;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    line-height: 1.65;
  }
}

/* Hero visual direction from latest UI mockup */
.hero-section {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  min-height: auto;
  padding: 110px 8vw 70px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 52px;
  right: 6vw;
  width: min(34vw, 430px);
  aspect-ratio: 1.25;
  background: url("assets/hero-bg-logo.png") center / contain no-repeat;
  opacity: 0.11;
  filter: grayscale(1) blur(2px);
  pointer-events: none;
}

/* Hero visual direction from latest UI mockup */
.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  text-align: left;
}

.hero-copy h1 {
  order: 1;
  max-width: 620px;
  margin: 0 0 56px;
  font-size: clamp(40px, 3.25vw, 54px);
  line-height: 1.35;
  font-weight: 650;
}

.hero-actions {
  order: 2;
  width: 100%;
  justify-content: center;
  margin: 0 0 22px;
}

.hero-actions .button-secondary {
  display: none;
}

.hero-actions .button-primary {
  order: 1;
  margin-left: 0;
  min-height: 50px;
  padding: 0 30px;
  background: #f4f4f2;
  border: 1px solid rgba(24, 24, 22, 0.1);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 650;
}

.hero-lede {
  order: 3;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 650;
}

.demo-screenshot {
  width: min(1240px, 94vw);
}

@media (max-width: 760px) {
  .hero-section {
    padding: 72px 18px 48px;
  }

  .hero-section::before {
    top: 80px;
    right: -20vw;
    width: 78vw;
    opacity: 0.08;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin-bottom: 34px;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.25;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-lede {
    text-align: left;
    font-size: 17px;
  }

  .demo-screenshot {
    width: 100%;
  }
}

/* Hero typography refinement from UI mockup */
.hero-copy h1 {
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
  margin-bottom: 95px;
}

.hero-lede {
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    line-height: 1.22;
    margin-bottom: 34px;
  }
}

/* Hero text width and button weight refinement */
.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(38px, 3.1vw, 50px);
  font-weight: 600;
  line-height: 1.26;
  margin-bottom: 95px;
}

.hero-actions .button-primary {
  font-weight: 500;
  font-size: 15px;
}

.hero-lede {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.22;
  }

  .hero-lede {
    font-size: 16px;
  }
}

/* Global h2 scale follows hero h1 */
body h2,
.intro-strip h2,
.section-head h2,
.insight-copy h2,
.final-cta h2,
.dashboard-head h2 {
  font-size: clamp(38px, 3.1vw, 50px);
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  body h2,
  .intro-strip h2,
  .section-head h2,
  .insight-copy h2,
  .final-cta h2,
  .dashboard-head h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.22;
  }
}

/* Unified paragraph typography */
body p,
.intro-strip p,
.section-head p,
.feature-card p,
.workflow-grid p,
.mock-panel p,
.pricing-grid p,
.insight-copy p,
.site-footer p,
.final-cta p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-lede {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

@media (max-width: 760px) {
  body p,
  .intro-strip p,
  .section-head p,
  .feature-card p,
  .workflow-grid p,
  .mock-panel p,
  .pricing-grid p,
  .insight-copy p,
  .site-footer p,
  .final-cta p {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.42;
  }
}

/* Unified page margins */
:root {
  --page-x: clamp(24px, 8vw, 96px);
}

.site-header {
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.hero-section {
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.intro-strip,
.feature-band,
.workflow-section,
.insight-section,
.demo-section,
.pricing-section,
.final-cta,
.site-footer {
  width: 100%;
  max-width: none;
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.intro-strip {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 760px) {
  :root {
    --page-x: 18px;
  }

  .site-header,
  .hero-section,
  .intro-strip,
  .feature-band,
  .workflow-section,
  .insight-section,
  .demo-section,
  .pricing-section,
  .final-cta,
  .site-footer {
    padding-left: var(--page-x);
    padding-right: var(--page-x);
  }
}

/* Remove section divider lines between page blocks */
.intro-strip,
.workflow-section,
.insight-section,
.demo-section,
.pricing-section,
.site-footer,
.final-cta {
  border-top: none;
}

.stat-list,
.stat-row {
  border-color: rgba(24, 24, 22, 0.08);
}

/* Feature card layout alignment */
.feature-band {
  align-items: stretch;
  grid-auto-flow: row;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border: 1px solid rgba(24, 24, 22, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(24, 24, 22, 0.04);
}

.feature-card.muted {
  background: rgba(255, 255, 255, 0.86);
}

.feature-card.wide.muted {
  grid-column: span 3;
}

.feature-visual {
  min-height: 170px;
  border-radius: 14px;
  background: #f3f2ef;
}

.queue-mini {
  background: #f3f2ef;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.feature-card h3 {
  margin: 0;
}

.feature-card > p {
  margin: 18px 0 0;
}

@media (max-width: 980px) {
  .feature-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.wide,
  .feature-card.wide.muted {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-card.wide,
  .feature-card.wide.muted {
    grid-column: span 1;
  }
}

/* Diagnosis-to-action product workflow */
.demo-section {
  padding-top: 128px;
  padding-bottom: 128px;
  background: transparent;
}

.demo-section .section-head {
  max-width: 1060px;
  margin-bottom: 58px;
}

.demo-section .section-head .eyebrow {
  margin-bottom: 28px;
  font-size: 15px;
}


.demo-section .section-head h2 {
  max-width: 800px;
  font-size:clamp(32px, 2.5vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.055em;
  font-weight: 550;
}

.mock-workspace {
  padding: 22px;
  border: 1px solid rgba(24, 24, 22, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(24, 24, 22, 0.08);
}

.mock-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 560px);
  padding: 5px;
  background: #f1f0ed;
}

.mock-tabs button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  font-size: 15px;
  font-weight: 600;
}

.mock-panel {
  grid-template-columns: minmax(0, 1fr) 100px;
  min-height: 300px;
  margin-top: 22px;
  padding: clamp(34px, 4vw, 62px);
  border: 1px solid rgba(24, 24, 22, 0.06);
  border-radius: 20px;
  background: #f7f6f3;
}

.mock-panel h3 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mock-panel p {
  max-width: 900px;
  margin: 0;
  color: #4e4c47;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
}

.mock-panel strong {
  align-self: start;
  justify-self: end;
  color: #a09d96;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

@media (max-width: 640px) {
  .demo-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .mock-workspace {
    padding: 12px;
    border-radius: 20px;
  }

  .mock-tabs button {
    min-height: 44px;
    font-size: 13px;
  }

  .mock-panel {
    grid-template-columns: 1fr;
    min-height: 340px;
    padding: 28px;
  }

  .mock-panel strong {
    order: -1;
    justify-self: start;
    margin-bottom: 38px;
    font-size: 40px;
  }
}

/* Why SPARK — photographic editorial refinement */
.feature-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.feature-card .feature-visual {
  min-height: 360px;
  border: 0;
  background-image: linear-gradient(rgba(247, 245, 240, 0.08), rgba(247, 245, 240, 0.08)), url("assets/why-spark-scenes.png");
  background-repeat: no-repeat;
  background-size: 200% 200%;
  box-shadow: inset 0 0 0 1px rgba(24, 24, 22, 0.06);
}

.feature-card:nth-child(1) .feature-visual {
  background-position: 0 0;
}

.feature-card:nth-child(2) .feature-visual {
  background-position: 100% 0;
}

.feature-card:nth-child(3) .feature-visual {
  background-position: 0 100%;
}

.feature-card:nth-child(4) .feature-visual {
  background-position: 100% 100%;
}

.feature-card,
.feature-card.wide,
.feature-card.wide.muted {
  grid-template-rows: 360px auto auto;
}

.feature-card:nth-child(4) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.8fr);
  grid-template-rows: auto auto;
  column-gap: clamp(42px, 6vw, 96px);
  margin-top: 48px;
}

.feature-card:nth-child(4) .feature-visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 440px;
  margin: 0;
}

.feature-card:nth-child(4) .card-title {
  grid-column: 2;
  align-self: end;
  margin-bottom: 18px;
}

.feature-card:nth-child(4) > p {
  grid-column: 2;
  align-self: start;
}

.feature-card h3 {
  font-size: clamp(25px, 1.8vw, 34px);
}

.feature-card > p {
  font-size: 18px;
}

.mini-chat,
.country-list {
  background-color: transparent;
}

.mini-chat p,
.country-list p {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

@media (max-width: 980px) {
  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.wide,
  .feature-card.wide.muted {
    grid-template-rows: 300px auto auto;
  }

  .feature-card .feature-visual {
    min-height: 300px;
  }

  .feature-card:nth-child(4) {
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 340px auto auto;
    margin-top: 0;
  }

  .feature-card:nth-child(4) .feature-visual,
  .feature-card:nth-child(4) .card-title,
  .feature-card:nth-child(4) > p {
    grid-column: 1;
  }

  .feature-card:nth-child(4) .feature-visual {
    grid-row: 1;
    min-height: 340px;
    margin-bottom: 32px;
  }

  .feature-card:nth-child(4) .card-title {
    grid-row: 2;
  }

  .feature-card:nth-child(4) > p {
    grid-row: 3;
  }
}

/* Align storefront visual with product experience visual */
.storefront-mini {
  grid-template-columns: repeat(3, 58px);
  grid-template-rows: none;
  place-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.68), transparent 22%),
    linear-gradient(135deg, #d8d2c8, #f2eee8);
}

.storefront-mini span,
.storefront-mini span:first-child {
  grid-row: auto;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 44px rgba(49, 45, 38, 0.18);
}

/* Medium h3 typography */
h3,
.card-title h3,
.feature-card h3,
.workflow-grid h3,
.mock-panel h3,
.pricing-grid h3 {
  font-weight: 500;
  letter-spacing: 0;
}

/* Larger hero background logo */
.hero-section::before {
  right: 3vw;
  width: min(44vw, 560px);
  opacity: 0.1;
}

@media (max-width: 760px) {
  .hero-section::before {
    right: -26vw;
    width: 92vw;
    opacity: 0.075;
  }
}


/* Move hero background logo upward */
.hero-section::before {
  top: 0px;
}

@media (max-width: 760px) {
  .hero-section::before {
    top: 52px;
  }
}

/* Scroll reveal motion */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero-section .hero-copy,
.hero-section .hero-visual {
  animation: heroEntrance 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-section .hero-visual {
  animation-delay: 120ms;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .hero-section .hero-copy,
  .hero-section .hero-visual {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* Why SPARK — editorial feature layout */
.intro-strip {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: start;
  padding-top: 80px;
  padding-bottom: 50px;
}

.intro-strip h2 {
  max-width: 800px;
  font-size:clamp(32px, 2.5vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.055em;
  font-weight: 550;
}

.intro-strip .eyebrow {
  margin-bottom: 28px;
  font-size: 15px;
}

.intro-copy {
  padding-top: 55px;
}

.intro-copy p:last-child {
  max-width: 600px;
  color: #41413e;
  font-size: clamp(12px, 2vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.028em;

}

.feature-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 34px);
  padding-bottom: 128px;
}

.feature-card,
.feature-card.wide,
.feature-card.wide.muted {
  display: grid;
  grid-column: span 1;
  grid-template-rows: 300px auto auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card .feature-visual {
  min-height: 300px;
  margin: 0 0 32px;
  border: 1px solid rgba(24, 24, 22, 0.06);
  border-radius: 0;
  overflow: hidden;
  background-color: #e9e7e2;
}

.feature-card:nth-child(1) .feature-visual {
  background: linear-gradient(145deg, #dedbd3 0%, #f1eee8 54%, #cbc5ba 100%);
}

.feature-card:nth-child(2) .feature-visual {
  background: linear-gradient(145deg, #d7d3ca 0%, #efede8 50%, #c9c3b8 100%);
}

.feature-card:nth-child(3) .feature-visual {
  background: linear-gradient(145deg, #d9d6cf 0%, #f0eee9 48%, #c8c1b7 100%);
}

.feature-card:nth-child(4) .feature-visual {
  background: linear-gradient(145deg, #d4d0c8 0%, #efede7 52%, #c5beb3 100%);
}

.feature-card .card-title {
  align-items: flex-start;
  margin: 0 0 14px;
}

.feature-card h3 {
  font-size: clamp(23px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.feature-card > p {
  max-width: 95%;
  margin: 0;
  color: #5a5955;
  font-size: 17px;
  line-height: 1.48;
}

@media (max-width: 980px) {
  .intro-strip {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 64px;
  }

  .feature-card.wide,
  .feature-card.wide.muted {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .intro-strip {
    padding-top: 80px;
    padding-bottom: 56px;
  }

  .intro-strip .eyebrow {
    margin-bottom: 36px;
  }

  .intro-strip h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .intro-copy p:last-child {
    font-size: 21px;
  }

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

  .feature-card,
  .feature-card.wide,
  .feature-card.wide.muted {
    grid-template-rows: 260px auto auto;
  }

  .feature-card .feature-visual {
    min-height: 260px;
  }
}

/* Final Why SPARK composition */
.feature-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.feature-card,
.feature-card.wide,
.feature-card.wide.muted {
  grid-column: span 1;
  grid-template-rows: 360px auto auto;
}

.feature-card .feature-visual,
.feature-card:nth-child(4) .feature-visual.storefront-mini {
  min-height: 360px;
  border: 0;
  background-image: linear-gradient(rgba(247, 245, 240, 0.06), rgba(247, 245, 240, 0.06)), url("assets/why-spark-scenes.png");
  background-repeat: no-repeat;
  background-size: 200% 200%;
  box-shadow: inset 0 0 0 1px rgba(24, 24, 22, 0.06);
}

.feature-card:nth-child(1) .feature-visual { background-position: 0 0; }
.feature-card:nth-child(2) .feature-visual { background-position: 100% 0; }
.feature-card:nth-child(3) .feature-visual { background-position: 0 100%; }
.feature-card:nth-child(4) .feature-visual.storefront-mini { background-position: 100% 100%; }

.feature-card:nth-child(4) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.8fr);
  grid-template-rows: auto auto;
  column-gap: clamp(42px, 6vw, 96px);
  margin-top: 48px;
}

.feature-card:nth-child(4) .feature-visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 440px;
  margin: 0;
}

.feature-card:nth-child(4) .card-title {
  grid-column: 2;
  align-self: end;
  margin-bottom: 18px;
}

.feature-card:nth-child(4) > p {
  grid-column: 2;
  align-self: start;
}

@media (max-width: 980px) {
  .feature-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card:nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .feature-band { grid-template-columns: 1fr; }

  .feature-card,
  .feature-card.wide,
  .feature-card.wide.muted {
    grid-template-rows: 300px auto auto;
  }

  .feature-card:nth-child(4) {
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 340px auto auto;
    margin-top: 0;
  }

  .feature-card:nth-child(4) .feature-visual,
  .feature-card:nth-child(4) .card-title,
  .feature-card:nth-child(4) > p { grid-column: 1; }

  .feature-card:nth-child(4) .feature-visual {
    grid-row: 1;
    min-height: 340px;
    margin-bottom: 32px;
  }

  .feature-card:nth-child(4) .card-title { grid-row: 2; }
  .feature-card:nth-child(4) > p { grid-row: 3; }
}

/* Why SPARK — match supplied content reference */
.feature-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
  padding-bottom: 128px;
}

.feature-card,
.feature-card.wide,
.feature-card.wide.muted,
.feature-card:nth-child(4) {
  display: flex;
  grid-column: span 1;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 470px;
  margin: 0;
  padding: 0 clamp(24px, 2.2vw, 42px);
  border: 1px solid rgba(24, 24, 22, 0.07);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 12px 24px rgba(24, 24, 22, 0.12),
    0 2px 6px rgba(24, 24, 22, 0.06);
}

.feature-card .feature-visual,
.feature-card:nth-child(4) .feature-visual {
  display: none;
}

.feature-card .card-title,
.feature-card:nth-child(4) .card-title {
  display: block;
  align-self: auto;
  margin: 126px 0 0;
}

.feature-card h3,
.feature-card:nth-child(4) h3 {
  margin: 0;
  font-size: clamp(22px, 1.55vw, 29px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.feature-card > p,
.feature-card:nth-child(4) > p {
  align-self: auto;
  max-width: 100%;
  margin: 82px 0 0;
  color: #252523;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.32;
}

/* Responsive header alignment */
.site-header {
  grid-template-columns: minmax(90px, 1fr) auto minmax(120px, 1fr);
  column-gap: clamp(12px, 2vw, 32px);
  position: relative;
  top: auto;
  z-index: 20;
  background: #fbfbfa;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header .brand-logo {
  width: clamp(94px, 8vw, 120px);
}

.site-header .desktop-nav {
  gap: clamp(14px, 2.2vw, 34px);
}

.site-header .desktop-nav a,
.site-header .desktop-nav a:hover,
.site-header .desktop-nav a:active,
.site-header .desktop-nav a:visited {
  display: inline-flex;
  align-items: center;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transform: none;
  scale: 1;
  white-space: nowrap;
}

.site-header .desktop-nav .nav-static {
  cursor: default;
  user-select: none;
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a:focus,
.site-header .desktop-nav a:focus-visible,
.site-header .desktop-nav a:active,
.site-header .desktop-nav a[aria-current="page"] {
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transform: none;
  scale: 1;
}

.site-header .header-action {
  min-height: clamp(38px, 3.5vw, 44px);
  padding-right: clamp(12px, 1.7vw, 22px);
  padding-left: clamp(12px, 1.7vw, 22px);
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
}

.final-cta .button-primary {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(24, 24, 22, 0.08);
  border-radius: 999px;
  background: #f4f4f2;
  color: #181816;
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
}

.final-cta .button-primary:hover {
  background: #ececea;
}


@media (max-width: 1100px) {
  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.wide,
  .feature-card.wide.muted,
  .feature-card:nth-child(4) {
    min-height: 360px;
  }

  .feature-card .card-title,
  .feature-card:nth-child(4) .card-title {
    margin-top: 92px;
  }

  .feature-card > p,
  .feature-card:nth-child(4) > p {
    margin-top: 58px;
  }
}

/* Why SPARK proximity-dot background */
.why-spark-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
}

.proximity-dots {
  position: fixed;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body > .site-header,
body > main,
body > .site-footer {
  position: relative;
  z-index: 1;
}

.hero-section {
  background: transparent;
}

/* What SPARK Diagnoses */
.workflow-section {
  padding-top: 118px;
  padding-bottom: 132px;
  background: transparent;
}

.diagnosis-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: end;
}

.diagnosis-heading .eyebrow {
  margin-bottom: 28px;
  font-size: 15px;
}

.diagnosis-heading h2 {
  max-width: 800px;
  font-size:clamp(32px, 2.5vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.055em;
  font-weight: 550;

}

.diagnosis-heading > p {
  max-width: 600px;
  color: #41413e;
  font-size: clamp(12px, 2vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.028em;
  margin-bottom: 41px;
}

.diagnosis-orbits {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  justify-items: center;
  gap: 72px clamp(48px, 8vw, 140px);
  max-width: 1180px;
  min-height: 0;
  margin: 88px auto 0;
}

.diagnosis-orb {
  position: relative;
  width: 220px;
  height: 220px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: none;
  background: transparent;
  cursor: pointer;
  perspective: 900px;
}

.orb-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.diagnosis-orb:hover .orb-inner,
.diagnosis-orb:focus-visible .orb-inner,
.diagnosis-orb.is-flipped .orb-inner {
  transform: rotateY(180deg);
}

.orb-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(24, 24, 22, 0.09);
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 14px 26px rgba(24, 24, 22, 0.12),
    0 2px 6px rgba(24, 24, 22, 0.05);
  color: #242422;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.12;
  text-align: center;
}

.orb-back {
  transform: rotateY(180deg);
  background: #ffffff;
  color: #242422;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.diagnosis-orb:focus-visible .orb-face {
  box-shadow: 0 0 0 4px rgba(24, 24, 22, 0.16), 0 14px 26px rgba(24, 24, 22, 0.12);
}

.orb-market,
.orb-marketing,
.orb-testing,
.orb-seo,
.orb-product,
.orb-website {
  inset: auto;
}

.workflow-section,
.diagnosis-heading,
.diagnosis-orbits,
.diagnosis-orb {
  opacity: 1;
  transform: none;
  animation: none;
}

@media (max-width: 980px) {
  .diagnosis-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .diagnosis-orbits {
    grid-template-columns: repeat(2, 180px);
    justify-content: center;
    gap: 54px clamp(48px, 10vw, 110px);
  }

  .diagnosis-orb {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 640px) {
  .workflow-section {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .diagnosis-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .diagnosis-heading > p {
    font-size: 20px;
  }

  .diagnosis-orbits {
    grid-template-columns: repeat(2, 160px);
    justify-content: space-around;
    gap: 38px 18px;
  }

  .diagnosis-orb {
    width: 160px;
    height: 160px;
  }

  .orb-face {
    font-size: 17px;
  }

  .orb-back {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb-inner {
    transition: none;
  }
}

/* How Diagnosis Works */
.insight-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
  background: transparent;
}

.insight-copy {
  padding-top: 9px;
}

.insight-copy .eyebrow {
  margin-bottom: 28px;
  font-size: 15px;
}

.insight-copy h2 {
  max-width: 800px;
  font-size:clamp(32px, 2.5vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.055em;
  font-weight: 550;

}

.insight-copy .insight-lede {
  max-width: 600px;
  margin: 34px 0 0;
  color: #41413e;
  font-size: clamp(12px, 2vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.028em;
}

.stat-list {
  border-top: 1px solid rgba(24, 24, 22, 0.1);
}

.stat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 36px;
  align-items: center;
  min-height: 178px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(24, 24, 22, 0.1);
}

.stat-row h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 2.5vw, 44px);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.045em;
}

.stat-row p {
  max-width: 590px;
  margin: 0;
  color: #41413e;
  font-size: clamp(12px, 2vw, 18px);
  line-height: 1.34;
  letter-spacing: -0.022em;
}

.stat-row strong {
  padding-top: 8px;
  color: #41413e;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 600;
}

@media (max-width: 980px) {
  .insight-section {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .insight-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .insight-section {
    gap: 52px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .insight-copy h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .stat-row {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 18px;
    min-height: 150px;
  }

  .stat-row p {
    font-size: 16px;
  }

  .stat-row strong {
    font-size: 32px;
  }
}

.why-spark-shell .intro-strip,
.why-spark-shell .feature-band {
  position: relative;
  z-index: 2;
}

.why-spark-shell .intro-strip {
  border-top-color: rgba(24, 24, 22, 0.08);
}

.why-spark-shell .intro-strip h2,
.why-spark-shell .intro-strip .eyebrow {
  color: var(--text-dark);
}

.why-spark-shell .intro-copy p:last-child {
  color: #41413e;
}

.why-spark-shell .feature-card {
  box-shadow:
    0 18px 42px rgba(24, 24, 22, 0.09),
    0 2px 8px rgba(24, 24, 22, 0.05);
}

/* Why SPARK — compact card rhythm */
.feature-card,
.feature-card.wide,
.feature-card.wide.muted,
.feature-card:nth-child(4) {
  position: relative;
  min-height: 350px;
  padding: 34px 34px 38px;
  overflow: hidden;
}

.feature-card::before {
  display: block;
  color: #77756f;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}

.feature-card:nth-child(1)::before { content: "01"; }
.feature-card:nth-child(2)::before { content: "02"; }
.feature-card:nth-child(3)::before { content: "03"; }
.feature-card:nth-child(4)::before { content: "04"; }

.feature-card .card-title,
.feature-card:nth-child(4) .card-title {
  margin: 24px 0 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: 30px;
  border: 1px solid rgba(24, 24, 22, 0.12);
  border-radius: 14px;
  color: #242422;
  background: #f7f6f3;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.feature-card:nth-child(4) h3 {
  max-width: 270px;
  font-size: clamp(22px, 1.45vw, 27px);
  font-weight: 500;
  line-height: 1.16;
}

.feature-card > p,
.feature-card:nth-child(4) > p {
  margin: 34px 0 0;
  color: #55534e;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
}

.feature-card::after {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(24, 24, 22, 0.12);
  border-radius: 50%;
  color: #55534e;
  content: "↗";
  font-size: 15px;
  line-height: 1;
  text-align: center;
}

@media (max-width: 640px) {
  .feature-card,
  .feature-card.wide,
  .feature-card.wide.muted,
  .feature-card:nth-child(4) {
    min-height: 330px;
    padding: 28px;
  }

  .feature-card .card-title,
  .feature-card:nth-child(4) .card-title {
    margin-top: 42px;
  }
}
