/* ===================================================
   BRIDGE GRC — SAMA CSF MATURITY ASSESSMENT (product page)
   Loaded after styles.css. Unique layout per section.
   =================================================== */

/* ---- shared product-page pill ---- */
.sama-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.sama-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.015);
}

.sama-pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent-primary);
}

/* ===================================================
   1 — HERO
   =================================================== */
.sama-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 13vh, 150px) 0 var(--space-xl);
  overflow: hidden;
}

.sama-hero__aura {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(45, 200, 130, 0.12), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.sama-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* keep the text block in the left half, clear of the artwork */
.sama-hero__inner > * { max-width: 600px; }

.sama-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: var(--space-md) 0;
}

.sama-hero__accent {
  color: var(--accent-primary);
}

.sama-hero__subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.sama-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Artwork sits large in the right half of the hero background,
   behind the text, fading away as it nears the copy on the left. */
.sama-hero__visual {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2%;
  width: min(82vw, 1480px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.sama-hero__shot {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.45));
  animation: samaFloat 7s ease-in-out infinite;

  /* Fade out toward the text (left) and softly vignette the other edges
     so the artwork melts into the page with no visible boundary. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 42%),
    radial-gradient(120% 112% at 64% 50%, #000 52%, transparent 90%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right, transparent 0%, #000 42%),
    radial-gradient(120% 112% at 64% 50%, #000 52%, transparent 90%);
          mask-composite: intersect;
}

@keyframes samaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===================================================
   2 — HOOK
   =================================================== */
.sama-hook {
  padding: var(--section-gap) 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.sama-hook__statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: var(--space-md) 0 var(--space-lg);
}

.sama-hook__mark {
  color: var(--accent-warm);
  white-space: nowrap;
}

.sama-hook__body {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.sama-scope {
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-bento);
  background: var(--bg-surface);
}

.sama-scope__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sama-scope__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--accent-primary);
  line-height: 1;
}

.sama-scope__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.sama-scope__div {
  width: 1px;
  height: 44px;
  background: var(--border-subtle);
}

/* ===================================================
   3 — HOW IT WORKS (horizontal stepper)
   =================================================== */
.sama-steps {
  padding: var(--section-gap) 0;
}

.sama-steps__head {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.sama-steps__track {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  counter-reset: step;
  position: relative;
}

/* connecting line behind the step numbers */
.sama-steps__track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 12%, var(--border-subtle) 88%, transparent);
}

.sama-step {
  position: relative;
  padding-top: 64px;
}

.sama-step__no {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-void);
  border: 1px solid var(--accent-primary);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-primary);
}

.sama-step__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sama-step__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===================================================
   4 — THE RESULTS STORYLINE
   Six designed sections, each a distinct layout/motif.
   Assets are designed scenes that fade to #050508, so
   they bleed into the page — no screenshot frames.
   =================================================== */

/* 4.0 — Lead-in */
.sama-rs-intro {
  padding: var(--section-gap) 0 var(--space-2xl);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.sama-rs-intro__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: var(--space-md) 0 var(--space-md);
}

.sama-rs-intro__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* a small connected rail of the six view names */
.sama-rs-intro__rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-xl);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.sama-rs-intro__rail i {
  width: 18px;
  height: 1px;
  background: var(--border-subtle);
}

/* ---- shared storyline section ---- */
.sama-rs {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}


.sama-rs__head { max-width: 720px; margin: 0 auto var(--space-2xl); text-align: center; }
.sama-rs__head--left { margin-left: 0; text-align: left; }
.sama-rs__head .section-title { margin: var(--space-sm) 0 var(--space-md); }

.sama-rs__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
}
.sama-rs__head:not(.sama-rs__head--left) .sama-rs__lead { margin-left: auto; margin-right: auto; max-width: 620px; }

/* ---- 4.1 Overview · centerpiece ---- */
.sama-rs__stage {
  max-width: 980px;
  margin: 0 auto;
}
.sama-rs__stage img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.55));
}

.sama-rs__facets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 880px;
  margin: var(--space-xl) auto 0;
}

.sama-rs__facet {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-surface);
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.sama-rs__facet:hover { border-color: var(--border-glow); transform: translateY(-3px); }

