/* =====================================================
   ST-NETWORK — shared components for the access-first
   network pages (network / opportunities / properties /
   brands). Pairs with styles.css (global header/footer).
   Namespaced ix-* (design system) + st-* (new sections).
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --ix-amber:  #FFC447;
    --ix-violet: #A78BFA;
    --ix-purple: #7C3AED;
    --ix-line:   rgba(255,255,255,0.07);
    --ix-line-s: rgba(255,255,255,0.05);
    --ix-surf:   rgba(255,255,255,0.028);
    --ix-bg:     rgba(8,6,18,0.97);
    --ix-ease:   cubic-bezier(0.16,1,0.3,1);
}

/* ── LAYOUT ── */
.ix-wrap     { max-width: 1160px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.ix-sec      { padding: clamp(4.5rem,9vw,7rem) 0; position: relative; overflow: hidden; }
.ix-sec--alt { background: rgba(255,255,255,0.018); }
.ix-hr       { border: none; border-top: 1px solid var(--ix-line-s); margin: 0; }

/* ── SCROLL REVEAL ── */
.ix-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.72s var(--ix-ease), transform 0.72s var(--ix-ease); }
.ix-reveal.is-visible { opacity: 1; transform: translateY(0); }
.ix-d1 { transition-delay: 0.08s; } .ix-d2 { transition-delay: 0.16s; } .ix-d3 { transition-delay: 0.24s; } .ix-d4 { transition-delay: 0.32s; }

/* ── EYEBROW ── */
.ix-eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ix-amber); margin-bottom: 1rem; }
.ix-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: currentColor; flex-shrink: 0; }
.ix-eyebrow--center { justify-content: center; }
.ix-eyebrow--violet { color: var(--ix-violet); }
.ix-eyebrow--no-rule::before { display: none; }

