/* DynFleet — responsive marketing site */
:root {
  --bg: #0a0e14;
  --bg-elevated: #121820;
  --bg-card: #161d28;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf4;
  --text-muted: #8b9cb3;
  --accent: #2dd4bf;
  --accent-dim: #14b8a6;
  --accent-glow: rgba(45, 212, 191, 0.25);
  --gradient: linear-gradient(135deg, #2dd4bf 0%, #3b82f6 55%, #6366f1 100%);
  /* High-attention CTAs (signup, get updates) — yellow on dark UI */
  --cta-gradient: #ffd600;
  --cta-gradient-hover: #ffe033;
  --cta-text: #000000;
  --cta-glow: rgba(255, 214, 0, 0.45);
  --cta-glow-hover: rgba(255, 224, 51, 0.55);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1320px;
  --nav-h: 72px;
  --page-gutter: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  z-index: 10000;
}

.skip-link:focus {
  left: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px))
    max(var(--page-gutter), env(safe-area-inset-right, 0px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(240px, 58vw);
}

.site-footer .logo-img {
  height: 42px;
  max-width: 220px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--bg);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.primary-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.primary-nav a {
  color: var(--text-muted);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown--current .nav-dropdown-toggle {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  min-width: 11rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 1100;
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 961px) {
  .nav-submenu--industries {
    min-width: 12.5rem;
    max-height: min(70vh, 24rem);
    overflow-y: auto;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cta-gradient);
  color: var(--cta-text);
  font-weight: 800;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 4px 20px var(--cta-glow);
}

.btn-primary:hover {
  background: var(--cta-gradient-hover);
  color: #000000;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 8px 32px var(--cta-glow-hover);
}

.btn-primary:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

.nav-cta .btn-primary {
  padding: 0.65rem 1.25rem;
  color: #000000;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 4px 22px var(--cta-glow);
}

.primary-nav .nav-cta a.btn-primary:hover {
  color: #ffffff;
  background: var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 24px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}

/* Layout */
main {
  display: block;
  width: 100%;
  max-width: 100%;
}

.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px))
    max(var(--page-gutter), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-width: 0;
}

.hero-grid > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 36em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}

.hero-visual .metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.metric-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
}

.metric-card strong.metric-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  text-transform: capitalize;
}

.metric-card strong.metric-label::before {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: inset 0 0 0 1px var(--bg-card);
}

.metric-card--action strong.metric-label::before {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  content: "\2192";
  font-size: 1.25rem;
  line-height: 1;
}

.metric-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Cards grid */
.cards {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.cards > * {
  min-width: 0;
}

@media (min-width: 600px) {
  .cards.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .cards.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-2px);
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: none;
}

.card-link .learn {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.card-link .learn::after {
  content: " \2192";
}

/* Typography blocks */
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--text-muted);
  max-width: 42em;
  margin: 0 0 2rem;
}

.two-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.06);
}

.cta-band .btn-primary {
  padding: 0.85rem 1.75rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.cta-inline {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(251, 191, 36, 0.05));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-inline p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36em;
  flex: 1 1 16rem;
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.card-link.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card-thumb {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  display: block;
  background: var(--bg-card);
}

.card-link.blog-card .blog-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.card-link.industry-card {
  padding: 0;
  overflow: hidden;
}

.card-link.industry-card .industry-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.card-link.industry-card .industry-card-body h3 {
  margin-top: 0;
}

.article-hero {
  margin: 1.25rem 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-hero img {
  width: 100%;
  display: block;
  max-height: 28rem;
  object-fit: cover;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 32em;
  margin: 0 auto 1.5rem;
}

/* Forms */
.form-panel {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-dim);
  outline-offset: 0;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: var(--text);
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-row-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.form-row-split a {
  color: var(--text-muted);
}

.form-row-split a:hover {
  color: var(--accent);
}

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-check input {
  width: auto;
  accent-color: var(--accent-dim);
}

.form-hint code {
  font-size: 0.85em;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-grid h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Page hero (inner) */
.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.page-hero .lead {
  color: var(--text-muted);
  max-width: 40em;
  margin: 0;
}

/* Mobile nav */
@media (max-width: 960px) {
  :root {
    --page-gutter: 1rem;
  }

  /* backdrop-filter makes position:fixed children use the header as their containing block */
  .site-header {
    backdrop-filter: none;
    background: var(--bg);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1002;
  }

  .header-inner {
    position: relative;
    z-index: 1002;
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    transition: transform 0.2s ease, top 0.2s ease, background 0.2s ease;
  }

  .primary-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    transform: translate3d(100%, 0, 0);
    transition: transform 0.25s ease;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    z-index: 1001;
  }

  .primary-nav.is-open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a {
    display: block;
    padding: 0.85rem 1rem;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 0.5rem;
    min-width: 0;
  }

  .nav-dropdown.is-open .nav-submenu {
    display: block;
  }

  .nav-dropdown:hover .nav-submenu {
    display: none;
  }

  .nav-dropdown.is-open:hover .nav-submenu {
    display: block;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* Invest page prose */
.prose {
  max-width: 42em;
}

.prose h2 {
  font-family: var(--font-display);
  margin-top: 2rem;
}

.prose p {
  color: var(--text-muted);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Agriculture / asset imagery & SEO content */
.hero-media {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-media {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-media img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.asset-gallery {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .asset-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .asset-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.asset-figure {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.asset-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.asset-figure figcaption {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}

.asset-figure strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.scenario-grid {
  margin-top: 1.5rem;
}

.scenario-card .scenario-asset {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.scenario-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.scenario-card p + p {
  margin-top: 0.65rem;
}

.scenario-card .scenario-detect {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.scenario-card .scenario-detect strong {
  color: var(--text);
}

.section-intro-tight {
  margin-top: 2rem;
  margin-bottom: 0;
  max-width: 42em;
}

.seo-article {
  max-width: 48em;
}

.seo-article h2,
.seo-article h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.seo-article h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
}

.seo-article h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}

.seo-article p,
.seo-article li {
  color: var(--text-muted);
}

.seo-article strong {
  color: var(--text);
  font-weight: 600;
}

.seo-article ul {
  padding-left: 1.25rem;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.faq-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.faq-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.faq-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}
