@charset "UTF-8";
/* ==========================================================================
   Accelerator & HBM Model page
   Tokens and component recipes follow the POAST brand kit (tokens.css v3).
   Scoped under .samx to avoid collisions with global theme styles.
   ========================================================================== */
/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: Grift;
  src: url("../../fonts/grift/Grift-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Grift;
  src: url("../../fonts/grift/Grift-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Grift;
  src: url("../../fonts/grift/Grift-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Grift;
  src: url("../../fonts/grift/Grift-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Grift;
  src: url("../../fonts/grift/Grift-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: Grift;
  src: url("../../fonts/grift/Grift-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("../../fonts/outfit/Outfit-Variable-latin.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Outfit;
  src: url("../../fonts/outfit/Outfit-Variable-latin-ext.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../../fonts/jetbrains-mono/JetBrainsMono-Variable-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../../fonts/jetbrains-mono/JetBrainsMono-Variable-latin-ext.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* ---- Page-level behavior ---- */
@media (prefers-reduced-motion: no-preference) {
  html:has(.samx) {
    scroll-behavior: smooth;
  }
}
/* ---- Tokens ---- */
.samx {
  --samx-bg: #06060C;
  --samx-surface: #0D0D12;
  --samx-card: #09090D;
  --samx-hover: #11111A;
  --samx-border: rgba(255, 255, 255, 0.06);
  --samx-border-hover: rgba(255, 255, 255, 0.12);
  --samx-tx: #E8E4DD;
  --samx-tx-muted: #8A8690;
  --samx-tx-dim: #4E4B56;
  --samx-on-cta: #060608;
  --samx-amber: #F7B041;
  --samx-blue: #0B86D1;
  --samx-cyan: #26C9D8;
  --samx-teal: #2EAD8E;
  --samx-coral: #E06347;
  --samx-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --samx-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(247, 176, 65, 0.08);
  --samx-shadow-modal: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(247, 176, 65, 0.05);
  --samx-shadow-focus: 0 0 0 3px rgba(247, 176, 65, 0.2), 0 0 16px rgba(247, 176, 65, 0.08);
  --samx-grad-card: linear-gradient(135deg, var(--samx-card) 0%, var(--samx-surface) 100%);
  --samx-grad-cta: linear-gradient(135deg, #F7B041, #26C9D8);
  --samx-ft-display: "Grift", "Outfit", sans-serif;
  --samx-ft-body: "Outfit", sans-serif;
  --samx-ft-mono: "JetBrains Mono", monospace;
  --samx-ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--samx-ft-body);
  font-weight: 500;
  color: var(--samx-tx);
  -webkit-font-smoothing: antialiased;
}

.samx ::selection {
  background: rgba(247, 176, 65, 0.25);
  color: var(--samx-amber);
}

/* :where() keeps these resets at class specificity so component margins win ties by order */
.samx :where(h1, h2, h3, h4, p, ul, ol, dl, figure) {
  margin: 0;
}

.samx :where(ul, ol) {
  padding: 0;
  list-style: none;
}

.samx a {
  text-decoration: none;
  color: inherit;
}

.samx :is(a, button, summary, input, textarea):focus-visible {
  outline: 2px solid rgba(247, 176, 65, 0.72);
  outline-offset: 3px;
}

.samx-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

/* Panels share the header container's surface color so the page reads as one system. */
.samx-panel {
  background: var(--wp--preset--color--neutral-950, #131416);
  border: 1px solid var(--samx-border);
  border-radius: 10px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

/* Sections share vertical rhythm; hairline rules separate them inside the body panel */
.samx-section {
  padding-block: clamp(2.75rem, 5.5vw, 4.25rem);
  scroll-margin-top: 96px;
}

.samx-section + .samx-section {
  border-top: 1px solid var(--samx-border);
}

/* ---- Shared primitives ---- */
.samx-h2 {
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--samx-tx);
  max-width: 24ch;
}

.samx-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--samx-tx-muted);
  max-width: 62ch;
  margin-top: 12px;
}

.samx-section__head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
}

/* Buttons */
.samx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  font-family: var(--samx-ft-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.samx-btn svg {
  transition: transform 0.2s ease;
}
.samx-btn:hover svg {
  transform: translateX(2px);
}
.samx-btn:active {
  transform: scale(0.97);
}

.samx-btn--lg {
  min-height: 50px;
  padding: 13px 24px;
  font-size: 15px;
}

.samx-btn--block {
  width: 100%;
}

/* Scoped with .samx so anchor buttons beat the `.samx a { color: inherit }` reset. */
.samx .samx-btn--primary {
  background: var(--samx-amber);
  color: var(--samx-on-cta);
  /* Sent state (form success): button becomes the confirmation, mint like the brand success color. */
}
.samx .samx-btn--primary:hover {
  box-shadow: var(--samx-shadow-hover);
  transform: translateY(-1px);
}
.samx .samx-btn--primary:active {
  transform: scale(0.97);
}
.samx .samx-btn--primary.is-sent, .samx .samx-btn--primary.is-sent:hover {
  background: var(--samx-teal);
  box-shadow: none;
  transform: none;
  cursor: default;
}

.samx-btn--ghost {
  background: transparent;
  color: var(--samx-tx);
  border: 1px solid var(--samx-border-hover);
}
.samx-btn--ghost:hover {
  border-color: rgba(247, 176, 65, 0.5);
  color: var(--samx-amber);
  background: rgba(247, 176, 65, 0.04);
}

/* Card recipe */
.samx-card {
  position: relative;
  background: var(--samx-grad-card);
  border: 1px solid var(--samx-border);
  border-radius: 12px;
  box-shadow: var(--samx-shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.samx-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 60% 50% at 85% 0%, rgba(247, 176, 65, 0.07), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.samx-card:hover {
  border-color: rgba(247, 176, 65, 0.35);
  box-shadow: var(--samx-shadow-hover);
  transform: translateY(-2px);
}
.samx-card:hover::after {
  opacity: 1;
}

/* Scroll reveal (activated only when JS is present) */
.samx-js [data-samx-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--samx-ease), transform 0.7s var(--samx-ease);
}
.samx-js [data-samx-reveal].is-in {
  opacity: 1;
  transform: none;
}

.samx-js [data-samx-delay="1"] {
  transition-delay: 90ms;
}

.samx-js [data-samx-delay="2"] {
  transition-delay: 180ms;
}

.samx-js [data-samx-delay="3"] {
  transition-delay: 270ms;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.samx-hero {
  background: var(--wp--preset--color--neutral-950, #131416);
}

.samx-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.samx-hero__bg span {
  position: absolute;
}

.samx-hero__wash {
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 76% 18%, rgba(247, 176, 65, 0.09), transparent 62%), radial-gradient(ellipse 50% 60% at 8% 88%, rgba(11, 134, 209, 0.05), transparent 60%), linear-gradient(180deg, #131416 0%, #0f1013 55%, #131416 100%);
}

.samx-hero__grid {
  inset: 0;
  background-image: linear-gradient(rgba(232, 228, 221, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 228, 221, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 72% 68% at 58% 32%, #000 22%, transparent 76%);
  opacity: 0.55;
}

.samx-hero__streak {
  inset: -20% -10%;
  background: linear-gradient(115deg, transparent 46.5%, rgba(247, 176, 65, 0.05) 49.5%, rgba(247, 176, 65, 0.015) 50.5%, transparent 54%);
}

.samx-hero__orb {
  border-radius: 50%;
  filter: blur(100px);
}

.samx-hero__orb--a {
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  top: -12%;
  right: -6%;
  background: radial-gradient(circle, rgba(247, 176, 65, 0.08), transparent 62%);
  animation: samx-drift-a 20s ease-in-out infinite alternate;
}

.samx-hero__orb--b {
  width: min(40vw, 480px);
  height: min(40vw, 480px);
  bottom: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(11, 134, 209, 0.06), transparent 62%);
  animation: samx-drift-b 25s ease-in-out infinite alternate;
}

@keyframes samx-drift-a {
  to {
    transform: translate3d(-72px, 52px, 0) scale(1.12);
  }
}
@keyframes samx-drift-b {
  to {
    transform: translate3d(64px, -46px, 0) scale(1.1);
  }
}
.samx-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.75rem, 5vw, 4.25rem);
}

.samx-crumbs {
  font-family: var(--samx-ft-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--samx-tx-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.samx-crumbs a {
  color: var(--samx-tx-muted);
  transition: color 0.2s ease;
}
.samx-crumbs a:hover {
  color: var(--samx-amber);
}
.samx-crumbs [aria-current=page] {
  color: var(--samx-tx-muted);
}

.samx-crumbs__sep {
  color: var(--samx-tx-dim);
}

.samx-hero__title {
  font-family: var(--samx-ft-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--samx-tx);
}

.samx-hero__title-line {
  display: block;
}

/* Accent text fill uses the blessed CTA gradient (amber to cyan), per the kit's h1 recipe. */
.samx-hero__title-accent {
  display: block;
  background: var(--samx-grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Page variant: accent warmed to SA Coral to pair with the coral-toned hero artwork. */
.samx--coral .samx-hero__title-accent {
  background: linear-gradient(135deg, var(--samx-amber), var(--samx-coral));
  -webkit-background-clip: text;
  background-clip: text;
}

.samx-hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.7;
  color: rgba(232, 228, 221, 0.72);
  max-width: 56ch;
  margin-top: 20px;
}

.samx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.samx-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
  max-width: 640px;
}
.samx-strip dt {
  font-family: var(--samx-ft-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--samx-tx-muted);
  margin-bottom: 6px;
}
.samx-strip dd {
  margin: 0;
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.4px;
  color: var(--samx-tx);
  white-space: nowrap;
}

.samx-strip__item {
  background: rgba(13, 13, 18, 0.55);
  border: 1px solid var(--samx-border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}
.samx-strip__item:hover {
  border-color: rgba(247, 176, 65, 0.3);
}

/* JS applies a slight scroll parallax to the media wrapper (reduced-motion aware). */
.samx-hero__media {
  position: relative;
  min-width: 0;
  will-change: transform;
}

.samx-hero__frame {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--samx-shadow-card), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s var(--samx-ease);
  /* The box itself enlarges on hover; the image rides along instead of zooming inside. */
}
.samx-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.samx-hero__frame:hover {
  border-color: rgba(247, 176, 65, 0.3);
  box-shadow: var(--samx-shadow-hover);
  transform: translateY(-2px) scale(1.02);
}

/* ==========================================================================
   Sticky section tabs
   ========================================================================== */
.samx-tabs {
  position: sticky;
  top: 10px;
  z-index: 40;
  margin-top: 12px;
}

.samx-tabs__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(6, 6, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--samx-border);
  border-radius: 999px;
  padding: 6px;
  max-width: 1096px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.samx-tabs.is-stuck .samx-tabs__inner {
  border-color: var(--samx-border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.samx-tabs__links {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  /* The scroller clips vertically too (overflow-x forces overflow-y to auto);
   * pad the clip edge away from the pill border so subpixel offsets can't
   * shave its top, and cancel the padding so the bar height is unchanged. */
  padding: 3px 0;
  margin: -3px 0;
  /* stylelint-disable-next-line no-descending-specificity */
  /* Inset focus ring so the overflow-x scroller cannot clip it */
  /* The active pill is already amber-ringed; a focus outline on top reads as a doubled border. */
}
.samx-tabs__links::-webkit-scrollbar {
  display: none;
}
.samx-tabs__links a {
  font-family: var(--samx-ft-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--samx-tx-muted);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.samx-tabs__links a:hover {
  color: var(--samx-tx);
  background: var(--samx-hover);
}
.samx-tabs__links a.is-active {
  color: var(--samx-amber);
  background: rgba(247, 176, 65, 0.06);
  border-color: rgba(247, 176, 65, 0.3);
}
.samx-tabs__links a:focus-visible {
  outline-offset: -2px;
}
.samx-tabs__links a.is-active:focus-visible {
  outline: none;
}

.samx .samx-tabs__cta {
  flex-shrink: 0;
  font-family: var(--samx-ft-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--samx-on-cta);
  background: var(--samx-amber);
  border-radius: 999px;
  padding: 9px 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.samx .samx-tabs__cta:hover {
  box-shadow: var(--samx-shadow-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   Body panel: overview
   ========================================================================== */
.samx-body {
  background: var(--wp--preset--color--neutral-950, #131416);
}

.samx-overview__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.samx-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(232, 228, 221, 0.76);
}
.samx-lead + .samx-lead {
  margin-top: 18px;
}

.samx-overview__prose .samx-h2 {
  margin-bottom: 22px;
}

.samx-dropcap::first-letter {
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 3.1em;
  line-height: 0.82;
  color: var(--samx-amber);
  float: left;
  padding: 6px 10px 0 0;
}

.samx-overview__rail {
  position: sticky;
  top: 84px;
}

.samx-access {
  background: var(--samx-grad-card);
  border: 1px solid var(--samx-border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--samx-shadow-card);
}

.samx-access__label {
  font-family: var(--samx-ft-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--samx-tx-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--samx-border);
}

.samx-access__list {
  margin-block: 4px 18px;
}
.samx-access__list li {
  padding: 12px 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(232, 228, 221, 0.72);
}
.samx-access__list li + li {
  border-top: 1px solid var(--samx-border);
}

/* ==========================================================================
   Fit: audience-to-decision map
   ========================================================================== */
.samx-map {
  border-top: 1px solid var(--samx-border);
}

.samx-map__row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding: 22px clamp(0.25rem, 1vw, 0.75rem);
  border-bottom: 1px solid var(--samx-border);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.samx-map__row:hover {
  background: rgba(17, 17, 26, 0.6);
}
.samx-map__row dt {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--samx-tx);
  line-height: 1.45;
}
.samx-map__row dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--samx-tx-muted);
}

/* ==========================================================================
   Inside the model
   ========================================================================== */
.samx-module {
  background: var(--samx-grad-card);
  border: 1px solid var(--samx-border);
  border-radius: 12px;
  box-shadow: var(--samx-shadow-card);
  padding: clamp(1.35rem, 2.8vw, 1.9rem);
  transition: border-color 0.2s ease;
}
.samx-module:hover {
  border-color: var(--samx-border-hover);
}
.samx-module + .samx-module {
  margin-top: 14px;
}

.samx-module__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.samx-module__head h3 {
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.3px;
}

.samx-module__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  font-family: var(--samx-ft-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--samx-amber);
  background: rgba(247, 176, 65, 0.06);
  border: 1px solid rgba(247, 176, 65, 0.28);
}

.samx-module__lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--samx-tx-muted);
  max-width: 70ch;
}

.samx-module__note {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid rgba(247, 176, 65, 0.4);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--samx-tx-muted);
  max-width: 72ch;
}

/* Vendor coverage: compact grid, long program lists span the full row */
.samx-vendors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.samx-vendor {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 12px 16px;
  background: rgba(5, 5, 9, 0.6);
  border: 1px solid var(--samx-border);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.samx-vendor:hover {
  border-color: var(--samx-border-hover);
}

.samx-vendor--wide {
  grid-column: 1/-1;
}

.samx-vendor__name {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--samx-tx);
}

.samx-vendor__programs {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(232, 228, 221, 0.68);
}

.samx-vendor .samx-tag {
  margin-top: 2px;
}

/* stylelint-disable-next-line no-descending-specificity */
.samx-tag {
  display: inline-block;
  font-family: var(--samx-ft-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  color: var(--samx-amber);
  background: rgba(247, 176, 65, 0.12);
  border: 1px solid rgba(247, 176, 65, 0.4);
}

.samx-tag--custom {
  color: var(--samx-cyan);
  background: rgba(38, 201, 216, 0.12);
  border-color: rgba(38, 201, 216, 0.4);
}

.samx-tag--china {
  color: var(--samx-tx-muted);
  background: var(--samx-surface);
  border-color: var(--samx-border-hover);
}

/* Tiles */
.samx-tiles {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.samx-tiles--3 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.samx-tiles--4 {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.samx-tiles--6 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* Tile with an amber undertab peeking from the bottom edge. On hover the face
 * lifts 1px and the tab drops (half-tab variant with a reduced glow), per the
 * design team's extrude-button reference.
 *
 * Layering: the tile itself is transparent and isolates a stacking context;
 * ::before is the dark face (z -1) and ::after is the amber tab (z -2), so
 * the tab stays behind the face at rest and during the hover transform.
 */
.samx-tile {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: 1px solid var(--samx-border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: transform 190ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 190ms ease, box-shadow 190ms ease;
  /* Parent lifts -1px; +2.5px here nets the tab to +1.5px against the page. */
}
.samx-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 38%), var(--samx-surface);
}
.samx-tile::after {
  content: "";
  position: absolute;
  inset: 5px 0 -3px;
  z-index: -2;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffc55f 0%, var(--samx-amber) 48%, #e39520 100%);
  filter: brightness(0.94) saturate(0.94);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 220ms cubic-bezier(0.18, 0.84, 0.22, 1), filter 210ms ease, box-shadow 220ms ease;
}
.samx-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.32);
}
.samx-tile:hover::after {
  transform: translateY(2.5px);
  filter: brightness(1.2) saturate(1.08);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.36), 0 0 6px rgba(247, 176, 65, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 0 8px rgba(255, 211, 127, 0.22);
}
.samx-tile h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.1px;
  margin-bottom: 6px;
}
.samx-tile p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--samx-tx-muted);
}

.samx-tile--mini {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(232, 228, 221, 0.8);
}

/* ==========================================================================
   Methodology
   ========================================================================== */
.samx-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.samx-step {
  position: relative;
  background: var(--samx-grad-card);
  border: 1px solid var(--samx-border);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--samx-shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.samx-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(247, 176, 65, 0.55), transparent 70%);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.samx-step:hover {
  border-color: rgba(247, 176, 65, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--samx-shadow-hover);
}
.samx-step:hover::before {
  opacity: 1;
}
.samx-step h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-block: 10px 6px;
}
.samx-step p {
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--samx-tx-muted);
}

.samx-step__num {
  font-family: var(--samx-ft-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--samx-amber);
}

/* ==========================================================================
   Subscriber research teaser
   ========================================================================== */
.samx-peek__wrap {
  position: relative;
  border: 1px solid var(--samx-border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(5, 5, 9, 0.5);
}

.samx-peek__stack {
  padding: 4px clamp(1rem, 2.5vw, 1.5rem);
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.samx-peek__row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: center;
  padding: 18px 0;
  /* Legibility decays down the stack: near-readable up top, gone by the last row */
}
.samx-peek__row + .samx-peek__row {
  border-top: 1px solid var(--samx-border);
}
.samx-peek__row img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.samx-peek__row:nth-child(1) {
  filter: blur(1.2px);
  opacity: 0.85;
}
.samx-peek__row:nth-child(2) {
  filter: blur(1.8px);
  opacity: 0.7;
}
.samx-peek__row:nth-child(3) {
  filter: blur(2.4px);
  opacity: 0.55;
}
.samx-peek__row:nth-child(4) {
  filter: blur(3.2px);
  opacity: 0.4;
}
.samx-peek__row:nth-child(5) {
  filter: blur(4px);
  opacity: 0.3;
}

.samx-peek__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.samx-peek__date {
  font-family: var(--samx-ft-mono);
  font-size: 10.5px;
  color: var(--samx-tx-muted);
}

.samx-peek__title {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.1px;
  line-height: 1.4;
  color: var(--samx-amber);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.samx-peek__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  font-size: 12px;
  color: var(--samx-tx-muted);
  max-width: 200px;
}

/* Light scrim only; the per-row blur carries the tease */
.samx-peek__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(6, 6, 12, 0.05) 0%, rgba(6, 6, 12, 0.3) 55%, rgba(6, 6, 12, 0.62) 100%);
}

.samx-peek__panel {
  max-width: 440px;
  text-align: center;
  background: rgba(9, 9, 13, 0.9);
  border: 1px solid var(--samx-border-hover);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--samx-shadow-modal);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.samx-peek__panel h3 {
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.samx-peek__panel p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--samx-tx-muted);
  margin-bottom: 18px;
}

.samx-peek__lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--samx-amber);
  background: rgba(247, 176, 65, 0.08);
  border: 1px solid rgba(247, 176, 65, 0.3);
  margin-bottom: 14px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.samx-faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.samx-faq__head {
  margin-bottom: 0;
}

.samx-qa {
  background: var(--samx-surface);
  border: 1px solid var(--samx-border);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}
.samx-qa + .samx-qa {
  margin-top: 10px;
}
.samx-qa[open] {
  border-color: rgba(247, 176, 65, 0.3);
}
.samx-qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--samx-tx);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
  border-radius: 12px;
}
.samx-qa summary::-webkit-details-marker {
  display: none;
}
.samx-qa summary:hover {
  background: var(--samx-hover);
}
.samx-qa[open] summary {
  border-radius: 12px 12px 0 0;
}

