
:root{
  --bg:#04060c;
  --bg-2:#080c14;
  --panel:#0b101a;
  --panel-2:rgba(14,20,31,.86);
  --panel-3:rgba(18,25,40,.92);
  --panel-lite:rgba(255,255,255,.035);
  --text:#f5f7ff;
  --muted:#96a0bd;
  --muted-2:#7983a1;
  --border:rgba(150,170,255,.14);
  --border-strong:rgba(212,166,84,.26);
  --purple:#7a5cff;
  --purple-2:#4f3bb2;
  --gold:#d4a654;
  --gold-soft:rgba(212,166,84,.18);
  --green:#27d482;
  --red:#f26868;
  --blue:#43c6ff;
  --cyan:#7fe9ff;
  --shadow-lg:0 34px 110px rgba(0,0,0,.64), 0 10px 28px rgba(4,8,16,.44);
  --shadow-md:0 20px 44px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.04);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(122,92,255,.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(67,198,255,.16), transparent 22%),
    radial-gradient(circle at 62% 62%, rgba(212,166,84,.07), transparent 24%),
    linear-gradient(180deg, #03050a 0%, #060912 48%, #05070c 100%);
  min-height:100vh;
  letter-spacing:.01em;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size:132px 132px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.66), transparent 84%);
  opacity:.18;
}
a{color:#dbe7ff;text-decoration:none}
a:hover{color:#fff}
img{max-width:100%;display:block}
.container{width:min(var(--container), calc(100% - 40px));margin:0 auto}
.page-shell{padding:14px 0 40px}
.topbar{position:sticky;top:0;z-index:30;padding:14px 0 0;background:linear-gradient(180deg, rgba(4,6,12,.72), rgba(4,6,12,0));backdrop-filter:blur(8px)}
.nav-shell{
  position:relative;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(9,13,21,.96), rgba(6,9,15,.94));
  border-radius:22px;
  box-shadow:0 24px 48px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.05);
}
.nav-shell::before{
  content:"";position:absolute;inset:0;border-radius:24px;
  background:linear-gradient(120deg, rgba(255,255,255,.06), transparent 32%, transparent 68%, rgba(122,92,255,.08));
  pointer-events:none;
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 14px;position:relative;z-index:1}
.brand{display:flex;align-items:center;gap:12px;color:var(--text);font-weight:900;letter-spacing:.12em;text-transform:uppercase;font-size:.87rem}
.brand img{width:34px;height:34px;border-radius:12px;box-shadow:0 0 0 1px rgba(255,255,255,.1), 0 10px 30px rgba(42,90,255,.25)}
.navlinks{display:flex;gap:10px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.navlinks a{padding:9px 12px;border-radius:12px;color:var(--muted);font-size:.9rem;font-weight:700}
.navlinks a:hover,.navlinks a.active{background:rgba(255,255,255,.045);color:#fff}
.hamburger{display:none;background:transparent;border:0;padding:8px;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:#fff;margin:5px 0;border-radius:3px}
.mobile{display:none;padding:0 18px 18px;gap:10px;flex-direction:column}
.mobile a{padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.03);color:var(--text)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:11px 16px;border-radius:14px;border:1px solid var(--border);font-weight:780;letter-spacing:.01em;transition:.22s ease;cursor:pointer}
.btn:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(0,0,0,.26)}
.btn-primary{background:linear-gradient(135deg, rgba(122,92,255,.88), rgba(212,166,84,.68));border-color:rgba(212,166,84,.34);color:#fff;box-shadow:0 18px 38px rgba(90,68,213,.28)}
.btn-ghost{background:rgba(255,255,255,.03);color:#fff}
.btn-soft{background:rgba(212,166,84,.10);border-color:rgba(212,166,84,.22);color:#f9e4b4}
.hero{display:grid;grid-template-columns:minmax(0,1.44fr) minmax(260px,.56fr);gap:14px;padding-top:14px;align-items:start}
.command-panel,.panel-frame,.card,.feature-card,.metric-card,.info-card,.product-card,.table-shell,.legal-card,.faq-item,.section-shell{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at top left, rgba(122,92,255,.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212,166,84,.07), transparent 24%),
    linear-gradient(180deg, rgba(15,21,33,.96) 0%, rgba(8,12,20,.94) 100%);
  box-shadow:0 30px 84px rgba(0,0,0,.58), 0 10px 28px rgba(5,8,14,.34), inset 0 1px 0 rgba(255,255,255,.05), inset 0 0 0 1px rgba(255,255,255,.02);
}
.command-panel::before,.panel-frame::before,.card::before,.feature-card::before,.metric-card::before,.info-card::before,.product-card::before,.table-shell::before,.legal-card::before,.faq-item::before,.section-shell::before{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.07), transparent 28%, transparent 70%, rgba(122,92,255,.08) 100%);
}
.command-panel::after,.panel-frame::after,.table-shell::after{
  content:"";position:absolute;left:20px;right:20px;top:0;height:1px;background:linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);pointer-events:none;
}
.hero-copy{padding:24px}
.eyebrow{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.pill,.badge,.status-pill{
  display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;font-size:.76rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.045);color:#d8def5
}
.pill.brand{background:linear-gradient(135deg, rgba(122,92,255,.16), rgba(212,166,84,.14));color:#f7ecce;border-color:rgba(212,166,84,.25)}
.pill.good{background:rgba(39,212,130,.11);color:#aff1cb;border-color:rgba(39,212,130,.22)}
.pill.warn{background:rgba(242,104,104,.10);color:#ffb8b8;border-color:rgba(242,104,104,.22)}
.pill.info{background:rgba(67,198,255,.10);color:#b9ebff;border-color:rgba(67,198,255,.24)}
.h1,.page-title{font-size:clamp(2.35rem, 5vw, 4.15rem);line-height:.92;letter-spacing:-.055em;margin:0 0 14px;font-weight:980;text-wrap:balance;text-shadow:0 10px 34px rgba(0,0,0,.34)}
.page-title{font-size:clamp(2.15rem, 4.4vw, 3.55rem)}
.lead,.page-subtitle{font-size:1rem;line-height:1.62;color:#c8d1ec;max-width:60ch;margin:0 0 20px}
.hero-actions,.row{display:flex;gap:10px;flex-wrap:wrap}
.command-strip{margin-top:18px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.command-strip .mini{
  padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.06)
}
.command-strip .mini strong{display:block;font-size:1rem}
.command-strip .mini span{display:block;margin-top:5px;color:var(--muted);font-size:.84rem;line-height:1.42}
.hero-visual{padding:10px;max-width:314px;justify-self:end;align-self:start}
.media-stack{display:grid;gap:16px}
.image-shell{
  position:relative;
  padding:8px;
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.012)),
    linear-gradient(180deg, rgba(17,24,38,.86), rgba(8,12,20,.92));
  border:1px solid rgba(255,255,255,.075);
  box-shadow:0 18px 34px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.05);
}
.image-shell::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(145deg, rgba(255,255,255,.06), transparent 30%, transparent 74%, rgba(122,92,255,.06));
}
.image-shell img{width:100%;height:100%;object-fit:cover;object-position:center;border-radius:14px;aspect-ratio:16/9;max-height:168px}
.image-shell.compact img{aspect-ratio:16/10;max-height:114px}
.overlay-note{position:absolute;left:12px;bottom:12px;max-width:208px;padding:10px 12px;border-radius:14px;background:rgba(7,10,18,.90);border:1px solid rgba(255,255,255,.08)}
.overlay-note strong{display:block;font-size:.84rem;margin-bottom:4px}
.overlay-note span{color:#c7cfec;font-size:.78rem;line-height:1.38}
.page-hero{display:grid;grid-template-columns:minmax(0,1.42fr) minmax(260px,.58fr);gap:14px;padding:14px 0 12px;align-items:start}
.section{padding:10px 0}
.section-shell{padding:18px}
.section-header{display:flex;justify-content:space-between;gap:14px;align-items:end;margin-bottom:14px;flex-wrap:wrap}
.section-title{margin:0;font-size:clamp(1.62rem, 3vw, 2.12rem);line-height:1.02;letter-spacing:-.045em;font-weight:960;text-shadow:0 8px 26px rgba(0,0,0,.22)}
.section-kicker{display:block;color:#f3d59d;font-size:.72rem;font-weight:880;letter-spacing:.14em;text-transform:uppercase;margin-bottom:7px}
.section-sub{margin:6px 0 0;color:var(--muted);font-size:.96rem;line-height:1.55;max-width:62ch}
.grid-2,.split-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.card,.feature-card,.metric-card,.info-card,.product-card,.legal-card,.faq-item{padding:18px}
.card h3,.feature-card h3,.metric-card h3,.info-card h3,.product-card h3,.legal-card h3,.faq-item h3{margin:0 0 8px;font-size:1.18rem;line-height:1.08;font-weight:900;letter-spacing:-.035em}
.card p,.feature-card p,.metric-card p,.info-card p,.product-card p,.legal-card p,.faq-item p,.copy p{margin:0;color:var(--muted);line-height:1.62}
.card ul,.feature-card ul,.legal-card ul,.copy ul{margin:14px 0 0;padding-left:18px;color:#d6ddf8;line-height:1.75}
.card li,.feature-card li,.legal-card li,.copy li{margin:6px 0}
.list-tight{display:grid;gap:10px;margin-top:16px}
.list-item{display:flex;gap:12px;align-items:flex-start;padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06)}
.list-item strong{display:block;font-size:.98rem}
.list-item span{display:block;color:var(--muted);font-size:.9rem;line-height:1.5;margin-top:4px}
.icon-dot{width:10px;height:10px;border-radius:999px;background:linear-gradient(135deg, var(--purple), var(--gold));box-shadow:0 0 0 6px rgba(122,92,255,.09);margin-top:6px;flex:0 0 auto}
.metric-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.metric-card strong{display:block;font-size:1.8rem;letter-spacing:-.04em}
.metric-card span{display:block;margin-top:6px;color:var(--muted);font-size:.92rem}
.surface-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:14px}
.table-shell{padding:18px}
.table-head{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:14px}
.table-head h3{margin:0;font-size:1.2rem;font-weight:850}
.table-head p{margin:4px 0 0;color:var(--muted);font-size:.93rem}
.system-table{display:grid;gap:10px}
.system-row{
  position:relative;display:grid;grid-template-columns:1.4fr .9fr .8fr .9fr;gap:12px;align-items:center;padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.032);border:1px solid rgba(255,255,255,.055)
}
.system-row.header{background:rgba(255,255,255,.02);text-transform:uppercase;font-size:.76rem;letter-spacing:.12em;color:#b0bad9;font-weight:800}
.system-row.alert::before{content:"";position:absolute;left:0;top:12px;bottom:12px;width:4px;border-radius:999px;background:linear-gradient(180deg, #f5bb5a, #8d5fff)}
.identity{font-weight:850;color:#fff}
.identity small{display:block;font-weight:600;color:#93a1c8;letter-spacing:.03em;margin-top:2px}
.signed.positive{color:#7de4b3}
.signed.negative{color:#ff9d9d}
.meter{height:8px;border-radius:999px;background:rgba(255,255,255,.06);overflow:hidden;position:relative}
.meter > span{position:absolute;left:0;top:0;bottom:0;border-radius:999px;background:linear-gradient(90deg, rgba(67,198,255,.88), rgba(122,92,255,.94), rgba(212,166,84,.88))}
.chart-shell{padding:18px;border-radius:22px;background:linear-gradient(180deg, rgba(8,14,24,.94), rgba(10,16,30,.82));border:1px solid rgba(255,255,255,.07);height:100%;display:flex;flex-direction:column;justify-content:space-between;gap:14px;position:relative;overflow:hidden;box-shadow:0 28px 56px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04)}
.chart-shell::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 30% 20%, rgba(122,92,255,.16), transparent 28%), radial-gradient(circle at 70% 70%, rgba(67,198,255,.14), transparent 26%);pointer-events:none}
.chart-shell::after{content:"";position:absolute;left:0;right:0;bottom:0;height:52%;background:linear-gradient(180deg, transparent, rgba(67,198,255,.06));pointer-events:none}
.chart-grid{position:absolute;inset:14px;border-radius:16px;background-image:linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);background-size:36px 36px;opacity:.58}
.chart-lines{position:relative;height:188px;border-radius:16px;overflow:hidden}
.chart-line{position:absolute;left:0;right:0;height:160px;bottom:18px;border-radius:999px;background:linear-gradient(180deg, rgba(67,198,255,.0), rgba(67,198,255,.12));clip-path:polygon(0 82%, 12% 76%, 20% 70%, 31% 74%, 44% 42%, 57% 56%, 68% 38%, 76% 48%, 86% 18%, 100% 8%, 100% 100%, 0 100%)}
.chart-line.secondary{background:linear-gradient(180deg, rgba(122,92,255,.0), rgba(122,92,255,.14));clip-path:polygon(0 90%, 13% 86%, 24% 79%, 33% 72%, 42% 68%, 55% 44%, 64% 50%, 73% 34%, 86% 28%, 100% 12%, 100% 100%, 0 100%)}
.chart-stats{position:relative;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.chart-stats .stat{padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07)}
.chart-stats strong{display:block;font-size:1.2rem}
.chart-stats span{display:block;margin-top:6px;color:var(--muted);font-size:.88rem}

.brand-lockup{display:flex;align-items:center;gap:14px;margin-bottom:16px;padding:12px 14px;border-radius:18px;background:linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.015));border:1px solid rgba(255,255,255,.07);max-width:408px}
.brand-lockup img{width:48px;height:48px;border-radius:15px;box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 14px 28px rgba(42,90,255,.24)}
.brand-lockup strong{display:block;font-size:.96rem;letter-spacing:.14em;text-transform:uppercase}
.brand-lockup span{display:block;color:var(--muted);font-size:.82rem;margin-top:4px;line-height:1.4}
.micro-stack{display:grid;gap:10px}
.micro-panel{
  padding:12px 14px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.07);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.micro-panel.subtle{background:linear-gradient(180deg, rgba(13,18,29,.92), rgba(9,13,21,.88))}
.micro-label{display:block;color:#f3d59d;font-size:.68rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase;margin-bottom:6px}
.micro-panel strong{display:block;font-size:.94rem;line-height:1.12;letter-spacing:-.02em}
.micro-panel span{display:block;margin-top:5px;color:var(--muted);font-size:.82rem;line-height:1.42}
.visual-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.visual-grid .image-shell img{max-height:96px}
.visual-card{padding:10px 10px 12px;border-radius:18px;background:linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.015));border:1px solid rgba(255,255,255,.065)}
.visual-card strong{display:block;font-size:.9rem;margin-top:8px}
.visual-card span{display:block;color:var(--muted);font-size:.8rem;line-height:1.42;margin-top:4px}
.media-card{display:grid;grid-template-columns:minmax(0,1.36fr) minmax(176px,.64fr);gap:12px;align-items:stretch}
.media-card .copy{padding-right:4px}
.media-card .image-shell{height:100%}
.media-card .image-shell img{max-height:112px}
.family-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.product-card{display:flex;flex-direction:column;gap:12px}
.product-card .topline{display:flex;justify-content:space-between;align-items:flex-start;gap:10px}
.product-card .product-name{font-size:1.18rem;line-height:1.04;font-weight:920;letter-spacing:-.035em}
.product-card .role{display:block;color:#bcc7e8;font-size:.86rem;margin-top:5px}
.product-card .meta-tags,.tag-row{display:flex;flex-wrap:wrap;gap:7px}
.meta-tag{padding:6px 9px;border-radius:999px;font-size:.74rem;font-weight:820;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);color:#dde4ff}
.product-card .why{padding:12px;border-radius:16px;background:rgba(255,255,255,.028);border:1px solid rgba(255,255,255,.055);color:#e7edff}
.product-card .actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:auto}
.product-visual{margin-bottom:2px}
.product-visual img{max-height:102px !important}
.hero-band, .section-band{padding:16px 18px;border-radius:18px;background:linear-gradient(135deg, rgba(122,92,255,.12), rgba(67,198,255,.08), rgba(212,166,84,.1));border:1px solid rgba(255,255,255,.08)}
.quote-block{padding:18px;border-radius:20px;background:rgba(255,255,255,.028);border:1px solid rgba(255,255,255,.065)}
.quote-block blockquote{margin:0;font-size:1.16rem;line-height:1.42;color:#eef3ff;font-weight:760;letter-spacing:-.02em}
.quote-block cite{display:block;margin-top:10px;color:var(--muted);font-style:normal}
.notice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.callout{padding:16px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.065)}
.callout strong{display:block;font-size:1.05rem;margin-bottom:8px}
.callout p{margin:0;color:var(--muted);line-height:1.65}
.legal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.copy h2,.copy h3{margin:0 0 10px;font-weight:880;letter-spacing:-.03em}
.copy h2{font-size:1.7rem}
.copy h3{font-size:1.18rem;margin-top:18px}
.copy p{margin:0 0 12px}
.copy ul{margin-bottom:12px}
.footer{padding:14px 0 34px}
.footer-shell{padding:20px;border-radius:24px;border:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(8,12,20,.94), rgba(5,7,12,.985));box-shadow:var(--shadow-md)}
.footer-grid{display:grid;grid-template-columns:1.1fr .9fr .9fr .9fr;gap:14px}
.footer-grid strong{display:block;margin-bottom:12px}
.footer-grid .small,.footer-grid p,.footer-grid a{color:var(--muted);font-size:.94rem;line-height:1.7}
.footer-grid a:hover{color:#fff}
.divider{height:1px;background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);margin:18px 0}
.table-list{display:grid;gap:12px}
.table-list .list-row{display:grid;grid-template-columns:1.1fr .8fr .9fr;gap:14px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.06);align-items:center}
.table-list .list-row.header{background:rgba(255,255,255,.02);text-transform:uppercase;font-size:.76rem;letter-spacing:.12em;color:#b0bad9;font-weight:800}
.kbd{font-family:ui-monospace, SFMono-Regular, Menlo, monospace;background:rgba(255,255,255,.06);padding:3px 7px;border-radius:8px;border:1px solid rgba(255,255,255,.08)}
.faq-item button{all:unset;display:flex;justify-content:space-between;align-items:center;width:100%;cursor:pointer;font-weight:850;font-size:1.05rem}
.faq-item [data-faq-a]{display:none;margin-top:14px;color:var(--muted);line-height:1.7}
.faq-item.open [data-faq-a]{display:block}
.small-note{font-size:.92rem;color:var(--muted)}
.center{text-align:center}
.spacer{height:10px}
@media (max-width: 1100px){
  .hero,.page-hero,.surface-grid,.media-card,.family-grid,.grid-4,.grid-3,.grid-2,.split-grid,.notice-grid,.legal-grid,.footer-grid,.visual-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-visual{max-width:300px}
}
@media (max-width: 920px){
  .navlinks{display:none}
  .hamburger{display:block}
  .mobile.open{display:flex}
  .hero,.page-hero,.surface-grid,.media-card,.family-grid,.grid-4,.grid-3,.grid-2,.split-grid,.notice-grid,.legal-grid,.footer-grid,.metric-grid,.chart-stats,.command-strip,.visual-grid{grid-template-columns:1fr}
  .system-row,.table-list .list-row{grid-template-columns:1fr;gap:8px}
  .hero-copy,.hero-visual,.section-shell,.table-shell,.card,.feature-card,.metric-card,.info-card,.product-card,.legal-card,.faq-item{padding:16px}
  .h1,.page-title{font-size:clamp(2.2rem, 11vw, 3.3rem)}
  .section-title{font-size:clamp(1.5rem, 7vw, 2rem)}
  .container{width:min(var(--container), calc(100% - 22px))}
  .hero-visual{max-width:none;justify-self:stretch}
}
@media (min-width: 921px){
  .hero-visual .micro-stack{position:sticky;top:88px}
}


/* Narrow editorial-image correction */
.editorial-page .page-shell > .container{
  width:min(940px, calc(100% - 40px));
}
.editorial-page .page-hero{
  grid-template-columns:minmax(0, 1fr) minmax(220px, 292px);
  gap:12px;
}
.editorial-page .hero-visual{
  max-width:292px;
}
.editorial-page .hero-visual .image-shell{
  width:100%;
  max-width:100%;
  margin:0 auto;
}
.editorial-page .hero-visual .image-shell img{
  aspect-ratio:16/10;
  max-height:148px;
}
.editorial-page .section .media-card{
  grid-template-columns:1fr;
  gap:14px;
}
.editorial-page .section .media-card .copy{
  padding-right:0;
}
.editorial-page .section .media-card .image-shell{
  width:min(100%, 420px);
  max-width:100%;
  margin:0 auto;
}
.editorial-page .section .media-card .image-shell img{
  max-height:144px;
}
.editorial-page .section .image-shell{
  max-width:100%;
  margin-inline:auto;
}
@media (max-width: 920px){
  .editorial-page .page-shell > .container{width:min(940px, calc(100% - 22px));}
  .editorial-page .hero-visual{max-width:none;justify-self:stretch;}
  .editorial-page .hero-visual .image-shell{width:min(100%, 420px);}
}


/* Shelf correction: compact product shelf, no gallery posture */
.shelf-page .page-shell > .container{width:min(1260px, calc(100% - 34px));}
.shelf-page .shelf-hero{grid-template-columns:1fr;gap:0;padding-bottom:8px}
.shelf-page .hero-copy{padding:22px 24px}
.shelf-page .page-subtitle{max-width:72ch}
.shelf-band .section-header{margin-bottom:0}
.shelf-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.shelf-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px;
  min-height:100%;
}
.shelf-card-live{
  box-shadow:0 30px 84px rgba(0,0,0,.58), 0 10px 28px rgba(5,8,14,.34), inset 0 1px 0 rgba(255,255,255,.06), inset 0 0 0 1px rgba(255,255,255,.025), 0 0 0 1px rgba(67,198,255,.08);
}
.shelf-media{display:block}
.shelf-card .image-shell,
.showroom-card .image-shell{
  width:100%;
  padding:8px;
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)),
    linear-gradient(180deg, rgba(12,18,30,.94), rgba(6,10,18,.96));
  border:1px solid rgba(255,255,255,.08);
}
.shelf-card .image-shell img{
  aspect-ratio:5 / 4;
  width:100%;
  max-height:148px !important;
  object-fit:cover;
  object-position:center top;
}
.shelf-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.shelf-title-wrap h3{
  margin:0;
  font-size:1.05rem;
  line-height:1.04;
}
.shelf-title-wrap .role{
  display:block;
  margin-top:5px;
  color:#bcc7e8;
  font-size:.82rem;
  line-height:1.4;
}
.shelf-card p{
  font-size:.92rem;
  line-height:1.55;
}
.shelf-why{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.055);
  color:#dfe6ff;
  font-size:.84rem;
  line-height:1.45;
}
.shelf-card .actions{
  gap:8px;
  margin-top:auto;
}
.shelf-card .btn,
.showroom-card .btn{
  padding:10px 13px;
  font-size:.88rem;
}
.featured-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.showroom-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px;
  align-items:start;
  gap:12px;
  padding:16px;
}
.showroom-top{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:2px;
}
.showroom-card h3{
  margin:0;
  font-size:1.24rem;
}
.showroom-card p{
  font-size:.96rem;
  line-height:1.58;
}
.showroom-card ul{
  margin:12px 0 0;
  padding-left:18px;
}
.showroom-card li{
  line-height:1.6;
}
.showroom-card .image-shell img{
  aspect-ratio:5 / 4;
  width:100%;
  max-height:170px !important;
  object-fit:cover;
  object-position:center top;
}
.showroom-copy{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:100%;
}
.showroom-copy .actions{margin-top:auto}
@media (max-width: 1240px){
  .shelf-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width: 980px){
  .featured-grid{grid-template-columns:1fr;}
  .showroom-card{grid-template-columns:minmax(0,1fr) 210px;}
}
@media (max-width: 920px){
  .shelf-page .page-shell > .container{width:min(1260px, calc(100% - 22px));}
  .shelf-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 680px){
  .shelf-grid,
  .featured-grid{grid-template-columns:1fr;}
  .showroom-card{grid-template-columns:1fr;}
  .showroom-card .image-shell img,
  .shelf-card .image-shell img{max-height:164px !important;}
}

