/* SecondSim Design System v3 — Direction A "Loud" */

/* Global hidden utility */
.hidden { display: none !important; }

/* ── Tokens ────────────────────────────────────────── */
:root {
  --ss-dark:       #0D1526;
  --ss-indigo:     #4B44E8;
  --ss-coral:      #FF8A73;
  --ss-cream:      #F4F2EE;
  --ss-font:       'Figtree', Helvetica, Arial, sans-serif;
  --ss-mono:       'IBM Plex Mono', 'Courier New', monospace;
  --ss-error:      #C8371E;   /* 4.6:1 on white/cream */
  --ss-error-dark: #FF6B6B;   /* for navy surfaces */
}

/* ── Base ──────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}
.ss-root *, .ss-root *::before, .ss-root *::after { box-sizing: border-box; }
.ss-root {
  container-type: inline-size;
  background: var(--ss-dark);
  color: #fff;
  font-family: var(--ss-font) !important;
  overflow-x: hidden;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
.ss-root h1,
.ss-root h2,
.ss-root h3,
.ss-root h4,
.ss-root h5,
.ss-root h6,
.ss-root .font-heading,
.ss-root header,
.ss-root nav {
  font-family: var(--ss-font) !important;
  font-style: normal !important;
}
.ss-root a:not(.ss-btn):not([class*="ss-nav"]):not([class*="ss-mobile"])       { color: var(--ss-indigo); text-decoration: none; }
.ss-root a:not(.ss-btn):not([class*="ss-nav"]):not([class*="ss-mobile"]):hover { color: var(--ss-coral); }
.ss-root details summary { list-style: none; cursor: pointer; }
.ss-root details summary::-webkit-details-marker { display: none; }
.ss-root details[open] .ss-faq-plus { transform: rotate(45deg); }

/* ── Eyebrow / mono tag ────────────────────────────── */
.ss-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ss-mono); font-size: clamp(10px,1.05cqw,13px);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ss-coral);
}
.ss-eyebrow::before {
  content: ''; width: 8px; height: 8px; background: var(--ss-coral);
  border-radius: 50%; flex-shrink: 0; display: inline-block;
}

