/* SMP.ca — marketing landing (static) */

:root {
  --bg0: #070a12;
  --bg1: #0c1224;
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --accent2: #818cf8;
  --ring: rgba(56, 189, 248, 0.35);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(1200px 600px at 15% -10%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(129, 140, 248, 0.14), transparent 50%),
    linear-gradient(165deg, var(--bg0) 0%, var(--bg1) 45%, #0a0f1a 100%);
}

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

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 10, 18, 0.72);
  border-bottom: 1px solid var(--border);
}

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

.header-start {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

/* Menu control: stacked-layers SVG icon (same as drawer) */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle:hover {
  background: var(--surface2);
  border-color: rgba(56, 189, 248, 0.35);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle-icon {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand--header {
  min-width: 0;
}

.brand--header .brand-text {
  min-width: 0;
}

.brand--header .brand-tag {
  white-space: normal;
}

@media (max-width: 420px) {
  .brand--header .brand-tag {
    display: none;
  }
}

/* Off-canvas drawer */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  width: min(100vw - 3rem, 320px);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
  border-right: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer-panel.is-open {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .drawer-overlay,
  .drawer-panel {
    transition: none;
  }
}

.drawer-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.drawer-brand:hover {
  color: var(--accent);
  text-decoration: none;
}

.drawer-brand-mark {
  flex-shrink: 0;
}

.drawer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 0.95rem;
}

.drawer-brand-text small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}

.drawer-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.drawer-close:hover {
  background: var(--surface);
  color: var(--text);
}

.drawer-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0 1.5rem;
}

.drawer-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text);
  font-weight: 500;
  border-left: 3px solid transparent;
}

.drawer-nav a:hover {
  background: var(--surface);
  border-left-color: var(--accent);
  text-decoration: none;
}

.drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
}

.drawer-footer .btn {
  width: 100%;
}

body.drawer-open {
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1rem;
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.btn--ghost:hover {
  background: var(--surface);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
  color: #041018;
  box-shadow: 0 8px 28px var(--ring);
}

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

/* Hero */

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

.hero {
  padding: 3.5rem 0 3rem;
}

@media (min-width: 900px) {
  .hero {
    padding: 4.5rem 0 3.5rem;
  }
}

.hero-body {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .hero-body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
    gap: 2rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
    gap: 2rem 3rem;
  }
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(51, 65, 85, 0.45);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.45) 0%, rgba(30, 41, 59, 0.2) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  padding: 1.15rem 1.2rem 1.25rem;
}

@media (min-width: 768px) {
  .hero-aside {
    position: sticky;
    top: 1rem;
  }
}

.hero-copy h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-subline {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #94a3b8;
}

.hero-subline abbr {
  text-decoration: none;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.04em;
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42ch;
}

.hero-body .lead {
  margin: 0;
  max-width: none;
}

@media (min-width: 768px) {
  .hero-body .lead {
    max-width: 58ch;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.hero-aside .hero-cta {
  margin-bottom: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-aside .hero-meta {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.75rem;
  padding-top: 0.85rem;
  margin: 0;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
}

.hero-meta li {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.hero-aside .hero-meta li {
  align-items: flex-start;
  line-height: 1.45;
}

.hero-meta svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Construction / ROI frame — people + assets + productivity */

.value-band {
  padding: 2.25rem 0 2.35rem;
}

.value-band__inner {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.5) 45%, rgba(56, 189, 248, 0.06) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 1.65rem 1.45rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.value-band__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 460px 300px at 95% 15%, rgba(56, 189, 248, 0.07), transparent 72%);
  pointer-events: none;
}

.value-band__pillar-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  list-style: none;
  margin: 0 auto 1.15rem;
  padding: 0;
  max-width: 720px;
}

@media (max-width: 640px) {
  .value-band__pillar-list {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.value-band__pillar {
  margin: 0;
  text-align: center;
}

.value-band__pillar-figure {
  margin: 0 0 0.55rem;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: radial-gradient(120px 80px at 50% 0%, rgba(56, 189, 248, 0.08), transparent 70%),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.value-band__pillar-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.value-band__pillar-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.3;
}

.value-band__inner h2 {
  position: relative;
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
  max-width: 40ch;
  color: var(--text);
}

.value-band__lead {
  position: relative;
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 68ch;
}

.value-band__lead strong {
  color: #e2e8f0;
  font-weight: 600;
}

.value-band__devices {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(51, 65, 85, 0.45);
}

.value-band__devices-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.95);
}

.value-band__devices-figure {
  margin: 0 0 1rem;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.45);
  background: radial-gradient(480px 140px at 50% 0%, rgba(56, 189, 248, 0.08), transparent 65%),
    rgba(0, 0, 0, 0.16);
}