/* ── HEADINGS ── */
.ix-h2 { font-family: 'Instrument Serif', serif; font-size: clamp(2rem,4.5vw,3.375rem); font-weight: 400; font-style: italic; line-height: 1.07; letter-spacing: -0.02em; color: #fff; margin: 0 0 1rem; }
.ix-h2 .ix-grad, .ix-grad { font-weight: 400; font-style: italic; background: linear-gradient(135deg, var(--ix-amber) 0%, var(--ix-violet) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ix-h2--center { text-align: center; }
.ix-h2--xl { font-size: clamp(2.5rem,5.5vw,4.25rem); }
.ix-lead { font-size: clamp(0.9375rem,1.7vw,1.0625rem); line-height: 1.75; color: rgba(255,255,255,0.52); }

/* ── BUTTONS ── */
.ix-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; padding: 0.9375rem 2.125rem; transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; white-space: nowrap; border: 1px solid transparent; cursor: pointer; }
.ix-btn--primary { background: var(--ix-amber); color: #0A0814; }
.ix-btn--primary:hover { background: #FFD060; color: #0A0814; box-shadow: 0 6px 28px rgba(255,196,71,0.22); }
.ix-btn--ghost { background: transparent; color: rgba(255,255,255,0.65); border-color: var(--ix-line); }
.ix-btn--ghost:hover { border-color: rgba(255,255,255,0.28); color: #fff; background: rgba(255,255,255,0.04); }

.ix-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,0.32); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.ix-link svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ix-link:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
.ix-link--amber { color: rgba(255,196,71,0.55); border-color: rgba(255,196,71,0.18); }
.ix-link--amber:hover { color: var(--ix-amber); border-color: var(--ix-amber); }

/* ── CHIPS ── */
.ix-chip { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 0.55rem 1rem; border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); transition: background 0.2s, color 0.2s, border-color 0.2s; margin-top: auto; align-self: flex-start; }
.ix-chip:hover { background: rgba(255,255,255,0.09); color: #fff; border-color: rgba(255,255,255,0.28); }
.ix-chip--amber { border-color: rgba(255,196,71,0.3); color: var(--ix-amber); background: rgba(255,196,71,0.05); }
.ix-chip--amber:hover { background: rgba(255,196,71,0.12); border-color: rgba(255,196,71,0.55); color: var(--ix-amber); }
.ix-chip svg { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════════════════════════
   PAGE HERO (st-phero)
══════════════════════════════════════════ */
.st-phero { position: relative; isolation: isolate; overflow: hidden; padding: calc(var(--header-height,80px) + clamp(4rem,9vw,7rem)) 0 clamp(4rem,8vw,6rem); }
.st-phero__atm { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.st-phero__orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.st-phero__orb--a { top: -10%; right: -6%; width: 50vw; max-width: 620px; height: 50vw; max-height: 620px; background: radial-gradient(circle, rgba(124,58,237,0.14) 0%, transparent 65%); }
.st-phero__orb--b { bottom: -10%; left: -6%; width: 38vw; max-width: 460px; height: 38vw; max-height: 460px; background: radial-gradient(circle, rgba(255,196,71,0.08) 0%, transparent 65%); }
.st-phero__tex { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%); }
.st-phero__inner { position: relative; z-index: 1; max-width: 760px; }
.st-phero__inner--center { margin: 0 auto; text-align: center; }
.st-phero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0.875rem; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid var(--ix-line); color: rgba(255,255,255,0.4); background: var(--ix-surf); margin-bottom: 1.75rem; }
.st-phero__badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ix-amber); flex-shrink: 0; }
.st-phero__h1 { font-family: 'Instrument Serif', serif; font-size: clamp(2.75rem,6.5vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -0.028em; color: #fff; margin: 0 0 1.5rem; }
.st-phero__sub { font-size: clamp(1rem,1.8vw,1.1875rem); line-height: 1.7; color: rgba(255,255,255,0.55); margin: 0 0 2.5rem; }
.st-phero__inner--center .st-phero__sub { margin-left: auto; margin-right: auto; max-width: 600px; }
.st-phero__ctas { display: flex; align-items: center; gap: 0.875rem; flex-wrap: wrap; }
.st-phero__inner--center .st-phero__ctas { justify-content: center; }

/* ── IMMERSIVE HERO: split layout + animated atmosphere + floating glass viz ── */
@keyframes st-drift-a { to { transform: translate3d(36px,28px,0) scale(1.08); } }
@keyframes st-drift-b { to { transform: translate3d(-30px,-24px,0) scale(1.06); } }
@keyframes st-floaty  { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.st-phero__orb--anim.st-phero__orb--a { animation: st-drift-a 20s ease-in-out infinite alternate; }
.st-phero__orb--anim.st-phero__orb--b { animation: st-drift-b 26s ease-in-out infinite alternate; }

.st-phero--split .st-phero__inner { max-width: none; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.st-phero--split .st-phero__copy { max-width: 600px; }
.st-phero--split .st-phero__sub  { max-width: 540px; }
.st-phero__trust { margin-top: 1.25rem; font-size: 12.5px; color: rgba(255,255,255,0.5); display: inline-flex; align-items: center; gap: 0.55rem; }
.st-phero__trust .dot { width: 6px; height: 6px; border-radius: 50%; background: #5BD6A0; box-shadow: 0 0 8px rgba(91,214,160,0.7); flex-shrink: 0; }

.st-phero__viz { position: relative; display: flex; flex-direction: column; gap: 14px; perspective: 1000px; }
.st-phero__viz-glow { position: absolute; inset: -22% -12% -12% -12%; background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(124,58,237,0.28), transparent 70%); filter: blur(30px); z-index: 0; pointer-events: none; }
.st-vcard { position: relative; z-index: 1; border: 1px solid var(--ix-line); background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 16px; padding: 18px 20px; box-shadow: 0 18px 50px -28px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08); transition: transform 0.35s var(--ix-ease), border-color 0.35s, box-shadow 0.35s; will-change: transform; }
.st-vcard:hover { transform: translateY(-4px) scale(1.015); border-color: rgba(167,139,250,0.4); box-shadow: 0 26px 60px -28px rgba(124,58,237,0.5), inset 0 1px 0 rgba(255,255,255,0.12); }
.st-vcard--lead { animation: st-floaty 7s ease-in-out infinite; }
.st-vcard--mid  { animation: st-floaty 8.5s ease-in-out infinite; margin-left: clamp(0px,4vw,46px); }
.st-vcard--low  { animation: st-floaty 6s ease-in-out infinite; }
.st-vcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 10px; }
.st-vcard__tag { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.st-vcard__pill { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.st-vcard__pill--ok { color: #5BD6A0; background: rgba(91,214,160,0.12); }
.st-vcard__pill--amber { color: var(--ix-amber); background: rgba(255,196,71,0.12); }
.st-vcard__pill--violet { color: var(--ix-violet); background: rgba(167,139,250,0.14); }
.st-vcard__name { font-family: 'Instrument Serif', serif; font-size: 19px; color: #fff; line-height: 1.12; margin: 0 0 4px; }
.st-vcard__meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.st-vcard__row { display: flex; gap: 16px; margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--ix-line-s); }
.st-vcard__stat { flex: 1; }
.st-vcard__stat .v { font-family: 'Instrument Serif', serif; font-size: 22px; color: #fff; line-height: 1; }
.st-vcard__stat .l { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.st-vcard__bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 10px; }
.st-vcard__bar > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--ix-amber), var(--ix-violet)); }

@media (max-width: 860px) {
    .st-phero--split .st-phero__inner { grid-template-columns: 1fr; }
    .st-phero__viz { margin-top: 2.5rem; max-width: 460px; }
    .st-vcard--mid { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .st-phero__orb--anim, .st-vcard--lead, .st-vcard--mid, .st-vcard--low { animation: none !important; }
}

/* ── SECTION HEADER ── */
.st-shead { text-align: center; max-width: 600px; margin: 0 auto; }

/* ── WHO IT'S FOR / 3-up ── */
.st-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ix-line-s); border: 1px solid var(--ix-line-s); margin-top: 3rem; }
.st-who { background: var(--ix-bg); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; position: relative; transition: background 0.25s, transform 0.25s var(--ix-ease); }
.st-who::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(167,139,250,0.22), transparent); }
.st-who--amber::before { background: linear-gradient(90deg, transparent, rgba(255,196,71,0.3), transparent); }
.st-who:hover { background: rgba(124,58,237,0.03); transform: translateY(-3px); }
.st-who--amber:hover { background: rgba(255,196,71,0.025); }
.st-who__icon { width: 38px; height: 38px; border: 1px solid var(--ix-line); display: flex; align-items: center; justify-content: center; margin-bottom: 0.4rem; }
.st-who--amber .st-who__icon { border-color: rgba(255,196,71,0.22); }
.st-who__icon svg { width: 17px; height: 17px; stroke: var(--ix-violet); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.st-who--amber .st-who__icon svg { stroke: var(--ix-amber); }
.st-who__label { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.st-who--amber .st-who__label { color: rgba(255,196,71,0.45); }
.st-who__title { font-family: 'Instrument Serif', serif; font-size: 1.5rem; font-style: italic; color: #fff; line-height: 1.15; }
.st-who__desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); margin: 0 0 1.25rem; flex: 1; }

/* ── WHAT MEMBERS GET / feature grid ── */
.st-get-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ix-line-s); border: 1px solid var(--ix-line-s); margin-top: 3rem; }
.st-get { background: var(--ix-bg); padding: 1.875rem 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; transition: background 0.2s; }
.st-get:hover { background: rgba(124,58,237,0.025); }
.st-get__icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--ix-line); margin-bottom: 0.35rem; }
.st-get__icon svg { width: 14px; height: 14px; stroke: var(--ix-violet); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.st-get__title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.st-get__desc { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.4); margin: 0; }
.st-get__soon { font-size: 8.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,196,71,0.6); }

