
:root{
  --bg:#f4f6fb;
  --bg-2:#ffffff;
  --ink:#0f172a;
  --ink-soft:#475569;
  --line:rgba(15,23,42,.08);
  --line-strong:rgba(15,23,42,.12);
  --card:rgba(255,255,255,.72);
  --card-solid:#ffffff;
  --shadow:0 10px 35px rgba(23,31,56,.08),0 1px 0 rgba(255,255,255,.65) inset;
  --shadow-strong:0 24px 80px rgba(32,47,96,.12);
  --blue:#2b64f6;
  --blue-2:#7c8cff;
  --teal:#13c6b3;
  --purple:#7c5cff;
  --radius:28px;
  --radius-sm:18px;
  --max:1220px;
  --sans:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Inter","Segoe UI",Roboto,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(146,194,255,.22), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(164,144,255,.2), transparent 28%),
    linear-gradient(180deg,#f7f9fc 0%,#f2f5fb 44%,#eef2f8 100%);
  min-height:100vh;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input{font:inherit}
.site-shell{position:relative;overflow:hidden}
.page-noise{
  position:fixed; inset:0; pointer-events:none; opacity:.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.65), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.5), transparent 20%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.42), transparent 22%);
}
.page-glow{
  position:fixed; width:38rem; height:38rem; border-radius:50%; filter:blur(80px); pointer-events:none; opacity:.3;
}
.page-glow-a{top:-10rem; right:-8rem; background:radial-gradient(circle, rgba(117,154,255,.9), transparent 60%)}
.page-glow-b{left:-10rem; top:26rem; background:radial-gradient(circle, rgba(107,226,203,.85), transparent 58%)}
.announcement{
  text-align:center; padding:.8rem 1rem; font-size:.92rem; color:#42506f; border-bottom:1px solid rgba(15,23,42,.06);
  background:rgba(255,255,255,.46); backdrop-filter:blur(20px);
}
.container, .section, .site-header, .site-footer{max-width:var(--max); margin:0 auto; padding-left:24px; padding-right:24px}
.site-header{
  position:sticky; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding-top:18px; padding-bottom:18px;
  background:linear-gradient(180deg, rgba(247,249,252,.86), rgba(247,249,252,.58));
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(15,23,42,.05);
}
.brand{display:flex; align-items:center; gap:14px; min-width:0}
.brand-mark{
  width:44px;height:44px;display:grid;place-items:center;
  border-radius:14px; color:#fff; font-weight:800; letter-spacing:.02em;
  background:linear-gradient(135deg,var(--blue),var(--purple) 65%,#99e4ff);
  box-shadow:0 12px 32px rgba(59,91,243,.25);
}
.brand-copy{display:flex; flex-direction:column; gap:3px}
.brand-copy strong{font-size:1rem}
.brand-copy small{color:var(--ink-soft)}
.site-nav{display:flex; gap:1.4rem; align-items:center}
.site-nav a{color:#5a6785; font-size:.96rem; transition:.2s ease}
.site-nav a:hover{color:var(--ink)}
.header-actions{display:flex; gap:10px}
.button{
  border-radius:999px; padding:.9rem 1.25rem; display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  font-weight:600; border:1px solid transparent; transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover{transform:translateY(-1px)}
.button-primary{
  color:#fff; background:linear-gradient(135deg,#2d61f7,#7589ff 70%,#93eff0); box-shadow:0 18px 40px rgba(50,87,238,.25);
}
.button-ghost{
  color:var(--ink); background:rgba(255,255,255,.7); border-color:rgba(15,23,42,.08); box-shadow:var(--shadow);
}
.section{padding-top:72px; padding-bottom:72px; position:relative}
.hero{
  display:grid; grid-template-columns:1.02fr .98fr; gap:44px; align-items:center; min-height:calc(100vh - 88px);
  padding-top:56px; padding-bottom:40px;
}
.eyebrow{
  margin:0 0 16px; color:#3558c7; font-size:.88rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
}
h1,h2,h3,p{margin:0}
h1{
  font-size:clamp(3.2rem,7vw,5.9rem); line-height:.92; letter-spacing:-.06em; max-width:11ch;
}
.hero-lead, .section-copy{
  margin-top:22px; max-width:62ch; font-size:1.08rem; line-height:1.72; color:var(--ink-soft);
}
.hero-actions{display:flex; gap:12px; margin-top:28px; flex-wrap:wrap}
.store-badges-row{display:flex; gap:14px; align-items:center; flex-wrap:wrap; margin-top:24px}
.store-badge-link img{height:44px; width:auto; filter:drop-shadow(0 10px 18px rgba(15,23,42,.08))}
.hero-stats{
  margin-top:28px; display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px;
}
.hero-stats article{
  padding:18px 18px 20px; border-radius:20px; background:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.8); box-shadow:var(--shadow);
}
.hero-stats strong{display:block; font-size:1.45rem; margin-bottom:6px}
.hero-stats span{display:block; font-size:.94rem; line-height:1.55; color:var(--ink-soft)}
.hero-visual{position:relative}
.hero-visual-frame{
  border-radius:36px; padding:18px; background:rgba(255,255,255,.66); box-shadow:var(--shadow-strong); border:1px solid rgba(255,255,255,.9);
}
.hero-visual-frame img{border-radius:26px; width:100%}
.floating-badge{
  position:absolute; width:min(160px,28vw); background:rgba(255,255,255,.86); padding:10px; border-radius:22px; box-shadow:var(--shadow);
}
.floating-badge-left{left:-18px; bottom:58px}
.floating-badge-right{right:-10px; top:42px}

.section-heading{max-width:760px; margin-bottom:30px}
.section-heading-inline{display:flex; justify-content:space-between; gap:24px; align-items:end; max-width:none}
.section-heading h2{font-size:clamp(2rem,4vw,3.7rem); line-height:1; letter-spacing:-.05em}
.section-grid-intro{padding-top:42px}
.collection-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.collection-card{
  padding:28px; border-radius:var(--radius); background:rgba(255,255,255,.68); border:1px solid rgba(255,255,255,.85); box-shadow:var(--shadow);
}
.collection-index{display:inline-flex; margin-bottom:24px; font-size:.85rem; color:#64748b; border:1px solid rgba(15,23,42,.08); padding:.45rem .7rem; border-radius:999px}
.collection-card h3{font-size:1.55rem; letter-spacing:-.03em}
.collection-card p{margin-top:12px; color:var(--ink-soft); line-height:1.7}
.collection-card small{display:block; margin-top:18px; color:#6c7b98; line-height:1.6}

.human-section{
  display:grid; grid-template-columns:1.05fr .95fr; gap:30px; align-items:center;
}
.human-copy, .human-art-shell{
  border-radius:34px; background:rgba(255,255,255,.66); box-shadow:var(--shadow); border:1px solid rgba(255,255,255,.9)
}
.human-copy{padding:42px}
.human-copy h2{font-size:clamp(2rem,4vw,3.5rem); letter-spacing:-.05em; line-height:1}
.human-points{display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:24px}
.human-points div{padding:16px; border-radius:20px; background:#f7f9fe; border:1px solid rgba(15,23,42,.05)}
.human-points strong{display:block; margin-bottom:7px}
.human-points span{display:block; color:var(--ink-soft); line-height:1.55; font-size:.96rem}
.human-art-shell{padding:16px}
.human-art-shell img{border-radius:26px}

.split-showcase{
  display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:center;
}
.showcase-panel{
  padding:22px; border-radius:34px; background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
  box-shadow:var(--shadow-strong); border:1px solid rgba(255,255,255,.9)
}
.bullet-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:24px;
}
.bullet-grid div{padding:18px; border-radius:22px; background:rgba(255,255,255,.6); border:1px solid rgba(15,23,42,.06)}
.bullet-grid strong{display:block; margin-bottom:8px}
.bullet-grid span{display:block; color:var(--ink-soft); line-height:1.6}

.featured-grid{display:grid; gap:18px}
.featured-card{
  display:grid; grid-template-columns:1fr .9fr; gap:24px; align-items:center;
  padding:28px; border-radius:36px; color:#fff; position:relative; overflow:hidden;
  box-shadow:0 30px 90px rgba(35,52,113,.16);
}
.featured-card::before{
  content:""; position:absolute; inset:auto -10% -44% auto; width:50%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.28), transparent 60%);
  filter:blur(14px)
}
.featured-card-1{background:linear-gradient(135deg,#0f172a,#1d4ed8 55%,#2dd4bf)}
.featured-card-2{background:linear-gradient(135deg,#1f1148,#7c3aed 50%,#fb7185)}
.featured-card-3{background:linear-gradient(135deg,#052b34,#0f766e 58%,#67e8f9)}
.product-pill{
  display:inline-flex; padding:.48rem .76rem; border-radius:999px; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.22); font-size:.82rem;
  backdrop-filter:blur(10px)
}
.featured-copy h3{font-size:clamp(2rem,4vw,3.3rem); line-height:.98; margin-top:18px; letter-spacing:-.05em}
.featured-copy p{margin-top:14px; color:rgba(255,255,255,.82); line-height:1.7; max-width:48ch}
.card-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:22px}
.featured-card .button-primary{background:#fff;color:#0f172a; box-shadow:none}
.featured-card .button-ghost{background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.16)}
.featured-art img{max-height:300px; margin-left:auto}

.catalogue-toolbar{
  display:flex; gap:16px; justify-content:space-between; align-items:center; flex-wrap:wrap; margin-bottom:22px;
}
.search-shell{
  flex:1 1 320px; display:flex; align-items:center; background:rgba(255,255,255,.72); border:1px solid rgba(15,23,42,.07);
  border-radius:999px; padding:0 18px; min-height:58px; box-shadow:var(--shadow);
}
.search-shell input{width:100%; border:0; background:transparent; outline:none; color:var(--ink)}
.chip-row{display:flex; flex-wrap:wrap; gap:10px}
.chip{
  border:1px solid rgba(15,23,42,.08); background:rgba(255,255,255,.68); color:#42506f; padding:.76rem 1rem; border-radius:999px; cursor:pointer; box-shadow:var(--shadow);
}
.chip-active{background:linear-gradient(135deg,#2d61f7,#7990ff); color:#fff; border-color:transparent}
.product-grid{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px;
}
.product-card{
  display:flex; flex-direction:column; min-height:100%; padding:20px; border-radius:30px;
  background:rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.88); box-shadow:var(--shadow);
}
.product-art{
  position:relative; padding:16px; border-radius:24px; overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(240,244,255,.92));
}
.product-art::before{
  content:""; position:absolute; inset:auto auto -20% -10%; width:60%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, var(--accent1, #8ddcff), transparent 60%); opacity:.5; filter:blur(12px)
}
.product-art::after{
  content:""; position:absolute; inset:-8% -5% auto auto; width:54%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, var(--accent2, #7c5cff), transparent 58%); opacity:.34; filter:blur(16px)
}
.product-art img{position:relative; z-index:2; aspect-ratio:1.2/1; object-fit:contain}
.product-meta{margin-top:18px; display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.product-label{
  display:inline-flex; font-size:.78rem; color:#4762c8; background:#edf2ff; border-radius:999px; padding:.46rem .7rem; font-weight:700;
}
.product-price{font-weight:700; color:#0f172a}
.product-card h3{font-size:1.36rem; letter-spacing:-.03em; margin-top:12px}
.product-summary{margin-top:12px; color:var(--ink-soft); line-height:1.68; font-size:.96rem}
.feature-list{display:flex; flex-wrap:wrap; gap:8px; margin-top:16px}
.feature-tag{
  display:inline-flex; align-items:center; padding:.45rem .66rem; border-radius:999px; background:#f7f9fc; color:#50617f; border:1px solid rgba(15,23,42,.06); font-size:.8rem
}
.product-footer{display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:auto; padding-top:20px}
.store-mini img{height:32px; width:auto}
.product-link{color:#2b64f6; font-weight:700}
.empty-state{margin-top:18px; color:var(--ink-soft)}

.platform-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.platform-card{
  display:flex; flex-direction:column; justify-content:space-between; gap:24px; min-height:100%;
  padding:24px; border-radius:28px; background:rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.9); box-shadow:var(--shadow);
}
.platform-copy span{display:block; color:#5970c6; font-weight:700; margin-bottom:12px}
.platform-copy h3{font-size:1.6rem; letter-spacing:-.03em}
.platform-copy p{margin-top:10px; color:var(--ink-soft); line-height:1.68}
.platform-card img{height:44px; width:auto}

.bottom-cta{padding-top:58px; padding-bottom:90px}
.cta-card{
  display:flex; justify-content:space-between; gap:24px; align-items:center; padding:34px; border-radius:34px;
  background:linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.66)); border:1px solid rgba(255,255,255,.92); box-shadow:var(--shadow-strong)
}
.cta-card h2{font-size:clamp(1.9rem,4vw,3rem); line-height:1; letter-spacing:-.04em; max-width:14ch}
.cta-actions{display:flex; gap:12px; flex-wrap:wrap}

.site-footer{
  display:flex; justify-content:space-between; gap:30px; align-items:flex-start; padding-top:24px; padding-bottom:48px;
  color:#5f6f90;
}
.footer-links{display:flex; gap:16px; flex-wrap:wrap}
.footer-links a:hover{color:var(--ink)}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0
}
[data-reveal]{opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease}
[data-reveal].is-visible{opacity:1; transform:none}

/* Product page */
.product-page main{padding-bottom:84px}
.breadcrumb{display:flex; gap:10px; align-items:center; color:#6b7b98; font-size:.94rem; padding-top:12px}
.breadcrumb a{color:#4762c8}
.product-hero{
  display:grid; grid-template-columns:.98fr 1.02fr; gap:36px; align-items:center; padding-top:42px;
}
.product-hero-art{
  padding:18px; border-radius:34px; background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68)); box-shadow:var(--shadow-strong); border:1px solid rgba(255,255,255,.92);
}
.product-hero-copy h1{font-size:clamp(2.7rem,6vw,5rem); max-width:10ch}
.kicker{display:inline-flex; padding:.46rem .74rem; border-radius:999px; background:#edf2ff; color:#3154bf; font-size:.84rem; font-weight:700}
.price-row{display:flex; gap:12px; align-items:center; margin-top:20px}
.big-price{font-size:1.9rem; font-weight:800; letter-spacing:-.04em}
.muted{color:var(--ink-soft); line-height:1.72}
.product-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:24px}
.panel-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:28px}
.info-panel{
  padding:24px; border-radius:26px; background:rgba(255,255,255,.72); border:1px solid rgba(255,255,255,.92); box-shadow:var(--shadow)
}
.info-panel h2{font-size:1.4rem; letter-spacing:-.03em}
.info-panel ul{padding-left:1.15rem; margin:16px 0 0}
.info-panel li{margin:.55rem 0; color:var(--ink-soft); line-height:1.6}
.info-strip{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:22px;
}
.info-strip .stat{
  padding:16px 18px; border-radius:20px; background:rgba(255,255,255,.72); box-shadow:var(--shadow); border:1px solid rgba(255,255,255,.92)
}
.info-strip strong{display:block; font-size:1rem}
.info-strip span{display:block; margin-top:6px; color:var(--ink-soft); line-height:1.5; font-size:.94rem}
.platform-badge-inline img{height:40px; width:auto}
.note-card{margin-top:18px; padding:20px; border-radius:24px; background:#f7f9fe; border:1px solid rgba(15,23,42,.06)}
.note-card p{color:var(--ink-soft); line-height:1.7}
.related-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:18px}
.related-card{
  padding:18px; border-radius:24px; background:rgba(255,255,255,.72); border:1px solid rgba(255,255,255,.92); box-shadow:var(--shadow)
}
.related-card h3{font-size:1.18rem; letter-spacing:-.03em}
.related-card p{margin-top:10px; color:var(--ink-soft); line-height:1.64; font-size:.95rem}
.related-card a{margin-top:14px; display:inline-flex; font-weight:700; color:#3154bf}

@media (max-width: 1080px){
  .hero, .human-section, .split-showcase, .product-hero{grid-template-columns:1fr}
  .site-nav{display:none}
  .hero{min-height:auto}
  .hero-visual{order:-1}
  .section-heading-inline, .cta-card, .site-footer{flex-direction:column; align-items:flex-start}
  .collection-grid, .product-grid, .platform-grid, .panel-grid, .related-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 760px){
  .site-header{padding-top:14px; padding-bottom:14px}
  .header-actions .button-ghost{display:none}
  .section{padding-top:56px; padding-bottom:56px}
  h1{max-width:none}
  .hero-stats, .human-points, .bullet-grid, .platform-grid, .collection-grid, .product-grid, .panel-grid, .related-grid, .info-strip{grid-template-columns:1fr}
  .featured-card{grid-template-columns:1fr}
  .featured-art img{max-height:260px; margin:10px auto 0}
  .floating-badge{display:none}
  .cta-actions, .product-actions{width:100%}
  .cta-actions .button, .product-actions .button{flex:1 1 220px}
}

/* V4 store clean adjustments */
.chip-row{flex-wrap:wrap}
.store-note{margin-top:28px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:28px;padding:22px 24px;color:var(--muted)}
.section-microgrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.section-microgrid article{padding:24px;border-radius:28px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.section-microgrid strong{display:block;font-size:1.15rem;margin-bottom:8px}
@media (max-width:900px){.section-microgrid{grid-template-columns:1fr}}


/* V5 store-asset-ready additions */
.code-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.56rem .82rem;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(15,23,42,.07);
  color:var(--ink-soft);
  font-size:.88rem;
}
.asset-path{
  margin-top:20px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(15,23,42,.06);
  color:var(--ink-soft);
  line-height:1.7;
}
.asset-path code, .asset-tree code{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:.93em;
}
.asset-tree{
  margin-top:18px;
  padding:18px 20px;
  border-radius:22px;
  background:#0f172a;
  color:#e2e8f0;
  overflow:auto;
  line-height:1.65;
}
.product-card .product-art img,
.product-hero-art .product-art img,
.store-shot img{
  object-fit:contain;
}
.store-source-note{
  margin-top:16px;
  color:var(--ink-soft);
  font-size:.95rem;
}
.store-shot-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:20px;
}
.store-shot{
  padding:16px;
  border-radius:26px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.92);
  box-shadow:var(--shadow);
}
.store-shot img{
  width:100%;
  aspect-ratio:16/10;
  border-radius:18px;
  background:linear-gradient(180deg,#f8fbff 0%,#eef3ff 100%);
  display:block;
}
.store-shot strong{
  display:block;
  margin-top:12px;
  font-size:1rem;
}
.store-shot small{
  display:block;
  margin-top:6px;
  color:var(--ink-soft);
}
.empty-screenshot-note[hidden]{display:none}
.empty-screenshot-note{
  margin-top:18px;
  padding:18px 20px;
  border-radius:20px;
  background:#f7f9fe;
  border:1px solid rgba(15,23,42,.06);
  color:var(--ink-soft);
}
.product-card .product-art{
  min-height:240px;
}
.product-card .product-art img{
  max-height:220px;
}
.hero-store-strip{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.hero-store-strip .code-pill{
  backdrop-filter: blur(12px);
}
.asset-ready-banner{
  margin-top:24px;
  padding:16px 18px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.92);
  box-shadow:var(--shadow);
}
.asset-ready-banner strong{
  display:block;
  font-size:1rem;
}
.asset-ready-banner span{
  display:block;
  margin-top:6px;
  color:var(--ink-soft);
  line-height:1.65;
}
@media (max-width:760px){
  .store-shot-grid{grid-template-columns:1fr}
}