.value-band__devices-img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.value-band__devices-lead {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 62ch;
}

.value-band__devices-meta {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
  letter-spacing: 0.02em;
}

/* Steps */

.steps {
  padding: 2.5rem 0;
}

.steps--compact {
  padding: 2rem 0;
}

.steps h2 {
  margin: 0 0 1.5rem;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

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

.steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem 1.35rem;
}

.steps-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--accent);
}

.steps-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.steps-list p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Tutorials */

.tutorials {
  padding: 2.5rem 0;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

.tutorial-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: var(--surface2);
}

.tutorial-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.tutorial-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.tutorial-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Tutorial lessons (media placeholders for screenshots & video) */

.tutorials .section-intro {
  max-width: 58ch;
}

.tutorial-lesson {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.tutorial-lesson:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tutorial-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 62ch;
  line-height: 1.65;
}

.tutorial-steps {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
  max-width: 62ch;
}

.tutorial-steps li {
  margin-bottom: 0.4rem;
}

.tutorial-steps li::marker {
  color: var(--accent);
}

.tutorial-media-row {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .tutorial-media-row {
    grid-template-columns: 1fr 1fr;
  }
}

.tutorial-media {
  margin: 0;
}

.tutorial-media__placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 140px;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
}

.tutorial-media--video .tutorial-media__placeholder {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.tutorial-media--image .tutorial-media__placeholder {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.tutorial-media__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.tutorial-media__hint {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 28ch;
  line-height: 1.4;
}

.tutorial-media figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.tutorial-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78em;
  color: var(--accent);
  word-break: break-all;
}

/* Solutions — Hybrid workflow (no Tailwind / no CDN) */

.solutions-hybrid {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .solutions-hybrid {
    padding: 4rem 0;
  }
}

.solutions-hybrid__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.solutions-hybrid__intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .solutions-hybrid__intro {
    margin-bottom: 3.5rem;
  }
}

.solutions-hybrid__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.solutions-hybrid__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.solutions-hybrid__lead {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #cbd5e1;
  line-height: 1.55;
}

.solutions-hybrid__accent {
  color: var(--accent);
}

.solutions-hybrid__sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .solutions-hybrid__sub {
    font-size: 1rem;
  }
}

.solutions-hybrid__stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .solutions-hybrid__stack {
    gap: 3.5rem;
  }
}

.solutions-hybrid__card {
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.solutions-hybrid__split {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .solutions-hybrid__split {
    grid-template-columns: 1fr 1fr;
  }
}

.solutions-hybrid__before {
  padding: 1.5rem 1.75rem;
  background: rgba(2, 6, 23, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(51, 65, 85, 0.55);
}

@media (min-width: 768px) {
  .solutions-hybrid__before {
    padding: 2rem;
    border-bottom: none;
    border-right: 1px solid rgba(51, 65, 85, 0.55);
  }
}

.solutions-hybrid__label-before {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.solutions-hybrid__before-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
}

.solutions-hybrid__after {
  padding: 1.5rem 1.75rem;
}

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

.solutions-hybrid__label-step {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(56, 189, 248, 0.95);
}

.solutions-hybrid__card-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.solutions-hybrid__body {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94a3b8;
}

.solutions-hybrid__strong {
  color: #e2e8f0;
  font-weight: 600;
}

.solutions-hybrid__benefit {
  border-radius: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.06);
  padding: 0.85rem 1rem;
}

.solutions-hybrid__benefit-label {
  margin: 0 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(52, 211, 153, 0.95);
}

.solutions-hybrid__benefit-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.solutions-hybrid__em {
  color: #6ee7b7;
  font-weight: 500;
}

.solutions-hybrid__cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .solutions-hybrid__cta {
    margin-top: 4rem;
  }
}

.solutions-hybrid__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #0f172a;
  text-decoration: none;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  box-shadow: 0 10px 36px rgba(56, 189, 248, 0.28);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.solutions-hybrid__cta-btn:hover {
  filter: brightness(1.06);
  text-decoration: none;
  color: #0f172a;
  transform: translateY(-1px);
}

.solutions-hybrid__cta-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.solutions-hybrid__cta-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.solutions-hybrid__cta-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
  max-width: 36ch;
}

.solutions-hybrid__inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.solutions-hybrid__inline-link:hover {
  color: #7dd3fc;
}

/* Scanning & automation — Tailwind-style card layout (static CSS, no CDN) */

.scan-automation {
  position: relative;
  isolation: isolate;
  padding: 2.75rem 0 3.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, transparent 42%),
    radial-gradient(900px 420px at 12% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    radial-gradient(700px 380px at 88% 20%, rgba(129, 140, 248, 0.07), transparent 50%);
}