/* Final website cleanup */
.hero-grid{align-items:start}
.hero-visual .image-shell img{object-fit:contain;background:#060812}
.page-hero .hero-visual .image-shell img{object-fit:cover}
.shelf-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.shelf-card{padding:16px}
.shelf-media{display:block;margin-bottom:12px}
.shelf-head{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.shelf-title-wrap h3{margin:0}
.shelf-title-wrap .role{display:block;color:#b7c2e8;font-size:.84rem;margin-top:5px;line-height:1.45}
.shelf-why{padding:12px;border-radius:16px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);color:#e7edff;font-size:.92rem;line-height:1.5}
.shelf-card .actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:auto}
.shelf-card p{color:#c5d0ef}
.story-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.system-story{display:flex;flex-direction:column;gap:12px;padding:18px;border-radius:22px;border:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(15,21,33,.96) 0%, rgba(8,12,20,.94) 100%);box-shadow:var(--shadow-md)}
.story-media .image-shell img, .story-media img{width:100%;border-radius:16px}
.family-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.family-card{display:flex;flex-direction:column;gap:12px;padding:18px;border-radius:22px;border:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(15,21,33,.96) 0%, rgba(8,12,20,.94) 100%);box-shadow:var(--shadow-md)}
.family-media img{width:100%;border-radius:16px}
.quote-block{padding:24px;border-radius:22px;border:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(15,21,33,.96) 0%, rgba(8,12,20,.94) 100%);box-shadow:var(--shadow-md)}
.quote-block blockquote{margin:0;font-size:clamp(1.4rem,2.8vw,2rem);line-height:1.25;font-weight:900;letter-spacing:-.03em}
.quote-block cite{display:block;margin-top:12px;color:var(--muted);font-style:normal}
.notice{padding:18px;border-radius:22px;border:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(15,21,33,.96) 0%, rgba(8,12,20,.94) 100%);box-shadow:var(--shadow-md)}
.inline-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.footer-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.footer-links{display:grid;gap:8px}
@media (max-width: 1100px){
  .shelf-grid,.story-row,.family-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 920px){
  .shelf-grid,.story-row,.family-grid,.footer-grid{grid-template-columns:1fr}
}

