/*
Theme Name: SAM Controllers GeneratePress Child
Theme URI: https://samcontrollers.com
Description: SAM Controllers front-end rebuild layer for GeneratePress.
Author: SAM Controllers
Template: generatepress
Version: 0.1.0
Text Domain: samcontrollers-gp-child
*/

:root {
  --sam-ink: #101820;
  --sam-panel: #ffffff;
  --sam-panel-soft: #f4f0e7;
  --sam-rail: #d8c7a4;
  --sam-copper: #b8662d;
  --sam-blue: #194b6f;
  --sam-blue-deep: #0d2a3f;
  --sam-green: #3e5f45;
  --sam-text: #25313c;
  --sam-muted: #68727d;
  --sam-line: rgba(16, 24, 32, 0.14);
  --sam-radius: 22px;
  --sam-shadow: 0 28px 80px rgba(16, 24, 32, 0.16);
  --sam-display: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  --sam-body: "Aptos", "Segoe UI", sans-serif;
  --sam-mono: "Cascadia Mono", "Lucida Console", monospace;
}

body {
  background: #f7f3eb;
  color: var(--sam-text);
  font-family: var(--sam-body);
}

.site-header,
.main-navigation {
  border-bottom: 1px solid var(--sam-line);
}

.sam-home {
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 102, 45, 0.22), transparent 34rem),
    radial-gradient(circle at 88% 10%, rgba(25, 75, 111, 0.2), transparent 28rem),
    linear-gradient(180deg, #f7f3eb 0%, #eee8da 100%);
  color: var(--sam-text);
  margin-inline: calc(50% - 50vw);
  min-height: 100vh;
  overflow: hidden;
}

.sam-home a {
  color: inherit;
}

.sam-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.sam-kicker {
  color: var(--sam-copper);
  font-family: var(--sam-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sam-hero {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  padding: 78px 24px 58px;
  position: relative;
}

.sam-hero::before {
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  inset: 0 0 auto 45%;
  height: 520px;
  opacity: 0.55;
  position: absolute;
  transform: skewX(-8deg);
  z-index: 0;
}

.sam-hero > * {
  position: relative;
  z-index: 1;
}

.sam-hero h1 {
  color: var(--sam-ink);
  font-family: var(--sam-display);
  font-size: clamp(3rem, 8vw, 6.9rem);
  letter-spacing: -0.075em;
  line-height: 0.88;
  margin: 18px 0 26px;
  max-width: 920px;
}

.sam-hero-lede {
  color: #35414c;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.65;
  max-width: 740px;
}

.sam-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sam-button {
  align-items: center;
  border: 1px solid var(--sam-ink);
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--sam-mono);
  font-size: 0.82rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.06em;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.sam-button-primary {
  background: var(--sam-ink);
  color: #fff;
}

.sam-button-primary:hover {
  background: var(--sam-blue-deep);
  color: #fff;
}

.sam-button-secondary {
  background: rgba(255, 255, 255, 0.42);
  color: var(--sam-ink);
}

.sam-instrument {
  align-self: end;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(244, 240, 231, 0.78)),
    linear-gradient(90deg, rgba(16, 24, 32, 0.06), transparent);
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: 32px;
  box-shadow: var(--sam-shadow);
  padding: 22px;
}

.sam-instrument-screen {
  background:
    linear-gradient(145deg, rgba(13, 42, 63, 0.98), rgba(16, 24, 32, 0.96)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 12px);
  border-radius: 22px;
  color: #dce9ef;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.sam-instrument-screen::after {
  background: linear-gradient(90deg, transparent, rgba(83, 185, 219, 0.42), transparent);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 42%;
}

.sam-screen-label {
  color: #91c6d8;
  font-family: var(--sam-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sam-screen-value {
  color: #fff;
  font-family: var(--sam-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 54px 0 16px;
}

.sam-screen-copy {
  color: #b8cad3;
  line-height: 1.6;
  margin: 0;
}

.sam-meter-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
}

.sam-meter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px;
}

.sam-meter strong {
  color: #fff;
  display: block;
  font-family: var(--sam-mono);
  font-size: 0.88rem;
}

.sam-meter span {
  color: #9bb3bf;
  display: block;
  font-size: 0.74rem;
  margin-top: 3px;
}

.sam-band {
  border-top: 1px solid var(--sam-line);
  padding: 18px 0;
}

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

.sam-proof {
  border-left: 1px solid var(--sam-line);
  padding: 18px 20px;
}

.sam-proof strong {
  color: var(--sam-ink);
  display: block;
  font-family: var(--sam-display);
  font-size: 1.18rem;
}

.sam-proof span {
  color: var(--sam-muted);
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
  margin-top: 4px;
}

.sam-section {
  padding: 72px 0;
}

.sam-section-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  margin-bottom: 28px;
}

.sam-section h2 {
  color: var(--sam-ink);
  font-family: var(--sam-display);
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 10px 0 0;
}

.sam-section-intro {
  color: var(--sam-muted);
  font-size: 1.04rem;
  line-height: 1.62;
  margin: 0;
}

.sam-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.sam-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sam-line);
  border-radius: var(--sam-radius);
  box-shadow: 0 16px 44px rgba(16, 24, 32, 0.06);
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.sam-card:hover {
  border-color: rgba(184, 102, 45, 0.46);
  box-shadow: var(--sam-shadow);
  transform: translateY(-4px);
}

.sam-card-large {
  grid-column: span 6;
}

.sam-card-medium {
  grid-column: span 4;
}

.sam-card-small {
  grid-column: span 3;
}

.sam-card::before {
  background: linear-gradient(90deg, var(--sam-copper), transparent);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.sam-card h3 {
  color: var(--sam-ink);
  font-family: var(--sam-display);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 18px 0 12px;
}

.sam-card p {
  color: #596570;
  line-height: 1.6;
  margin: 0;
}

.sam-card-meta {
  color: var(--sam-copper);
  font-family: var(--sam-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sam-card-footer {
  align-items: center;
  color: var(--sam-ink);
  display: flex;
  font-family: var(--sam-mono);
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 26px;
  text-transform: uppercase;
}

.sam-process {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(13, 42, 63, 0.96)),
    radial-gradient(circle at 10% 20%, rgba(184, 102, 45, 0.28), transparent 28rem);
  color: #e8edf0;
  margin: 40px 0;
  padding: 78px 0;
}

.sam-process h2,
.sam-process .sam-section-intro {
  color: #fff;
}

.sam-process-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.sam-process-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
}

.sam-process-card strong {
  color: #fff;
  display: block;
  font-family: var(--sam-display);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.sam-process-card span {
  color: #bccbd1;
  display: block;
  line-height: 1.55;
}

.sam-split {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: 0.92fr 1.08fr;
}

.sam-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--sam-line);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 46px);
}