.sama-rs__facet svg {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  margin-bottom: var(--space-sm);
}
.sama-rs__facet strong {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.sama-rs__facet span { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

/* ---- 4.2 / 4.6 wide bands ---- */
.sama-rs__bleed { max-width: 1080px; margin: 0 auto; }
.sama-rs__bleed img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
}
.sama-rs--wide .sama-rs__head { margin-bottom: var(--space-xl); }
.sama-rs--close .sama-rs__head { text-align: center; }

.sama-rs__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-lg);
}
.sama-rs__leg {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px 6px 28px;
  position: relative;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
}
.sama-rs__leg::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.sama-rs__leg--red::before   { background: var(--status-red, #FF4D4F); box-shadow: 0 0 8px rgba(255, 77, 79, 0.6); }
.sama-rs__leg--amber::before { background: var(--status-amber, #FFB020); box-shadow: 0 0 8px rgba(255, 176, 32, 0.6); }
.sama-rs__leg--green::before { background: var(--accent-primary); box-shadow: 0 0 8px rgba(45, 200, 130, 0.6); }

.sama-rs__export {
  text-align: center;
  margin: var(--space-xl) auto 0;
  max-width: 600px;
  font-size: 15px;
  color: var(--text-tertiary);
}

/* ---- 4.3 / 4.4 / 4.5 splits ---- */
.sama-rs__split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: var(--space-2xl);
  align-items: center;
}
.sama-rs__split--rev { grid-template-columns: 1.22fr 0.78fr; }
.sama-rs__split--rev .sama-rs__text { order: 2; }

/* let the image breathe into the empty outer space → larger on the page */
.sama-rs__split:not(.sama-rs__split--rev) .sama-rs__visual { margin-right: -5%; }
.sama-rs__split--rev .sama-rs__visual { margin-left: -5%; }

.sama-rs__text .section-title { margin: var(--space-sm) 0 var(--space-md); }
.sama-rs__text > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

.sama-rs__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.5));
}

/* Soft feathered edge on all four sides so every image melts into the page,
   even where its near-black background doesn't perfectly match #050508.
   A wide, gentle ramp (not a hard cut) gives the feathered look; the two
   gradients are intersected so left/right AND top/bottom feather together. */
.sama-rs__stage img,
.sama-rs__bleed img,
.sama-rs__visual img,
.sama-why__hero-visual img {
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, #000 11%, #000 89%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right,  transparent 0%, #000 11%, #000 89%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
          mask-composite: intersect;
}

/* gap → target jump chips */
.sama-rs__jumps { display: flex; flex-direction: column; gap: 10px; max-width: 320px; }
.sama-rs__jump {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: 14px;
  color: var(--text-secondary);
  padding: 11px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
}
.sama-rs__jump b {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent-primary);
}

/* priority pills */
.sama-rs__pri { display: flex; flex-wrap: wrap; gap: 10px; }
.sama-pri {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.sama-pri--crit { color: #FF6668; background: rgba(255, 77, 79, 0.10); border-color: rgba(255, 77, 79, 0.30); }
.sama-pri--high { color: #FFB020; background: rgba(255, 176, 32, 0.10); border-color: rgba(255, 176, 32, 0.30); }
.sama-pri--med  { color: var(--text-secondary); background: rgba(255, 255, 255, 0.04); border-color: var(--border-subtle); }
.sama-pri--low  { color: var(--text-tertiary); background: rgba(255, 255, 255, 0.02); border-color: var(--border-subtle); }

/* action checklist */
.sama-rs__check { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.sama-rs__check li {
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.sama-rs__check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-surface);
}
.sama-rs__check li.is-done { color: var(--text-primary); }
.sama-rs__check li.is-done::before {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}
.sama-rs__check li.is-done::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #050508;
  border-bottom: 2px solid #050508;
  transform: rotate(42deg);
}

/* ===================================================
   5 — TWO MODES
   =================================================== */
.sama-modes {
  padding: var(--section-gap) 0;
}

.sama-modes__head {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.sama-modes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}

.sama-mode {
  position: relative;
  padding: var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-bento);
  background: var(--bg-surface);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sama-mode:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.sama-mode--featured {
  background: linear-gradient(160deg, rgba(45, 200, 130, 0.06), var(--bg-surface) 55%);
  border-color: rgba(45, 200, 130, 0.25);
}

.sama-mode__tag {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  border: 1px solid rgba(45, 200, 130, 0.3);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.sama-mode__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sama-mode__meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.sama-mode__meta strong {
  color: var(--accent-primary);
}

.sama-mode__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.sama-mode__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sama-mode__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text-secondary);
}

.sama-mode__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(-45deg);
}