.scan-automation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(56rem, 88vw);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.35), rgba(129, 140, 248, 0.4), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.scan-automation__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.scan-automation__intro {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2rem;
}

/* Spotlight — contactless asset lane */

.scan-automation__spotlight {
  margin: 0 0 2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.35) 50%, var(--surface) 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.scan-automation__spotlight-grid {
  display: grid;
  gap: 1.35rem;
  padding: 1.5rem 1.35rem 1.35rem;
}

@media (min-width: 880px) {
  .scan-automation__spotlight-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1.75rem;
    align-items: center;
    padding: 1.65rem 1.5rem 1.5rem;
  }
}

.scan-automation__spotlight-copy {
  min-width: 0;
}

.scan-automation__spotlight-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.3;
}

.scan-automation__spotlight-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 52ch;
}

.scan-automation__figure {
  position: relative;
  margin: 0;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  background: radial-gradient(420px 140px at 40% 0%, rgba(56, 189, 248, 0.12), transparent 62%),
    radial-gradient(360px 120px at 85% 60%, rgba(129, 140, 248, 0.1), transparent 55%),
    rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 60px rgba(56, 189, 248, 0.04);
}

.scan-automation__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(56, 189, 248, 0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: scan-automation-shimmer 7s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .scan-automation__figure::after {
    animation: none;
    background: none;
  }
}

@keyframes scan-automation-shimmer {
  0%,
  100% {
    background-position: 130% 0;
  }
  50% {
    background-position: -30% 0;
  }
}

.scan-automation__figure-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

/* Paperless → cloud vault → analytics pipeline */

.scan-automation__insight {
  margin: 0 0 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(52, 211, 153, 0.12);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.4) 45%, rgba(56, 189, 248, 0.04) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.scan-automation__insight-grid {
  display: grid;
  gap: 1.35rem;
  padding: 1.5rem 1.35rem 1.4rem;
}

@media (min-width: 900px) {
  .scan-automation__insight-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
    gap: 1.75rem;
    align-items: center;
    padding: 1.55rem 1.5rem 1.45rem;
  }
}

.scan-automation__insight-figure {
  position: relative;
  margin: 0;
  order: -1;
  padding: 0.75rem 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(129, 140, 248, 0.18);
  background: radial-gradient(380px 120px at 20% 0%, rgba(129, 140, 248, 0.1), transparent 60%),
    radial-gradient(320px 100px at 85% 70%, rgba(56, 189, 248, 0.08), transparent 55%),
    rgba(0, 0, 0, 0.22);
}

@media (min-width: 900px) {
  .scan-automation__insight-figure {
    order: 0;
  }
}

.scan-automation__insight-img {
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.scan-automation__insight-copy {
  min-width: 0;
}

.scan-automation__insight-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--text);
}

.scan-automation__insight-lead {
  margin: 0 0 1.05rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.scan-automation__insight--compact {
  margin-bottom: 1.25rem;
}

.scan-automation__insight--compact .scan-automation__insight-lead {
  margin-bottom: 0;
}

.scan-automation__insight--compact .scan-automation__insight-grid {
  padding: 1.15rem 1.2rem 1.2rem;
}

@media (min-width: 900px) {
  .scan-automation__insight--compact .scan-automation__insight-grid {
    padding: 1.2rem 1.35rem 1.25rem;
  }
}

.scan-automation__card-figure {
  margin: 0 0 1rem;
  padding: 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.45);
  background: radial-gradient(200px 80px at 30% 0%, rgba(56, 189, 248, 0.1), transparent 70%),
    rgba(0, 0, 0, 0.2);
}

.scan-automation__card-figure img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  opacity: 0.95;
}

.scan-automation__card--checkpoint {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 41, 59, 0.4) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(56, 189, 248, 0.06) inset;
}

.scan-automation__card--checkpoint .scan-automation__card-label {
  color: rgba(125, 211, 252, 0.98);
}

.scan-automation__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.scan-automation__intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.scan-automation__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.scan-automation__accent-strong {
  color: #e2e8f0;
  font-weight: 600;
}

.scan-automation__grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .scan-automation__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.scan-automation__card {
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .scan-automation__card {
    padding: 1.75rem 1.65rem;
  }
}

.scan-automation__card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.scan-automation__card--visual {
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.5) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(129, 140, 248, 0.08);
}

.scan-automation__card--visual:hover {
  border-color: rgba(129, 140, 248, 0.28);
}

.scan-automation__card-label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(56, 189, 248, 0.92);
}

.scan-automation__card-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

@media (min-width: 768px) {
  .scan-automation__card-title {
    font-size: 1.28rem;
  }
}

.scan-automation__card-hook {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  line-height: 1.45;
}

.scan-automation__card-body {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94a3b8;
}

