:root{
  --bg:#fff8f4;
  --surface:#ffffff;
  --surface2:#fff0f7;
  --surface3:#f8edf8;
  --ink:#151018;
  --muted:#62596a;
  --line:rgba(25,16,34,.14);
  --pink:#ff0a76;
  --purple:#7a2cff;
  --yellow:#ffcf33;
  --shadow:0 24px 70px rgba(22,10,38,.12);
  --shadow-soft:0 12px 34px rgba(22,10,38,.08);
  --radius:28px;
  --radius-sm:18px;
  --max:1240px;
  color-scheme:light;
}
[data-theme=dark]{
  --bg:#08050d;
  --surface:#130f1b;
  --surface2:#21142a;
  --surface3:#1a1024;
  --ink:#fff8fb;
  --muted:#cbbbd3;
  --line:rgba(255,255,255,.14);
  --shadow:0 24px 70px rgba(0,0,0,.36);
  --shadow-soft:0 12px 34px rgba(0,0,0,.22);
  color-scheme:dark;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;text-size-adjust:100%}
body{
  margin:0;
  background:radial-gradient(circle at top left,rgba(255,10,118,.09),transparent 38%),var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  line-height:1.65;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:3px solid color-mix(in srgb,var(--pink) 62%,white);outline-offset:3px}