/* ── HOW IT WORKS / flow ── */
.st-flow { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: var(--ix-line-s); border: 1px solid var(--ix-line-s); margin-top: 3rem; }
.st-flow__step { background: var(--ix-bg); padding: 1.875rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; position: relative; }
.st-flow__num { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.75rem; color: rgba(255,196,71,0.5); line-height: 1; }
.st-flow__title { font-size: 13px; font-weight: 600; color: #fff; }
.st-flow__desc { font-size: 11.5px; line-height: 1.55; color: rgba(255,255,255,0.4); margin: 0; }

/* ── PRICING ── */
.st-pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; max-width: 880px; margin-left: auto; margin-right: auto; }
.st-price { border: 1px solid var(--ix-line); background: var(--ix-surf); padding: 2.5rem 2.25rem; display: flex; flex-direction: column; position: relative; transition: border-color 0.25s, transform 0.3s var(--ix-ease); }
.st-price:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); }
.st-price--feat { border-color: rgba(255,196,71,0.4); background: rgba(255,196,71,0.025); }
.st-price--feat:hover { border-color: rgba(255,196,71,0.6); }
.st-price__flag { position: absolute; top: -1px; right: 1.5rem; transform: translateY(-50%); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #0A0814; background: var(--ix-amber); padding: 0.3rem 0.75rem; }
.st-price__name { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.st-price--feat .st-price__name { color: var(--ix-amber); }
.st-price__amount { font-family: 'Instrument Serif', serif; font-size: 3rem; font-style: italic; color: #fff; line-height: 1; }
.st-price__amount span { font-family: 'Inter', sans-serif; font-style: normal; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0; }
.st-price__tag { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.5); margin: 0.875rem 0 1.5rem; }
.st-price__list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.st-price__list li { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.66); padding-left: 1.5rem; position: relative; }
.st-price__list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-right: 1.5px solid var(--ix-amber); border-bottom: 1.5px solid var(--ix-amber); transform: rotate(45deg); }
.st-price .ix-btn { justify-content: center; width: 100%; }