/* ── Layout & Sections ─────────────────────────────── */
#pricing,
section[id],
div[id^="plan-"]   { scroll-margin-top: clamp(64px, 8vw, 96px); }
.ss-section        { padding: clamp(56px,7cqw,120px) clamp(20px,4cqw,64px); }
.ss-section-sm     { padding: clamp(40px,5cqw,80px) clamp(20px,4cqw,64px); }
.ss-section-navy   { background: var(--ss-dark); color: #fff; padding: clamp(56px,7cqw,120px) clamp(20px,4cqw,64px); }
.ss-section-cream  { background: var(--ss-cream); color: var(--ss-dark); padding: clamp(56px,7cqw,120px) clamp(20px,4cqw,64px); }
.ss-section-indigo { background: var(--ss-indigo); color: #fff; padding: clamp(56px,7cqw,120px) clamp(20px,4cqw,64px); }
.ss-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(14px,1.6cqw,22px);
}

/* ── Typography Scale (homepage parity) ────────────── */
.ss-h1 { font-family: var(--ss-font); font-size: clamp(38px, 6.4vw, 88px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: clamp(20px, 3vw, 40px); }
.ss-h2 { font-family: var(--ss-font); font-size: clamp(30px, 4.2vw, 62px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: clamp(18px, 2.6vw, 36px); }
.ss-h3 { font-family: var(--ss-font); font-size: clamp(19px, 1.8vw, 26px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px; }
.ss-h4 { font-family: var(--ss-font); font-size: clamp(16px, 1.4vw, 20px); font-weight: 800; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 8px; }

/* ── Buttons ───────────────────────────────────────── */
.ss-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ss-font); font-weight: 800;
  font-size: clamp(15px,1.3cqw,18px); padding: 16px 32px;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap; text-align: center;
  box-sizing: border-box; line-height: 1.1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  transition: background .18s, color .18s, border-color .18s, transform .08s ease;
}
.ss-btn:active {
  transform: scale(0.97);
  transition-duration: 0.04s;
}
.ss-btn-lg { font-size: clamp(16px,1.4cqw,20px); padding: 20px 40px; }
.ss-btn-sm { font-size: 13px; padding: 12px 22px; }
.ss-btn-xs { font-size: 11px; padding: 6px 14px; }
.ss-btn-coral, .ss-root a.ss-btn-coral        { background: var(--ss-coral); color: var(--ss-dark) !important; border-color: transparent; }
.ss-btn-coral:hover, .ss-root a.ss-btn-coral:hover  { background: #fff !important; color: var(--ss-dark) !important; border-color: transparent; }
.ss-btn-coral:active, .ss-root a.ss-btn-coral:active { background: #ff7559 !important; color: var(--ss-dark) !important; }
.ss-btn-indigo, .ss-root a.ss-btn-indigo       { background: var(--ss-indigo); color: #fff !important; border-color: transparent; }
.ss-btn-indigo:hover, .ss-root a.ss-btn-indigo:hover { background: var(--ss-coral) !important; color: var(--ss-dark) !important; border-color: transparent; }
.ss-btn-indigo:active, .ss-root a.ss-btn-indigo:active { background: #3d36cf !important; }
.ss-btn-ghost, .ss-root a.ss-btn-ghost        { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,.25); }
.ss-btn-ghost:hover, .ss-root a.ss-btn-ghost:hover  { border-color: #fff !important; color: #fff !important; }
.ss-btn-ghost:active, .ss-root a.ss-btn-ghost:active { background: rgba(255,255,255,0.08) !important; }
.ss-btn-light, .ss-root a.ss-btn-light        { background: #ffffff; color: var(--ss-dark) !important; border-color: transparent; }
.ss-btn-light:hover, .ss-root a.ss-btn-light:hover  { background: var(--ss-coral) !important; color: var(--ss-dark) !important; border-color: transparent; }
.ss-btn-light:active, .ss-root a.ss-btn-light:active { background: #e5e5e5 !important; }
.ss-btn-dark, .ss-root a.ss-btn-dark         { background: var(--ss-dark); color: #fff !important; border-color: transparent; }
.ss-btn-dark:hover, .ss-root a.ss-btn-dark:hover   { background: var(--ss-coral) !important; color: var(--ss-dark) !important; border-color: transparent; }
.ss-btn-dark:active, .ss-root a.ss-btn-dark:active  { background: #060b13 !important; }
.ss-btn-danger, .ss-root a.ss-btn-danger      { background: var(--ss-app-paper, #fff); color: #C8371E !important; border: 1px solid rgba(200,55,30,.45); }
.ss-btn-danger:hover, .ss-root a.ss-btn-danger:hover { background: #C8371E !important; color: #fff !important; border-color: #C8371E !important; }

/* Multi-surface button coverage (App / Light & Cream) */
.ss-app .ss-btn-ghost,
.ss-section-cream .ss-btn-ghost {
  border: 1px solid var(--ss-app-line-firm, rgba(13,21,38,.42));
  color: var(--ss-dark) !important;
  background: transparent;
}
.ss-app .ss-btn-ghost:hover,
.ss-section-cream .ss-btn-ghost:hover {
  border-color: var(--ss-dark) !important;
  background: var(--ss-dark) !important;
  color: #ffffff !important;
}

.ss-app .ss-btn-coral,
.ss-section-cream .ss-btn-coral {
  background: var(--ss-coral);
  color: var(--ss-dark) !important;
}
.ss-app .ss-btn-coral:hover,
.ss-section-cream .ss-btn-coral:hover {
  background: var(--ss-dark) !important;
  color: #ffffff !important;
}

.ss-app .ss-btn-dark,
.ss-section-cream .ss-btn-dark {
  background: var(--ss-dark) !important;
  color: #ffffff !important;
}
.ss-app .ss-btn-dark:hover,
.ss-section-cream .ss-btn-dark:hover {
  background: var(--ss-coral) !important;
  color: var(--ss-dark) !important;
}

/* ── Cards ─────────────────────────────────────────── */
.ss-card-border { border: 1px solid rgba(255,255,255,.14); padding: clamp(24px,2.6cqw,38px); display: flex; flex-direction: column; gap: 18px; }
.ss-card-fill   { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: clamp(24px,2.6cqw,38px); display: flex; flex-direction: column; gap: 18px; }
.ss-card-indigo { background: var(--ss-indigo); padding: clamp(24px,2.6cqw,38px); display: flex; flex-direction: column; gap: 18px; position: relative; }
.ss-card-coral  { background: var(--ss-coral); color: var(--ss-dark); padding: clamp(24px,2.6cqw,38px); display: flex; flex-direction: column; gap: 18px; }

/* ── Price display ─────────────────────────────────── */
.ss-price { font-size: clamp(38px,4cqw,58px); font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.ss-price-unit { font-size: .34em; font-weight: 600; color: rgba(255,255,255,.55); }
.ss-card-indigo .ss-price-unit { color: rgba(255,255,255,.75); }
.ss-plan-badge {
  position: absolute; top: clamp(-12px,-1cqw,-10px); right: clamp(16px,2cqw,26px);
  background: var(--ss-coral); color: var(--ss-dark);
  font-weight: 900; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; padding: 8px 14px; transform: rotate(-2deg);
}

/* ── Trust Bar (Warm Cream) ────────────────────────── */
.ss-trust-bar {
  background: var(--ss-cream, #F4F2EE);
  color: var(--ss-dark, #0D1526);
  padding: clamp(14px, 1.5vw, 18px) clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  flex-wrap: wrap;
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.4;
  border-bottom: 1px solid rgba(13, 21, 38, 0.08);
}
.ss-trust-bar strong {
  font-weight: 800;
  color: #0D1526;
  letter-spacing: -0.01em;
}
.ss-trust-bar .ss-trust-mono {
  font-family: var(--ss-mono, 'IBM Plex Mono', monospace);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 21, 38, 0.65);
}
.ss-trust-bar .ss-trust-dot {
  color: rgba(13, 21, 38, 0.28);
  font-size: 14px;
}

/* ── Features (coral border-top) ──────────────────── */
.ss-feature { border-top: 2px solid var(--ss-coral); padding-top: 22px; }

/* ── Testimonials ──────────────────────────────────── */
.ss-testi { padding: clamp(24px,2.6cqw,38px); margin: 0; }
.ss-testi-a { background: var(--ss-indigo); transform: rotate(-1.2deg); }
.ss-testi-b { background: var(--ss-coral); color: var(--ss-dark); transform: rotate(.8deg); }
.ss-testi-c { border: 1px solid rgba(255,255,255,.16); transform: rotate(-.6deg); }
.ss-testi blockquote { margin: 0 0 24px; font-size: clamp(18px,1.7cqw,24px); font-weight: 700; line-height: 1.3; letter-spacing: -.02em; }
.ss-testi-b blockquote { color: var(--ss-dark); }
.ss-testi figcaption { font-family: var(--ss-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.ss-testi-b figcaption { color: rgba(13,21,38,.7); }

/* ── Hero H1 box ───────────────────────────────────── */
.ss-hero-box {
  transform: rotate(-2.2deg); transform-origin: left center;
  background: var(--ss-indigo); display: table;
  padding: clamp(14px,2cqw,26px) clamp(18px,2.6cqw,34px);
  margin-bottom: clamp(20px,2.6cqw,34px);
  max-width: none;
}
.ss-hero-box h1 { max-width: 16ch; }
.ss-hero-sub    { max-width: 30em; }

/* ── Hero with graphic (two-column) ───────────────── */
.ss-hero-split {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: clamp(32px, 5cqw, 80px);
  align-items: center;
}
.ss-hero-art {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .ss-hero-split { grid-template-columns: 1fr; }
  .ss-hero-art   { max-width: 420px; }
}

/* ── FAQ ───────────────────────────────────────────── */
details.ss-faq-q { border-top: 1px solid rgba(13,21,38,.14); padding: 22px 0; }
details.ss-faq-q:last-child { border-bottom: 1px solid rgba(13,21,38,.14); }
details.ss-faq-q summary {
  display: flex; justify-content: space-between; gap: 20px;
  font-size: clamp(17px,1.5cqw,21px); font-weight: 800; letter-spacing: -.01em; color: #0D1526;
}
.ss-faq-plus { color: var(--ss-indigo); transition: transform .2s; flex-shrink: 0; font-size: 24px; line-height: 1; }
.ss-faq-p { margin: 14px 0 0; color: rgba(13,21,38,.7); font-size: 16px; line-height: 1.6; max-width: 40em; }

/* ── Global .ss-faq-item card accordions (Direction A) ── */
.ss-faq-item {
  border-radius: 0 !important;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(255,255,255,0.02) !important;
  transition: border-color .15s ease, background .15s ease;
}
.ss-faq-item:hover {
  border-color: rgba(255,255,255,0.18) !important;
}
.ss-faq-item[open],
.ss-faq-item.open {
  border-color: rgba(75,68,232,0.5) !important;
  background: rgba(75,68,232,0.05) !important;
}
.ss-faq-item > summary,
.ss-faq-item > .ss-faq-q,
button.ss-faq-q {
  background: transparent;
  color: #fff;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  border-top: none !important;
  text-align: left;
  font-family: inherit;
  box-sizing: border-box;
  transition: background .15s ease, color .15s ease;
}
.ss-faq-item > summary::-webkit-details-marker { display: none; }
.ss-faq-item > summary:hover,
.ss-faq-item > .ss-faq-q:hover,
button.ss-faq-q:hover {
  background: rgba(255,255,255,0.03);
}
.ss-faq-item .ss-faq-plus {
  font-size: 22px;
  font-weight: 400;
  color: #4B44E8;
  transition: transform .2s ease;
  line-height: 1;
  margin-left: 12px;
  flex-shrink: 0;
}
.ss-faq-item[open] .ss-faq-plus,
.ss-faq-item.open .ss-faq-plus {
  transform: rotate(45deg);
}
.ss-faq-p-wrapper {
  padding: 0 22px 22px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}
div.ss-faq-item:not(.open) .ss-faq-p-wrapper {
  display: none;
}
div.ss-faq-item.open .ss-faq-p-wrapper {
  display: block;
}

/* ── Pro Data numbered list ────────────────────────── */
.ss-numbered { background: rgba(13,21,38,.35); padding: 20px 24px; display: flex; gap: 16px; align-items: baseline; }
.ss-num      { font-family: var(--ss-mono); font-size: 12px; color: var(--ss-coral); flex-shrink: 0; }

/* ── Money-back pill ───────────────────────────────── */
.ss-guarantee {
  background: rgba(255,138,115,.14); color: var(--ss-coral);
  font-weight: 800; padding: 10px 16px; border-radius: 0; font-size: 13px;
}

/* ── Header & Navigation Chrome ────────────────────── */
.ss-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 21, 38, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ss-header-minimal {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 21, 38, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ss-app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ss-app-paper, #FFFFFF);
  border-bottom: 1px solid var(--ss-app-line, rgba(13,21,38,.12));
}
.ss-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  padding: clamp(14px, 1.8vw, 22px) clamp(20px, 4vw, 64px);
}
.ss-nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  flex-wrap: nowrap;
  font-size: 15px;
  font-weight: 600;
}
.ss-nav-link {
  color: rgba(244, 242, 238, 0.72);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.15s;
  text-decoration: none;
}
.ss-nav-link:hover {
  color: #F4F2EE;
}
.ss-nav-link.is-active,
.ss-nav-link[aria-current="page"] {
  color: #F4F2EE;
  border-bottom: 2px solid var(--ss-coral, #FF8A73);
  padding-bottom: 2px;
}
.ss-nav-btn-login {
  color: rgba(244, 242, 238, 0.72);
  text-decoration: none;
  border: 1px solid rgba(244, 242, 238, 0.3);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.15s, border-color 0.15s;
}
.ss-nav-btn-login:hover {
  color: #F4F2EE;
  border-color: #F4F2EE;
}
.ss-nav-btn-cta {
  background: var(--ss-indigo, #4B44E8);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
}
.ss-nav-btn-cta:hover {
  background: var(--ss-coral, #FF8A73);
  color: var(--ss-dark, #0D1526);
}

/* ── Navigation Dropdown (A11y click & keyboard) ──── */
.ss-nav-dropdown {
  position: relative;
}
.ss-nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ss-font);
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  color: rgba(244, 242, 238, 0.72);
  transition: color 0.15s ease;
}
.ss-nav-dropdown-btn:hover,
.ss-nav-dropdown-btn[aria-expanded="true"],
.ss-nav-dropdown-btn.is-active,
.ss-nav-dropdown-btn[aria-current="page"] {
  color: #F4F2EE;
}
.ss-nav-dropdown-btn.is-active,
.ss-nav-dropdown-btn[aria-current="page"] {
  border-bottom: 2px solid var(--ss-coral, #FF8A73);
  padding-bottom: 2px;
}
.ss-nav-dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  pointer-events: none;
}
.ss-nav-dropdown-btn[aria-expanded="true"] .ss-nav-dropdown-icon {
  transform: rotate(180deg);
}
.ss-nav-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 250px;
  background: #0D1526;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
  z-index: 70;
  max-height: 80vh;
  overflow-y: auto;
}
.ss-nav-dropdown-menu.is-open {
  display: block;
}
.ss-nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.ss-nav-dropdown-item:hover,
.ss-nav-dropdown-item:focus {
  background: rgba(75, 68, 232, 0.22);
  color: #fff;
  outline: none;
}
.ss-nav-dropdown-item:focus-visible {
  outline: 2px solid var(--ss-coral, #FF8A73);
  outline-offset: -2px;
}
.ss-nav-dropdown-item.is-featured {
  color: var(--ss-coral, #FF8A73);
  font-weight: 700;
}
.ss-nav-dropdown-item.is-current {
  background: rgba(75, 68, 232, 0.18);
  color: var(--ss-coral, #FF8A73);
}

/* ── Mobile menu responsive ───────────────────────── */
@media (max-width: 1023px) {
  .ss-nav-desktop    { display: none !important; }
  .ss-mobile-trigger { display: flex !important; }
}
@media (min-width: 1024px) {
  .ss-mobile-trigger { display: none !important; }
  .ss-mobile-menu    { display: none !important; }
}

.ss-mobile-menu            { background: rgba(13,21,38,.98); border-top: 1px solid rgba(255,255,255,.08); padding: 16px clamp(20px,4vw,64px) 24px; }
.ss-mobile-link            { display: block; padding: 12px 0; font-size: 16px; font-weight: 600;
                             color: rgba(255,255,255,.85); text-decoration: none;
                             border-bottom: 1px solid rgba(255,255,255,.07); }
.ss-mobile-link:hover      { color: #fff; }
.ss-mobile-sub             { display: block; padding: 10px 16px; font-size: 14px;
                             color: rgba(255,255,255,.8); text-decoration: none; }
.ss-mobile-sub:hover       { color: #fff; }
.ss-mobile-sub.is-featured { color: var(--ss-coral); font-weight: 700; }

body.ss-scroll-locked { overflow: hidden; }

/* ── Footer Chrome ─────────────────────────────────── */
.ss-footer {
  background: var(--ss-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(48px, 6cqw, 90px) clamp(20px, 4cqw, 64px) clamp(28px, 3cqw, 44px);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .ss-hero-box { transform: rotate(-1.5deg); }
  .ss-testi-a, .ss-testi-b, .ss-testi-c { transform: none; }
}

/* ── App surface (logged-in, light) ───────────────── */
:root {
  --ss-app-paper:      #FFFFFF;
  --ss-app-sunken:     #F4F2EE;
  --ss-app-line:       rgba(13,21,38,.12);
  --ss-app-line-firm:  rgba(13,21,38,.42);
  --ss-app-text-2:     rgba(13,21,38,.68);
  --ss-app-label:      rgba(13,21,38,.72);
}

.ss-app        { background: var(--ss-app-sunken); color: var(--ss-dark);
                 font-family: var(--ss-font); }
.ss-app-panel  { background: var(--ss-app-paper); border: 1px solid var(--ss-app-line); }
.ss-app-tile   { background: var(--ss-app-sunken); padding: clamp(20px,2.4vw,30px); }
.ss-app-row    { border-bottom: 1px solid var(--ss-app-line); padding: 24px 0; }
.ss-app-add    { border: 1px dashed var(--ss-app-line-firm); padding: 24px 28px;
                 display: flex; align-items: center; justify-content: space-between; }
.ss-app-split  { grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .ss-app-split { grid-template-columns: 1fr 340px; }
}
#add-line-btn-wrapper:empty { display: none; margin: 0; }
.ss-app-label  { font-family: var(--ss-mono); font-size: 11px; font-weight: 600;
                 letter-spacing: .13em; text-transform: uppercase;
                 color: var(--ss-app-label); }
.ss-app-meta   { font-family: var(--ss-mono); font-size: 12px; letter-spacing: .08em;
                 color: var(--ss-app-label); }
.ss-app-sub    { color: var(--ss-app-text-2); }

/* App Modal & Input Components */
.ss-app-modal-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(13,21,38,0.72);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; overflow-y: auto;
}
.ss-app-modal-dialog {
  background: var(--ss-app-paper);
  border: 1px solid var(--ss-app-line-firm);
  color: var(--ss-dark);
  padding: clamp(24px, 3.5vw, 40px);
  width: 100%; position: relative;
  box-shadow: 0 20px 48px rgba(13,21,38,0.18);
}
.ss-app-input {
  background: var(--ss-app-paper);
  border: 1px solid var(--ss-app-line-firm);
  color: var(--ss-dark);
  padding: 14px 16px;
  font-family: var(--ss-font);
  font-size: 15px;
  width: 100%; box-sizing: border-box;
  outline: none; transition: border-color .15s;
}
.ss-app-input:focus {
  border-color: var(--ss-indigo);
}

/* App surface utility parity */
.text-\[var\(--ss-coral\)\]       { color: var(--ss-coral) !important; }
.text-\[var\(--ss-dark\)\]        { color: var(--ss-dark) !important; }
.text-\[var\(--ss-app-text-2\)\]  { color: var(--ss-app-text-2) !important; }
.text-\[var\(--ss-app-label\)\]   { color: var(--ss-app-label) !important; }
.hover\:text-\[var\(--ss-dark\)\]:hover { color: var(--ss-dark) !important; }
.border-\[var\(--ss-coral\)\]     { border-color: var(--ss-coral) !important; }
.border-\[var\(--ss-app-line\)\]  { border-color: var(--ss-app-line) !important; }
.bg-\[var\(--ss-app-sunken\)\]    { background-color: var(--ss-app-sunken) !important; }
.divide-\[var\(--ss-app-line\)\] > :not([hidden]) ~ :not([hidden]) { border-color: var(--ss-app-line) !important; }
.bg-\[\#0D1526\]                  { background-color: #0D1526 !important; }
.border-\[rgba\(255\,255\,255\,0\.1\)\] { border-color: rgba(255,255,255,0.1) !important; }
.text-white\/70                   { color: rgba(255,255,255,0.7) !important; }

.mt-0\.5 { margin-top: 0.125rem; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.gap-2\.5 { gap: 0.625rem; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Status pills — indigo = fine/active, coral = needs the user to act */
.ss-pill       { font-family: var(--ss-mono); font-size: 11px; font-weight: 600;
                 letter-spacing: .1em; text-transform: uppercase;
                 border-radius: 0; padding: 6px 14px; display: inline-block; }
.ss-pill-ok    { background: var(--ss-indigo); color: #fff; }
.ss-pill-act   { background: var(--ss-coral);  color: var(--ss-dark); }
.ss-pill-idle  { border: 1px solid var(--ss-app-line-firm); color: var(--ss-app-text-2); }

/* Light-surface buttons reuse .ss-btn; these are the light-only variants */
.ss-btn-light  { background: var(--ss-app-paper); color: var(--ss-dark) !important;
                 border: 1px solid var(--ss-app-line-firm); }
.ss-btn-light:hover { border-color: var(--ss-dark) !important; }

.ss-app *, .ss-app *::before, .ss-app *::after { box-sizing: border-box; }
.ss-app {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
.ss-app a:not(.ss-btn)       { color: var(--ss-indigo); text-decoration: none; }
.ss-app a:not(.ss-btn):hover { color: var(--ss-dark); text-decoration: underline; }
.ss-app h1, .ss-app h2, .ss-app h3, .ss-app h4 {
  font-family: var(--ss-font); font-weight: 900; letter-spacing: -.03em; margin: 0;
}

/* Quantity stepper and add-line controls in account dashboard */
.ss-app #add-line-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ss-app #add-line-btn-wrapper > div {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}
.ss-app #add-line-btn-wrapper button {
  font-family: var(--ss-font);
  font-weight: 900;
  border-radius: 0;
  padding: 12px 22px;
  border: 1px solid var(--ss-app-line-firm);
  background: var(--ss-app-paper);
  color: var(--ss-dark);
  cursor: pointer;
  width: auto;
  height: auto;
  min-height: 44px;
  box-shadow: none;
}
.ss-app #add-line-btn-wrapper button:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.ss-app #add-line-btn-wrapper span {
  font-family: var(--ss-font);
  font-weight: 900;
  font-size: 15px;
  min-width: 2ch;
  text-align: center;
  color: var(--ss-dark);
}
.ss-app #add-line-btn-wrapper select {
  font-family: var(--ss-font);
  font-weight: 700;
  border-radius: 0;
  padding: 10px 16px;
  border: 1px solid var(--ss-app-line-firm);
  background: var(--ss-app-paper);
  color: var(--ss-dark);
  cursor: pointer;
}
/* the live-priced submit is the last button — make it the primary */
.ss-app #add-line-btn-wrapper button:last-child,
.ss-app #add-line-btn-wrapper button:last-of-type,
.ss-app #btn-add-consolidated-line {
  background: var(--ss-indigo) !important;
  color: #fff !important;
  border-color: var(--ss-indigo) !important;
}

.ss-app .discount-label {
  font-family: var(--ss-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C8371E !important;
}

/* ── Hero Tiers & Content Typography ──────────────── */
.ss-hl {
  color: var(--ss-coral);
}

.ss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ss-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ss-coral);
  margin-bottom: clamp(12px, 1.5cqw, 18px);
}

.ss-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--ss-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: clamp(14px, 1.8cqw, 20px);
}
.ss-crumb ol, .ss-crumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ss-crumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ss-crumb a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s;
}
.ss-crumb a:hover {
  color: var(--ss-coral);
}
.ss-crumb [aria-current="page"] {
  color: rgba(255,255,255,.95);
  font-weight: 600;
}
.ss-crumb-sep {
  color: rgba(255,255,255,.3);
  user-select: none;
}

.ss-doc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--ss-mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: clamp(16px, 2cqw, 24px);
}

.ss-doc-lead {
  font-size: clamp(18px, 1.5cqw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin-bottom: clamp(24px, 3cqw, 36px);
  max-width: 48em;
}

.ss-hero {
  padding: clamp(48px, 6cqw, 96px) clamp(20px, 4cqw, 64px);
  position: relative;
}

.ss-hero-directory {
  padding: clamp(40px, 5cqw, 80px) clamp(20px, 4cqw, 64px);
  background: #0D1526;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ss-hero-document {
  padding: clamp(36px, 4.5cqw, 64px) clamp(20px, 4cqw, 64px) clamp(24px, 3cqw, 36px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: clamp(28px, 3.5cqw, 48px);
}

/* ── Prose (Legal, Document & Policy Articles) ───── */
.prose, article.prose {
  color: rgba(255,255,255,0.8);
  max-width: 100%;
  line-height: 1.7;
}
.prose h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 16px;
}
.prose h2, .prose h3, .prose h4 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: clamp(28px, 3vw, 44px);
  margin-bottom: 12px;
}
.prose p {
  margin: 0 0 16px;
}
.prose a {
  color: var(--ss-coral, #FF8A73);
  text-decoration: underline;
  text-decoration-color: rgba(255,138,115,0.4);
  text-underline-offset: 3px;
  transition: color .15s;
}
.prose a:hover {
  color: #fff;
}
.prose ul, .prose ol {
  padding-left: 20px;
  margin: 0 0 20px;
}
.prose li {
  margin-bottom: 8px;
}
.prose ul li::marker, .prose ol li::marker {
  color: rgba(255,255,255,0.4);
}
.prose strong {
  color: #fff;
  font-weight: 700;
}
.prose code {
  background: rgba(75,68,232,0.15);
  color: var(--ss-coral, #FF8A73);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88em;
}

.ss-hero-title {
  font-weight: 900;
  font-size: clamp(32px, 4.5cqw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 clamp(16px, 2cqw, 24px);
}
.ss-hero-h1-sub {
  display: block;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,.7);
  margin-top: clamp(10px, 1.2vw, 16px);
  letter-spacing: -.01em;
}
.ss-hero-sub {
  font-size: clamp(16px, 1.5cqw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0 0 clamp(24px, 3cqw, 36px);
  max-width: 32em;
}
.ss-hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5cqw, 18px);
  flex-wrap: wrap;
}
/* ── Reduced Motion Accessibility ────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ss-hero-box {
    transform: none !important;
  }
}

/* ── Screen Reader Helper ────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════
   GLOBAL WARM CREAM SYSTEM (--ss-cream / #F4F2EE)
   Enforces consistent background and accessible dark text
   across all cream sections, trust bars, and widgets.
   ═══════════════════════════════════════════════════════ */

/* ── 1. Target all cream containers ── */
.ss-section-cream,
.ss-trust-bar,
.ss-cream,
[data-theme="cream"],
[data-surface="cream"],
section[style*="#F4F2EE"],
section[style*="#f4f2ee"],
section[style*="--ss-cream"],
div[style*="#F4F2EE"],
div[style*="#f4f2ee"],
div[style*="--ss-cream"] {
  background-color: #F4F2EE !important;
  color: #0D1526 !important;
}

/* ── 2. Headings inside cream surfaces ── */
.ss-section-cream h1, .ss-section-cream h2, .ss-section-cream h3,
.ss-section-cream h4, .ss-section-cream h5, .ss-section-cream h6,
.ss-trust-bar h1, .ss-trust-bar h2, .ss-trust-bar h3,
[data-theme="cream"] h1, [data-theme="cream"] h2, [data-theme="cream"] h3,
[data-theme="cream"] h4, [data-theme="cream"] h5, [data-theme="cream"] h6,
section[style*="#F4F2EE"] h1, section[style*="#F4F2EE"] h2, section[style*="#F4F2EE"] h3,
section[style*="#F4F2EE"] h4, section[style*="#F4F2EE"] h5, section[style*="#F4F2EE"] h6,
section[style*="#f4f2ee"] h1, section[style*="#f4f2ee"] h2, section[style*="#f4f2ee"] h3,
section[style*="#f4f2ee"] h4, section[style*="#f4f2ee"] h5, section[style*="#f4f2ee"] h6,
div[style*="#F4F2EE"] h1, div[style*="#F4F2EE"] h2, div[style*="#F4F2EE"] h3,
div[style*="#f4f2ee"] h1, div[style*="#f4f2ee"] h2, div[style*="#f4f2ee"] h3 {
  color: #0D1526 !important;
  -webkit-text-fill-color: #0D1526 !important;
}

/* ── 3. Body text, lists, and neutral tags inside cream ── */
.ss-section-cream p, .ss-section-cream li, .ss-section-cream dd, .ss-section-cream dt,
[data-theme="cream"] p, [data-theme="cream"] li, [data-theme="cream"] dd, [data-theme="cream"] dt,
section[style*="#F4F2EE"] p, section[style*="#F4F2EE"] li, section[style*="#F4F2EE"] dd, section[style*="#F4F2EE"] dt,
section[style*="#f4f2ee"] p, section[style*="#f4f2ee"] li, section[style*="#f4f2ee"] dd, section[style*="#f4f2ee"] dt,
div[style*="#F4F2EE"] p, div[style*="#F4F2EE"] li,
div[style*="#f4f2ee"] p, div[style*="#f4f2ee"] li {
  color: rgba(13, 21, 38, 0.78) !important;
  -webkit-text-fill-color: initial !important;
}

/* ── 4. Overwrite Tailwind text-color resets inside cream ── */
.ss-section-cream [class*="text-slate-"],
.ss-section-cream [class*="text-gray-"],
.ss-section-cream [class*="text-zinc-"],
.ss-section-cream [class*="text-neutral-"],
.ss-section-cream [class*="text-white"],
section[style*="#F4F2EE"] [class*="text-slate-"],
section[style*="#F4F2EE"] [class*="text-gray-"],
section[style*="#F4F2EE"] [class*="text-zinc-"],
section[style*="#F4F2EE"] [class*="text-neutral-"],
section[style*="#F4F2EE"] [class*="text-white"],
section[style*="#f4f2ee"] [class*="text-slate-"],
section[style*="#f4f2ee"] [class*="text-gray-"],
section[style*="#f4f2ee"] [class*="text-zinc-"],
section[style*="#f4f2ee"] [class*="text-neutral-"],
section[style*="#f4f2ee"] [class*="text-white"] {
  color: rgba(13, 21, 38, 0.78) !important;
  -webkit-text-fill-color: initial !important;
}

/* ── 5. Strong and emphasis inside cream ── */
.ss-section-cream strong, .ss-section-cream b,
.ss-trust-bar strong, .ss-trust-bar b,
section[style*="#F4F2EE"] strong, section[style*="#F4F2EE"] b,
section[style*="#f4f2ee"] strong, section[style*="#f4f2ee"] b {
  color: #0D1526 !important;
}

/* ── 6. Subheading & muted text inside cream ── */
.ss-section-cream .ss-subhead,
.ss-section-cream [class*="text-slate-400"],
.ss-section-cream [class*="text-gray-400"],
.ss-section-cream [class*="text-slate-500"],
.ss-section-cream [class*="text-gray-500"],
section[style*="#F4F2EE"] [class*="text-slate-400"],
section[style*="#F4F2EE"] [class*="text-gray-400"],
section[style*="#F4F2EE"] [class*="text-slate-500"],
section[style*="#F4F2EE"] [class*="text-gray-500"],
section[style*="#f4f2ee"] [class*="text-slate-400"],
section[style*="#f4f2ee"] [class*="text-gray-400"] {
  color: rgba(13, 21, 38, 0.65) !important;
}

/* ── 7. FAQ Component (Unified Base / Dark & Cream) ── */
.ss-faq-q            { border-top: 1px solid rgba(255,255,255,.14); padding: 22px 0; background: transparent; }
.ss-faq-q:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.ss-faq-q summary    { display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
                       font-size: clamp(17px,1.5cqw,21px); font-weight: 800;
                       letter-spacing: -.01em; color: #fff; cursor: pointer; list-style: none; }
.ss-faq-q summary::-webkit-details-marker { display: none; }
.ss-faq-q summary:hover { color: var(--ss-coral); }
.ss-faq-p            { margin: 14px 0 0; color: rgba(255,255,255,.7); font-size: 16px;
                       line-height: 1.6; max-width: 40em; }
.ss-faq-plus         { color: var(--ss-coral); font-family: var(--ss-font); font-size: 24px; font-weight: 400; line-height: 1; transition: transform .2s ease; }
details[open] .ss-faq-plus { transform: rotate(45deg); }

/* Cream surface FAQ */
.ss-section-cream details,
.ss-section-cream .ss-faq-q,
[data-theme="cream"] details,
[data-theme="cream"] .ss-faq-q,
section[style*="#F4F2EE"] details,
section[style*="#F4F2EE"] .ss-faq-q,
section[style*="#f4f2ee"] details,
section[style*="#f4f2ee"] .ss-faq-q {
  border-top: 1px solid rgba(13, 21, 38, 0.14);
  background: transparent;
}
.ss-section-cream details:last-child,
.ss-section-cream .ss-faq-q:last-child,
[data-theme="cream"] details:last-child,
[data-theme="cream"] .ss-faq-q:last-child,
section[style*="#F4F2EE"] details:last-child,
section[style*="#F4F2EE"] .ss-faq-q:last-child,
section[style*="#f4f2ee"] details:last-child,
section[style*="#f4f2ee"] .ss-faq-q:last-child {
  border-bottom: 1px solid rgba(13, 21, 38, 0.14);
}
.ss-section-cream details summary,
.ss-section-cream .ss-faq-q summary,
[data-theme="cream"] details summary,
[data-theme="cream"] .ss-faq-q summary,
section[style*="#F4F2EE"] details summary,
section[style*="#F4F2EE"] .ss-faq-q summary,
section[style*="#f4f2ee"] details summary,
section[style*="#f4f2ee"] .ss-faq-q summary {
  color: var(--ss-dark);
  font-weight: 800;
}
.ss-section-cream details summary:hover,
.ss-section-cream .ss-faq-q summary:hover,
[data-theme="cream"] details summary:hover,
[data-theme="cream"] .ss-faq-q summary:hover,
section[style*="#F4F2EE"] details summary:hover,
section[style*="#F4F2EE"] .ss-faq-q summary:hover,
section[style*="#f4f2ee"] details summary:hover,
section[style*="#f4f2ee"] .ss-faq-q summary:hover {
  color: var(--ss-indigo);
}
.ss-section-cream details p,
.ss-section-cream .ss-faq-p,
.ss-section-cream .ss-faq-a,
[data-theme="cream"] details p,
[data-theme="cream"] .ss-faq-p,
[data-theme="cream"] .ss-faq-a,
section[style*="#F4F2EE"] details p,
section[style*="#F4F2EE"] .ss-faq-p,
section[style*="#F4F2EE"] .ss-faq-a,
section[style*="#f4f2ee"] details p,
section[style*="#f4f2ee"] .ss-faq-p,
section[style*="#f4f2ee"] .ss-faq-a {
  color: rgba(13, 21, 38, 0.72);
}
.ss-section-cream .ss-faq-plus,
[data-theme="cream"] .ss-faq-plus,
section[style*="#F4F2EE"] .ss-faq-plus,
section[style*="#f4f2ee"] .ss-faq-plus {
  color: var(--ss-coral, #FF8A73);
}

/* ── 8. Links inside cream ── */
.ss-section-cream a:not(.ss-btn):not([class*="btn"]):not([class*="rounded-full"]):not([class*="bg-"]),
section[style*="#F4F2EE"] a:not(.ss-btn):not([class*="btn"]):not([class*="rounded-full"]):not([class*="bg-"]),
section[style*="#f4f2ee"] a:not(.ss-btn):not([class*="btn"]):not([class*="rounded-full"]):not([class*="bg-"]) {
  color: #4B44E8 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(75, 68, 232, 0.35) !important;
}
.ss-section-cream a:not(.ss-btn):not([class*="btn"]):not([class*="rounded-full"]):not([class*="bg-"]):hover,
section[style*="#F4F2EE"] a:not(.ss-btn):not([class*="btn"]):not([class*="rounded-full"]):not([class*="bg-"]):hover,
section[style*="#f4f2ee"] a:not(.ss-btn):not([class*="btn"]):not([class*="rounded-full"]):not([class*="bg-"]):hover {
  color: #0D1526 !important;
  text-decoration-color: #0D1526 !important;
}

/* ── 9. Nested white cards on cream ── */
.ss-section-cream [class*="bg-white"],
.ss-section-cream [style*="background:#fff"],
.ss-section-cream [style*="background: #fff"],
section[style*="#F4F2EE"] [class*="bg-white"],
section[style*="#F4F2EE"] [style*="background:#fff"],
section[style*="#F4F2EE"] [style*="background: #fff"],
section[style*="#f4f2ee"] [class*="bg-white"],
section[style*="#f4f2ee"] [style*="background:#fff"],
section[style*="#f4f2ee"] [style*="background: #fff"] {
  background-color: #FFFFFF !important;
  color: #0D1526 !important;
  border-color: rgba(13, 21, 38, 0.12) !important;
}

/* ── 10. Buttons on cream ── */
.ss-section-cream .ss-btn-dark,
section[style*="#F4F2EE"] .ss-btn-dark,
section[style*="#f4f2ee"] .ss-btn-dark {
  background: #0D1526 !important;
  color: #ffffff !important;
}
.ss-section-cream .ss-btn-dark:hover,
section[style*="#F4F2EE"] .ss-btn-dark:hover,
section[style*="#f4f2ee"] .ss-btn-dark:hover {
  background: var(--ss-coral, #FF8A73) !important;
  color: #0D1526 !important;
}
.ss-section-cream .ss-btn-ghost,
section[style*="#F4F2EE"] .ss-btn-ghost,
section[style*="#f4f2ee"] .ss-btn-ghost {
  border: 1px solid rgba(13, 21, 38, 0.28) !important;
  color: #0D1526 !important;
  background: transparent !important;
}
.ss-section-cream .ss-btn-ghost:hover,
section[style*="#F4F2EE"] .ss-btn-ghost:hover,
section[style*="#f4f2ee"] .ss-btn-ghost:hover {
  border-color: #0D1526 !important;
  background: #0D1526 !important;
  color: #ffffff !important;
}

/* ── 11. Trust Bar explicit rules ── */
.ss-trust-bar {
  background: #F4F2EE !important;
  color: #0D1526 !important;
  border-bottom: 1px solid rgba(13, 21, 38, 0.08) !important;
}
.ss-trust-bar strong {
  color: #0D1526 !important;
  font-weight: 800 !important;
}
.ss-trust-bar .ss-trust-mono {
  color: rgba(13, 21, 38, 0.65) !important;
  font-family: var(--ss-mono, 'IBM Plex Mono', monospace) !important;
}
.ss-trust-bar .ss-trust-dot {
  color: rgba(13, 21, 38, 0.28) !important;
}

/* ── 12. Brand Loader System (Square perimeter pulse & skeleton shimmer) ── */
@keyframes ss-dash { to { stroke-dashoffset: -148; } }
@keyframes ss-shimmer { 0% { background-position: -180% 0; } 100% { background-position: 180% 0; } }
@keyframes ss-pulse { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }

.ss-spin { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ss-spin rect { fill: none; }
.ss-spin .ss-spin-track { stroke: rgba(13,21,38,.16); }
.ss-spin .ss-spin-seg { stroke: var(--ss-indigo, #4B44E8); stroke-dasharray: 34 114; animation: ss-dash 1.15s linear infinite; }
.ss-spin-on-dark .ss-spin-track { stroke: rgba(255,255,255,.18); }
.ss-spin-on-dark .ss-spin-seg { stroke: var(--ss-coral, #FF8A73); }
.ss-spin-on-indigo .ss-spin-track { stroke: rgba(255,255,255,.32); }
.ss-spin-on-indigo .ss-spin-seg { stroke: #fff; }

.ss-skel {
  background: linear-gradient(90deg, rgba(13,21,38,.05) 0%, rgba(13,21,38,.11) 50%, rgba(13,21,38,.05) 100%);
  background-size: 180% 100%;
  animation: ss-shimmer 1.4s linear infinite;
}
.ss-skel-dark {
  background: linear-gradient(90deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.04) 100%);
  background-size: 180% 100%;
  animation: ss-shimmer 1.4s linear infinite;
}

.ss-dot { animation: ss-pulse 1.1s ease-in-out infinite; }
.ss-dot:nth-child(2) { animation-delay: .18s; }
.ss-dot:nth-child(3) { animation-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .ss-spin .ss-spin-seg { animation-duration: 3.4s; }
  .ss-skel, .ss-skel-dark { animation: none; background: rgba(13,21,38,.08); }
  .ss-dot { animation: none; opacity: .7; }
}

/* ── Device Checker Component (v3) ───────────────────── */
.device-checker-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.device-checker-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  padding: 14px 16px;
  font-family: var(--ss-font, 'Figtree', Helvetica, Arial, sans-serif);
  font-size: 15px;
  outline: none;
  border-radius: 0 !important;
  transition: border-color .15s;
}
.device-checker-input:focus {
  border-color: var(--ss-indigo, #4B44E8) !important;
}
.device-checker-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% + 4px);
  background: #0f1a2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 50;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 0 !important;
}
.device-checker-result {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  font-family: var(--ss-font, 'Figtree', Helvetica, Arial, sans-serif);
  border-radius: 0 !important;
}
.device-checker-result.is-compatible {
  display: block;
  border: 1px solid rgba(255, 138, 115, 0.25);
  border-left: 3px solid var(--ss-coral, #FF8A73);
  background: rgba(255, 138, 115, 0.06);
}
.device-checker-result.is-incompatible {
  display: block;
  border: 1px solid rgba(255, 90, 90, 0.25);
  border-left: 3px solid rgba(255, 90, 90, 0.9);
  background: rgba(255, 90, 90, 0.06);
}