img{max-width:100%;display:block;height:auto;background:var(--surface2)}
.skip{position:absolute;left:-999px;top:.75rem;z-index:999;background:#111;color:#fff;padding:.7rem 1rem;border-radius:999px}
.skip:focus{left:1rem}
.wrap{max-width:var(--max);margin:auto;padding:4.5rem 1.15rem}
.compact{padding-top:2.6rem;padding-bottom:2.8rem}
.prose{max-width:920px}
.site-header{
  position:sticky;top:0;z-index:60;
  background:color-mix(in srgb,var(--surface) 90%,transparent);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:var(--max);
  margin:auto;
  display:grid;
  grid-template-columns:260px minmax(0,1fr) auto;
  gap:1.15rem;
  align-items:center;
  padding:1rem 1.15rem;
}
.brand{display:flex;flex-direction:column;gap:.18rem;line-height:1;min-width:0}
.brand span{
  display:block;
  font-size:clamp(1.72rem,2.4vw,2.16rem);
  font-weight:950;
  letter-spacing:-.065em;
  background:linear-gradient(90deg,var(--pink),var(--purple));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  white-space:nowrap;
}
.brand small{
  display:block;
  max-width:232px;
  font-size:.61rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  color:var(--purple);
  line-height:1.45;
}
.site-nav{display:flex;justify-content:center;align-items:center;gap:.68rem;row-gap:.12rem;flex-wrap:wrap;font-size:.875rem;font-weight:850;line-height:1.1}
.site-nav a{min-height:40px;display:flex;align-items:center;color:var(--muted);white-space:nowrap;border-radius:999px;padding:0 .15rem}
.site-nav a:hover,.site-nav a.active{color:var(--pink)}
.header-actions{display:flex;align-items:center;gap:.55rem;white-space:nowrap}
.menu-toggle,.icon-btn{border:1px solid var(--line);background:var(--surface);color:var(--ink);border-radius:999px;min-width:44px;min-height:44px;font-weight:900;cursor:pointer}
.menu-toggle{display:none;padding:0 1rem}
.btn{display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:999px;min-height:44px;padding:.84rem 1.15rem;font-weight:950;line-height:1.05;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,background .18s ease}
.btn:hover{transform:translateY(-1px)}
.btn-primary{color:#fff;background:linear-gradient(105deg,var(--pink),var(--purple));box-shadow:0 14px 36px rgba(255,10,118,.24)}
.btn-yellow{background:var(--yellow);color:#111}
.btn-ghost{background:var(--surface);border:1px solid var(--line)}
.full{width:100%}
.ticker{display:flex;gap:.8rem;align-items:center;padding:.58rem max(1rem,calc((100vw - var(--max))/2 + 1.15rem));background:#120916;color:#fff;font-size:.9rem;line-height:1.35;overflow:hidden}
.ticker strong{background:var(--pink);border-radius:999px;padding:.22rem .72rem;line-height:1.15;white-space:nowrap}
.hero,.mini-hero{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(320px,.97fr);gap:clamp(2rem,5vw,4.25rem);align-items:center}
.hero h1,.page-hero h1,.article-header h1{
  max-width:980px;
  font-size:clamp(2.35rem,5.7vw,5.25rem);
  line-height:1.04;
  letter-spacing:-.047em;
  text-wrap:balance;
  margin:.25rem 0 1.2rem;
}
.mini-hero h1{font-size:clamp(2.05rem,4.2vw,4.2rem);line-height:1.06;letter-spacing:-.042em;text-wrap:balance;margin:.2rem 0 1.1rem}
.page-hero{padding-top:4rem;padding-bottom:2.8rem}
.article-header h1{font-size:clamp(2.2rem,5vw,4.8rem);line-height:1.06;max-width:1040px}
.eyebrow{text-transform:uppercase;letter-spacing:.16em;font-size:.78rem;font-weight:950;color:var(--pink);margin:0 0 .95rem;line-height:1.35}
.lede,.standfirst{font-size:clamp(1.04rem,1.5vw,1.22rem);line-height:1.72;color:var(--muted);max-width:780px;margin-bottom:1.25rem}
.hero-art img,.page-hero img,.article-cover img{border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid var(--line)}
.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.15rem}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:1.4rem;margin-bottom:1.4rem}
.section-head h2{font-size:clamp(1.75rem,3.25vw,3rem);line-height:1.12;letter-spacing:-.04em;text-wrap:balance;margin:.1rem 0}
.section-head p{color:var(--muted);max-width:640px;margin:.35rem 0 0}
.featured-grid,.cards-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.1rem}
.two-col{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:1.25rem;align-items:start}
.story-card,.event-card,.rail-card,.form-card,.search-box{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.story-card{display:flex;flex-direction:column;min-width:0}
.media{display:block;overflow:hidden;background:linear-gradient(135deg,var(--surface2),var(--surface3))}
.story-card img,.event-card img{aspect-ratio:16/9;object-fit:cover;width:100%}
.card-body,.event-body,.rail-card{padding:1.16rem}
.card-body{display:flex;flex:1;flex-direction:column}
.meta{display:flex;justify-content:space-between;align-items:center;gap:.8rem;color:var(--muted);font-size:.76rem;font-weight:850;text-transform:uppercase;line-height:1.35}
.meta span,.pill{border-radius:999px;background:var(--surface2);color:var(--pink);padding:.28rem .64rem;font-weight:950;font-size:.72rem;line-height:1.15;display:inline-flex;align-items:center;max-width:100%}
.story-card h3,.event-card h3{font-size:clamp(1.08rem,1.25vw,1.2rem);line-height:1.26;margin:.78rem 0 .58rem;letter-spacing:-.018em;text-wrap:pretty}
.story-card p,.event-card p,.rail-card p,.article-content p,.article-content li{color:var(--muted)}
.card-actions{display:flex;justify-content:space-between;gap:.8rem;margin-top:auto;padding-top:.95rem;font-size:.86rem;font-weight:900;line-height:1.35}
.card-actions a:first-child{color:var(--pink)}
.events-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.1rem}
.event-card{display:grid;grid-template-columns:42% minmax(0,1fr)}
.event-date{font-weight:900;color:var(--purple)!important}
.toolbar,.search-box{display:flex;gap:1rem;align-items:center;padding:1rem;margin-bottom:1rem}
.toolbar label,.search-box label{font-weight:950}
.toolbar input,.search-box input,.inline-form input,.form-card input,.form-card textarea{width:100%;border:1px solid var(--line);background:var(--surface);color:var(--ink);border-radius:18px;min-height:48px;padding:.85rem 1rem;font:inherit}
.inline-form{display:flex;gap:.5rem}
.form-card{display:grid;gap:1rem;padding:1rem}
.form-card label{display:grid;font-weight:900;gap:.35rem}.form-card textarea{min-height:140px}
.resource-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.1rem}
.support-box{display:grid;grid-template-columns:180px minmax(0,1fr);gap:1rem;align-items:center}
.article{max-width:1080px}.breadcrumb,.article-meta{display:flex;gap:.7rem;flex-wrap:wrap;color:var(--muted);font-weight:850}.article-cover{margin:2rem 0}.article-layout{display:grid;grid-template-columns:270px minmax(0,1fr);gap:2rem}.sticky{position:sticky;top:118px}.callout{border-left:5px solid var(--pink);background:var(--surface2);padding:1rem;border-radius:0 18px 18px 0}
.site-footer{background:#100815;color:#fff;margin-top:3rem}.footer-grid{max-width:var(--max);margin:auto;padding:3rem 1.15rem;display:grid;grid-template-columns:1.4fr .8fr .8fr 1.2fr;gap:2rem}.footer-grid a{display:block;color:rgba(255,255,255,.82);margin:.35rem 0}.footer-grid p{color:rgba(255,255,255,.7)}.footer-bottom{border-top:1px solid rgba(255,255,255,.12);max-width:var(--max);margin:auto;padding:1rem 1.15rem;display:flex;justify-content:space-between;color:rgba(255,255,255,.68);gap:1rem}
@media(max-width:1080px){.header-inner{grid-template-columns:1fr auto auto}.menu-toggle{display:inline-flex;align-items:center}.site-nav{position:fixed;top:78px;left:1rem;right:1rem;display:none;flex-direction:column;align-items:stretch;background:var(--surface);border:1px solid var(--line);border-radius:24px;padding:1rem;box-shadow:var(--shadow);font-size:1rem}.site-nav a{min-height:46px;padding:0 .7rem}.site-nav.open{display:flex}.brand small{max-width:260px}.hero,.mini-hero,.two-col,.article-layout{grid-template-columns:1fr}.featured-grid,.cards-grid,.events-grid,.resource-grid,.footer-grid{grid-template-columns:1fr 1fr}.header-actions .btn-primary{display:none}.sticky{position:static}}
@media(max-width:640px){.wrap{padding:2.7rem 1rem}.compact{padding-top:2rem}.header-inner{padding:.82rem 1rem;gap:.65rem}.brand span{font-size:1.58rem}.brand small{font-size:.49rem;letter-spacing:.1em;max-width:190px}.ticker{font-size:.82rem}.hero h1,.page-hero h1,.article-header h1{font-size:clamp(2.15rem,11vw,3.35rem);line-height:1.08;letter-spacing:-.038em}.featured-grid,.cards-grid,.events-grid,.resource-grid,.footer-grid{grid-template-columns:1fr}.event-card{grid-template-columns:1fr}.toolbar,.search-box,.inline-form,.footer-bottom{flex-direction:column;align-items:stretch}.section-head{align-items:flex-start;flex-direction:column}.card-actions{flex-direction:column}.site-nav{top:66px}.support-box{grid-template-columns:1fr}}


.media{position:relative}
.media::after{content:"";position:absolute;inset:auto 0 0 0;height:28%;background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.08));pointer-events:none}
.story-card .media img{transition:transform .45s ease, filter .45s ease;filter:saturate(1.04) contrast(1.03)}
.story-card:hover .media img{transform:scale(1.03);filter:saturate(1.1) contrast(1.05)}
.card-body{gap:.12rem}
.card-body p{font-size:1.02rem;line-height:1.62}