/* ── SPLIT CTA PANELS ── */
.st-panel { border: 1px solid var(--ix-line-s); background: var(--ix-bg); padding: clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden; }
.st-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(167,139,250,0.25), transparent); }
.st-panel--amber::before { background: linear-gradient(90deg, transparent, rgba(255,196,71,0.3), transparent); }
.st-panel__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,4rem); align-items: center; position: relative; z-index: 1; }
.st-panel__glow { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px); }
.st-panel__glow--v { top: -30%; right: -10%; width: 40vw; max-width: 460px; height: 40vw; max-height: 460px; background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 65%); }
.st-panel__glow--a { bottom: -30%; left: -10%; width: 36vw; max-width: 400px; height: 36vw; max-height: 400px; background: radial-gradient(circle, rgba(255,196,71,0.08) 0%, transparent 65%); }
.st-panel__h { font-family: 'Instrument Serif', serif; font-size: clamp(1.75rem,3.6vw,2.5rem); font-style: italic; line-height: 1.1; color: #fff; margin: 0.5rem 0 1rem; }
.st-panel__p { font-size: clamp(0.9375rem,1.6vw,1rem); line-height: 1.7; color: rgba(255,255,255,0.52); margin: 0 0 2rem; }
.st-panel__side { border-left: 1px solid var(--ix-line-s); padding-left: clamp(2rem,4vw,3rem); }
.st-panel__side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.st-panel__side li { font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.5); padding-left: 1.25rem; position: relative; }
.st-panel__side li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--ix-violet); }
.st-panel--amber .st-panel__side li::before { background: var(--ix-amber); }
.st-panel-stack { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── TRANSITION / ACCESS LIST ── */
.st-transition__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.st-transition__lede { font-size: clamp(1.0625rem,1.9vw,1.25rem); line-height: 1.7; color: rgba(255,255,255,0.62); margin: 0 0 2rem; }
.st-access-list { display: flex; flex-direction: column; gap: 0.4rem; margin: 2.5rem auto; max-width: 360px; }
.st-access-list span { font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(1.5rem,3.4vw,2.125rem); line-height: 1.2; color: #fff; }
.st-transition__close { font-size: clamp(0.9375rem,1.6vw,1.0625rem); color: rgba(255,255,255,0.5); line-height: 1.7; margin: 2rem 0 0; }

/* ── FEATURE LIST (left rail) ── */
.st-flist { border-top: 1px solid var(--ix-line-s); }
.st-frow { padding: 1.625rem 0; border-bottom: 1px solid var(--ix-line-s); display: grid; grid-template-columns: 7px 1fr; gap: 1.125rem; align-items: start; transition: padding-left 0.2s; }
.st-frow:hover { padding-left: 0.375rem; }
.st-fdot { width: 5px; height: 5px; border-radius: 50%; background: var(--ix-violet); margin-top: 7px; flex-shrink: 0; }
.st-ftitle { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.82); margin-bottom: 0.28rem; }
.st-fbody { font-size: 12.5px; line-height: 1.65; color: rgba(255,255,255,0.4); margin: 0; }
.st-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }

/* ── FINAL CTA ── */
.st-cta { text-align: center; position: relative; overflow: hidden; }
.st-cta__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80vw; max-width: 820px; height: 500px; background: radial-gradient(ellipse, rgba(124,58,237,0.14) 0%, rgba(255,196,71,0.04) 45%, transparent 70%); filter: blur(60px); pointer-events: none; }
.st-cta__inner { position: relative; z-index: 1; }
.st-cta__btns { display: flex; align-items: center; justify-content: center; gap: 0.875rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1023px) {
    .st-grid-3, .st-get-grid { grid-template-columns: repeat(2,1fr); }
    .st-flow { grid-template-columns: repeat(3,1fr); }
    .st-pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
    .st-panel__grid { grid-template-columns: 1fr; }
    .st-panel__side { border-left: none; border-top: 1px solid var(--ix-line-s); padding-left: 0; padding-top: 2rem; }
    .st-split { grid-template-columns: 1fr; }
}
@media (max-width: 767px) { .ix-wrap { padding: 0 1.25rem; } .st-phero__ctas { flex-direction: column; align-items: stretch; } .st-phero__ctas .ix-btn { justify-content: center; } }
@media (max-width: 600px) { .st-grid-3, .st-get-grid { grid-template-columns: 1fr; } .st-flow { grid-template-columns: 1fr 1fr; } }
@media (prefers-reduced-motion: reduce) { .ix-reveal { opacity: 1; transform: none; } }

/* ══════════════════════════════════════════
   PRODUCT MOCKUP — browser frame + app shell
══════════════════════════════════════════ */
.st-browser { border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; background: rgba(10,8,20,0.96); box-shadow: 0 50px 140px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02), inset 0 1px 0 rgba(255,255,255,0.05); margin-top: 3rem; }
.st-browser__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.1rem; border-bottom: 1px solid var(--ix-line-s); background: rgba(255,255,255,0.025); }
.st-browser__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.14); flex-shrink: 0; }
.st-browser__url { margin-left: 0.6rem; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 0.45rem; background: rgba(255,255,255,0.03); border: 1px solid var(--ix-line-s); padding: 0.32rem 0.8rem; border-radius: 7px; }
.st-browser__url svg { width: 11px; height: 11px; stroke: rgba(255,196,71,0.65); fill: none; stroke-width: 2; }
.st-browser__chip { margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5BD6A0; border: 1px solid rgba(91,214,160,0.3); padding: 0.28rem 0.65rem; border-radius: 999px; }
.st-browser__chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #5BD6A0; box-shadow: 0 0 8px rgba(91,214,160,0.8); }
.st-browser__body { padding: 1.5rem; background: radial-gradient(ellipse 90% 60% at 50% -5%, rgba(124,58,237,0.07), transparent 70%); }