.sam-panel h2 {
  color: var(--sam-ink);
  font-family: var(--sam-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 10px 0 18px;
}

.sam-panel p,
.sam-panel li {
  color: #596570;
  line-height: 1.7;
}

.sam-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.sam-list li {
  border-top: 1px solid var(--sam-line);
  padding-top: 12px;
}

.sam-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 102, 45, 0.22), transparent 25rem),
    linear-gradient(135deg, #fdfaf4, #e7decf);
  border: 1px solid var(--sam-line);
  border-radius: 36px;
  box-shadow: var(--sam-shadow);
  margin-bottom: 80px;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

.sam-cta h2 {
  color: var(--sam-ink);
  font-family: var(--sam-display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 0 auto 20px;
  max-width: 920px;
}

.sam-cta p {
  color: var(--sam-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 720px;
}

@media (max-width: 940px) {
  .sam-hero,
  .sam-section-head,
  .sam-split {
    grid-template-columns: 1fr;
  }

  .sam-proof-strip,
  .sam-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sam-card-large,
  .sam-card-medium,
  .sam-card-small {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .sam-shell {
    padding: 0 18px;
  }

  .sam-hero {
    padding-top: 46px;
  }

  .sam-instrument-screen {
    min-height: 310px;
  }

  .sam-meter-grid,
  .sam-proof-strip,
  .sam-process-grid,
  .sam-product-grid {
    grid-template-columns: 1fr;
  }

  .sam-card-large,
  .sam-card-medium,
  .sam-card-small {
    grid-column: span 1;
  }

  .sam-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sam-button {
    justify-content: center;
    width: 100%;
  }
}

/*
 * Elegance pass: tighter brand proportions, softer contrast, calmer hierarchy.
 * These overrides intentionally sit last so the live design can be iterated
 * without rewriting the initial scaffold.
 */
:root {
  --sam-ink: #182027;
  --sam-warm: #f5f0e7;
  --sam-cream: #fbf8f1;
  --sam-paper: #fffdf8;
  --sam-line: rgba(24, 32, 39, 0.11);
  --sam-copper: #9a613a;
  --sam-blue: #315c70;
  --sam-blue-deep: #203d4a;
  --sam-muted: #6f756f;
  --sam-shadow: 0 18px 50px rgba(47, 43, 36, 0.1);
  --sam-radius: 18px;
  --sam-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --sam-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

body,
.site {
  background: var(--sam-warm);
}

.site-header {
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(24, 32, 39, 0.08);
}

.inside-header {
  align-items: center;
  max-width: 1180px;
  min-height: 86px;
  padding: 16px 24px;
}

.site-logo img,
.header-image {
  display: block;
  height: auto;
  max-height: 54px;
  max-width: 220px;
  object-fit: contain;
  width: auto;
}

.main-title {
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  letter-spacing: -0.01em;
}

.main-navigation .main-nav ul li a {
  color: #1f2b34;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding-left: 18px;
  padding-right: 18px;
}

.main-navigation .main-nav ul li a:hover {
  color: var(--sam-copper);
}

.sam-home {
  background:
    radial-gradient(circle at 8% 0%, rgba(154, 97, 58, 0.13), transparent 26rem),
    linear-gradient(180deg, #f8f3ea 0%, #f2ecdf 48%, #f8f3ea 100%);
}

.sam-shell {
  max-width: 1120px;
}

.sam-kicker {
  color: var(--sam-copper);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.sam-hero {
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  padding-bottom: 56px;
  padding-top: 66px;
}

.sam-hero::before {
  background-image:
    linear-gradient(rgba(24, 32, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 39, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  height: 430px;
  opacity: 0.8;
  transform: none;
}

.sam-hero h1 {
  color: #182027;
  font-size: clamp(3.15rem, 6.2vw, 5.75rem);
  letter-spacing: -0.072em;
  line-height: 0.93;
  margin-bottom: 24px;
  max-width: 820px;
}

.sam-hero-lede {
  color: #4d575f;
  font-size: clamp(1.02rem, 1.22vw, 1.18rem);
  line-height: 1.72;
  max-width: 680px;
}

.sam-button {
  border-color: rgba(24, 32, 39, 0.22);
  font-size: 0.75rem;
  min-height: 44px;
  padding: 0 20px;
}

.sam-button-primary,
.sam-button-primary:visited {
  background: #203d4a;
  border-color: #203d4a;
  color: #fff !important;
}

.sam-button-secondary,
.sam-button-secondary:visited {
  background: rgba(255, 253, 248, 0.75);
  color: #20303a !important;
}

.sam-button-primary:hover {
  background: #162d37;
}

.sam-instrument {
  background: rgba(255, 253, 248, 0.62);
  border-color: rgba(24, 32, 39, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 66px rgba(47, 43, 36, 0.12);
  padding: 18px;
}

.sam-instrument-screen {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(236, 229, 216, 0.96)),
    repeating-linear-gradient(0deg, rgba(49, 92, 112, 0.055), rgba(49, 92, 112, 0.055) 1px, transparent 1px, transparent 14px);
  border: 1px solid rgba(24, 32, 39, 0.1);
  color: #25313a;
  min-height: 320px;
  padding: 28px;
}

.sam-instrument-screen::after {
  background: linear-gradient(90deg, transparent, rgba(154, 97, 58, 0.32), transparent);
  top: 47%;
}

.sam-screen-label {
  color: #6f756f;
}

.sam-screen-value {
  color: #203d4a;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  margin-top: 48px;
}

.sam-screen-copy {
  color: #4f5a61;
}

.sam-meter {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(24, 32, 39, 0.1);
}

.sam-meter strong {
  color: #203d4a;
}

.sam-meter span {
  color: #68706b;
}

.sam-band {
  background: rgba(255, 253, 248, 0.34);
}

.sam-proof {
  border-left-color: rgba(24, 32, 39, 0.09);
}

.sam-proof strong {
  font-size: 1.06rem;
}

.sam-proof span {
  color: #6b736f;
}

.sam-section {
  padding: 78px 0;
}

.sam-section-head {
  align-items: start;
  gap: 44px;
}

.sam-section h2,
.sam-panel h2,
.sam-cta h2 {
  letter-spacing: -0.055em;
}

.sam-section h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  max-width: 760px;
}

.sam-section-intro {
  color: #68706b;
}

.sam-product-grid {
  gap: 20px;
}

.sam-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.7));
  border-color: rgba(24, 32, 39, 0.105);
  box-shadow: none;
  min-height: 285px;
  padding: 26px;
}

.sam-card:hover {
  border-color: rgba(49, 92, 112, 0.26);
  box-shadow: 0 20px 56px rgba(47, 43, 36, 0.11);
}

.sam-card::before {
  background: linear-gradient(90deg, rgba(154, 97, 58, 0.7), rgba(49, 92, 112, 0.18), transparent);
  height: 2px;
}

.sam-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  line-height: 1.06;
}

.sam-card p {
  color: #5d6766;
}

.sam-card-footer {
  color: #2d4d5e;
  font-size: 0.72rem;
}

.sam-process {
  background:
    radial-gradient(circle at 15% 0%, rgba(154, 97, 58, 0.14), transparent 26rem),
    linear-gradient(135deg, #e9dfcf, #f8f3ea);
  color: #25313a;
  margin: 32px 0;
  padding: 76px 0;
}

.sam-process h2,
.sam-process .sam-section-intro {
  color: #182027;
}

.sam-process-card {
  background: rgba(255, 253, 248, 0.62);
  border-color: rgba(24, 32, 39, 0.09);
}

.sam-process-card strong {
  color: #203d4a;
}

.sam-process-card span {
  color: #5e6968;
}

.sam-panel {
  background: rgba(255, 253, 248, 0.62);
  border-color: rgba(24, 32, 39, 0.1);
}

.sam-panel p,
.sam-panel li {
  color: #5d6766;
}

.sam-cta {
  background:
    radial-gradient(circle at 20% 10%, rgba(154, 97, 58, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(236, 229, 216, 0.76));
  border-color: rgba(24, 32, 39, 0.1);
  box-shadow: 0 26px 70px rgba(47, 43, 36, 0.11);
}

.sam-cta h2 {
  font-size: clamp(2.4rem, 5.1vw, 4.7rem);
}

@media (max-width: 940px) {
  .inside-header {
    min-height: 76px;
  }

  .site-logo img,
  .header-image {
    max-height: 46px;
    max-width: 190px;
  }
}

@media (max-width: 640px) {
  .inside-header {
    padding: 12px 18px;
  }

  .site-logo img,
  .header-image {
    max-height: 40px;
    max-width: 164px;
  }

  .sam-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }
}

/* Proportion pass: reduce poster scale and remove awkward text spacing. */
:root {
  --sam-body: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", sans-serif;
}

.sam-home,
.sam-home p,
.sam-home li,
.sam-home span {
  font-family: var(--sam-body);
  letter-spacing: 0;
  text-align: left;
  word-spacing: 0;
}

.sam-home p,
.sam-home li {
  hyphens: none;
  text-wrap: pretty;
}

.sam-actions {
  margin-top: 28px;
}

.sam-hero {
  gap: clamp(34px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  padding-bottom: 46px;
  padding-top: 54px;
}

.sam-hero h1 {
  font-size: clamp(2.7rem, 4vw, 3.85rem);
  letter-spacing: -0.048em;
  line-height: 1.03;
  margin-bottom: 22px;
  max-width: 560px;
}

.sam-hero-lede {
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.68;
  max-width: 610px;
}

.sam-instrument {
  padding: 16px;
}

.sam-instrument-screen {
  min-height: 292px;
  padding: 26px;
}

.sam-screen-value {
  font-size: clamp(2.1rem, 3.3vw, 3.2rem);
  margin-top: 40px;
}

.sam-meter-grid {
  margin-top: 42px;
}

.sam-band {
  padding: 12px 0;
}

.sam-proof {
  padding: 16px 20px;
}

.sam-section {
  padding: 66px 0;
}

.sam-section h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.02;
  max-width: 700px;
}

.sam-card {
  min-height: 255px;
  padding: 24px;
}

.sam-card h3 {
  font-size: clamp(1.26rem, 1.6vw, 1.7rem);
}

.sam-process {
  padding: 66px 0;
}

.sam-cta h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

@media (max-width: 640px) {
  .sam-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }
}

/* Blue technical palette pass. */
:root {
  --sam-ink: #0e1e33;
  --sam-warm: #eef5fb;
  --sam-cream: #f7fbff;
  --sam-paper: #ffffff;
  --sam-line: rgba(24, 72, 112, 0.13);
  --sam-copper: #2f7fa5;
  --sam-blue: #1f6f9d;
  --sam-blue-deep: #0b3559;
  --sam-muted: #587084;
  --sam-shadow: 0 22px 62px rgba(13, 53, 89, 0.14);
}

body,
.site {
  background: #eef5fb;
}

.site-header {
  background: rgba(248, 252, 255, 0.94);
  border-bottom-color: rgba(31, 111, 157, 0.12);
}

.main-navigation .main-nav ul li a:hover {
  color: #1f6f9d;
}

.sam-home {
  background:
    radial-gradient(circle at 9% 0%, rgba(31, 111, 157, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(76, 157, 207, 0.18), transparent 30rem),
    linear-gradient(180deg, #f6fbff 0%, #eaf3fb 48%, #f4f9fe 100%);
}

.sam-kicker {
  color: #1f6f9d;
}

.sam-hero::before {
  background-image:
    linear-gradient(rgba(31, 111, 157, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 157, 0.06) 1px, transparent 1px);
}

.sam-hero h1 {
  color: #0e1e33;
}

.sam-hero-lede,
.sam-section-intro,
.sam-card p,
.sam-panel p,
.sam-panel li,
.sam-proof span,
.sam-process-card span,
.sam-cta p {
  color: #526c80;
}

.sam-button-primary,
.sam-button-primary:visited {
  background: #0b4d78;
  border-color: #0b4d78;
}

.sam-button-primary:hover {
  background: #07395a;
}

.sam-button-secondary,
.sam-button-secondary:visited {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 111, 157, 0.26);
  color: #0b3559 !important;
}

.sam-instrument {
  background: rgba(248, 252, 255, 0.7) !important;
  border-color: rgba(31, 111, 157, 0.14) !important;
  box-shadow: 0 24px 66px rgba(13, 53, 89, 0.13) !important;
}

.sam-instrument-screen {
  background:
    linear-gradient(145deg, rgba(251, 253, 255, 0.99), rgba(228, 241, 250, 0.96)),
    repeating-linear-gradient(0deg, rgba(31, 111, 157, 0.07), rgba(31, 111, 157, 0.07) 1px, transparent 1px, transparent 14px) !important;
  border-color: rgba(31, 111, 157, 0.14) !important;
}

.sam-instrument-screen::after {
  background: linear-gradient(90deg, transparent, rgba(31, 111, 157, 0.38), transparent);
}

.sam-screen-label,
.sam-meter span {
  color: #587084 !important;
}

.sam-screen-value,
.sam-meter strong {
  color: #0b4d78 !important;
}

.sam-screen-copy {
  color: #526c80 !important;
}

.sam-meter {
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(31, 111, 157, 0.14) !important;
}

.sam-band {
  background: rgba(248, 252, 255, 0.45);
  border-top-color: rgba(31, 111, 157, 0.12);
}

.sam-proof {
  border-left-color: rgba(31, 111, 157, 0.13);
}

.sam-card,
.sam-panel,
.sam-cta,
.sam-process-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 253, 0.72));
  border-color: rgba(31, 111, 157, 0.13);
}

.sam-card::before {
  background: linear-gradient(90deg, rgba(31, 111, 157, 0.74), rgba(75, 157, 207, 0.28), transparent);
}

.sam-card:hover {
  border-color: rgba(31, 111, 157, 0.34);
  box-shadow: 0 20px 56px rgba(13, 53, 89, 0.12);
}

.sam-card-meta,
.sam-card-footer {
  color: #1f6f9d;
}

.sam-process {
  background:
    radial-gradient(circle at 15% 0%, rgba(31, 111, 157, 0.18), transparent 28rem),
    linear-gradient(135deg, #dcecf7, #f5fbff);
}

.sam-process-card strong {
  color: #0b4d78;
}

.sam-cta {
  background:
    radial-gradient(circle at 20% 10%, rgba(31, 111, 157, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(224, 239, 250, 0.78));
  box-shadow: 0 26px 70px rgba(13, 53, 89, 0.12);
}

/* Final blue enforcement for the live cascade. */
body .sam-home {
  background:
    radial-gradient(circle at 8% 0%, rgba(22, 106, 168, 0.24), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(86, 169, 221, 0.24), transparent 34rem),
    linear-gradient(180deg, #f4faff 0%, #e8f3fb 48%, #f6fbff 100%) !important;
}

body .sam-home .sam-kicker,
body .sam-home .sam-card-meta,
body .sam-home .sam-card-footer {
  color: #146aa2 !important;
}

body .sam-home .sam-hero::before {
  background-image:
    linear-gradient(rgba(20, 106, 162, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 106, 162, 0.085) 1px, transparent 1px) !important;
}

body .sam-home .sam-button-primary,
body .sam-home .sam-button-primary:visited {
  background: #075c91 !important;
  border-color: #075c91 !important;
  color: #fff !important;
}

body .sam-home .sam-button-secondary,
body .sam-home .sam-button-secondary:visited {
  border-color: rgba(7, 92, 145, 0.34) !important;
  color: #075c91 !important;
}

body .sam-home .sam-card,
body .sam-home .sam-panel,
body .sam-home .sam-process-card,
body .sam-home .sam-cta {
  border-color: rgba(20, 106, 162, 0.18) !important;
}

body .sam-home .sam-card::before {
  background: linear-gradient(90deg, rgba(7, 92, 145, 0.88), rgba(86, 169, 221, 0.42), transparent) !important;
}

body .sam-home .sam-process {
  background:
    radial-gradient(circle at 16% 0%, rgba(20, 106, 162, 0.22), transparent 28rem),
    linear-gradient(135deg, #dceffb, #f5fbff) !important;
}

/*
 * Premium design-system pass
 * Dials: Variance 6 / Motion 5 / Density 6.
 * Editorial grid, blue technical palette, optical type scale, non-linear motion.
 */
:root {
  --sam-navy-950: #071827;
  --sam-navy-900: #0b2438;
  --sam-navy-800: #103a5b;
  --sam-blue-700: #155f91;
  --sam-blue-500: #2c83b8;
  --sam-blue-300: #a9d5ef;
  --sam-blue-100: #e8f5fc;
  --sam-blue-050: #f6fbff;
  --sam-slate: #526b7d;
  --sam-hairline: rgba(13, 53, 89, 0.115);
  --sam-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --sam-ease-snap: cubic-bezier(0.2, 0.85, 0.2, 1.18);
  --sam-premium-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 24px 70px rgba(7, 24, 39, 0.11), 0 7px 24px rgba(7, 24, 39, 0.07);
  --sam-tight-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 14px 44px rgba(7, 24, 39, 0.09);
  --sam-display: "Aptos Display", "Söhne", "Neue Haas Grotesk Display", "IBM Plex Sans", "Segoe UI", sans-serif;
  --sam-body: "IBM Plex Sans", "Aptos", "Neue Haas Grotesk Text", "Segoe UI", sans-serif;
}

body,
.site,
body .sam-home {
  background: #eef7fd !important;
}

body .sam-home {
  background:
    radial-gradient(circle at 12% -8%, rgba(44, 131, 184, 0.32), transparent 34rem),
    radial-gradient(circle at 100% 8%, rgba(169, 213, 239, 0.36), transparent 38rem),
    linear-gradient(180deg, #f7fcff 0%, #e8f5fc 44%, #f4fbff 100%) !important;
  color: var(--sam-navy-950);
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(248, 252, 255, 0.88) !important;
  border-bottom: 1px solid rgba(21, 95, 145, 0.12) !important;
}

.inside-header {
  max-width: 1168px;
  min-height: 66px;
  padding-bottom: 9px;
  padding-top: 9px;
}

.site-logo img,
.header-image {
  max-height: 36px !important;
  max-width: 158px !important;
}

.main-title {
  color: var(--sam-navy-950);
  font-family: var(--sam-display);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.main-navigation .main-nav ul li a {
  border-radius: 999px;
  color: #15364e;
  font-family: var(--sam-body);
  font-size: 0.91rem;
  line-height: 1;
  min-height: 38px;
  padding: 13px 17px;
  transition: background 190ms var(--sam-ease-out), color 190ms var(--sam-ease-out), transform 190ms var(--sam-ease-snap);
}

.main-navigation .main-nav ul li a:hover {
  background: rgba(21, 95, 145, 0.08);
  color: var(--sam-blue-700);
  transform: translateY(-1px) scale(1.015);
}

.sam-shell {
  max-width: 1168px;
}

body .sam-home .sam-hero {
  gap: clamp(40px, 6vw, 92px);
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.62fr);
  padding-bottom: clamp(42px, 5vw, 62px);
  padding-top: clamp(54px, 7vw, 82px);
}

body .sam-home .sam-hero::before {
  background-image:
    linear-gradient(rgba(21, 95, 145, 0.078) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 95, 145, 0.078) 1px, transparent 1px) !important;
  background-size: 40px 40px;
  opacity: 0.76;
}

body .sam-home .sam-kicker {
  color: var(--sam-blue-700) !important;
  font-family: var(--sam-mono);
  font-size: 0.69rem;
  letter-spacing: 0.24em;
}

body .sam-home .sam-hero h1 {
  color: var(--sam-navy-950);
  font-family: var(--sam-display);
  font-size: clamp(3.05rem, 4.45vw, 4.25rem);
  letter-spacing: -0.062em;
  line-height: 0.98;
  max-width: 610px;
}

body .sam-home .sam-hero-lede {
  color: #3f6076;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.72;
  max-width: 628px;
}

body .sam-home .sam-button {
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.095em;
  min-height: 45px;
  padding-inline: 21px;
  transition: transform 190ms var(--sam-ease-snap), background 190ms var(--sam-ease-out), border-color 190ms var(--sam-ease-out), box-shadow 190ms var(--sam-ease-out);
}

body .sam-home .sam-button-primary,
body .sam-home .sam-button-primary:visited {
  background: linear-gradient(180deg, #1472aa, #075684) !important;
  border-color: rgba(7, 86, 132, 0.88) !important;
  box-shadow: 0 14px 32px rgba(7, 86, 132, 0.22), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

body .sam-home .sam-button-secondary,
body .sam-home .sam-button-secondary:visited {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(21, 95, 145, 0.28) !important;
  box-shadow: 0 10px 28px rgba(7, 24, 39, 0.045);
}

body .sam-home .sam-button:hover {
  transform: translateY(-2px) scale(1.018);
}

body .sam-home .sam-instrument {
  background: rgba(248, 252, 255, 0.68) !important;
  border: 1px solid rgba(21, 95, 145, 0.13) !important;
  border-radius: 30px;
  box-shadow: var(--sam-premium-shadow) !important;
  padding: 16px;
}

body .sam-home .sam-instrument-screen {
  background:
    radial-gradient(circle at 20% 0%, rgba(169, 213, 239, 0.28), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 252, 0.94)),
    repeating-linear-gradient(0deg, rgba(21, 95, 145, 0.062), rgba(21, 95, 145, 0.062) 1px, transparent 1px, transparent 13px) !important;
  border: 1px solid rgba(21, 95, 145, 0.13) !important;
  border-radius: 22px;
  min-height: 298px;
}

body .sam-home .sam-screen-value {
  color: var(--sam-navy-800) !important;
  font-family: var(--sam-display);
  letter-spacing: -0.055em;
}

body .sam-home .sam-meter {
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(21, 95, 145, 0.13) !important;
  border-radius: 13px;
}

body .sam-home .sam-band {
  background: rgba(248, 252, 255, 0.54);
  border-top: 1px solid rgba(21, 95, 145, 0.12);
}

body .sam-home .sam-proof {
  border-left-color: rgba(21, 95, 145, 0.14);
}

body .sam-home .sam-section {
  padding-bottom: clamp(56px, 6vw, 78px);
  padding-top: clamp(56px, 6vw, 78px);
}

body .sam-home .sam-section h2,
body .sam-home .sam-panel h2,
body .sam-home .sam-cta h2 {
  color: var(--sam-navy-950);
  font-family: var(--sam-display);
  letter-spacing: -0.058em;
}

body .sam-home .sam-product-grid {
  gap: 18px;
}

body .sam-home .sam-card,
body .sam-home .sam-panel,
body .sam-home .sam-process-card,
body .sam-home .sam-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 249, 254, 0.72)) !important;
  border: 1px solid rgba(21, 95, 145, 0.14) !important;
}

body .sam-home .sam-card {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: transform 210ms var(--sam-ease-snap), border-color 210ms var(--sam-ease-out), box-shadow 210ms var(--sam-ease-out);
}

body .sam-home .sam-card:hover {
  border-color: rgba(21, 95, 145, 0.34) !important;
  box-shadow: var(--sam-tight-shadow);
  transform: translateY(-4px) scale(1.006);
}

body .sam-home .sam-card::before {
  background: linear-gradient(90deg, #075c91, rgba(44, 131, 184, 0.62), transparent) !important;
  height: 3px;
}

body .sam-home .sam-card h3 {
  color: var(--sam-navy-950);
  font-family: var(--sam-display);
}

body .sam-home .sam-card-meta,
body .sam-home .sam-card-footer {
  color: var(--sam-blue-700) !important;
}

body .sam-home .sam-process {
  background:
    radial-gradient(circle at 14% 0%, rgba(44, 131, 184, 0.18), transparent 28rem),
    linear-gradient(135deg, #dceffb, #f7fcff) !important;
  border-bottom: 1px solid rgba(21, 95, 145, 0.09);
  border-top: 1px solid rgba(21, 95, 145, 0.09);
}

body .sam-home .sam-process-card strong {
  color: var(--sam-blue-700);
}

@keyframes sam-premium-rise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body .sam-home .sam-hero > div,
  body .sam-home .sam-instrument,
  body .sam-home .sam-proof,
  body .sam-home .sam-section-head,
  body .sam-home .sam-card {
    animation: sam-premium-rise 560ms var(--sam-ease-out) both;
  }

  body .sam-home .sam-instrument {
    animation-delay: 80ms;
  }

  body .sam-home .sam-proof:nth-child(1) { animation-delay: 120ms; }
  body .sam-home .sam-proof:nth-child(2) { animation-delay: 150ms; }
  body .sam-home .sam-proof:nth-child(3) { animation-delay: 180ms; }
  body .sam-home .sam-proof:nth-child(4) { animation-delay: 210ms; }
  body .sam-home .sam-card:nth-child(1) { animation-delay: 80ms; }
  body .sam-home .sam-card:nth-child(2) { animation-delay: 120ms; }
  body .sam-home .sam-card:nth-child(3) { animation-delay: 160ms; }
  body .sam-home .sam-card:nth-child(4) { animation-delay: 200ms; }
  body .sam-home .sam-card:nth-child(5) { animation-delay: 240ms; }
}

@media (max-width: 760px) {
  body .sam-home .sam-hero {
    gap: 28px;
    padding-top: 40px;
  }

  body .sam-home .sam-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }
}

/*
 * Homepage v2: Why / How / What architecture
 * Dials: Variance 7 / Motion 5 / Density 6.
 */
.sam-home-v2 {
  background:
    radial-gradient(circle at 8% 0%, rgba(30, 109, 166, 0.24), transparent 32rem),
    radial-gradient(circle at 92% 4%, rgba(126, 196, 234, 0.32), transparent 36rem),
    linear-gradient(180deg, #f6fbff 0%, #e8f5fc 46%, #f5fbff 100%) !important;
}

.sam-v2-shell,
.sam-page-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.sam-v2-hero {
  border-bottom: 1px solid rgba(10, 67, 106, 0.1);
  overflow: hidden;
  position: relative;
}

.sam-v2-hero::before {
  background-image:
    linear-gradient(rgba(20, 106, 162, 0.078) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 106, 162, 0.078) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  height: 100%;
  left: 44%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  transform: skewX(-7deg);
  width: 62%;
}

.sam-v2-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.72fr);
  min-height: 690px;
  padding-bottom: 72px;
  padding-top: 72px;
  position: relative;
  z-index: 1;
}

.sam-v2-kicker,
.sam-page-kicker {
  color: #146aa2;
  font-family: var(--sam-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sam-v2-hero h1 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(3.3rem, 5.8vw, 6.25rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
  margin: 22px 0 24px;
  max-width: 760px;
}

.sam-v2-hero p {
  color: #46687f;
  font-size: clamp(1.04rem, 1.24vw, 1.22rem);
  line-height: 1.72;
  max-width: 660px;
}

.sam-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.sam-v2-button {
  align-items: center;
  border: 1px solid rgba(7, 92, 145, 0.28);
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--sam-mono);
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 46px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 210ms var(--sam-ease-snap), box-shadow 210ms var(--sam-ease-out), background 210ms var(--sam-ease-out);
}

.sam-v2-button:hover {
  transform: translateY(-2px) scale(1.018);
}

.sam-v2-button-primary {
  background: linear-gradient(180deg, #1472aa, #075684);
  box-shadow: 0 14px 34px rgba(7, 86, 132, 0.22), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  color: #fff !important;
}

.sam-v2-button-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: #075684 !important;
}

.sam-v2-decision {
  background:
    radial-gradient(circle at 14% 0%, rgba(126, 196, 234, 0.24), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 245, 252, 0.82));
  border: 1px solid rgba(20, 106, 162, 0.16);
  border-radius: 34px;
  box-shadow: var(--sam-premium-shadow);
  padding: clamp(24px, 3vw, 34px);
}

.sam-v2-decision-top {
  border-bottom: 1px solid rgba(20, 106, 162, 0.14);
  padding-bottom: 22px;
}

.sam-v2-decision-top span,
.sam-v2-path span,
.sam-v2-answer-card span,
.sam-v2-lane span,
.sam-v2-flow-grid span,
.sam-v2-cta span {
  color: #146aa2;
  display: block;
  font-family: var(--sam-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sam-v2-decision-top strong {
  color: #071827;
  display: block;
  font-family: var(--sam-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin-top: 16px;
}

.sam-v2-path {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.sam-v2-path div,
.sam-v2-flow-grid div {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 106, 162, 0.13);
  border-radius: 18px;
  padding: 18px;
}

.sam-v2-path strong {
  color: #071827;
  display: block;
  font-size: 1.05rem;
  margin-top: 10px;
}

.sam-v2-path p {
  color: #587084;
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 6px 0 0;
}

.sam-v2-answers {
  padding: 28px 0;
}

.sam-v2-answer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.sam-v2-answer-card,
.sam-v2-lane,
.sam-v2-proof,
.sam-v2-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 249, 254, 0.74));
  border: 1px solid rgba(20, 106, 162, 0.14);
  border-radius: 26px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.sam-v2-answer-card {
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
}

.sam-v2-answer-card h2 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(1.75rem, 2.55vw, 2.55rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 18px 0 18px;
}

.sam-v2-answer-card p {
  color: #526b7d;
  line-height: 1.68;
}

.sam-v2-section {
  padding: clamp(62px, 7vw, 96px) 0;
}

.sam-v2-section-head {
  align-items: end;
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  margin-bottom: 28px;
}

.sam-v2-section-head h2,
.sam-v2-proof h2,
.sam-v2-cta h2 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  letter-spacing: -0.072em;
  line-height: 0.96;
  margin: 12px 0 0;
}

.sam-v2-section-head p {
  color: #526b7d;
  font-size: 1.02rem;
  line-height: 1.66;
}

.sam-v2-lane-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.sam-v2-lane {
  color: inherit;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 250px;
  padding: 26px;
  position: relative;
  text-decoration: none;
  transition: transform 210ms var(--sam-ease-snap), box-shadow 210ms var(--sam-ease-out), border-color 210ms var(--sam-ease-out);
}

.sam-v2-lane-large {
  grid-column: span 6;
  min-height: 300px;
}

.sam-v2-lane::before {
  background: linear-gradient(90deg, #075c91, rgba(86, 169, 221, 0.42), transparent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.sam-v2-lane:hover {
  border-color: rgba(20, 106, 162, 0.34);
  box-shadow: var(--sam-tight-shadow);
  transform: translateY(-4px) scale(1.006);
}

.sam-v2-lane h3 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(1.42rem, 2vw, 2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 18px 0 12px;
}

.sam-v2-lane p {
  color: #526b7d;
  line-height: 1.62;
  margin: 0;
}

.sam-v2-flow {
  background:
    radial-gradient(circle at 12% 0%, rgba(44, 131, 184, 0.18), transparent 28rem),
    linear-gradient(135deg, #dceffb, #f7fcff);
  border-bottom: 1px solid rgba(20, 106, 162, 0.1);
  border-top: 1px solid rgba(20, 106, 162, 0.1);
  padding: clamp(62px, 7vw, 90px) 0;
}

.sam-v2-flow-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.sam-v2-flow-grid strong {
  color: #071827;
  display: block;
  font-family: var(--sam-display);
  font-size: 1.24rem;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-top: 14px;
}

.sam-v2-proof {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  padding: clamp(30px, 4vw, 48px);
}

.sam-v2-proof ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sam-v2-proof li {
  border-top: 1px solid rgba(20, 106, 162, 0.13);
  color: #526b7d;
  line-height: 1.62;
  padding-top: 14px;
}

.sam-v2-cta {
  margin-bottom: 80px;
  padding: clamp(34px, 5vw, 70px);
  text-align: center;
}

.sam-v2-cta > div {
  margin: 0 auto;
  max-width: 840px;
}

.sam-v2-cta h2 {
  margin-top: 14px;
}

.sam-v2-cta p {
  color: #526b7d;
  font-size: 1.08rem;
  line-height: 1.68;
  margin: 18px auto 0;
  max-width: 680px;
}

.sam-v2-cta .sam-v2-actions {
  justify-content: center;
}

/*
 * Global page styling so interior pages inherit the same design language.
 */
.sam-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(44, 131, 184, 0.18), transparent 30rem),
    linear-gradient(180deg, #f7fcff 0%, #eaf6fd 42%, #f7fcff 100%);
  margin-inline: calc(50% - 50vw);
  min-height: 100vh;
  padding-bottom: 80px;
}

.sam-page-hero {
  border-bottom: 1px solid rgba(20, 106, 162, 0.1);
  padding: clamp(34px, 5vw, 64px) 0 clamp(24px, 3.6vw, 40px);
}

.sam-page-hero h1 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(2.45rem, 5.2vw, 4.75rem);
  letter-spacing: -0.074em;
  line-height: 0.96;
  margin: 12px 0 0;
  max-width: 980px;
}

.sam-page-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 106, 162, 0.14);
  border-radius: 30px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 22px 66px rgba(7, 24, 39, 0.08);
  margin-top: 26px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
}

.sam-page-content {
  color: #263e50;
  font-family: var(--sam-body);
  font-size: 1rem;
  line-height: 1.7;
}

.sam-curated-intro {
  border-bottom: 1px solid rgba(20, 106, 162, 0.12);
  margin: -4px 0 28px;
  padding-bottom: 26px;
}

.sam-curated-intro p {
  color: #10283a;
  font-family: var(--sam-display);
  font-size: clamp(1.48rem, 2.7vw, 2.35rem);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.04;
  margin: 0;
  max-width: 920px;
}

.sam-page-content h2,
.sam-page-content h3,
.sam-page-content h4 {
  color: #071827;
  font-family: var(--sam-display);
  letter-spacing: -0.045em;
}

.sam-page-content a {
  color: #075c91;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.sam-page-content table {
  border: 1px solid rgba(20, 106, 162, 0.14);
  border-collapse: collapse;
  width: 100%;
}

.sam-page-content th,
.sam-page-content td {
  border: 1px solid rgba(20, 106, 162, 0.12);
  padding: 0.75rem;
}

.sam-page-content th {
  background: #e8f5fc;
}

.sam-content-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
  margin: 2rem 0;
}