/* v12 premium UI overrides */
:root{
  --bg:#fcfbff;
  --surface:#ffffff;
  --surface2:#f6f2ff;
  --surface3:#eef6ff;
  --line:rgba(21,16,24,.08);
  --shadow:0 30px 70px rgba(34,18,61,.10);
  --shadow-soft:0 12px 32px rgba(34,18,61,.08);
}
[data-theme=dark]{
  --bg:#090712;
  --surface:#13101c;
  --surface2:#1a1526;
  --surface3:#111a2a;
  --line:rgba(255,255,255,.09);
}
body{background:radial-gradient(circle at 0% 0%,rgba(255,10,118,.08),transparent 26%),radial-gradient(circle at 100% 0%,rgba(122,44,255,.10),transparent 28%),linear-gradient(180deg,#fdfcff 0%,#fbf8ff 100%)}
[data-theme=dark] body{background:radial-gradient(circle at 0% 0%,rgba(255,10,118,.10),transparent 26%),radial-gradient(circle at 100% 0%,rgba(122,44,255,.16),transparent 28%),linear-gradient(180deg,#090712 0%,#0b0914 100%)}
.site-header{background:color-mix(in srgb,var(--surface) 86%,transparent);box-shadow:0 1px 0 rgba(255,255,255,.5) inset}
.brand span{letter-spacing:-.05em}
.site-nav a{padding:.25rem .65rem;border-radius:999px;transition:background .18s ease,color .18s ease}
.site-nav a:hover,.site-nav a.active{background:var(--surface2)}
.icon-btn{box-shadow:var(--shadow-soft)}
.hero,.page-hero{position:relative;padding:clamp(1.4rem,3vw,2rem);border:1px solid var(--line);border-radius:32px;background:linear-gradient(135deg,rgba(255,255,255,.88),rgba(255,255,255,.72));box-shadow:var(--shadow);overflow:hidden}
[data-theme=dark] .hero,[data-theme=dark] .page-hero{background:linear-gradient(135deg,rgba(21,16,31,.92),rgba(21,16,31,.78))}
.hero::before,.page-hero::before{content:"";position:absolute;inset:auto auto -20% -10%;width:340px;height:340px;border-radius:50%;background:radial-gradient(circle,rgba(255,10,118,.12),transparent 65%);pointer-events:none}
.hero::after,.page-hero::after{content:"";position:absolute;inset:-15% -6% auto auto;width:380px;height:320px;border-radius:40px;background:radial-gradient(circle at top right,rgba(122,44,255,.12),transparent 60%);pointer-events:none}
.hero>*,.page-hero>*{position:relative;z-index:1}
.hero-art img,.page-hero img{border-radius:26px;border:1px solid rgba(255,255,255,.45);background:linear-gradient(135deg,var(--surface2),var(--surface3));}
.featured-grid,.cards-grid{gap:1.35rem}
.story-card,.event-card,.rail-card,.form-card,.search-box{border:1px solid rgba(34,18,61,.08);box-shadow:0 18px 44px rgba(31,18,49,.08);border-radius:30px;overflow:hidden;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.94))}
[data-theme=dark] .story-card,[data-theme=dark] .event-card,[data-theme=dark] .rail-card,[data-theme=dark] .form-card,[data-theme=dark] .search-box{background:linear-gradient(180deg,rgba(19,16,28,.98),rgba(19,16,28,.94))}
.media{position:relative;overflow:hidden;border-radius:0}
.story-card .media img,.event-card img{aspect-ratio:16/10;object-fit:cover;width:100%;transform:scale(1.001);transition:transform .45s ease,filter .45s ease;filter:saturate(1.06) contrast(1.04)}
.story-card:hover .media img,.event-card:hover img{transform:scale(1.04);filter:saturate(1.12) contrast(1.06)}
.media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,7,18,.03),rgba(11,7,18,.02) 42%,rgba(11,7,18,.18) 100%);pointer-events:none}
.media-badge{position:absolute;left:1rem;top:1rem;z-index:2;display:inline-flex;align-items:center;max-width:78%;padding:.52rem .82rem;border-radius:999px;background:rgba(255,255,255,.88);backdrop-filter:blur(12px);font-size:.72rem;line-height:1;font-weight:900;letter-spacing:.04em;color:#20152a;box-shadow:0 8px 20px rgba(16,8,26,.14)}
.card-body,.event-body{padding:1.2rem 1.28rem 1.28rem}
.meta{font-size:.74rem;letter-spacing:.03em}
.meta span,.pill{background:linear-gradient(180deg,#fff3fa,#ffe8f5);border:1px solid rgba(255,10,118,.08)}
.story-card h3,.event-card h3{font-size:clamp(1.16rem,1.35vw,1.32rem);line-height:1.24;margin:.7rem 0 .64rem}
.story-card p,.event-card p{font-size:1rem;line-height:1.62;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.card-actions{padding-top:1rem;align-items:center}
.card-actions a:first-child{display:inline-flex;align-items:center;gap:.35rem;padding:.55rem .84rem;border-radius:999px;background:linear-gradient(180deg,#fff1f8,#ffe2f2);color:var(--pink)}
.card-actions a:last-child{color:var(--muted)}
.toolbar,.search-box{border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.78);backdrop-filter:blur(10px)}
[data-theme=dark] .toolbar,[data-theme=dark] .search-box{background:rgba(19,16,28,.78)}
.section-head{margin-bottom:1.6rem}
.section-head h2{font-size:clamp(1.85rem,3.2vw,3.1rem)}
.section-head a{display:inline-flex;align-items:center;gap:.3rem;padding:.7rem 1rem;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.72);font-weight:900}
[data-theme=dark] .section-head a{background:rgba(19,16,28,.72)}
.cards-grid>.story-card:first-child,.featured-grid>.story-card:first-child{grid-column:span 2}
.cards-grid>.story-card:first-child .media img,.featured-grid>.story-card:first-child .media img{aspect-ratio:16/8.8}
.cards-grid>.story-card:first-child .card-body,.featured-grid>.story-card:first-child .card-body{padding:1.3rem 1.45rem 1.4rem}
.cards-grid>.story-card:first-child h3,.featured-grid>.story-card:first-child h3{font-size:clamp(1.4rem,1.9vw,1.9rem)}
.cards-grid>.story-card:first-child p,.featured-grid>.story-card:first-child p{-webkit-line-clamp:3}
.site-footer{background:linear-gradient(180deg,#120918,#0e0714)}
@media(max-width:1080px){
  .cards-grid>.story-card:first-child,.featured-grid>.story-card:first-child{grid-column:auto}
  .cards-grid>.story-card:first-child .media img,.featured-grid>.story-card:first-child .media img{aspect-ratio:16/10}
}
@media(max-width:640px){
  .hero,.page-hero{padding:1.15rem;border-radius:24px}
  .story-card,.event-card,.rail-card,.form-card,.search-box{border-radius:24px}
  .media-badge{left:.8rem;top:.8rem;font-size:.68rem;padding:.48rem .72rem;max-width:82%}
  .card-body,.event-body{padding:1rem 1rem 1.1rem}
}


/* v13 magazine redesign */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Newsreader:opsz,wght@6..72,400;6..72,600;6..72,700&display=swap');
:root{
  --bg:#faf7ff;
  --surface:#ffffff;
  --surface-soft:#f6f1ff;
  --surface-ink:#120d1c;
  --text:#1a1524;
  --muted:#665f78;
  --pink:#ef2a8a;
  --purple:#6d36ff;
  --gold:#b67c2b;
  --line:rgba(26,21,36,.08);
  --shadow-1:0 18px 40px rgba(28,14,48,.07);
  --shadow-2:0 32px 80px rgba(28,14,48,.12);
  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:18px;
}
html{font-size:16px}
body{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;color:var(--text);background:
  radial-gradient(circle at 0% 0%,rgba(239,42,138,.10),transparent 25%),
  radial-gradient(circle at 100% 0%,rgba(109,54,255,.12),transparent 28%),
  linear-gradient(180deg,#fdfbff 0%, #f9f6ff 100%);
}
[data-theme=dark] body{background:linear-gradient(180deg,#0b0911 0%, #100c19 100%)}
h1,h2,.lead-card h2,.section-head h2{font-family:Newsreader,Georgia,serif;font-weight:700;letter-spacing:-.03em;color:#151021}
h1{font-size:clamp(2.6rem,5vw,5rem);line-height:.95}
h2{font-size:clamp(2rem,3vw,3.4rem);line-height:1.02}
h3{font-size:clamp(1.2rem,1.5vw,1.42rem);line-height:1.15}
p,li,input,button,a{font-family:Inter,system-ui,sans-serif}
.site-header{position:sticky;top:0;z-index:60;backdrop-filter:blur(16px);background:rgba(255,255,255,.75);border-bottom:1px solid rgba(26,21,36,.05)}
[data-theme=dark] .site-header{background:rgba(13,10,20,.84)}
.header-inner{max-width:1400px}
.brand span{font-size:3rem;letter-spacing:-.08em}
.brand small{font-size:.75rem;line-height:1.3;letter-spacing:.12em;text-transform:uppercase}
.site-nav a{font-weight:800;font-size:.95rem;border-radius:999px;padding:.65rem .9rem;transition:all .18s ease}
.site-nav a:hover,.site-nav a.active{background:rgba(109,54,255,.08);color:var(--purple)}
.header-actions .btn,.icon-btn{box-shadow:var(--shadow-1)}
.ticker{background:linear-gradient(90deg,rgba(239,42,138,.09),rgba(109,54,255,.08));border-bottom:1px solid rgba(26,21,36,.05);font-weight:700}
.wrap{max-width:1400px}
.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap}
.home-splash,.page-hero,.section-hero-layout{padding:clamp(1.1rem,2vw,1.6rem);border:1px solid var(--line);background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.84));box-shadow:var(--shadow-2);border-radius:var(--radius-xl);overflow:hidden;position:relative}
[data-theme=dark] .home-splash,[data-theme=dark] .page-hero,[data-theme=dark] .section-hero-layout{background:linear-gradient(180deg,rgba(20,16,29,.95),rgba(20,16,29,.88))}
.home-splash:before,.page-hero:before,.section-hero-layout:before{content:"";position:absolute;inset:auto auto -20% -10%;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(239,42,138,.14),transparent 66%);pointer-events:none}
.home-splash:after,.page-hero:after,.section-hero-layout:after{content:"";position:absolute;inset:-10% -8% auto auto;width:420px;height:300px;border-radius:48px;background:radial-gradient(circle at top right,rgba(109,54,255,.14),transparent 62%);pointer-events:none}
.home-splash>*,.page-hero>*,.section-hero-layout>*{position:relative;z-index:1}
.home-splash{display:grid;grid-template-columns:1.1fr 1.35fr .9fr;gap:1.2rem;align-items:start;margin-top:1.5rem}
.home-splash-copy{padding:1rem 1.1rem .3rem}
.home-splash-copy .lede{font-size:1.08rem;line-height:1.75;max-width:52ch;color:var(--muted)}
.editorial-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin-top:1.2rem}
.editorial-stats>div{border:1px solid var(--line);background:rgba(255,255,255,.68);border-radius:18px;padding:.9rem .95rem;box-shadow:var(--shadow-1)}
.editorial-stats strong{display:block;font-size:1.2rem;margin-bottom:.15rem}
.editorial-stats span{font-size:.86rem;color:var(--muted)}
.lead-card{border:1px solid var(--line);background:rgba(255,255,255,.72);border-radius:30px;overflow:hidden;box-shadow:var(--shadow-2);height:100%}
[data-theme=dark] .lead-card{background:rgba(20,16,29,.72)}
.lead-card .media{position:relative;display:block;overflow:hidden}
.lead-card .media img{width:100%;height:auto;aspect-ratio:16/11;object-fit:cover;display:block}
.lead-card .lead-card-body{padding:1.2rem 1.25rem 1.3rem}
.lead-card .eyebrow{margin-bottom:.55rem}
.lead-card h2{font-size:clamp(2rem,2.8vw,3rem);margin:0 0 .7rem}
.lead-card p{font-size:1.02rem;line-height:1.72;color:var(--muted)}
.lead-card-meta{display:flex;gap:.7rem;flex-wrap:wrap;margin-top:.75rem;font-weight:700;font-size:.82rem;color:var(--muted)}
.lead-stack{display:grid;gap:.9rem}
.mini-story{display:grid;grid-template-columns:122px 1fr;gap:.85rem;border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.75);padding:.8rem;box-shadow:var(--shadow-1)}
[data-theme=dark] .mini-story{background:rgba(20,16,29,.75)}
.mini-story-media{display:block;border-radius:14px;overflow:hidden}
.mini-story-media img{width:100%;height:100%;min-height:92px;object-fit:cover;display:block}
.mini-story-top{display:flex;gap:.5rem;align-items:center;margin-bottom:.35rem;font-size:.73rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.mini-story-index{color:var(--pink)}
.mini-story h3{font-size:1.05rem;margin:.12rem 0 .35rem;line-height:1.22}
.mini-story p{font-size:.92rem;line-height:1.55;color:var(--muted);margin:0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:1rem;margin-bottom:1.4rem}
.section-head .eyebrow{margin-bottom:.25rem}
.section-head h2{margin:0}
.section-head>a{white-space:nowrap;border:1px solid var(--line);background:rgba(255,255,255,.75);padding:.72rem 1rem;border-radius:999px;font-weight:800}
.section-bands{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
.section-band{position:relative;display:flex;min-height:230px;align-items:end;overflow:hidden;border-radius:28px;border:1px solid var(--line);box-shadow:var(--shadow-2);padding:1.1rem;color:white}
.section-band img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.03) contrast(1.02)}
.section-band:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.68))}
.section-band span,.section-band strong{position:relative;z-index:1;display:block}
.section-band span{font-size:.73rem;letter-spacing:.12em;font-weight:900;text-transform:uppercase;margin-bottom:.4rem;opacity:.95}
.section-band strong{font-family:Newsreader,Georgia,serif;font-size:1.34rem;line-height:1.08;max-width:14ch}
.featured-grid.magazine-home-grid,.cards-grid.section-magazine-grid,.cards-grid.curated-grid{display:grid;gap:1.25rem}
.featured-grid.magazine-home-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.featured-grid.magazine-home-grid>.story-card:first-child{grid-column:span 2;grid-row:span 2}
.featured-grid.magazine-home-grid>.story-card:first-child .media img{aspect-ratio:16/10}
.cards-grid.section-magazine-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.cards-grid.section-magazine-grid>.story-card:first-child{grid-column:span 2}
.cards-grid.section-magazine-grid>.story-card:first-child .media img{aspect-ratio:16/9}
.cards-grid.curated-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.home-two-col{display:grid;grid-template-columns:minmax(0,1.4fr) 360px;gap:1.3rem;align-items:start}
.home-rail{display:grid;gap:1rem;position:sticky;top:110px}
.rail-card{border:1px solid var(--line);border-radius:26px;background:rgba(255,255,255,.80);padding:1.1rem 1.15rem;box-shadow:var(--shadow-1)}
[data-theme=dark] .rail-card{background:rgba(20,16,29,.80)}
.rail-card h3{margin:.35rem 0 .55rem;font-size:1.2rem}
.rail-card p,.rail-card li{color:var(--muted);line-height:1.68}
.rail-list{padding-left:1.15rem;margin:.3rem 0 0}
.quick-links{display:flex;flex-wrap:wrap;gap:.6rem}
.quick-links a{border:1px solid var(--line);padding:.62rem .78rem;border-radius:999px;font-weight:800;background:rgba(255,255,255,.72)}
.story-card{border:1px solid var(--line);border-radius:28px;overflow:hidden;background:rgba(255,255,255,.96);box-shadow:var(--shadow-1)}
[data-theme=dark] .story-card{background:rgba(20,16,29,.96)}
.story-card .media{display:block;position:relative;overflow:hidden}
.story-card .media img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;transition:transform .5s ease, filter .4s ease;filter:saturate(1.04)}
.story-card:hover .media img,.lead-card:hover .media img,.section-band:hover img,.mini-story:hover img{transform:scale(1.03)}
.story-card .media:after,.lead-card .media:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.22) 100%)}
.media-badge{position:absolute;left:1rem;top:1rem;z-index:2;background:rgba(255,255,255,.9);color:#1b1425;border-radius:999px;padding:.52rem .82rem;font-size:.72rem;font-weight:900;letter-spacing:.04em;box-shadow:0 8px 20px rgba(0,0,0,.12);max-width:80%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.card-body{padding:1.18rem 1.18rem 1.25rem}
.meta{display:flex;gap:.6rem;align-items:center;flex-wrap:wrap;margin-bottom:.65rem;color:var(--muted);font-size:.78rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
.meta span{display:inline-block;padding:.32rem .56rem;border-radius:999px;background:rgba(239,42,138,.09);color:var(--pink)}
.story-card h3{margin:.2rem 0 .55rem;font-size:1.28rem}
.story-card p{margin:0;color:var(--muted);line-height:1.7;font-size:.98rem}
.card-actions{display:flex;justify-content:space-between;align-items:center;gap:.8rem;flex-wrap:wrap;margin-top:1rem;padding-top:.95rem;border-top:1px solid var(--line)}
.card-actions a:first-child{display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#fff0f8,#ffe1f1);color:var(--pink);border-radius:999px;padding:.58rem .88rem;font-weight:900}
.card-actions a:last-child{color:var(--muted);font-size:.9rem}
.page-hero.section-hero-layout,.section-hero-layout{display:grid;grid-template-columns:.95fr 1.2fr;gap:1.2rem;align-items:start;margin-top:1.5rem}
.page-hero-copy{padding:1rem 1rem .5rem}
.page-hero-copy .lede{font-size:1.03rem;line-height:1.72;color:var(--muted);max-width:50ch}
.hero-meta-strip{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1rem}
.hero-meta-strip span{display:inline-flex;padding:.54rem .8rem;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.75);font-size:.84rem;font-weight:800}
.toolbar.magazine-toolbar{display:flex;align-items:center;gap:1rem;padding:1rem 1.15rem;border-radius:22px;background:rgba(255,255,255,.78);border:1px solid var(--line);box-shadow:var(--shadow-1);margin-bottom:1.1rem}
.toolbar.magazine-toolbar input{flex:1;border:none;background:transparent;outline:none;font-size:1rem}
.article-header h1{font-family:Newsreader,Georgia,serif;font-size:clamp(2.3rem,3vw,3.7rem);line-height:1.02}
.article-cover{border-radius:30px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-2);margin:1.3rem 0 1.55rem}
.article-cover img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}
.article-cover figcaption{padding:.8rem 1rem;background:rgba(255,255,255,.82);font-size:.85rem;color:var(--muted)}
.article-layout{gap:1.4rem}
.article-content{border:1px solid var(--line);border-radius:30px;padding:1.2rem 1.35rem;background:rgba(255,255,255,.86);box-shadow:var(--shadow-1)}
.article-content p,.article-content li{font-size:1.03rem;line-height:1.82;color:var(--surface-ink)}
.site-footer{margin-top:3rem;background:linear-gradient(180deg,#130a19,#0f0714)}
.footer-grid{max-width:1400px}
.eyebrow{display:inline-flex;align-items:center;gap:.4rem;color:var(--pink);font-size:.76rem;text-transform:uppercase;letter-spacing:.14em;font-weight:900}
.btn{border-radius:999px;font-weight:900}
.btn-primary{background:linear-gradient(135deg,#ff2a89,#7a35ff)}
.btn-ghost{border:1px solid var(--line);background:rgba(255,255,255,.76)}
@media (max-width:1280px){
  .home-splash{grid-template-columns:1fr;}
  .lead-stack{grid-template-columns:repeat(2,minmax(0,1fr));}
  .section-bands{grid-template-columns:repeat(3,minmax(0,1fr));}
  .home-two-col{grid-template-columns:1fr;}
  .home-rail{position:static;grid-template-columns:repeat(3,minmax(0,1fr));}
  .page-hero.section-hero-layout,.section-hero-layout{grid-template-columns:1fr;}
}
@media (max-width:980px){
  .featured-grid.magazine-home-grid,.cards-grid.section-magazine-grid,.cards-grid.curated-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .section-bands{grid-template-columns:repeat(2,minmax(0,1fr));}
  .featured-grid.magazine-home-grid>.story-card:first-child,.cards-grid.section-magazine-grid>.story-card:first-child{grid-column:span 2}
  .home-rail{grid-template-columns:1fr}
}
@media (max-width:720px){
  .brand span{font-size:2.6rem}
  h1{font-size:clamp(2.2rem,10vw,3.2rem)}
  h2{font-size:clamp(1.7rem,8vw,2.4rem)}
  .home-splash,.page-hero,.section-hero-layout{padding:1rem;border-radius:24px}
  .lead-stack,.editorial-stats,.home-rail{grid-template-columns:1fr}
  .section-bands,.featured-grid.magazine-home-grid,.cards-grid.section-magazine-grid,.cards-grid.curated-grid{grid-template-columns:1fr}
  .featured-grid.magazine-home-grid>.story-card:first-child,.cards-grid.section-magazine-grid>.story-card:first-child{grid-column:auto}
  .mini-story{grid-template-columns:98px 1fr}
  .section-head{flex-direction:column;align-items:flex-start}
  .story-card,.lead-card,.rail-card,.article-cover,.article-content{border-radius:22px}
  .media-badge{left:.75rem;top:.75rem;font-size:.68rem;padding:.44rem .7rem;max-width:76%}
  .card-body{padding:1rem}
}


/* v14 Events + Directory optimization and dark-mode visibility fixes */
.events-hero,.directory-hero{display:grid;grid-template-columns:.9fr 1.2fr;gap:1.25rem;align-items:start;margin-top:1.5rem;padding:clamp(1.1rem,2vw,1.6rem);border:1px solid var(--line);background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.86));box-shadow:var(--shadow-2);border-radius:var(--radius-xl);overflow:hidden;position:relative}
.events-hero-copy,.directory-hero-copy{padding:1rem 1rem .5rem}.events-hero h1,.directory-hero h1{font-family:Newsreader,Georgia,serif;font-size:clamp(2.3rem,4.2vw,4.6rem);line-height:.97;margin:.35rem 0 .8rem}.events-hero .lede,.directory-hero .lede{font-size:1.06rem;line-height:1.75;color:var(--muted)}
.event-lead-panel,.directory-hero-card{border:1px solid var(--line);border-radius:30px;overflow:hidden;background:rgba(255,255,255,.78);box-shadow:var(--shadow-2)}.event-lead-panel .media img,.directory-hero-card>img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}.event-lead-panel .event-body,.directory-hero-card>div{padding:1.2rem 1.25rem}.event-lead-panel h2,.directory-hero-card h2{font-family:Newsreader,Georgia,serif;font-size:clamp(1.7rem,2.6vw,2.65rem);line-height:1.03;margin:.2rem 0 .7rem}.event-lead-panel p,.directory-hero-card p{color:var(--muted);line-height:1.7}.event-magazine-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem}.event-feature-card,.event-list-card,.directory-card{border:1px solid var(--line);border-radius:28px;overflow:hidden;background:rgba(255,255,255,.96);box-shadow:var(--shadow-1)}.event-feature-card{grid-column:span 2}.event-feature-card .media img{aspect-ratio:16/8.6}.event-list-card .media img,.directory-card .media img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}.event-body{padding:1.15rem 1.18rem 1.25rem}.event-body h3,.directory-card h3{font-size:1.28rem;line-height:1.16;margin:.25rem 0 .55rem}.event-date{font-size:.94rem;font-weight:900;color:var(--purple)!important}.events-notes-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.15rem}.directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem}.directory-two-col{display:grid;grid-template-columns:minmax(0,1.3fr) 360px;gap:1.3rem;align-items:start}.directory-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.directory-mini{position:relative;display:block;min-height:250px;border-radius:28px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-2);padding:1rem;color:#fff}.directory-mini img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.directory-mini:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.72))}.directory-mini span,.directory-mini strong{position:relative;z-index:1;display:block}.directory-mini span{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;font-weight:900}.directory-mini strong{font-family:Newsreader,Georgia,serif;font-size:1.45rem;line-height:1.1;max-width:16ch;margin-top:7.4rem}.directory-card .media{display:block;position:relative;overflow:hidden}.directory-card .media:after,.event-list-card .media:after,.event-feature-card .media:after,.event-lead-panel .media:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.2))}.event-list-card .media,.event-feature-card .media,.event-lead-panel .media{display:block;position:relative;overflow:hidden}
[data-theme=dark]{--bg:#08060f;--surface:#14101f;--surface-soft:#1e182b;--surface2:#1e182b;--surface3:#121d2d;--text:#fff8ff;--ink:#fff8ff;--muted:#d8cee4;--line:rgba(255,255,255,.13);--surface-ink:#f7efff;color-scheme:dark}
[data-theme=dark] body,[data-theme=dark] h1,[data-theme=dark] h2,[data-theme=dark] h3,[data-theme=dark] h4,[data-theme=dark] p,[data-theme=dark] li,[data-theme=dark] label,[data-theme=dark] span,[data-theme=dark] a,[data-theme=dark] strong{color:var(--text)}
[data-theme=dark] .lede,[data-theme=dark] .standfirst,[data-theme=dark] .story-card p,[data-theme=dark] .event-card p,[data-theme=dark] .event-body p,[data-theme=dark] .rail-card p,[data-theme=dark] .rail-card li,[data-theme=dark] .article-content p,[data-theme=dark] .article-content li,[data-theme=dark] .directory-card p,[data-theme=dark] .mini-story p,[data-theme=dark] .lead-card p,[data-theme=dark] .directory-hero-card p,[data-theme=dark] .meta,[data-theme=dark] .lead-card-meta,[data-theme=dark] .card-actions a:last-child,[data-theme=dark] .footer-grid p,[data-theme=dark] .footer-bottom{color:var(--muted)!important}
[data-theme=dark] .story-card,[data-theme=dark] .event-card,[data-theme=dark] .event-feature-card,[data-theme=dark] .event-list-card,[data-theme=dark] .directory-card,[data-theme=dark] .lead-card,[data-theme=dark] .mini-story,[data-theme=dark] .rail-card,[data-theme=dark] .form-card,[data-theme=dark] .search-box,[data-theme=dark] .toolbar,[data-theme=dark] .article-content,[data-theme=dark] .event-lead-panel,[data-theme=dark] .directory-hero-card,[data-theme=dark] .home-splash,[data-theme=dark] .page-hero,[data-theme=dark] .section-hero-layout,[data-theme=dark] .events-hero,[data-theme=dark] .directory-hero{background:linear-gradient(180deg,rgba(22,17,34,.98),rgba(17,13,27,.94))!important;border-color:var(--line)!important}
[data-theme=dark] input,[data-theme=dark] textarea{background:#120e1d!important;color:var(--text)!important;border-color:var(--line)!important}[data-theme=dark] input::placeholder,[data-theme=dark] textarea::placeholder{color:#a99bb7!important}
[data-theme=dark] .meta span,[data-theme=dark] .pill,[data-theme=dark] .media-badge,[data-theme=dark] .card-actions a:first-child,[data-theme=dark] .hero-meta-strip span,[data-theme=dark] .section-head>a,[data-theme=dark] .quick-links a{background:rgba(255,255,255,.10)!important;color:#fff8ff!important;border-color:rgba(255,255,255,.12)!important}[data-theme=dark] .event-date,[data-theme=dark] .eyebrow{color:#ff7ab9!important}[data-theme=dark] .site-nav a,[data-theme=dark] .footer-grid a{color:var(--muted)!important}[data-theme=dark] .site-nav a:hover,[data-theme=dark] .site-nav a.active{color:#fff!important;background:rgba(255,255,255,.09)!important}[data-theme=dark] .article-cover figcaption{background:#14101f!important;color:var(--muted)!important}[data-theme=dark] .directory-mini span,[data-theme=dark] .directory-mini strong,[data-theme=dark] .section-band span,[data-theme=dark] .section-band strong{color:#fff!important}
@media(max-width:1100px){.events-hero,.directory-hero,.directory-two-col{grid-template-columns:1fr}.event-magazine-grid,.directory-grid,.events-notes-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.event-feature-card{grid-column:span 2}}
@media(max-width:720px){.events-hero,.directory-hero{padding:1rem;border-radius:24px}.event-magazine-grid,.directory-grid,.events-notes-grid,.directory-mini-grid{grid-template-columns:1fr}.event-feature-card{grid-column:auto}.event-feature-card .media img{aspect-ratio:16/10}.directory-mini{min-height:220px}.directory-mini strong{margin-top:6.3rem}}

/* v17 mandate implementation: safety, manifesto and governance system */
:root{--safe-bg:#0b0714;--safe-panel:#151020;--safe-text:#fff;--safe-muted:#d9cfe8;--focus:#ffcf33}
html[data-theme="dark"]{color-scheme:dark}
html[data-theme="light"]{color-scheme:light}
.panic-btn{background:linear-gradient(135deg,#ffcf33,#ff7a18)!important;color:#1a101a!important;font-weight:900!important;border:0!important}
body.panic-active main,body.panic-active footer,body.panic-active .ticker{display:none!important}
.panic-screen{position:fixed;inset:0;z-index:99999;background:#f6f6f6;color:#222;display:grid;place-items:center;padding:2rem;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
.panic-screen .panic-box{width:min(520px,92vw);background:#fff;border:1px solid #ddd;border-radius:18px;padding:1.25rem;box-shadow:0 20px 70px rgba(0,0,0,.18)}
.panic-screen h1{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:1.45rem;line-height:1.2;margin:0 0 .6rem;color:#222;letter-spacing:0}
.panic-screen p{color:#444;line-height:1.6}.panic-screen button{min-height:44px;border-radius:999px;border:0;padding:.8rem 1rem;background:#222;color:#fff;font-weight:800;margin-right:.5rem}.panic-screen .ghost{background:#eee;color:#222}
.mandate-hero{position:relative;margin-top:1.4rem;padding:clamp(1.35rem,3vw,2.3rem);border:1px solid var(--line);border-radius:34px;background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,255,255,.82));box-shadow:var(--shadow-2);overflow:hidden}
[data-theme=dark] .mandate-hero{background:linear-gradient(135deg,rgba(19,15,30,.98),rgba(19,15,30,.88));border-color:rgba(255,255,255,.09)}
.mandate-hero:before{content:"";position:absolute;right:-90px;top:-110px;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(255,10,118,.18),transparent 70%)}
.mandate-hero>*{position:relative;z-index:1}.mandate-hero h1{font-size:clamp(2.5rem,5.2vw,5.3rem);line-height:.98;max-width:900px}.mandate-hero .lede{font-size:clamp(1.05rem,1.5vw,1.25rem);line-height:1.8;max-width:920px;color:var(--muted)}
.mandate-grid{display:grid;gap:1rem}.mandate-grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}.mandate-grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}
.mandate-card,.feature-panel,.price-card{display:block;border:1px solid var(--line);border-radius:26px;background:rgba(255,255,255,.86);padding:1.05rem 1.1rem;box-shadow:var(--shadow-1);color:inherit;text-decoration:none}
[data-theme=dark] .mandate-card,[data-theme=dark] .feature-panel,[data-theme=dark] .price-card{background:rgba(20,16,29,.96);border-color:rgba(255,255,255,.08)}
.mandate-card span{display:block;font-size:.76rem;line-height:1.2;color:var(--pink);font-weight:900;text-transform:uppercase;letter-spacing:.12em;margin-bottom:.5rem}.mandate-card strong{display:block;font-size:clamp(1.15rem,1.7vw,1.55rem);line-height:1.15;margin-bottom:.5rem}.mandate-card p{color:var(--muted);line-height:1.65;margin:0}.link-card:hover{transform:translateY(-3px);transition:transform .2s ease}
.feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.feature-panel h3{font-size:1.28rem;margin:.1rem 0 .55rem}.feature-panel p{color:var(--muted);line-height:1.7}.feature-panel ul{margin:.7rem 0 0;padding-left:1.1rem;color:var(--muted);line-height:1.65}.two-col{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.table-wrap{overflow:auto;border:1px solid var(--line);border-radius:24px;background:rgba(255,255,255,.84);box-shadow:var(--shadow-1)}[data-theme=dark] .table-wrap{background:rgba(20,16,29,.96);border-color:rgba(255,255,255,.08)}
table{width:100%;border-collapse:collapse;min-width:720px}th,td{text-align:left;padding:.9rem 1rem;border-bottom:1px solid var(--line);vertical-align:top;line-height:1.55}th{font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:var(--pink)}td{color:var(--muted)}[data-theme=dark] td{color:#d6cfe6}.pricing-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}.price-card h3{margin:.1rem 0 .55rem}.price-card strong{display:block;font-size:2rem;color:var(--pink);margin-bottom:.45rem}.price-card p{color:var(--muted);line-height:1.65}.price-card.featured{outline:2px solid color-mix(in srgb,var(--pink) 50%, transparent)}
.safety-controls{display:flex;gap:.5rem;align-items:center;flex-wrap:wrap}.a11y-btn{min-height:44px;border-radius:999px;border:1px solid var(--line);background:var(--surface);color:var(--ink);padding:.65rem .85rem;font-weight:800}[data-theme=dark] .a11y-btn{background:#171222;color:#fff;border-color:rgba(255,255,255,.12)}
html.large-text{font-size:18px}html.high-contrast{--pink:#ff4da0;--purple:#9f7cff;--muted:#222;--line:rgba(0,0,0,.28)}html.high-contrast[data-theme=dark]{--muted:#ffffff;--line:rgba(255,255,255,.35)}
@media(max-width:1100px){.mandate-grid.three,.mandate-grid.four,.feature-grid,.pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.two-col{grid-template-columns:1fr}}
@media(max-width:720px){.mandate-grid.three,.mandate-grid.four,.feature-grid,.pricing-grid{grid-template-columns:1fr}.mandate-hero{border-radius:24px;padding:1.1rem}.mandate-card,.feature-panel,.price-card{border-radius:20px}.mandate-hero h1{font-size:clamp(2.2rem,11vw,3.2rem)}}