/* app toolbar (title + filter chips + view toggle) */
.st-appbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.st-appbar__title { font-size: 13px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
.st-appbar__title span { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); border: 1px solid var(--ix-line-s); border-radius: 6px; padding: 0.1rem 0.45rem; }
.st-filters { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.st-filter { font-size: 10.5px; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); border: 1px solid var(--ix-line); border-radius: 999px; padding: 0.32rem 0.75rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.st-filter--on { color: #0A0814; background: var(--ix-amber); border-color: var(--ix-amber); }
.st-filter svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── RICH OPPORTUNITY CARD ── */
.st-oc-list { display: flex; flex-direction: column; gap: 0.875rem; }
.st-oc { border: 1px solid var(--ix-line); background: rgba(255,255,255,0.025); border-radius: 11px; padding: 1.4rem 1.5rem; transition: border-color 0.25s, transform 0.3s var(--ix-ease), background 0.25s; }
.st-oc:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-2px); background: rgba(255,255,255,0.035); }
.st-oc--feat { border-color: rgba(255,196,71,0.32); background: rgba(255,196,71,0.022); }
.st-oc--feat:hover { border-color: rgba(255,196,71,0.5); }
.st-oc__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem; }
.st-oc__cat { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ix-violet); margin-bottom: 0.4rem; }
.st-oc--feat .st-oc__cat { color: var(--ix-amber); }
.st-oc__title { font-family: 'Instrument Serif', serif; font-size: 1.4rem; font-style: italic; color: #fff; line-height: 1.15; }
.st-oc__range { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.375rem; color: #fff; white-space: nowrap; text-align: right; }
.st-oc__range small { display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: 8.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.18rem; }
.st-oc__divider { height: 1px; background: var(--ix-line-s); margin: 1.1rem 0; }
.st-oc__metrics { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.st-oc__metric { display: flex; flex-direction: column; gap: 0.22rem; }
.st-oc__mlabel { font-size: 8.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.st-oc__mval { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 0.4rem; }
.st-oc__active { color: #5BD6A0; }
.st-oc__active::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #5BD6A0; box-shadow: 0 0 8px rgba(91,214,160,0.7); }
.st-oc__score { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.3rem; color: var(--ix-amber); }
.st-oc__score small { font-family: 'Inter', sans-serif; font-style: normal; font-size: 10px; color: rgba(255,255,255,0.3); }
.st-oc__sub { font-size: 8.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin: 0 0 0.55rem; }
.st-oc__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.st-oc__pill { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.045); border: 1px solid var(--ix-line); border-radius: 999px; padding: 0.32rem 0.72rem; }
.st-oc__brands { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.st-oc__brand { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); border: 1px solid var(--ix-line); border-radius: 7px; padding: 0.3rem 0.65rem; background: rgba(255,255,255,0.02); }
.st-oc__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 2rem; }

/* fade hint that more exists below the fold of the mockup */
.st-browser__more { text-align: center; padding: 1rem 0 0.25rem; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); }

@media (max-width: 700px) {
    .st-oc__top { flex-direction: column; gap: 0.5rem; }
    .st-oc__range { text-align: left; }
    .st-oc__range small { text-align: left; }
    .st-oc__metrics { gap: 1.25rem; }
    .st-oc__cols { grid-template-columns: 1fr; }
    .st-browser__body { padding: 1rem; }
    .st-appbar { gap: 0.75rem; }
}

/* ── PRODUCT: stat strip + detail fields (opportunities page) ── */
.st-statbar { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--ix-line-s); border: 1px solid var(--ix-line-s); border-radius: 9px; overflow: hidden; margin-bottom: 1.25rem; }
.st-stat { background: rgba(255,255,255,0.02); padding: 0.95rem 1.15rem; }
.st-stat__v { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.5rem; color: #fff; line-height: 1; }
.st-stat__l { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-top: 0.35rem; }
.st-detail { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; border: 1px solid var(--ix-line); border-radius: 12px; overflow: hidden; margin-top: 3rem; background: rgba(255,255,255,0.02); }
.st-detail__main { padding: 2rem 2.25rem; }
.st-detail__side { padding: 2rem 2.25rem; border-left: 1px solid var(--ix-line-s); background: rgba(255,255,255,0.015); }
.st-field { display: flex; justify-content: space-between; gap: 1rem; padding: 0.72rem 0; border-bottom: 1px solid var(--ix-line-s); }
.st-field:last-child { border-bottom: none; }
.st-field__k { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.st-field__v { font-size: 13px; color: rgba(255,255,255,0.85); text-align: right; }
.st-scorebig { display: flex; align-items: baseline; gap: 0.5rem; margin: 0.25rem 0 0.4rem; }
.st-scorebig b { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; font-size: 3.25rem; color: var(--ix-amber); line-height: 1; }
.st-scorebig span { font-size: 12px; color: rgba(255,255,255,0.35); }
.st-meter { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.07); overflow: hidden; }
.st-meter i { display: block; height: 100%; background: linear-gradient(90deg, var(--ix-amber), var(--ix-violet)); border-radius: 99px; }
@media (max-width: 760px) { .st-detail { grid-template-columns: 1fr; } .st-detail__side { border-left: none; border-top: 1px solid var(--ix-line-s); } }
@media (max-width: 600px) { .st-statbar { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════════
   PRICING PAGE — comparison, FAQ, outcomes
══════════════════════════════════════════ */
/* feature comparison (grid, responsive) */
.st-cmp { border: 1px solid var(--ix-line-s); border-radius: 12px; overflow: hidden; margin-top: 3rem; }
.st-cmp__row { display: grid; grid-template-columns: 1.7fr 1fr 1fr; }
.st-cmp__row + .st-cmp__row { border-top: 1px solid var(--ix-line-s); }
.st-cmp__row--head { background: rgba(255,255,255,0.025); }
.st-cmp__row--group .st-cmp__cell { background: rgba(255,255,255,0.012); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.st-cmp__cell { padding: 0.95rem 1.25rem; font-size: 13px; display: flex; align-items: center; color: rgba(255,255,255,0.78); }
.st-cmp__cell--c { justify-content: center; text-align: center; }
.st-cmp__cell + .st-cmp__cell { border-left: 1px solid var(--ix-line-s); }
.st-cmp__plan { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.25rem; color: #fff; flex-direction: column; gap: 0.1rem; }
.st-cmp__plan small { font-family: 'Inter', sans-serif; font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.st-cmp__plan--pro { color: var(--ix-amber); }
.st-cmp__plan--pro small { color: rgba(255,196,71,0.6); }
.st-cmp .yes { color: #5BD6A0; font-weight: 700; }
.st-cmp .no { color: rgba(255,255,255,0.2); }
.st-cmp__val { font-size: 12px; color: rgba(255,255,255,0.7); text-align: center; }

/* FAQ — native <details> accordion */
.st-faq { max-width: 760px; margin: 3rem auto 0; }
.st-faq details { border-bottom: 1px solid var(--ix-line-s); }
.st-faq details:first-child { border-top: 1px solid var(--ix-line-s); }
.st-faq summary { list-style: none; cursor: pointer; padding: 1.3rem 0; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; transition: color 0.2s; }
.st-faq summary:hover { color: #fff; }
.st-faq summary::-webkit-details-marker { display: none; }
.st-faq summary::after { content: '+'; color: var(--ix-amber); font-size: 1.4rem; line-height: 1; flex-shrink: 0; transition: transform 0.2s; }
.st-faq details[open] summary::after { content: '\2013'; }
.st-faq__a { font-size: 13.5px; line-height: 1.72; color: rgba(255,255,255,0.52); padding: 0 0 1.4rem; margin: 0; max-width: 640px; }

/* outcomes / metric row */
.st-mrow { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ix-line-s); border: 1px solid var(--ix-line-s); margin-top: 3rem; }
.st-mrow__c { background: var(--ix-bg); padding: 2.25rem 1.5rem; text-align: center; }
.st-mrow__v { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 2.5rem; color: var(--ix-amber); line-height: 1; }
.st-mrow__l { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.45); margin-top: 0.55rem; }

@media (max-width: 640px) {
    .st-cmp__cell { padding: 0.8rem 0.7rem; font-size: 11.5px; }
    .st-cmp__plan { font-size: 1rem; }
    .st-mrow { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ACCESSIBILITY — visible keyboard focus + contrast
══════════════════════════════════════════ */
a:focus-visible, button:focus-visible, summary:focus-visible,
.ix-btn:focus-visible, .site-nav__link:focus-visible, .ix-chip:focus-visible {
    outline: 2px solid var(--ix-amber);
    outline-offset: 3px;
    border-radius: 3px;
}
/* lift the faintest captions toward AA on small text */
.st-browser__more { color: rgba(255,255,255,0.5); }

/* ── PRODUCT: mock form (Submit Opportunity / brief workflows) ── */
.st-mockform { display: flex; flex-direction: column; gap: 0.95rem; }
.st-mockfield label { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; }
.st-mockfield__input { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--ix-line); background: rgba(255,255,255,0.03); border-radius: 9px; padding: 0.72rem 0.95rem; font-size: 13px; color: rgba(255,255,255,0.85); }
.st-mockfield__input--ph { color: rgba(255,255,255,0.4); }
.st-mockfield__input svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 2; flex-shrink: 0; }
.st-mockrow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem; }
.st-mocktags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.st-mocktag { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.045); border: 1px solid var(--ix-line); border-radius: 999px; padding: 0.32rem 0.7rem; }
.st-mocktag--on { color: #0A0814; background: var(--ix-amber); border-color: var(--ix-amber); }
.st-mockbtn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--ix-amber); color: #0A0814; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.7rem 1.25rem; border-radius: 8px; margin-top: 0.4rem; }
.st-mockprogress { font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@media (max-width: 600px) { .st-mockrow { grid-template-columns: 1fr; } }