/* ===================================================
   6 — WHY IT'S DIFFERENT
   =================================================== */
.sama-why {
  padding: var(--section-gap) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.sama-why__head {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.sama-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 1040px;
  margin: 0 auto;
}

/* big privacy callout spans both columns */
.sama-why__hero {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl);
  border: 1px solid rgba(45, 200, 130, 0.22);
  border-radius: var(--radius-bento);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(45, 200, 130, 0.08), transparent 55%),
    var(--bg-void);
}

.sama-why__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--accent-primary);
  border: 1px solid rgba(45, 200, 130, 0.3);
  background: rgba(45, 200, 130, 0.05);
  margin-bottom: var(--space-md);
}

.sama-why__icon svg { width: 26px; height: 26px; }

.sama-why__hero-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.sama-why__hero-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

.sama-why__hero-visual img {
  width: 100%;
  height: auto;
}

.sama-why__card {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-void);
  transition: border-color 0.3s ease;
}

.sama-why__card:hover { border-color: var(--border-glow); }

.sama-why__card h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sama-why__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===================================================
   7 — WHO IT'S FOR
   =================================================== */
.sama-audience {
  padding: var(--section-gap) 0;
  text-align: center;
}

.sama-audience__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: var(--space-md) 0 var(--space-xl);
}

.sama-audience__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sama-chip {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  padding: 12px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.sama-chip:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

/* ===================================================
   8 — CTA BAND
   =================================================== */
.sama-cta {
  padding: var(--space-3xl) var(--space-md);
}

.sama-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-bento);
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(45, 200, 130, 0.10), transparent 60%),
    var(--bg-surface);
}

.sama-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: var(--space-sm) 0 var(--space-md);
}

.sama-cta__sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.sama-cta__fallback {
  margin-top: var(--space-lg);
  font-size: 14px;
  color: var(--text-tertiary);
}

.sama-cta__fallback a {
  color: var(--accent-primary);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .sama-hero {
    display: block;
    min-height: 0;
    padding: calc(96px + var(--space-xl)) 0 var(--space-2xl);
    text-align: center;
  }
  .sama-hero__inner > * { max-width: none; }
  .sama-hero__title, .sama-hero__subtitle { max-width: 640px; margin-left: auto; margin-right: auto; }
  .sama-hero__actions, .sama-pills { justify-content: center; }
  .sama-hero__visual {
    position: static;
    width: auto;
    max-width: 600px;
    margin: var(--space-xl) auto 0;
    justify-content: center;
  }
  /* on stacked layout the asset's own edge-fade does the blending */
  .sama-hero__shot { -webkit-mask-image: none; mask-image: none; }
  .sama-hero__aura { right: 50%; transform: translate(50%, -50%); }

  .sama-steps__track { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .sama-steps__track::before { display: none; }

  /* results storyline → stack splits, image first */
  .sama-rs__split,
  .sama-rs__split--rev { grid-template-columns: 1fr; gap: var(--space-lg); }
  .sama-rs__split .sama-rs__text,
  .sama-rs__split--rev .sama-rs__text { order: 2; }
  .sama-rs__split .sama-rs__visual,
  .sama-rs__split--rev .sama-rs__visual { margin-left: 0; margin-right: 0; }
  .sama-rs__text > p { max-width: none; }
  .sama-rs__jumps { max-width: none; }

  .sama-why__hero { grid-template-columns: 1fr; }
  .sama-why__hero-visual { display: none; }
}

@media (max-width: 680px) {
  .sama-scope { flex-direction: row; gap: var(--space-md); padding: var(--space-md); }
  .sama-steps__track { grid-template-columns: 1fr; }
  .sama-modes__grid { grid-template-columns: 1fr; }
  .sama-why__grid { grid-template-columns: 1fr; }
  .sama-why__hero { grid-column: span 1; }

  .sama-rs__facets { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .sama-hero__shot { animation: none; }
}