.sam-content-card,
.sam-content-callout {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 249, 254, 0.76));
  border: 1px solid rgba(20, 106, 162, 0.15);
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
  grid-column: span 4;
  padding: 24px;
}

.sam-content-card.is-wide {
  grid-column: span 6;
}

.sam-content-card.is-full,
.sam-content-callout {
  grid-column: span 12;
}

.sam-content-card .eyebrow,
.sam-content-callout .eyebrow {
  color: #146aa2;
  display: block;
  font-family: var(--sam-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.sam-content-card h2,
.sam-content-card h3,
.sam-content-callout h2,
.sam-content-callout h3 {
  margin-top: 0;
}

.sam-content-card p:last-child,
.sam-content-callout p:last-child {
  margin-bottom: 0;
}

.sam-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.sam-content-button {
  align-items: center;
  background: linear-gradient(180deg, #1472aa, #075684);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(7, 86, 132, 0.2);
  color: #fff !important;
  display: inline-flex;
  font-family: var(--sam-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  min-height: 44px;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.sam-content-button.secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 92, 145, 0.28);
  box-shadow: none;
  color: #075684 !important;
}

.sam-support-hero-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  margin: 28px 0;
}

.sam-support-ticket,
.sam-support-note,
.sam-support-manuals {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 254, 0.78));
  border: 1px solid rgba(20, 106, 162, 0.15);
  border-radius: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
  padding: clamp(24px, 3vw, 34px);
}

