/* RackTrust demo — design system per site CLAUDE.md §3. Vanilla CSS, custom props. */

:root {
  --rt-primary: #1E293B;
  --rt-primary-900: #0F172A;
  --rt-accent: #2563EB;
  --rt-accent-600: #1D4ED8;
  --rt-ink: #0F172A;
  --rt-body: #334155;
  --rt-muted-ink: #64748B;
  --rt-bg: #FFFFFF;
  --rt-muted: #F8FAFC;
  --rt-border: #E2E8F0;
  --rt-success: #16A34A;
  --rt-radius: 12px;
  --rt-radius-sm: 8px;
  --rt-shadow: 0 1px 2px rgba(15,23,42,.06), 0 8px 24px rgba(15,23,42,.06);
  --rt-shadow-lg: 0 12px 40px rgba(15,23,42,.12);
  --rt-font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --rt-section: clamp(3.5rem, 8vw, 6rem);
  --rt-container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rt-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--rt-body);
  background: var(--rt-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { color: var(--rt-ink); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--rt-accent); text-decoration: none; }
a:hover { color: var(--rt-accent-600); text-decoration: underline; }
img { max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--rt-container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--rt-section) 0; }
.section--muted, .section:nth-of-type(even) { background: var(--rt-muted); }
.section__head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section__sub { color: var(--rt-muted-ink); font-size: 1.08rem; }
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2rem; }