/* Approved square poster visuals */
.poster-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:220px;
  background:linear-gradient(180deg, rgba(12,18,30,.96), rgba(6,10,18,.98));
}
.poster-visual img{
  width:100%;
  height:auto;
  max-height:none !important;
  aspect-ratio:auto !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#080c14;
}
.poster-media img{
  aspect-ratio:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#080c14;
}
.poster-frame{
  padding:10px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)),
    linear-gradient(180deg, rgba(12,18,30,.95), rgba(6,10,18,.98));
  border:1px solid rgba(255,255,255,.08);
}
.poster-frame img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  background:#080c14;
}


/* === Global shell alignment pass === */
.site-shell{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 10%, rgba(122,92,255,.16), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(122,92,255,.12), transparent 24%),
    radial-gradient(circle at 52% 0%, rgba(212,166,84,.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 16%);
  opacity:.92;
}
.topbar .container > .nav{
  position:relative;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(9,13,21,.96), rgba(6,9,15,.94));
  box-shadow:0 24px 48px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.05);
}
.topbar .container > .nav::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(120deg, rgba(255,255,255,.06), transparent 32%, transparent 68%, rgba(122,92,255,.08));
}
.topbar .container > .mobile{
  margin-top:10px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(9,13,21,.96), rgba(6,9,15,.94));
  box-shadow:0 20px 40px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
}
.topbar .container > .mobile a{background:rgba(255,255,255,.032); border:1px solid rgba(255,255,255,.05)}
.navcta,.stack-actions,.inline-actions,.actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.btn-secondary{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);color:#fff}
.btn-secondary:hover{box-shadow:0 14px 30px rgba(0,0,0,.26)}
.nav-docs{background:rgba(255,255,255,.03); color:#e8eeff}
.brand-lockup{display:flex;align-items:center;gap:14px;margin-bottom:14px;padding:12px 14px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06)}
.brand-lockup img{width:54px;height:54px;border-radius:16px;object-fit:cover;box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 16px 30px rgba(55,78,160,.22)}
.brand-lockup strong{display:block;font-size:.94rem;letter-spacing:.16em;text-transform:uppercase}
.brand-lockup span{display:block;margin-top:4px;color:#cbd4ef;font-size:.86rem;line-height:1.4}
.page-intro{padding:14px 0 12px}
.page-intro .container{
  position:relative;
  overflow:hidden;
  padding:24px;
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at top left, rgba(122,92,255,.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212,166,84,.06), transparent 24%),
    linear-gradient(180deg, rgba(15,21,33,.96) 0%, rgba(8,12,20,.94) 100%);
  box-shadow:0 30px 84px rgba(0,0,0,.58), 0 10px 28px rgba(5,8,14,.34), inset 0 1px 0 rgba(255,255,255,.05);
}
.page-intro .container::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.07), transparent 28%, transparent 70%, rgba(122,92,255,.08));
}
.page-intro h1{margin:0 0 12px;font-size:clamp(2.2rem, 4vw, 3.3rem);line-height:.96;letter-spacing:-.05em;font-weight:980;position:relative;z-index:1}
.page-intro p{margin:0;max-width:72ch;color:#c8d1ec;line-height:1.65;position:relative;z-index:1}
.kicker,.section-head .kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.045);color:#e7ddbd;font-size:.74rem;font-weight:860;letter-spacing:.14em;text-transform:uppercase;margin-bottom:14px}
.section-head{display:flex;justify-content:space-between;gap:14px;align-items:end;flex-wrap:wrap;margin-bottom:16px}
.section-head h2{margin:0;font-size:clamp(1.6rem, 3vw, 2.15rem);line-height:1.04;letter-spacing:-.04em;font-weight:960}
.section-head p{margin:0;max-width:56ch;color:#bcc7e8;line-height:1.58}
.label{display:inline-flex;align-items:center;gap:8px;padding:7px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.04);color:#e6ecff;font-size:.72rem;font-weight:820;letter-spacing:.08em;text-transform:uppercase}
.label.purple{background:rgba(122,92,255,.12);border-color:rgba(122,92,255,.2);color:#eadfff}
.label.green{background:rgba(39,212,130,.10);border-color:rgba(39,212,130,.2);color:#c7f8dd}
.panel,.surface-card,.spec-card,.mini-card,.notice,.copy.panel{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at top left, rgba(122,92,255,.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212,166,84,.07), transparent 24%),
    linear-gradient(180deg, rgba(15,21,33,.96) 0%, rgba(8,12,20,.94) 100%);
  box-shadow:0 30px 84px rgba(0,0,0,.58), 0 10px 28px rgba(5,8,14,.34), inset 0 1px 0 rgba(255,255,255,.05);
}
.panel::before,.surface-card::before,.spec-card::before,.mini-card::before,.notice::before,.copy.panel::before{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.07), transparent 28%, transparent 70%, rgba(122,92,255,.08));
}
.page-panel,.surface-card,.spec-card,.mini-card,.notice,.copy.panel{padding:20px}
.panel h2,.surface-card h3,.spec-card h3,.mini-card h3,.notice strong,.copy.panel h2{margin:0 0 10px;position:relative;z-index:1}
.panel p,.surface-card p,.spec-card p,.mini-card p,.notice p,.copy.panel p,.copy.panel li{position:relative;z-index:1;color:#c5d0ef;line-height:1.65}
.surface-card h3,.spec-card h3,.mini-card h3{font-size:1.12rem;line-height:1.08;font-weight:900;letter-spacing:-.03em}
.surface-card,.spec-card{display:flex;flex-direction:column;gap:10px}
.split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.support-grid,.legal-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.check-list{display:grid;gap:10px;margin:16px 0 0;padding:0;list-style:none}
.check-list li{display:flex;gap:10px;align-items:flex-start;color:#dbe5ff;line-height:1.55}
.check-list li::before{content:"✓";display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:999px;background:rgba(39,212,130,.12);border:1px solid rgba(39,212,130,.2);color:#aff0ca;font-size:.8rem;font-weight:900;flex:0 0 20px;margin-top:1px}
.visual-stack{display:grid;gap:14px}
.visual-frame{padding:10px;border-radius:22px;background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)), linear-gradient(180deg, rgba(12,18,30,.95), rgba(6,10,18,.98));border:1px solid rgba(255,255,255,.08)}
.visual-frame img{width:100%;display:block;border-radius:16px;background:#080c14}
.notice strong{display:block;font-size:1.05rem;margin-bottom:6px}
.notice p{margin:0}
.footer > .container.footer-grid{
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg, rgba(8,12,20,.94), rgba(5,7,12,.985));
  box-shadow:var(--shadow-md);
}
.footer-brand{display:flex;align-items:center;gap:12px}
.footer-brand img{width:34px;height:34px;border-radius:12px}
.footer-claim{color:#f0d8a4 !important}
.small,.footer .small{color:var(--muted);font-size:.94rem;line-height:1.7}
@media (max-width: 920px){
  .navcta{display:none}
  .split,.support-grid,.legal-links{grid-template-columns:1fr}
  .page-intro .container{padding:18px}
  .brand-lockup{padding:10px 12px}
}

/* Products / line-ladder system */
.products-page .page-subtitle{max-width:78ch}
.ladder-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:16px}
.ladder-card{padding:16px 18px;border-radius:20px;border:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(15,21,33,.86), rgba(8,12,20,.9));box-shadow:var(--shadow-md)}
.ladder-card strong{display:block;font-size:1rem;margin-bottom:6px}
.ladder-card p{margin:0;color:#c6cfea;font-size:.88rem;line-height:1.52}
.ladder-card.core{box-shadow:var(--shadow-md), 0 0 0 1px rgba(39,212,130,.08)}
.ladder-card.operator{box-shadow:var(--shadow-md), 0 0 0 1px rgba(122,92,255,.12)}
.section-shell.compact-shell{padding:20px 22px}
.section-header-block{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;flex-wrap:wrap;margin-bottom:4px}
.section-header-block h2{margin:0;font-size:1.8rem;line-height:1;letter-spacing:-.04em}
.section-header-block p{margin:8px 0 0;color:#c5d0ef;max-width:78ch;line-height:1.62}
.inline-badges{display:flex;gap:8px;flex-wrap:wrap}
.section-note{padding:14px 16px;border-radius:18px;border:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));color:#dfe7ff;line-height:1.58}
.bundle-shell{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;background:linear-gradient(180deg, rgba(12,18,30,.94), rgba(6,10,18,.96));padding:8px;border-radius:18px;border:1px solid rgba(255,255,255,.08)}
.bundle-shell img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:12px;border:1px solid rgba(255,255,255,.07);background:#060812}
.bundle-shell + .bundle-caption{margin-top:8px;color:#bcc7e8;font-size:.82rem;line-height:1.45}
.product-card .price-tag{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;font-size:.76rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.045);color:#d8def5}
.price-tag.core{background:rgba(39,212,130,.09);color:#bff4d8;border-color:rgba(39,212,130,.2)}
.price-tag.operator{background:rgba(122,92,255,.12);color:#e3d9ff;border-color:rgba(122,92,255,.2)}
.preview-divider{height:1px;background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);margin:4px 0}
.operator-overview{display:grid;grid-template-columns:1.1fr .9fr;gap:16px}
.operator-stat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.operator-stat{padding:14px 16px;border-radius:18px;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.03)}
.operator-stat strong{display:block;font-size:1rem;margin-bottom:4px}
.operator-stat span{display:block;color:#bcc7e8;font-size:.9rem;line-height:1.5}
.hero-note{margin-top:18px;padding:16px 18px;border-radius:20px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg, rgba(122,92,255,.10), rgba(255,255,255,.02));color:#e7edff}
.hero-note strong{display:block;margin-bottom:6px}
@media (max-width: 1100px){.ladder-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.operator-overview{grid-template-columns:1fr}.operator-stat-grid{grid-template-columns:1fr 1fr}}
@media (max-width: 760px){.ladder-grid,.operator-stat-grid,.bundle-shell{grid-template-columns:1fr}.section-shell.compact-shell{padding:18px}}


/* === Customer-facing polish pass === */
:root{
  --radius-xl: 6px;
  --radius-lg: 6px;
  --radius-md: 6px;
}
body{font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}
.container{width:min(var(--container), calc(100% - 44px));}
.page-shell{padding:16px 0 44px;}
.section,.page-intro{padding:12px 0;}
.hero,.page-hero,.grid-2,.grid-3,.grid-4,.split-grid,.featured-grid,.shelf-grid,.story-row,.family-grid,.footer-grid,.support-grid,.legal-links,.operator-overview,.operator-stat-grid,.ladder-grid,.command-strip,.media-stack,.visual-stack,.split{gap:16px;}
.nav-shell,.topbar .container > .nav,.topbar .container > .mobile,.command-panel,.panel-frame,.card,.feature-card,.metric-card,.info-card,.product-card,.table-shell,.legal-card,.faq-item,.section-shell,.page-intro .container,.panel,.surface-card,.spec-card,.mini-card,.notice,.copy.panel,.footer > .container.footer-grid,.image-shell,.poster-frame,.visual-frame,.brand-lockup,.ladder-card,.section-note,.operator-stat,.shelf-why,.hero-note,.bundle-shell,.overlay-note{
  border-radius:6px !important;
}
.btn,.btn-primary,.btn-ghost,.btn-soft,.btn-secondary,.navlinks a{border-radius:6px !important;}
.brand img,.footer-brand img,.brand-lockup img,.image-shell img,.visual-frame img,.poster-frame img,.bundle-shell img{border-radius:6px !important;}
.shelf-card,.showroom-card,.system-story,.family-card,.surface-card,.spec-card,.mini-card,.legal-card,.faq-item,.feature-card,.card,.info-card,.metric-card,.product-card{overflow:visible;}
.shelf-card,.showroom-copy,.surface-card,.spec-card,.mini-card,.family-card,.system-story,.product-card{min-height:0;}
.card h3,.feature-card h3,.metric-card h3,.info-card h3,.product-card h3,.legal-card h3,.faq-item h3,.shelf-title-wrap h3,.section-header-block h2,.section-title,.page-title,.h1{overflow-wrap:anywhere; word-break:normal; hyphens:auto; text-wrap:pretty;}
.shelf-title-wrap .role,.section-sub,.page-subtitle,.shelf-card p,.shelf-why,.operator-stat span,.section-note,.hero-note,.lead,.small{overflow-wrap:anywhere;}
.shelf-card p,.shelf-why,.section-note,.operator-stat span,.showroom-card p,.section-sub,.page-subtitle,.hero-note{line-height:1.62;}
.shelf-card .actions,.showroom-copy .actions,.inline-actions,.stack-actions,.navcta,.actions{margin-top:4px;}
.shelf-card .image-shell img{max-height:none !important; aspect-ratio:auto !important; object-fit:contain !important; object-position:center center !important;}
.showroom-card .image-shell img{max-height:none !important; aspect-ratio:auto !important; object-fit:contain !important; object-position:center center !important;}


/* === Atlas XII product architecture === */
.line-subnav{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.line-subnav a{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:6px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03);color:#d7def6;font-size:.88rem;font-weight:780;transition:.2s ease}
.line-subnav a:hover,.line-subnav a.active{background:linear-gradient(135deg, rgba(122,92,255,.16), rgba(212,166,84,.12));border-color:rgba(212,166,84,.22);color:#fff;transform:translateY(-1px)}
.product-line-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.line-card{display:flex;flex-direction:column;gap:14px;padding:18px}
.line-thumb{display:block}
.line-thumb .image-shell img{aspect-ratio:16/10;max-height:190px;object-fit:contain !important;background:#060913}
.line-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.line-head h2,.line-head h3{margin:0;font-size:1.34rem;line-height:1.03;letter-spacing:-.035em}
.kicker-soft{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.04);font-size:.72rem;font-weight:820;letter-spacing:.08em;text-transform:uppercase;color:#dbe4ff}
.line-body{color:#c8d2ee;line-height:1.62}
.meta-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:auto}
.meta-chip{display:inline-flex;align-items:center;padding:7px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.03);font-size:.72rem;font-weight:760;color:#d5def7}
.card-footer-note{padding-top:12px;border-top:1px solid rgba(255,255,255,.08);color:#9da8c8;font-size:.85rem;line-height:1.55}
.products-hero{grid-template-columns:minmax(0,1fr);padding-bottom:0}
.products-hero .hero-copy{padding:24px}
.line-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.line-grid.operator-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.compact-product-card{display:flex;flex-direction:column;gap:14px;padding:16px;transition:.22s ease}
.compact-product-card:hover{transform:translateY(-3px);box-shadow:0 24px 48px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05)}
.product-thumb{display:block}
.product-thumb .image-shell{padding:8px}
.product-thumb .image-shell img{aspect-ratio:1/1;max-height:210px;object-fit:contain !important;background:#05070d}
.product-topline{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.product-title-group h3{margin:0;font-size:1.18rem;line-height:1.06;letter-spacing:-.03em}
.product-label{display:block;margin-top:6px;color:#9fabc9;font-size:.82rem;line-height:1.45}
.product-copy{color:#c7d0ea;line-height:1.62;font-size:.95rem}
.product-actions{display:flex;gap:10px;flex-wrap:wrap}
.product-actions .btn{flex:1 1 auto}
.detail-list{display:grid;gap:14px}
.detail-panel{padding:18px}
.detail-panel-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(240px,.8fr);gap:18px;align-items:start}
.detail-panel h3{margin:0 0 10px;font-size:1.24rem;line-height:1.03;letter-spacing:-.032em}
.detail-panel p{margin:0;color:#c6cfeb;line-height:1.64}
.includes-block{padding:14px 16px;border-radius:6px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)}
.includes-block strong{display:block;margin-bottom:10px;font-size:.86rem;letter-spacing:.08em;text-transform:uppercase;color:#f1d9a3}
.includes-list{display:flex;gap:8px;flex-wrap:wrap}
.includes-list span{display:inline-flex;align-items:center;padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);font-size:.78rem;color:#d9e1f8}
.line-summary-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.summary-box{padding:16px;border-radius:6px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)}
.summary-box strong{display:block;margin-bottom:6px;font-size:.95rem}
.summary-box span{display:block;color:#bcc7e8;line-height:1.55;font-size:.9rem}
.command-preview{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:16px;align-items:start}
.command-preview .image-shell img{aspect-ratio:16/10;max-height:240px;object-fit:cover !important}
.coming-soon-shell{display:grid;gap:16px}
.muted-cta{color:#aab5d3;font-size:.92rem}
.breadcrumbs{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-bottom:10px;color:#98a5c8;font-size:.82rem}
.breadcrumbs a{color:#b7c3e6}
.line-page-title{font-size:clamp(2rem,4.2vw,3rem);line-height:.94;letter-spacing:-.05em;margin:0 0 12px;font-weight:980}
@media (max-width: 1100px){
  .product-line-grid,.line-summary-grid{grid-template-columns:1fr}
  .line-grid,.line-grid.operator-grid,.command-preview,.detail-panel-grid{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .product-actions .btn{width:100%}
}
