@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/plus-jakarta-sans/plus-jakarta-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/plus-jakarta-sans/plus-jakarta-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/plus-jakarta-sans/plus-jakarta-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/plus-jakarta-sans/plus-jakarta-sans-latin-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* n8n-inspired palette */
  --bg: #0e0918;
  --bg-elevated: #140f22;
  --surface: #1a1428;
  --surface-hover: #221a32;
  --text: #f4f2f8;
  --muted: #a39aad;
  --accent: #fd8925;
  --accent-hot: #ff0c00;
  --accent-soft: #ff8e5d;
  --accent-blue: #5b9dff;
  --glow: rgba(253, 137, 37, 0.42);
  --glow-warm: rgba(255, 142, 93, 0.32);
  --glow-inset: rgba(255, 142, 93, 0.3);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --gradient-cta: linear-gradient(30deg, #fd8925 0%, #ff5a1f 48%, #ff0c00 100%);
  --gradient-text: linear-gradient(30deg, #fd8925 0%, #ff6b3d 50%, #ff0c00 100%);
  --pipeline-done-bg: rgba(255, 142, 93, 0.1);
  --pipeline-done-border: rgba(255, 142, 93, 0.32);
  --pipeline-done-text: #ffc9a8;
  --radius: 12px;
  --radius-lg: 18px;
  --max: 1180px;
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --text-h1: clamp(2rem, 4.5vw, 3.5rem);
  --text-h2: clamp(1.5rem, 3vw, 2.625rem);
  --text-h3: clamp(1.125rem, 2vw, 2rem);
  --text-body: 1rem;
  --text-body-sm: 0.875rem;
  --text-caption: 0.75rem;
  --leading-h1: 1.15;
  --leading-h2: 1.2;
  --leading-h3: 1.25;
  --leading-body: 1.5;
  --section-pad-y: clamp(4rem, 8vw, 7.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-kicker {
  font-family: var(--font-heading);
  text-align: left;
}

h1, .hero-title { font-size: var(--text-h1); line-height: var(--leading-h1); font-weight: 700; }
h2 { font-size: var(--text-h2); line-height: var(--leading-h2); font-weight: 600; }
h3 { font-size: var(--text-h3); line-height: var(--leading-h3); font-weight: 500; }

a { color: var(--accent); }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}

.site-header.is-scrolled {
  background: rgba(14, 9, 24, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-link--logo {
  gap: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(400px, 72vw);
  object-fit: contain;
  object-position: left center;
}

.site-header .brand-logo {
  height: 48px;
  max-width: min(420px, 70vw);
  filter: brightness(1.08) contrast(1.05);
}

@media (max-width: 768px) {
  .site-header .brand-logo {
    height: 40px;
    max-width: min(320px, 78vw);
  }
}

.footer-brand .brand-logo {
  height: 42px;
  max-width: 340px;
  filter: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--text);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(14, 9, 24, 0.96);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a:not(.btn) {
    padding: 0.65rem 0.5rem;
  }

  .nav-links .btn {
    margin-top: 0.35rem;
    text-align: center;
  }

  .header-inner { position: relative; }

  body.nav-open { overflow: hidden; }
}

.nav-links a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:not(.btn):hover { color: var(--text); text-decoration: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
}

.lang-switch-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.15rem 0.25rem;
}

.lang-switch-link:hover { color: var(--text); text-decoration: none; }

.lang-switch-link.is-active { color: var(--accent-soft); }

.lang-switch-sep {
  color: var(--muted);
  opacity: 0.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}

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

.btn-gradient {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 24px var(--glow);
}

.btn-gradient:hover { filter: brightness(1.08); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}

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

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

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

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.text-link:hover { text-decoration: underline; }

/* Main offset for fixed header */
main { padding-top: 4rem; }

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, var(--glow) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 15% 30%, rgba(91, 157, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 25%, var(--glow-warm) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,142,93,0.14)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  padding-bottom: 2.5rem;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: var(--leading-h1);
  letter-spacing: -0.03em;
}

.hero-title-static {
  display: block;
  font-size: 0.72em;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.hero-rotator {
  display: block;
  margin: 0.15rem 0;
}

.hero-rotator-role {
  color: var(--accent);
  transition: opacity 0.22s ease;
}

.hero-rotator-role.is-changing,
.hero-rotator-action.is-changing {
  opacity: 0;
}

.hero-rotator-can {
  font-weight: 500;
  color: var(--text);
  margin: 0 0.2em;
}

.hero-rotator-action {
  display: block;
  font-size: 0.88em;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.35rem;
  transition: opacity 0.22s ease;
}

.hero-lead {
  margin: 0 auto 1.5rem;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-badge {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-beta-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(36, 64, 52, 0.45);
  box-shadow: 0 0 24px var(--glow);
}

.hero-beta-pill-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-beta-pill-version {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-beta-note {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-contact {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-contact a {
  color: var(--accent);
  font-weight: 600;
}

.beta-version-note {
  margin: 0 0 0.5rem;
  font-size: var(--text-body-sm);
  color: var(--muted);
}

.beta-stable-note {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.release-downloads {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.release-downloads li {
  margin-bottom: 0.5rem;
}

.hero-product {
  position: relative;
  padding-bottom: 3rem;
}

.hero-product-glow {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: min(90%, 900px);
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-shot {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 80px rgba(0, 0, 0, 0.55);
}

/* Deliverables */
.deliverables {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.deliverables h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

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

@media (max-width: 480px) {
  .deliverables-grid { grid-template-columns: 1fr; }
}

.deliverable-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.deliverable-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.deliverable-visual {
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(253, 137, 37, 0.2), rgba(91, 157, 255, 0.15));
}

.deliverable-card[data-deliverable='orthophoto'] .deliverable-visual {
  background: linear-gradient(135deg, #2a4a3a 0%, #4a7c59 50%, #1a2830 100%);
}

.deliverable-card[data-deliverable='dsm-dtm'] .deliverable-visual {
  background: linear-gradient(160deg, #3d3528 0%, #6b5a45 45%, #1e1a28 100%);
}

.deliverable-card[data-deliverable='point-cloud'] .deliverable-visual {
  background: linear-gradient(135deg, #1e2840 0%, #4a6fa5 40%, #0e0918 100%);
}

.deliverable-card[data-deliverable='mesh'] .deliverable-visual {
  background: linear-gradient(120deg, #3a2848 0%, #8b5a9e 45%, #141020 100%);
}

.deliverable-body {
  padding: 1rem 1.1rem 1.15rem;
}

.deliverable-format {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.deliverable-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.deliverable-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.deliverables-note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Use cases */
.use-cases {
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.use-cases h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .use-case-grid { grid-template-columns: 1fr; }
}

.use-case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: border-color 0.2s, transform 0.2s;
}

.use-case-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.use-case-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.use-case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Beta highlights */
.beta-highlights {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.beta-highlights-inner {
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}

@media (max-width: 768px) {
  .beta-highlights-inner { grid-template-columns: 1fr; }
}

.beta-highlights h2 {
  margin: 0;
  font-size: 1.35rem;
}

.beta-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  grid-column: 2;
  grid-row: 1 / span 2;
}

@media (max-width: 768px) {
  .beta-list {
    grid-column: 1;
    grid-row: auto;
  }
}

.beta-list li { margin-bottom: 0.45rem; }

.beta-highlights .text-link {
  grid-column: 2;
  align-self: end;
}

@media (max-width: 768px) {
  .beta-highlights .text-link { grid-column: 1; }
}

/* FAQ */
.faq {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.faq h2 {
  margin: 0 0 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 720px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.1rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.shot-card--solo {
  max-width: 360px;
  margin-top: 1.5rem;
}

/* Stats */
.stats {
  padding: 2.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-card {
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.stat-value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin: 0.25rem 0 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.stat-detail {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Pipeline demo */
.pipeline-demo {
  padding: 4rem 0;
}

.pipeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem 1rem;
  margin-bottom: 2rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 0 -8px var(--glow-inset) inset,
    0 8px 40px rgba(0, 0, 0, 0.45);
}

.pipeline-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.pipeline-dot--pulse {
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow);
  animation: pipelineDotPulse 1.4s ease-in-out infinite;
}

@keyframes pipelineDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.pipeline-progress {
  margin-bottom: 1rem;
}

.pipeline-progress-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.pipeline-progress-fill {
  height: 100%;
  width: 16.66%;
  border-radius: inherit;
  background: var(--gradient-cta);
  box-shadow: 0 0 16px var(--glow);
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pipeline-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  animation: pipelineShimmer 1.8s ease-in-out infinite;
}

@keyframes pipelineShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.pipeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.pipeline-step {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid var(--border);
  transition:
    color 0.35s,
    border-color 0.35s,
    background 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
}

.pipeline-step--done {
  color: var(--pipeline-done-text);
  border-color: var(--pipeline-done-border);
  background: var(--pipeline-done-bg);
}

.pipeline-step--active {
  color: #fff;
  border-color: rgba(253, 137, 37, 0.55);
  background: rgba(253, 137, 37, 0.18);
  box-shadow: 0 0 22px var(--glow);
  transform: translateY(-1px);
  animation: pipelineStepPulse 1.6s ease-in-out infinite;
}

@keyframes pipelineStepPulse {
  0%, 100% { box-shadow: 0 0 18px var(--glow); }
  50% { box-shadow: 0 0 28px rgba(255, 12, 0, 0.35); }
}

.pipeline-strip-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.pipeline-strip-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(253, 137, 37, 0.12) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: pipelineScan 3.2s ease-in-out infinite;
}

@keyframes pipelineScan {
  0%, 35% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

.pipeline-strip-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
  transition: filter 0.4s ease;
}

.pipeline-card.is-advancing .pipeline-strip-img {
  filter: brightness(1.06) saturate(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .pipeline-dot--pulse,
  .pipeline-progress-fill::after,
  .pipeline-step--active,
  .pipeline-strip-scan {
    animation: none;
  }

  .pipeline-progress-fill { transition: width 0.2s ease; }
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Split features */
.split-feature {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-feature--reverse .split-grid { direction: ltr; }
}

.split-feature--reverse .split-grid {
  direction: rtl;
}

.split-feature--reverse .split-grid > * {
  direction: ltr;
}

.split-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.check-list {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-cta);
  box-shadow: 0 0 10px var(--glow);
}

.split-media {
  margin: 0;
}

.split-media img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Pillars */
.pillars {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent, rgba(24, 21, 36, 0.5) 50%, transparent);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

@media (max-width: 520px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.pillar-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.pillar-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Screenshots */
.screenshots {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.screenshots h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .shot-grid { grid-template-columns: 1fr; }
}

.shot-card {
  margin: 0;
}

.shot-card--wide {
  grid-column: 1 / -1;
}

.shot-card img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.shot-card figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Bento features */
.features-bento {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.features-bento h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
}

.bento-card {
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bento-card--large { grid-column: span 2; }
.bento-card--wide { grid-column: 1 / -1; }

@media (max-width: 768px) {
  .bento-card--large { grid-column: span 1; }
}

.bento-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.bento-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
}

.cta-band-inner {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}

.cta-band-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, var(--glow-warm) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band-copy {
  position: relative;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 520px;
  color: var(--muted);
}

.download-platform-links {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.download-platform-links a { color: var(--muted); }
.download-platform-links a:hover { color: var(--text); }

/* Mini CTA (inner pages) */
.mini-cta {
  margin-top: 2.5rem;
}

.mini-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 10px 0 -8px var(--glow-inset) inset;
}

.mini-cta-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.mini-cta-lead {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Requirements */
.requirements-compact {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border);
}

.requirements-compact h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.req-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.req-list li { margin-bottom: 0.4rem; }

.license-note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Inner pages (features, docs, etc.) */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}

.page-content {
  padding: 2.5rem 0 4rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-card--prose { text-align: left; }

.feature-card--spaced { margin-top: 1rem; }

.feature-card--section { margin-top: 2rem; }

.feature-card--muted { opacity: 0.85; }

.page-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.download-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.download-platform-label { margin-right: 0.35rem; color: var(--muted); }

.requirements ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.requirements li { margin-bottom: 0.4rem; }

.features, .screenshots, .download, .requirements, .license {
  padding: 2.5rem 0;
}

.features h2, .screenshots h2, .download h2, .requirements h2 {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-badge {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, var(--glow-warm) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.5;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  max-width: 280px;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-start;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.12em 0.4em;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.fade-up { animation: fadeUp 0.55s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; }
  html { scroll-behavior: auto; }
}

/* Focus visible */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

/* Hero single-line H1 */
.hero-title--single {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  max-width: min(100%, 22em);
  margin-inline: auto;
}

/* Mega menu */
.nav-mega-list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1rem;
}

.nav-mega {
  position: static;
}

.nav-mega-trigger {
  background: none;
  border: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.35rem 0.25rem;
}

.nav-mega-trigger:hover,
.nav-mega.is-open .nav-mega-trigger,
.nav-mega:focus-within .nav-mega-trigger {
  color: var(--text);
}

.nav-mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding-top: 0.35rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s ease, visibility 0.12s ease;
  z-index: 200;
}

.nav-mega-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-mega:hover .nav-mega-panel,
.nav-mega:focus-within .nav-mega-panel,
.nav-mega.is-open .nav-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mega-panel-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(14, 9, 24, 0.98);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.nav-mega-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.nav-mega-col-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.nav-mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mega-links a {
  display: block;
  padding: 0.35rem 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-mega-links a:hover {
  color: var(--accent-soft);
  text-decoration: none;
}

.nav-mega-link-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.nav-mega-featured {
  max-width: 240px;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}

.nav-mega-featured-title {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.nav-mega-featured-body {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}

.nav-download-btn {
  white-space: nowrap;
}

.site-header .header-inner {
  position: relative;
}

@media (max-width: 768px) {
  .nav-mega-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-mega-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 0;
    display: none;
  }

  .nav-mega.is-open .nav-mega-panel {
    display: block;
  }

  .nav-mega:hover .nav-mega-panel,
  .nav-mega:focus-within .nav-mega-panel {
    display: none;
  }

  .nav-mega.is-open:hover .nav-mega-panel,
  .nav-mega.is-open:focus-within .nav-mega-panel {
    display: block;
  }

  .nav-mega-panel-inner {
    grid-template-columns: 1fr;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0 0.75rem;
    background: transparent;
  }

  .nav-mega-featured {
    max-width: none;
    padding-left: 0;
    border-left: none;
    margin-top: 0.75rem;
  }

  .nav-mega-trigger {
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.5rem;
  }
}

/* Hardware table */
.hw-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.hw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hw-table th,
.hw-table td {
  border: 1px solid var(--border-strong);
  padding: 0.65rem 0.85rem;
  text-align: left;
}

.hw-table thead th {
  background: var(--surface);
  color: var(--accent-soft);
}

.hw-table tbody th[scope='row'] {
  color: var(--muted);
  font-weight: 500;
}

.req-ram-note {
  font-size: 0.95rem;
  color: var(--accent-soft);
}

/* Before / after */
.showcase {
  padding: 3rem 1.5rem;
}

.before-after {
  margin: 1.5rem auto 0;
  max-width: 960px;
}

.before-after-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
}

.before-after-inner > picture,
.before-after-overlay picture {
  display: block;
  width: 100%;
}

.before-after-img {
  display: block;
  width: 100%;
  height: auto;
}

.before-after-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--accent);
}

.before-after-overlay .before-after-img {
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.deliverable-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deliverable-visual[data-type='gcp'] {
  background: linear-gradient(135deg, #283018 0%, #404830 100%);
}

.deliverable-visual[data-type='vol'] {
  background: linear-gradient(135deg, #301828 0%, #503040 100%);
}

.faq-item-static {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.faq-item-static h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.faq-item-static p {
  margin: 0;
  color: var(--muted);
}

.video-embed {
  margin: 2rem auto 0;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-card--spaced {
  margin-top: 2rem;
}

.before-after-slider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  accent-color: var(--accent);
}

.before-after figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Deliverable card visuals */
.deliverable-visual[data-type='ortho'] {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a40 100%);
}

.deliverable-visual[data-type='dsm'] {
  background: linear-gradient(135deg, #1a2840 0%, #2a4060 100%);
}

.deliverable-visual[data-type='cloud'] {
  background: linear-gradient(135deg, #2a2040 0%, #403060 100%);
}

.deliverable-visual[data-type='mesh'] {
  background: linear-gradient(135deg, #3a2818 0%, #5a4030 100%);
}

/* Legal & CLI */
.legal-prose .feature-card--prose h2 {
  font-size: 1.15rem;
  margin-top: 0;
}

.cli-dl dt {
  margin-top: 0.75rem;
  font-weight: 600;
}

.cli-dl dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.cli-pre {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  overflow-x: auto;
}

.cli-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.not-found .hero-actions {
  margin-top: 1.25rem;
}

/* Support — feedback form */
.support-intro {
  margin-top: 0.75rem;
  max-width: 42rem;
}

.support-intro-links {
  margin-top: 0.5rem;
}

.support-contact h2 {
  font-size: 1.15rem;
}

.feedback-form-card h2 {
  font-size: 1.25rem;
}

.feedback-form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 36rem;
}

.feedback-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input[type='email'],
.form-field input[type='text'],
.form-field textarea,
.form-field input[type='file'] {
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.feedback-image-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feedback-image-preview li {
  width: 5.5rem;
  text-align: center;
}

.feedback-image-preview img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.feedback-image-preview span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-form-actions {
  margin-top: 0.25rem;
}

.feedback-status {
  margin: 0;
  font-size: 0.95rem;
  min-height: 1.25rem;
}

.feedback-status.is-success {
  color: #7dcea0;
}

.feedback-status.is-error {
  color: #f5a89a;
}

@media (prefers-reduced-motion: reduce) {
  .nav-mega-panel {
    transition: none;
  }
}

/* GSD calculator */
.gsd-calculator,
.product-showcase,
.pricing,
.comparison {
  padding: var(--section-pad-y) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.pricing-card--highlight {
  border-color: rgba(99, 179, 237, 0.45);
  box-shadow:
    0 0 0 1px rgba(99, 179, 237, 0.12) inset,
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.pricing-badge {
  margin: 0 0 0.5rem;
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-card--highlight .pricing-badge {
  color: var(--accent);
}

.pricing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.pricing-card p {
  margin: 0;
  font-size: var(--text-body-sm);
  color: var(--muted);
  line-height: 1.55;
}

.pricing-note {
  margin: 1.25rem 0 0;
  font-size: var(--text-body-sm);
  color: var(--muted);
}

.gsd-formula-note {
  margin: 0 0 1.25rem;
  font-size: var(--text-body-sm);
  color: var(--muted);
  text-align: left;
}

.gsd-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.gsd-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gsd-grid--simple {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gsd-grid--simple {
    grid-template-columns: 2fr 1.2fr 0.9fr;
    align-items: end;
  }
}

@media (min-width: 768px) {
  .gsd-grid:not(.gsd-grid--simple) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gsd-field--wide {
    grid-column: 1 / -1;
  }
}

.gsd-tech-detail {
  margin: 0.75rem 0 0;
  font-size: var(--text-caption);
  color: var(--muted);
  text-align: left;
}

.gsd-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: var(--text-body-sm);
  color: var(--muted);
}

.gsd-field input,
.gsd-field select {
  font-family: var(--font-body);
  font-size: var(--text-body);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  width: 100%;
  cursor: pointer;
}

.gsd-field select option,
.gsd-field select optgroup {
  background: var(--bg-elevated);
  color: var(--text);
}

.gsd-result {
  margin: 1.25rem 0 0.75rem;
  font-size: var(--text-body);
  text-align: left;
}

.gsd-result strong {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent-soft);
  margin: 0 0.35rem;
}

.gsd-quality-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: var(--text-body-sm);
  text-align: left;
}

.gsd-quality-list li + li {
  margin-top: 0.35rem;
}

/* Product showcase */
.showcase-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.showcase-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showcase-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase-card figcaption {
  padding: 1rem 1.15rem 1.15rem;
  text-align: left;
}

.showcase-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.showcase-card p {
  margin: 0;
  font-size: var(--text-body-sm);
  color: var(--muted);
}

/* Competitor comparison */
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--text-body-sm);
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--bg-elevated);
}

.comparison-table tbody th {
  font-weight: 500;
  color: var(--text);
  width: 18%;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:last-child {
  color: var(--accent-soft);
  font-weight: 500;
}

.comparison-note {
  margin: 1rem 0 0;
  font-size: var(--text-caption);
  color: var(--muted);
  text-align: left;
}