.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--rt-accent); margin: 0 0 .6rem; }
.eyebrow--light { color: #93C5FD; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--rt-accent); color: #fff; padding: .6rem 1rem; z-index: 200; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--rt-accent); outline-offset: 2px; border-radius: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; cursor: pointer; border: 1.5px solid transparent;
  padding: .7rem 1.25rem; border-radius: var(--rt-radius-sm); transition: .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--accent { background: var(--rt-accent); color: #fff; }
.btn--accent:hover { background: var(--rt-accent-600); color: #fff; }
.btn--ghost { background: transparent; color: var(--rt-ink); border-color: var(--rt-border); }
.btn--ghost:hover { color: var(--rt-ink); border-color: var(--rt-accent); }
.btn--lg { padding: .9rem 1.6rem; font-size: 1.05rem; }
.btn--sm { padding: .45rem .85rem; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.linklike { background: none; border: 0; color: var(--rt-accent); cursor: pointer; font: inherit; text-decoration: underline; padding: 0; }

/* Demo banner */
.demo-banner {
  background: #FEF3C7; color: #92400E; font-size: .85rem; font-weight: 600;
  text-align: center; padding: .5rem 1rem; display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.demo-banner__dot { width: .55rem; height: .55rem; border-radius: 50%; background: #F59E0B; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--rt-border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-size: 1.2rem; font-weight: 600; color: var(--rt-ink); }
.brand:hover { text-decoration: none; color: var(--rt-ink); }
.brand__name strong { color: var(--rt-accent); }
.brand--light, .brand--light .brand__name { color: #fff; }
.brand--light .brand__name strong { color: #93C5FD; }
.brand__mark { display: inline-flex; flex-direction: column; gap: 3px; width: 26px; padding: 5px; background: var(--rt-primary); border-radius: 6px; }
.brand__mark span { height: 3px; border-radius: 2px; background: var(--rt-border); }
.brand__mark span:first-child { background: var(--rt-accent); }
.brand--light .brand__mark { background: rgba(255,255,255,.12); }

.primary-nav ul { display: flex; align-items: center; gap: .3rem; list-style: none; }
.primary-nav a { color: var(--rt-body); font-weight: 500; padding: .5rem .8rem; border-radius: 6px; }
.primary-nav a:hover { color: var(--rt-ink); background: var(--rt-muted); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--rt-accent); }
.primary-nav__cta { margin-left: .4rem; }
.primary-nav__cta a:hover { background: var(--rt-accent-600); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--rt-ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero slider */
.hero { position: relative; overflow: hidden; background: var(--rt-primary-900); color: #E2E8F0; }
.hero__track { display: flex; transition: none; }
.slide { min-width: 100%; }
.slide { display: none; }
.slide.is-active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.slide__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 1.25rem; }
.slide__heading { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.slide__sub { color: #94A3B8; font-size: 1.1rem; max-width: 34rem; }
.slide__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.slide__cta .btn--ghost { color: #E2E8F0; border-color: rgba(255,255,255,.25); }
.slide__cta .btn--ghost:hover { color: #fff; border-color: #93C5FD; }

.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(15,23,42,.5); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.hero__arrow:hover { background: var(--rt-accent); }
.hero__arrow--prev { left: 1rem; } .hero__arrow--next { right: 1rem; }
.hero__dots { position: absolute; bottom: 1.2rem; left: 0; right: 0; display: flex; justify-content: center; gap: .5rem; z-index: 5; }
.hero__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; }
.hero__dot.is-active { background: var(--rt-accent); width: 26px; border-radius: 5px; }

/* Browser mock visuals */
.mock { background: #fff; border-radius: 12px; box-shadow: var(--rt-shadow-lg); overflow: hidden; color: var(--rt-body); }
.mock__chrome { display: flex; align-items: center; gap: 6px; padding: .6rem .8rem; background: #F1F5F9; border-bottom: 1px solid var(--rt-border); }
.mock__chrome > span { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.mock__chrome > span:first-child { background: #F87171; } .mock__chrome > span:nth-child(2) { background: #FBBF24; } .mock__chrome > span:nth-child(3) { background: #34D399; }
.mock__url { margin-left: auto; font-size: .72rem; font-style: normal; color: var(--rt-muted-ink); background: #fff; border: 1px solid var(--rt-border); border-radius: 20px; padding: .15rem .6rem; }
.mock__body { padding: 1rem; min-height: 230px; }
.mock__row { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; }
.mock__row--head { margin-bottom: .8rem; } .mock__row--head b { font-size: 1rem; color: var(--rt-ink); }
.mock__pill { background: #DCFCE7; color: #166534; font-size: .7rem; font-weight: 700; padding: .1rem .5rem; border-radius: 20px; }
.mock__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-bottom: 1rem; }
.mock__card { background: var(--rt-muted); border: 1px solid var(--rt-border); border-radius: 8px; padding: .6rem; }
.mock__card i { display: block; height: 8px; width: 60%; background: var(--rt-accent); border-radius: 4px; margin-bottom: .4rem; }
.mock__card u { text-decoration: none; font-size: .72rem; color: var(--rt-muted-ink); }
.mock__chart { display: flex; align-items: flex-end; gap: .5rem; height: 110px; padding-top: .5rem; }
.mock__chart span { flex: 1; background: linear-gradient(var(--rt-accent), #60A5FA); border-radius: 4px 4px 0 0; }
.mock__chart--flat span { background: linear-gradient(#34D399, #6EE7B7); }
.mock__steps, .mock__list { list-style: none; }
.mock__steps li { padding: .5rem .6rem .5rem 1.8rem; position: relative; font-size: .85rem; border-radius: 6px; margin-bottom: .35rem; background: var(--rt-muted); }
.mock__steps li::before { content: "○"; position: absolute; left: .6rem; color: var(--rt-muted-ink); }
.mock__steps li.is-done::before { content: "✓"; color: var(--rt-success); }
.mock__steps li.is-active { background: #EFF6FF; }
.mock__steps li.is-active::before { content: "◐"; color: var(--rt-accent); }
.mock__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.mock__grid div { height: 52px; background: var(--rt-muted); border: 1px solid var(--rt-border); border-radius: 8px; }
.mock__grid div:nth-child(odd) { border-color: #BFDBFE; background: #EFF6FF; }
.mock__lock { display: flex; gap: 1rem; align-items: center; padding: 1rem 0; }
.mock__lockicon { width: 60px; height: 60px; border-radius: 12px; background: #EFF6FF; border: 2px solid var(--rt-accent); flex: none; position: relative; }
.mock__lockicon::after { content: "↧"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.8rem; color: var(--rt-accent); }
.mock__list li { padding: .3rem 0 .3rem 1.2rem; position: relative; font-size: .85rem; }
.mock__list li::before { content: "✓"; position: absolute; left: 0; color: var(--rt-success); }

/* Trustbar */
.trustbar { background: var(--rt-primary); color: #CBD5E1; }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: 1rem 1.25rem; font-size: .92rem; }
.trustbar__item { position: relative; padding-left: 1.4rem; }
.trustbar__item::before { content: "✓"; position: absolute; left: 0; color: #60A5FA; font-weight: 700; }

/* Industry tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tile { position: relative; background: #fff; border: 1px solid var(--rt-border); border-radius: var(--rt-radius); padding: 1.6rem; box-shadow: var(--rt-shadow); transition: .18s; display: flex; flex-direction: column; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--rt-shadow-lg); border-color: #BFDBFE; }
.tile--featured { border-color: var(--rt-accent); box-shadow: 0 12px 40px rgba(37,99,235,.16); }
.tile__badge { position: absolute; top: -.7rem; left: 1.6rem; background: var(--rt-accent); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 20px; }
.tile__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 10px; background: #EFF6FF; color: var(--rt-accent); margin-bottom: 1rem; }
.tile__icon .icon { width: 24px; height: 24px; }
.tile__name { margin-bottom: .35rem; }
.tile__tagline { color: var(--rt-muted-ink); font-size: .95rem; }
.tile__bullets { list-style: none; margin: .6rem 0 1.2rem; }
.tile__bullets li { position: relative; padding-left: 1.3rem; font-size: .9rem; margin-bottom: .35rem; }
.tile__bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--rt-accent); font-weight: 700; }
.tile__cta { margin-top: auto; font-weight: 600; }

/* Steps (how it works) */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: .5rem; }
.step__num { display: inline-block; font-size: 1rem; font-weight: 800; color: #fff; background: var(--rt-accent); width: 2.4rem; height: 2.4rem; border-radius: 50%; line-height: 2.4rem; text-align: center; margin-bottom: .8rem; }
.step__title { margin-bottom: .3rem; }
.how__cta { text-align: center; margin-top: 2.5rem; }

/* Dark sections + values */
.section--dark { background: var(--rt-primary-900); color: #CBD5E1; }
.section--dark h2 { color: #fff; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--rt-radius); padding: 1.5rem; }
.value h3 { color: #fff; }
.value p { color: #94A3B8; margin: 0; }

/* CTA band */
.section--cta { background: var(--rt-accent); }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #DBEAFE; margin: 0; }
.cta-band .eyebrow--light { color: #BFDBFE; }
.cta-band .btn--accent { background: #fff; color: var(--rt-accent); }
.cta-band .btn--accent:hover { background: #EFF6FF; color: var(--rt-accent-600); }

/* Page hero */
.page-hero { background: var(--rt-primary-900); color: #CBD5E1; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.page-hero h1 { color: #fff; }
.page-hero__sub { color: #94A3B8; font-size: 1.1rem; max-width: 44rem; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.page-hero__cta .btn--ghost { color: #E2E8F0; border-color: rgba(255,255,255,.25); }
.page-hero--provision { background: linear-gradient(135deg, var(--rt-primary-900), #1E3A8A); }
.config-price { font-size: 1.3rem; font-weight: 700; color: #93C5FD; margin: .6rem 0 0; }

/* Breadcrumb */
.breadcrumb { padding-top: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; color: var(--rt-muted-ink); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .4rem; color: var(--rt-border); }
.breadcrumb [aria-current="page"] { color: var(--rt-ink); }

/* Services listing */
.listing { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.filters { background: #fff; border: 1px solid var(--rt-border); border-radius: var(--rt-radius); padding: 1.25rem; position: sticky; top: 88px; }
.filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.filters__head h2 { font-size: 1.1rem; margin: 0; }
.filters__clear { background: none; border: 0; color: var(--rt-accent); cursor: pointer; font: inherit; font-size: .85rem; }
.filter-group { border: 0; padding: 0; margin: 0 0 1.25rem; }
.filter-group legend { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--rt-muted-ink); margin-bottom: .5rem; }
.filter-opt { display: flex; align-items: center; gap: .55rem; padding: .25rem 0; font-size: .92rem; cursor: pointer; }
.filter-opt input { accent-color: var(--rt-accent); width: 16px; height: 16px; }
.listing__count { color: var(--rt-muted-ink); font-size: .9rem; margin-bottom: 1rem; }
.config-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.config-card { background: #fff; border: 1px solid var(--rt-border); border-radius: var(--rt-radius); padding: 1.4rem; display: flex; flex-direction: column; box-shadow: var(--rt-shadow); transition: .15s; }
.config-card:hover { border-color: #BFDBFE; box-shadow: var(--rt-shadow-lg); }
.config-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.config-card__industry { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--rt-accent); background: #EFF6FF; padding: .2rem .55rem; border-radius: 20px; }
.config-card__price { font-weight: 700; color: var(--rt-ink); font-size: .9rem; }
.config-card__name { margin-bottom: .4rem; }
.config-card__summary { font-size: .92rem; color: var(--rt-muted-ink); }
.config-card__meta { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: .4rem 0 1rem; }
.config-card__meta li { font-size: .78rem; background: var(--rt-muted); border: 1px solid var(--rt-border); border-radius: 6px; padding: .15rem .5rem; color: var(--rt-body); }
.config-card__actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: .5rem; }
.config-empty { text-align: center; padding: 3rem 1rem; color: var(--rt-muted-ink); }

/* Config detail */
.config-detail { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.specs { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; }
.specs th, .specs td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--rt-border); vertical-align: top; font-size: .95rem; }
.specs th { width: 36%; color: var(--rt-ink); font-weight: 600; background: var(--rt-muted); }
.onboarding { list-style: none; counter-reset: ob; }
.onboarding li { display: flex; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--rt-border); }
.onboarding__step { flex: none; width: 2rem; height: 2rem; border-radius: 50%; background: var(--rt-accent); color: #fff; font-weight: 700; display: grid; place-items: center; }
.onboarding h3 { margin: 0 0 .2rem; }
.onboarding p { margin: 0; color: var(--rt-muted-ink); font-size: .95rem; }
.card { background: #fff; border: 1px solid var(--rt-border); border-radius: var(--rt-radius); padding: 1.5rem; box-shadow: var(--rt-shadow); }
.card--sticky { position: sticky; top: 88px; }
.card h2 { font-size: 1.15rem; }
.quickfacts { margin: 0 0 1.25rem; }
.quickfacts div { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--rt-border); }
.quickfacts dt { color: var(--rt-muted-ink); font-size: .9rem; } .quickfacts dd { margin: 0; font-weight: 600; color: var(--rt-ink); font-size: .9rem; }
.card__note { font-size: .78rem; color: var(--rt-muted-ink); margin: .8rem 0 0; text-align: center; }
.card .btn { margin-bottom: .6rem; }

/* Provisioning mock */
.provision { max-width: 820px; margin: 0 auto; }
.provision__panel { background: #fff; border: 1px solid var(--rt-border); border-radius: var(--rt-radius); box-shadow: var(--rt-shadow); padding: clamp(1.25rem, 4vw, 2.2rem); }
.pv-progress { list-style: none; display: flex; gap: .5rem; margin: 0 0 1.8rem; flex-wrap: wrap; }
.pv-progress li { flex: 1; min-width: 90px; text-align: center; font-size: .85rem; font-weight: 600; color: var(--rt-muted-ink); padding: .5rem; border-radius: 8px; background: var(--rt-muted); border: 1px solid var(--rt-border); }
.pv-progress li.is-active { color: #fff; background: var(--rt-accent); border-color: var(--rt-accent); }
.pv-progress li.is-done { color: var(--rt-success); background: #F0FDF4; border-color: #BBF7D0; }
.pv-form fieldset { border: 0; padding: 0; margin: 0 0 1.5rem; }
.pv-form legend { font-weight: 700; margin-bottom: .7rem; color: var(--rt-ink); }
.pv-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.pv-choice { display: block; border: 1.5px solid var(--rt-border); border-radius: var(--rt-radius-sm); padding: .8rem; cursor: pointer; transition: .12s; }
.pv-choice:hover { border-color: #BFDBFE; }
.pv-choice input { position: absolute; opacity: 0; }
.pv-choice:has(input:checked) { border-color: var(--rt-accent); background: #EFF6FF; }
.pv-choice__name { display: block; font-weight: 600; color: var(--rt-ink); }
.pv-choice__desc { display: block; font-size: .82rem; color: var(--rt-muted-ink); margin-top: .2rem; }
.pv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pv-pills { display: flex; flex-direction: column; gap: .5rem; }
.pv-pill, .pv-check { display: flex; align-items: center; gap: .5rem; border: 1.5px solid var(--rt-border); border-radius: var(--rt-radius-sm); padding: .55rem .7rem; cursor: pointer; font-size: .9rem; }
.pv-pill input, .pv-check input { accent-color: var(--rt-accent); }
.pv-pill:has(input:checked) { border-color: var(--rt-accent); background: #EFF6FF; color: var(--rt-ink); }
.pv-addons { display: flex; flex-direction: column; gap: .5rem; }
.pv-form__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--rt-border); padding-top: 1.25rem; }
.pv-hint { margin: 0; color: var(--rt-muted-ink); font-size: .9rem; }

.pv-run__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.pv-run__head p { margin: 0; font-size: 1.1rem; }
.pv-spinner { width: 30px; height: 30px; border: 3px solid var(--rt-border); border-top-color: var(--rt-accent); border-radius: 50%; animation: spin .8s linear infinite; flex: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.pv-stages { list-style: none; }
.pv-stages li { display: flex; align-items: center; gap: .8rem; padding: .8rem .9rem; border-radius: 8px; margin-bottom: .5rem; background: var(--rt-muted); color: var(--rt-muted-ink); transition: .2s; }
.pv-stage__mark { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--rt-border); flex: none; display: grid; place-items: center; font-size: .8rem; }
.pv-stages li.is-active { background: #EFF6FF; color: var(--rt-ink); }
.pv-stages li.is-active .pv-stage__mark { border-color: var(--rt-accent); border-top-color: transparent; animation: spin .7s linear infinite; }
.pv-stages li.is-done { color: var(--rt-ink); }
.pv-stages li.is-done .pv-stage__mark { background: var(--rt-success); border-color: var(--rt-success); color: #fff; }
.pv-stages li.is-done .pv-stage__mark::after { content: "✓"; }
.pv-log { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; color: var(--rt-muted-ink); background: var(--rt-primary-900); color: #93C5FD; padding: .8rem 1rem; border-radius: 8px; min-height: 2.5rem; margin-top: 1rem; white-space: pre-wrap; }

.pv-ready { text-align: center; }
.pv-ready__badge { width: 64px; height: 64px; border-radius: 50%; background: var(--rt-success); color: #fff; font-size: 2rem; display: grid; place-items: center; margin: 0 auto 1rem; animation: pop .4s ease; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pv-ready__sub { color: var(--rt-muted-ink); }
.pv-creds { text-align: left; background: var(--rt-muted); border: 1px solid var(--rt-border); border-radius: var(--rt-radius); padding: 1.25rem; margin: 1.5rem 0; display: grid; gap: .6rem; }
.pv-cred { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.pv-cred span { color: var(--rt-muted-ink); font-size: .88rem; }
.pv-cred code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: #fff; border: 1px solid var(--rt-border); border-radius: 6px; padding: .3rem .6rem; font-size: .85rem; color: var(--rt-ink); }
.pv-billing { text-align: left; border: 1px solid var(--rt-border); border-radius: var(--rt-radius); padding: 1.25rem; margin-bottom: 1.5rem; }
.pv-billing h3 { font-size: 1.05rem; margin-bottom: .8rem; }
.pv-billing dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin: 0 0 .8rem; }
.pv-billing dt { font-size: .8rem; color: var(--rt-muted-ink); } .pv-billing dd { margin: 0; font-weight: 600; color: var(--rt-ink); }
.pv-tag { background: #DCFCE7; color: #166534; font-size: .78rem; font-weight: 700; padding: .15rem .55rem; border-radius: 20px; }
.pv-billing__note { font-size: .82rem; color: var(--rt-muted-ink); margin: 0; }
.pv-ready__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.provision__disclaimer { text-align: center; color: var(--rt-muted-ink); font-size: .82rem; margin-top: 1.25rem; }

/* Footer */
.site-footer { background: var(--rt-primary-900); color: #94A3B8; padding: 3rem 0 1.5rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer__brand p { margin-top: .8rem; max-width: 22rem; font-size: .92rem; }
.site-footer__nav ul { list-style: none; display: grid; gap: .5rem; }
.site-footer__nav a, .site-footer__contact a { color: #CBD5E1; }
.site-footer__contact p { margin: 0 0 .4rem; }
.site-footer__legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.25rem; font-size: .8rem; }
.site-footer__legal p { margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: #fff; box-shadow: var(--rt-shadow-lg); transform: translateX(100%); transition: transform .25s ease; padding: 5rem 1.5rem 2rem; z-index: 110; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .primary-nav a { padding: .8rem; }
  .primary-nav__cta { margin: .8rem 0 0; } .primary-nav__cta a { justify-content: center; }
  .slide__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .slide__visual { order: -1; }
  .tiles, .steps, .values, .config-grid, .pv-choices, .pv-form__row, .pv-billing dl, .pv-progress { grid-template-columns: 1fr; }
  .pv-progress { flex-direction: row; }
  .listing, .config-detail { grid-template-columns: 1fr; }
  .filters, .card--sticky { position: static; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .config-grid, .pv-choices { grid-template-columns: 1fr; }
  .hero__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition: none !important; scroll-behavior: auto !important; }
  .slide.is-active { animation: none; }
}

[hidden] { display: none !important; }