.sam-support-ticket h2,
.sam-support-section-head h2 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 10px 0 14px;
}

.sam-support-ticket p,
.sam-support-section-head p,
.sam-manual-group p {
  color: #40586b;
  margin-top: 0;
}

.sam-support-note ul {
  margin: 12px 0 0;
  padding-left: 1.15rem;
}

.sam-support-note li {
  color: #30495d;
  margin: 0.58rem 0;
}

.sam-support-manuals {
  margin: 18px 0 28px;
}

.sam-support-section-head {
  border-bottom: 1px solid rgba(20, 106, 162, 0.12);
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.sam-manual-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sam-manual-group {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 106, 162, 0.12);
  border-radius: 20px;
  padding: 22px;
}

.sam-manual-group h3 {
  margin-top: 0;
}

.sam-download-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.sam-download-item {
  background: #f8fcff;
  border: 1px solid rgba(20, 106, 162, 0.12);
  border-radius: 16px;
  padding: 14px;
}

.sam-download-item > span {
  color: #10283a;
  display: block;
  font-family: var(--sam-body);
  font-weight: 760;
  margin-bottom: 10px;
}

.sam-download-item .wpdm-download-link,
.sam-download-item .btn,
.sam-download-item a[href*="download"] {
  background: linear-gradient(180deg, #1472aa, #075684) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 14px 34px rgba(7, 86, 132, 0.18) !important;
  color: #fff !important;
  display: inline-flex !important;
  font-family: var(--sam-mono) !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  padding: 12px 16px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

@media (max-width: 900px) {
  .sam-content-card,
  .sam-content-card.is-wide {
    grid-column: span 6;
  }

  .sam-support-hero-grid,
  .sam-manual-grid {
    grid-template-columns: 1fr;
  }
}

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

  .sam-content-card,
  .sam-content-card.is-wide,
  .sam-content-card.is-full,
  .sam-content-callout {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .sam-v2-hero-copy,
  .sam-v2-decision,
  .sam-v2-answer-card,
  .sam-v2-lane,
  .sam-v2-flow-grid div,
  .sam-v2-proof,
  .sam-v2-cta,
  .sam-page-hero,
  .sam-page-card {
    animation: sam-premium-rise 560ms var(--sam-ease-out) both;
  }

  .sam-v2-decision,
  .sam-v2-answer-card:nth-child(2),
  .sam-v2-lane:nth-child(2) {
    animation-delay: 90ms;
  }

  .sam-v2-answer-card:nth-child(3),
  .sam-v2-lane:nth-child(3) {
    animation-delay: 150ms;
  }
}

@media (max-width: 900px) {
  .sam-v2-hero-grid,
  .sam-v2-section-head,
  .sam-v2-proof {
    grid-template-columns: 1fr;
  }

  .sam-v2-answer-grid,
  .sam-v2-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sam-v2-lane,
  .sam-v2-lane-large {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .sam-v2-shell,
  .sam-page-shell {
    padding: 0 18px;
  }

  .sam-v2-hero-grid {
    min-height: auto;
    padding-bottom: 46px;
    padding-top: 44px;
  }

  .sam-v2-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .sam-v2-answer-grid,
  .sam-v2-flow-grid,
  .sam-v2-lane-grid {
    grid-template-columns: 1fr;
  }

  .sam-v2-lane,
  .sam-v2-lane-large {
    grid-column: span 1;
  }
}

/* Final live overrides: keep Elementor/global CSS from pulling the homepage back. */
body .sam-home .sam-instrument {
  background: rgba(255, 253, 248, 0.64) !important;
  border-color: rgba(24, 32, 39, 0.1) !important;
  box-shadow: 0 24px 66px rgba(47, 43, 36, 0.12) !important;
}

body .sam-home .sam-instrument-screen {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(236, 229, 216, 0.96)),
    repeating-linear-gradient(0deg, rgba(49, 92, 112, 0.055), rgba(49, 92, 112, 0.055) 1px, transparent 1px, transparent 14px) !important;
  border: 1px solid rgba(24, 32, 39, 0.1) !important;
  color: #25313a !important;
}

body .sam-home .sam-screen-label {
  color: #6f756f !important;
}

body .sam-home .sam-screen-value {
  color: #203d4a !important;
}

body .sam-home .sam-screen-copy {
  color: #4f5a61 !important;
}

body .sam-home .sam-meter {
  background: rgba(255, 255, 255, 0.66) !important;
  border-color: rgba(24, 32, 39, 0.1) !important;
}

body .sam-home .sam-meter strong {
  color: #203d4a !important;
}

body .sam-home .sam-meter span {
  color: #68706b !important;
}

/*
 * Interior restyle pass: preserve real WordPress/Elementor content, but remove
 * the heavy boxed wrapper and let the blue theme breathe through the page.
 * Dials: Variance 6 / Motion 7 / Density 5.
 */
@keyframes sam-ambient-drift {
  0% {
    background-position: 0% 0%, 100% 0%, 0 0;
  }

  50% {
    background-position: 8% 4%, 92% 8%, 0 0;
  }

  100% {
    background-position: 0% 0%, 100% 0%, 0 0;
  }
}

@keyframes sam-section-rise {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sam-blue-pulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(6, 86, 137, 0.16);
    transform: translateY(0) scale(1);
  }

  50% {
    box-shadow: 0 22px 46px rgba(6, 86, 137, 0.24);
    transform: translateY(-1px) scale(1.012);
  }
}

body .sam-page {
  background:
    radial-gradient(circle at 8% -4%, rgba(20, 116, 180, 0.24), transparent 32rem),
    radial-gradient(circle at 96% 12%, rgba(124, 198, 238, 0.28), transparent 34rem),
    linear-gradient(180deg, #f6fbff 0%, #eaf6fd 48%, #f9fdff 100%) !important;
  background-size: 120% 120%, 120% 120%, auto;
  overflow: hidden;
  position: relative;
}

body .sam-page::before {
  background-image:
    linear-gradient(rgba(20, 106, 162, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 106, 162, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.66), transparent 72%);
  pointer-events: none;
  position: absolute;
}

body .sam-page-hero {
  background: transparent !important;
  border-bottom: 1px solid rgba(20, 106, 162, 0.09);
  padding-bottom: clamp(18px, 3vw, 34px);
  position: relative;
  z-index: 1;
}

body .sam-page-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin-top: 0;
  overflow: visible;
  padding: clamp(8px, 2vw, 18px) 0 clamp(64px, 8vw, 104px);
  position: relative;
  z-index: 1;
}

body .sam-page-content {
  color: #263f52;
}

body .sam-page-content > .elementor,
body .sam-page-content > * {
  position: relative;
  z-index: 1;
}

body .sam-page .elementor-section,
body .sam-page .elementor-element.e-con,
body .sam-page .elementor-section-wrap > .elementor-section {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: clamp(20px, 4vw, 42px);
  overflow: visible;
  padding-bottom: clamp(20px, 3vw, 38px) !important;
  padding-top: clamp(20px, 3vw, 38px) !important;
}

body .sam-page .sam-page-content > .elementor > .elementor-section:first-child,
body .sam-page .sam-page-content > .elementor > .elementor-element.e-con:first-child,
body .sam-page .elementor-section-wrap > .elementor-section:first-child {
  padding-top: 0 !important;
}

body .sam-page .elementor-section:nth-of-type(even),
body .sam-page .elementor-element.e-con:nth-of-type(even) {
  background: transparent !important;
}

body .sam-page .elementor-column,
body .sam-page .elementor-widget-wrap,
body .sam-page .e-con-inner,
body .sam-page .elementor-container {
  background-color: transparent !important;
}

body .sam-page .elementor-widget-heading h1,
body .sam-page .elementor-widget-heading h2,
body .sam-page .elementor-widget-heading h3,
body .sam-page-content h1,
body .sam-page-content h2,
body .sam-page-content h3 {
  color: #071827 !important;
  font-family: var(--sam-display);
  letter-spacing: -0.052em;
}

body .sam-page .elementor-widget-text-editor,
body .sam-page .elementor-widget-text-editor p,
body .sam-page-content p,
body .sam-page-content li {
  color: #30495d !important;
  font-family: var(--sam-body);
  line-height: 1.68;
}

body .sam-page .elementor-widget-icon-box,
body .sam-page .wpdm-download-link,
body .sam-page .wpdmpro,
body .sam-page .w3eden .card,
body .sam-page .w3eden .media {
  transition:
    transform 210ms var(--sam-ease-snap),
    box-shadow 210ms var(--sam-ease-out),
    border-color 210ms var(--sam-ease-out);
}

body .sam-page .elementor-widget-icon-box:hover,
body .sam-page .w3eden .card:hover,
body .sam-page .w3eden .media:hover {
  border-color: rgba(20, 106, 162, 0.22) !important;
  box-shadow: 0 24px 52px rgba(7, 42, 68, 0.12) !important;
  transform: translateY(-3px) scale(1.01);
}

body .sam-page a[href*="freshdesk"],
body .sam-page .wpdm-download-link,
body .sam-page .w3eden .btn,
body .sam-page .elementor-button {
  background: linear-gradient(180deg, #1472aa, #075684) !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: var(--sam-mono) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

body .sam-page a[href*="freshdesk"]:hover,
body .sam-page .wpdm-download-link:hover,
body .sam-page .w3eden .btn:hover,
body .sam-page .elementor-button:hover {
  animation: sam-blue-pulse 760ms var(--sam-ease-out) both;
}

body .sam-page .w3eden .card,
body .sam-page .w3eden .media,
body .sam-page .wpdm-download-link + *,
body .sam-page [class*="wpdm"] {
  border-radius: 18px !important;
}

body .sam-page .elementor-widget-image img,
body .sam-page .elementor-widget-container img {
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(7, 42, 68, 0.12);
}

body .sam-page .elementor-widget-container {
  border-color: rgba(20, 106, 162, 0.1) !important;
}

body .sam-page .elementor-element,
body .sam-page .elementor-column,
body .sam-page .elementor-widget-wrap {
  border-color: rgba(20, 106, 162, 0.1) !important;
}

body .sam-page .elementor-spacer-inner {
  max-height: 28px !important;
}

body .sam-page .elementor-widget-divider {
  opacity: 0.64;
}

body .sam-page .elementor-widget-heading {
  margin-bottom: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  body .sam-page {
    animation: sam-ambient-drift 16s ease-in-out infinite;
  }

  body .sam-page .elementor-section,
  body .sam-page .elementor-element.e-con,
  body .sam-page-content > * {
    animation: sam-section-rise 520ms var(--sam-ease-out) both;
  }

  body .sam-page .elementor-section:nth-of-type(2),
  body .sam-page .elementor-element.e-con:nth-of-type(2) {
    animation-delay: 90ms;
  }

  body .sam-page .elementor-section:nth-of-type(3),
  body .sam-page .elementor-element.e-con:nth-of-type(3) {
    animation-delay: 150ms;
  }

  body .sam-page .elementor-section:nth-of-type(4),
  body .sam-page .elementor-element.e-con:nth-of-type(4) {
    animation-delay: 210ms;
  }
}

@media (max-width: 700px) {
  body .sam-page .elementor-section,
  body .sam-page .elementor-element.e-con,
  body .sam-page .elementor-section-wrap > .elementor-section {
    border-radius: 20px;
    margin-bottom: 18px;
  }
}

/*
 * Support IA pass: ticket first, required context second, manuals grouped by
 * product. This avoids the old Elementor order where downloads appeared before
 * the support path.
 */
.sam-support-flow {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.sam-support-primary {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
}

.sam-support-copy,
.sam-support-checklist,
.sam-support-manual-intro,
.sam-support-download-group {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(20, 106, 162, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 42, 68, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.sam-support-copy {
  background:
    radial-gradient(circle at 92% 8%, rgba(71, 164, 217, 0.2), transparent 18rem),
    rgba(255, 255, 255, 0.56);
}

.sam-support-copy h2,
.sam-support-manual-intro h2 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.066em;
  line-height: 0.98;
  margin: 14px 0 16px;
  max-width: 760px;
}

.sam-support-download-group h3 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  letter-spacing: -0.052em;
  line-height: 1;
  margin: 12px 0 12px;
}

.sam-support-download-item h4 {
  color: #10283a;
  font-family: var(--sam-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
}

.sam-support-copy p,
.sam-support-manual-intro p,
.sam-support-download-group p,
.sam-support-checklist li {
  color: #314b60;
  font-size: 1rem;
  line-height: 1.68;
}

.sam-support-checklist ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
}

.sam-support-checklist li {
  background: rgba(232, 246, 253, 0.62);
  border: 1px solid rgba(20, 106, 162, 0.11);
  border-radius: 18px;
  list-style: none;
  padding: 14px 16px;
}

.sam-support-button {
  align-items: center;
  background: linear-gradient(180deg, #1472aa, #075684);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(7, 86, 132, 0.24);
  color: #fff !important;
  display: inline-flex;
  font-family: var(--sam-mono);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin-top: 10px;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none !important;
  text-transform: uppercase;
}

.sam-support-downloads {
  display: grid;
  gap: 22px;
}

.sam-support-download-group {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
}

.sam-support-download-list {
  display: grid;
  gap: 16px;
}

.sam-support-download-item {
  background: rgba(247, 252, 255, 0.82);
  border: 1px solid rgba(20, 106, 162, 0.12);
  border-radius: 22px;
  padding: 18px;
}

.sam-support-download-item .w3eden {
  margin: 0;
}

.sam-support-download-item .w3eden .card,
.sam-support-download-item .w3eden .media,
.sam-support-download-item [class*="wpdm"] {
  margin-bottom: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .sam-support-copy,
  .sam-support-checklist,
  .sam-support-manual-intro,
  .sam-support-download-group {
    animation: sam-section-rise 560ms var(--sam-ease-out) both;
  }

  .sam-support-checklist {
    animation-delay: 90ms;
  }

  .sam-support-manual-intro {
    animation-delay: 150ms;
  }

  .sam-support-download-group:nth-child(1) {
    animation-delay: 210ms;
  }

  .sam-support-download-group:nth-child(2) {
    animation-delay: 270ms;
  }

  .sam-support-button:hover,
  .sam-support-download-item:hover {
    transform: translateY(-3px) scale(1.01);
  }

  .sam-support-button,
  .sam-support-download-item {
    transition:
      transform 210ms var(--sam-ease-snap),
      box-shadow 210ms var(--sam-ease-out),
      border-color 210ms var(--sam-ease-out);
  }
}

@media (max-width: 860px) {
  .sam-support-primary,
  .sam-support-download-group {
    grid-template-columns: 1fr;
  }
}

/*
 * Trust metrics and cross-platform navigation polish.
 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.sam-shopify-cart-link a {
  align-items: center;
  display: inline-flex !important;
  gap: 8px;
}

.sam-cart-count {
  align-items: center;
  background: #075684;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--sam-mono);
  font-size: 0.66rem;
  font-weight: 850;
  justify-content: center;
  min-height: 18px;
  min-width: 18px;
  padding: 0 5px;
}

.sam-about-flow {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.sam-about-lede,
.sam-about-principles article {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(20, 106, 162, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 42, 68, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.sam-about-lede h2 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
  margin: 14px 0 18px;
  max-width: 960px;
}

.sam-about-lede p,
.sam-about-principles p {
  color: #314b60;
  font-size: 1rem;
  line-height: 1.68;
}

.sam-about-metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sam-about-metrics article {
  background:
    radial-gradient(circle at 100% 0%, rgba(72, 169, 224, 0.2), transparent 14rem),
    #0b2033;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(7, 42, 68, 0.16);
  min-height: 180px;
  padding: 26px;
}

.sam-about-metrics strong {
  color: #fff;
  display: block;
  font-family: var(--sam-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.sam-about-metrics span {
  color: #b9d8eb;
  display: block;
  font-family: var(--sam-mono);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.45;
  margin-top: 18px;
  text-transform: uppercase;
}

.sam-about-principles {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sam-about-principles h3 {
  color: #071827;
  font-family: var(--sam-display);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  letter-spacing: -0.054em;
  line-height: 1;
  margin: 12px 0;
}

@media (prefers-reduced-motion: no-preference) {
  .sam-about-lede,
  .sam-about-metrics article,
  .sam-about-principles article {
    animation: sam-section-rise 560ms var(--sam-ease-out) both;
  }

  .sam-about-metrics article:nth-child(2),
  .sam-about-principles article:nth-child(2) {
    animation-delay: 90ms;
  }

  .sam-about-metrics article:nth-child(3),
  .sam-about-principles article:nth-child(3) {
    animation-delay: 150ms;
  }
}

@media (max-width: 860px) {
  .sam-about-metrics,
  .sam-about-principles {
    grid-template-columns: 1fr;
  }
}