.samx-qa__chev {
  flex-shrink: 0;
  color: var(--samx-tx-muted);
  transition: transform 0.25s var(--samx-ease), color 0.2s ease;
}

.samx-qa[open] .samx-qa__chev {
  transform: rotate(180deg);
  color: var(--samx-amber);
}

/* While the close animation runs, the chrome reacts immediately. */
.samx-qa.is-closing {
  border-color: var(--samx-border);
}

.samx-qa.is-closing summary {
  border-radius: 12px;
}

.samx-qa.is-closing .samx-qa__chev {
  transform: rotate(0deg);
  color: var(--samx-tx-muted);
}

.samx-qa__body {
  padding: 2px 18px 18px;
  overflow: hidden;
}
.samx-qa__body p {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--samx-tx-muted);
  max-width: 64ch;
}

/* ==========================================================================
   Models that pair (compact model cards, ported from the MVP design)
   ========================================================================== */
.samx-pairs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.samx-paircard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(12, 14, 19, 0.8);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.samx-paircard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(ellipse 50% 60% at 20% 0%, rgba(247, 176, 65, 0.05), transparent 55%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.samx-paircard:hover {
  border-color: rgba(247, 176, 65, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.samx-paircard:hover::before {
  opacity: 1;
}

.samx-paircard__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.samx-paircard__image {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.samx-paircard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.samx-paircard__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.samx-paircard__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--samx-tx);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.samx-paircard__sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(232, 228, 221, 0.5);
}

.samx-paircard__desc {
  margin: 0;
  color: rgba(232, 228, 221, 0.65);
  font-size: 0.84rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.samx-paircard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.samx-paircard__tag {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(232, 228, 221, 0.6);
}

.samx-paircard__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--samx-tx);
  font-size: 0.78rem;
  font-weight: 600;
  width: fit-content;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  /* stylelint-disable-next-line no-descending-specificity */
}
.samx-paircard__cta svg {
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.samx-paircard:hover .samx-paircard__cta {
  border-color: rgba(247, 176, 65, 0.2);
  background: rgba(247, 176, 65, 0.05);
}

.samx-paircard:hover .samx-paircard__cta svg {
  transform: translateX(3px);
}

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.samx-cta {
  background: var(--wp--preset--color--neutral-950, #131416);
  margin-bottom: 12px;
}

.samx-cta__watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340' fill='none' stroke='%23F7B041' stroke-width='1'%3E%3Cpath d='M20 20h90v60h60M170 80V20h120M20 120h50v80M70 200h100v-60h120M290 140v120h-80M210 260h-90v60M120 320V260H20'/%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3Ccircle cx='290' cy='20' r='3'/%3E%3Ccircle cx='290' cy='260' r='3'/%3E%3Ccircle cx='20' cy='120' r='3'/%3E%3Ccircle cx='120' cy='320' r='3'/%3E%3C/svg%3E");
  background-size: 340px 340px;
  mask-image: linear-gradient(100deg, transparent 35%, #000 80%);
}

.samx-cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 460px);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.samx-checks {
  margin-top: 26px;
  /* stylelint-disable-next-line no-descending-specificity */
}
.samx-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(232, 228, 221, 0.78);
  /* stylelint-disable-next-line no-descending-specificity */
}
.samx-checks li svg {
  color: var(--samx-teal);
  flex-shrink: 0;
}
.samx-checks li + li {
  margin-top: 12px;
}

.samx-cta__formwrap {
  min-width: 0;
  background: rgba(9, 9, 13, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: clamp(1.4rem, 3vw, 1.75rem);
  box-shadow: var(--samx-shadow-modal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.samx-form__note {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--samx-tx-muted);
  margin-bottom: 18px;
}

/*
 * Jetpack Forms reskin. The form's markup and behavior belong to Jetpack —
 * these rules only restyle its output to the page design, so nothing here
 * can affect whether submissions go through.
 */
.samx-cta__formwrap .samx-jetpack-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
}

.samx-cta__formwrap .grunion-field-wrap {
  flex: 1 1 100%;
  min-width: 0;
  margin: 0;
}

/* Name + Job Title share a row, as do Email + Website; Message stays full. */
.samx-cta__formwrap .grunion-field-name-wrap,
.samx-cta__formwrap .grunion-field-text-wrap,
.samx-cta__formwrap .grunion-field-email-wrap,
.samx-cta__formwrap .grunion-field-url-wrap {
  flex: 1 1 calc(50% - 6px);
}

.samx-cta__formwrap .grunion-field-label {
  display: block;
  font-family: var(--samx-ft-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--samx-tx-muted);
  margin-bottom: 7px;
}

.samx-cta__formwrap .grunion-label-required {
  color: var(--samx-amber);
}

.samx-cta__formwrap .contact-form input[type=text],
.samx-cta__formwrap .contact-form input[type=email],
.samx-cta__formwrap .contact-form input[type=url],
.samx-cta__formwrap .contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--samx-bg);
  border: 1px solid var(--samx-border);
  border-radius: 8px;
  color: var(--samx-tx);
  font-family: var(--samx-ft-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  min-height: 46px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.samx-cta__formwrap .contact-form input[type=text]::placeholder,
.samx-cta__formwrap .contact-form input[type=email]::placeholder,
.samx-cta__formwrap .contact-form input[type=url]::placeholder,
.samx-cta__formwrap .contact-form textarea::placeholder {
  color: var(--samx-tx-dim);
}
.samx-cta__formwrap .contact-form input[type=text]:hover,
.samx-cta__formwrap .contact-form input[type=email]:hover,
.samx-cta__formwrap .contact-form input[type=url]:hover,
.samx-cta__formwrap .contact-form textarea:hover {
  border-color: var(--samx-border-hover);
}
.samx-cta__formwrap .contact-form input[type=text]:focus,
.samx-cta__formwrap .contact-form input[type=email]:focus,
.samx-cta__formwrap .contact-form input[type=url]:focus,
.samx-cta__formwrap .contact-form textarea:focus {
  outline: none;
  border-color: var(--samx-amber);
  box-shadow: var(--samx-shadow-focus);
}
.samx-cta__formwrap .contact-form input[type=text][aria-invalid=true],
.samx-cta__formwrap .contact-form input[type=email][aria-invalid=true],
.samx-cta__formwrap .contact-form input[type=url][aria-invalid=true],
.samx-cta__formwrap .contact-form textarea[aria-invalid=true] {
  border-color: var(--samx-coral);
}

/* stylelint-disable-next-line no-descending-specificity */
.samx-cta__formwrap .contact-form textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

.samx-cta__formwrap .wp-block-jetpack-button {
  flex: 1 1 100%;
  margin-top: 4px;
}

/* Scoped with .samx so it beats both Jetpack's button styles and the theme's
 * wp-element-button rules. */
.samx .samx-cta__formwrap .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--samx-amber);
  color: var(--samx-on-cta);
  font-family: var(--samx-ft-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.samx .samx-cta__formwrap .wp-block-button__link:hover {
  box-shadow: var(--samx-shadow-hover);
  transform: translateY(-1px);
}
.samx .samx-cta__formwrap .wp-block-button__link:active {
  transform: scale(0.97);
}

.samx-cta__formwrap .contact-form__input-error,
.samx-cta__formwrap .contact-form__error {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--samx-coral);
}

/* Post-submit confirmation Jetpack swaps in. */
.samx-cta__formwrap .contact-form-submission {
  color: var(--samx-tx);
}
.samx-cta__formwrap .contact-form-submission h4 {
  color: var(--samx-teal);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .samx-hero__inner {
    grid-template-columns: 1fr 0.85fr;
  }
}
@media (max-width: 980px) {
  .samx-hero__inner {
    grid-template-columns: 1fr;
    padding-block: clamp(3rem, 6vw, 4.5rem);
  }
  .samx-hero__media {
    max-width: 620px;
  }
  .samx-hero__frame {
    aspect-ratio: 1.5;
  }
  .samx-overview__grid {
    grid-template-columns: 1fr;
  }
  .samx-overview__rail {
    position: static;
    max-width: 480px;
  }
  .samx-cta__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .samx-cta__watermark {
    mask-image: linear-gradient(170deg, transparent 45%, #000 90%);
  }
}
@media (max-width: 900px) {
  .samx-faq__grid {
    grid-template-columns: 1fr;
  }
  .samx-steps {
    grid-template-columns: 1fr;
  }
  .samx-pairs__grid {
    grid-template-columns: 1fr;
  }
  .samx-peek__meta {
    display: none;
  }
}
@media (max-width: 720px) {
  .samx-map__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .samx-vendors {
    grid-template-columns: 1fr;
  }
  .samx-peek__row {
    grid-template-columns: minmax(0, 1fr);
  }
  .samx-peek__row img {
    display: none;
  }
}
@media (max-width: 720px) {
  .samx-tabs__cta {
    display: none;
  }
  .samx-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .samx-hero__title {
    letter-spacing: -1.2px;
  }
}
@media (max-width: 560px) {
  .samx-cta__formwrap .grunion-field-wrap {
    flex-basis: 100%;
  }
  .samx-panel {
    border-radius: 8px;
  }
}
/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .samx-hero__orb {
    animation: none;
  }
  .samx-hero__title-accent {
    background: none;
    -webkit-text-fill-color: currentcolor;
    color: var(--samx-amber);
  }
  .samx-js [data-samx-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .samx *,
  .samx *::before,
  .samx *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*
 * When the marketing page renders inside the portal page (the pattern sits
 * in the Passport logged-out view), hide the page-title band above it - the
 * hero carries its own title. Passport only outputs the logged-out view for
 * guests, so .samx never exists in a subscriber's DOM and their feed keeps
 * the band. The child combinator pins this to the band group itself (outer
 * wrappers contain the title only as a deeper descendant).
 */
body:has(.samx) .wp-block-group:has(> .wp-block-post-title) {
  display: none;
}
/*# sourceMappingURL=accelerator-model.css.map */