.scan-automation__card-benefit {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.scan-automation__benefit-tag {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(52, 211, 153, 0.95);
}

.scan-automation__summary {
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: linear-gradient(180deg, rgba(129, 140, 248, 0.06) 0%, var(--surface) 100%);
  padding: 1.35rem 1.35rem 1.45rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.scan-automation__summary-title {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.scan-automation__summary-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.scan-automation__summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scan-automation__summary-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.scan-automation__summary-list li:last-child {
  margin-bottom: 0;
}

.scan-automation__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #0f172a;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

/* Tutorials preview — horizontal scroll (landing index) */

.tutorial-preview-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tutorial-preview-intro {
  margin: 0.5rem 0 0;
  max-width: 52ch;
}

.tutorial-preview-all {
  flex-shrink: 0;
}

/* Horizontal strip: scroll only across real cards; no bleed past content edges */
.tutorial-preview-strip-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0;
  /* Align with main column — no negative margin, so max scroll ends flush with app edge */
  margin: 0;
  padding: 0.25rem 0 0.5rem;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.45) rgba(255, 255, 255, 0.06);
}

.tutorial-preview-strip-wrap::-webkit-scrollbar {
  height: 5px;
}

.tutorial-preview-strip-wrap::-webkit-scrollbar-track {
  margin-inline: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.tutorial-preview-strip-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.75), rgba(129, 140, 248, 0.65));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.tutorial-preview-strip-wrap::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.95), rgba(129, 140, 248, 0.85));
  background-clip: padding-box;
}

.tutorial-preview-strip {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-bottom: 0.35rem;
  box-sizing: border-box;
}

.tutorial-preview-card {
  flex: 0 0 min(280px, calc(100vw - 4.5rem));
  max-width: min(280px, calc(100vw - 4.5rem));
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  flex-direction: column;
  min-height: 11rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .tutorial-preview-card {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

.tutorial-preview-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: var(--surface2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--text);
}

.tutorial-preview-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.tutorial-preview-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.tutorial-preview-card h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tutorial-preview-card p {
  margin: 0 0 auto;
  padding-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.tutorial-preview-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.tutorial-preview-hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.tutorial-preview-hint a {
  font-weight: 500;
}

/* Standalone tutorials page */

.tutorials-page-main {
  padding-top: 0.5rem;
}

.tutorials-page .tutorials-page-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tutorials-page .tutorials-page-intro {
  margin-bottom: 0.5rem;
}

.tutorials-back-link {
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

/* Tutorials page — search filter */

.tutorial-search {
  margin: 0 0 1.75rem;
  max-width: min(100%, 28rem);
}

.tutorial-search-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.tutorial-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tutorial-search-input::placeholder {
  color: var(--muted);
  opacity: 0.85;
}

.tutorial-search-input:hover {
  border-color: rgba(148, 163, 184, 0.25);
}

.tutorial-search-input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 0 3px var(--ring);
}

.tutorial-search-status {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 1.25em;
}

.tutorial-search-empty {
  margin: 0 0 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  background: rgba(0, 0, 0, 0.15);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.tutorial-search-empty[hidden] {
  display: none !important;
}

.tutorials-page .tutorial-lesson h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.tutorial-lesson {
  scroll-margin-top: 5.5rem;
}

.drawer-nav a[aria-current="page"] {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(56, 189, 248, 0.06);
  font-weight: 600;
}

/* Contact / demo */

.contact-band {
  margin: 1rem 0 0;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.08));
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .contact-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 46ch;
  line-height: 1.6;
}

.contact-copy .contact-email {
  margin-top: 0.75rem;
}

.contact-copy .contact-email a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-copy .contact-email a:hover {
  color: #7dd3fc;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
  min-width: 220px;
}

@media (min-width: 480px) {
  .contact-actions {
    align-items: flex-end;
  }
}

/* Sections */

section {
  padding: 2.5rem 0;
}

section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 52ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

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

.feature:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: var(--surface2);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--accent);
}

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

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

/* Footer */

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

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

/* Explore platform page */

.explore-page-main {
  padding-top: 0.5rem;
}

.explore-intro {
  margin-bottom: 1.75rem;
}

.explore-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.explore-intro__lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

.explore-intro__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.explore-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0 0 2.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.explore-toc a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(56, 189, 248, 0.06);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.explore-toc a:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.1);
}

.explore-app {
  margin: 0 0 2.5rem;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 41, 59, 0.25) 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.explore-app__copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.explore-app__copy p {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 62ch;
}

.explore-app__figure {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.5);
  background: #0f172a;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.explore-app__figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.explore-back {
  margin: 1rem 0 2.5rem;
  font-size: 0.95rem;
}

.explore-back a {
  color: var(--muted);
  font-weight: 500;
}

.explore-back a:hover {
  color: var(--accent);
}
