*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cyan: #00d4b8;
  --cyan-bright: #00f0d0;
  --cyan-mid: #009e8a;
  --cyan-dim: #003d34;
  --cyan-faint: rgba(0,212,184,.05);
  --white: #f0f5f4;
  --text: #b8ccc8;
  --text-dim: #7a948e;
  --text-muted: #344845;
  --black: #080c0b;
  --surface: #0d1413;
  --card-bg: rgba(13,20,19,.8);
  --card-border: rgba(0,212,184,.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  font-family: var(--font);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(0,212,184,.15); color: var(--cyan-bright); }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--cyan); color: var(--black);
  padding: .6rem 1.2rem; border-radius: 4px;
  font-size: .8rem; font-weight: 600;
  z-index: 999; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

*:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── CANVAS ── */
#gridCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .6; }

/* ── GRAIN ── */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  z-index: 1; pointer-events: none; opacity: .012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: gr .5s steps(1) infinite;
}
@keyframes gr { 0%,100%{transform:translate(0,0)} 25%{transform:translate(-1%,2%)} 50%{transform:translate(2%,-1%)} 75%{transform:translate(-1%,1%)} }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 3rem; height: 60px;
  background: rgba(8,12,11,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,212,184,.04);
  opacity: 0; animation: fadeIn .6s ease forwards 1.5s;
}
.nav-logo {
  font-size: .7rem; font-weight: 700; letter-spacing: .3em;
  color: var(--white); text-decoration: none; text-transform: uppercase;
}
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .68rem; font-weight: 500; letter-spacing: .03em;
  color: var(--text-dim); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-cta {
  color: var(--black); background: var(--cyan);
  padding: .4rem 1rem; border-radius: 4px;
  font-weight: 600; font-size: .62rem; letter-spacing: .05em;
  transition: background .2s, box-shadow .2s;
}
.nav-links a.nav-cta:hover { background: var(--cyan-bright); box-shadow: 0 0 16px rgba(0,212,184,.2); }

/* ── HERO ── */
.hero {
  position: relative; z-index: 10; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.hero-video-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, transparent 0%, rgba(8,12,11,.5) 55%, rgba(8,12,11,.95) 100%),
    linear-gradient(to bottom, rgba(8,12,11,.4) 0%, transparent 30%, transparent 60%, rgba(8,12,11,1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; padding: 2rem; max-width: 800px;
}
/* ── OBSIDIAN GRID SECTION LOGO ── */
.og-heading-row {
  display: flex; align-items: flex-start; gap: 1.5rem;
}
.og-section-logo {
  width: clamp(56px, 7vw, 80px); height: auto;
  flex-shrink: 0; margin-top: .2rem;
  opacity: .85;
  filter: drop-shadow(0 0 16px rgba(255,255,255,.04));
}

.hero-label {
  font-family: var(--mono); font-size: .58rem; font-weight: 500;
  letter-spacing: .4em; color: var(--cyan); text-transform: uppercase;
  margin-bottom: 1.8rem; opacity: 0; animation: riseIn .7s ease forwards 1s;
}
.hero-title {
  font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1; letter-spacing: -.025em; color: var(--white);
  opacity: 0; animation: riseIn .8s ease forwards 1.2s; margin-bottom: 1.3rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(.92rem, 1.5vw, 1.05rem); font-weight: 300;
  color: var(--text-dim); max-width: 560px; line-height: 1.75;
  opacity: 0; animation: riseIn .7s ease forwards 1.6s; margin-bottom: 2rem;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: riseIn .7s ease forwards 1.9s; margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; align-items: center;
  font-family: var(--mono); font-size: .55rem; letter-spacing: .06em;
  color: var(--text-muted); opacity: 0; animation: riseIn .6s ease forwards 2.3s;
}
.proof-sep { color: var(--cyan-dim); }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font); font-size: .7rem; font-weight: 600;
  letter-spacing: .04em; text-decoration: none; color: var(--black);
  background: var(--cyan); padding: .7rem 1.8rem; border-radius: 4px;
  transition: all .25s; box-shadow: 0 0 20px rgba(0,212,184,.1);
}
.btn-primary:hover { background: var(--cyan-bright); box-shadow: 0 0 32px rgba(0,212,184,.2); transform: translateY(-1px); }
.btn-primary svg { width: 14px; height: 14px; }
.btn-ghost {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 500; letter-spacing: .04em;
  text-decoration: none; color: var(--text-dim); padding: .7rem 1.2rem; transition: color .2s;
}
.btn-ghost:hover { color: var(--white); }

.scroll-tell { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: fadeIn 1s forwards 2.8s; }
.scroll-tell span { font-family: var(--mono); font-size: .48rem; letter-spacing: .35em; color: var(--text-muted); text-transform: uppercase; }
.scroll-line { width: 1px; height: 30px; background: linear-gradient(to bottom, var(--cyan-dim), transparent); animation: pulse 2.5s ease-in-out infinite 3s; }
@keyframes pulse { 0%,100%{opacity:.2} 50%{opacity:.8} }

/* ── SHARED SECTION ── */
.section { position: relative; z-index: 10; padding: 6rem 3rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-divider { position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--card-border), transparent); }
.section-num { font-family: var(--mono); font-size: .55rem; font-weight: 500; letter-spacing: .25em; color: var(--cyan-mid); text-transform: uppercase; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -.02em; margin: .7rem 0 .8rem; }
.section-title em { font-style: normal; background: linear-gradient(135deg, var(--cyan), var(--cyan-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: .9rem; font-weight: 300; line-height: 1.75; color: var(--text-dim); max-width: 520px; }

/* ── STACK CARDS ── */
.stack-grid { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.stack-card {
  padding: 2.5rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
  backdrop-filter: blur(6px); transition: all .3s;
}
.stack-card:hover { border-color: rgba(0,212,184,.15); box-shadow: 0 0 40px rgba(0,212,184,.03); }
.stack-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.stack-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .55rem; font-weight: 500; letter-spacing: .15em;
  color: var(--cyan); text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.stack-maturity {
  font-family: var(--mono); font-size: .52rem; font-weight: 500; letter-spacing: .1em;
  padding: .25rem .7rem; border-radius: 3px; text-transform: uppercase;
}
.mat-live { color: #00d4b8; background: rgba(0,212,184,.08); border: 1px solid rgba(0,212,184,.15); }
.mat-progress { color: #d4a800; background: rgba(212,168,0,.06); border: 1px solid rgba(212,168,0,.12); }
.mat-planned { color: var(--text-muted); background: rgba(52,72,69,.3); border: 1px solid rgba(52,72,69,.5); }

.stack-name { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }

.stack-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.5rem; }
.stack-meta { }
.stack-meta-label { font-family: var(--mono); font-size: .52rem; letter-spacing: .15em; color: var(--cyan-mid); text-transform: uppercase; margin-bottom: .3rem; }
.stack-meta-value { font-size: .8rem; font-weight: 300; line-height: 1.6; color: var(--text-dim); }

.stack-specs { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; }
.stack-specs li {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .03em;
  color: var(--text-muted); padding: .3rem .7rem;
  background: rgba(0,212,184,.03); border: 1px solid rgba(0,212,184,.05);
  border-radius: 3px; transition: color .2s;
}
.stack-card:hover .stack-specs li { color: var(--text-dim); border-color: rgba(0,212,184,.08); }

/* ── OBSIDIAN GRID MODULE CARDS ── */
.og-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.og-card {
  padding: 2.2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
  backdrop-filter: blur(6px); transition: all .3s;
}
.og-card:hover { border-color: rgba(0,212,184,.15); box-shadow: 0 0 40px rgba(0,212,184,.03); }
.og-card-optional { border-style: dashed; }
.og-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.og-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .52rem; font-weight: 500; letter-spacing: .15em;
  color: var(--cyan); text-transform: uppercase;
}
.badge-optional { color: var(--text-muted); }
.badge-dot-dim { background: var(--text-muted); }
.og-maturity {
  font-family: var(--mono); font-size: .5rem; font-weight: 500; letter-spacing: .1em;
  padding: .22rem .6rem; border-radius: 3px; text-transform: uppercase;
}
.og-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.og-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.2rem; }
.og-meta {}
.og-meta-label { font-family: var(--mono); font-size: .48rem; letter-spacing: .15em; color: var(--cyan-mid); text-transform: uppercase; margin-bottom: .2rem; }
.og-meta-value { font-size: .76rem; font-weight: 300; line-height: 1.55; color: var(--text-dim); }
.og-specs { list-style: none; display: flex; flex-wrap: wrap; gap: .25rem; }
.og-specs li {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .02em;
  color: var(--text-muted); padding: .25rem .6rem;
  background: rgba(0,212,184,.03); border: 1px solid rgba(0,212,184,.05);
  border-radius: 3px; transition: color .2s;
}
.og-card:hover .og-specs li { color: var(--text-dim); border-color: rgba(0,212,184,.08); }
.og-card-optional .og-specs li { background: rgba(52,72,69,.15); border-color: rgba(52,72,69,.3); }

/* ── ARCHITECTURE ── */
.arch-block { margin-top: 2.5rem; }
.arch-label {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .2em;
  color: var(--cyan-mid); text-transform: uppercase; margin-bottom: .8rem;
}
.arch-diagram {
  padding: 2.5rem 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px; overflow-x: auto;
}
.arch-diagram svg { display: block; margin: 0 auto; width: 100%; max-width: 900px; height: auto; }

/* ── USE CASES ── */
.cases-grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.case-card {
  padding: 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px; transition: all .3s;
}
.case-card:hover { border-color: rgba(0,212,184,.15); box-shadow: 0 0 30px rgba(0,212,184,.03); }
.case-icon { font-family: var(--mono); font-size: .6rem; font-weight: 500; color: var(--cyan); letter-spacing: .15em; margin-bottom: 1rem; }
.case-name { font-size: .92rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.case-field { font-size: .78rem; font-weight: 300; line-height: 1.6; color: var(--text-dim); margin-bottom: .6rem; }
.case-label { font-family: var(--mono); font-size: .52rem; letter-spacing: .12em; color: var(--cyan-mid); text-transform: uppercase; margin-right: .4rem; }

/* ── ROADMAP ── */
.roadmap-grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.roadmap-card {
  padding: 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
}
.roadmap-status {
  font-family: var(--mono); font-size: .52rem; font-weight: 500; letter-spacing: .12em;
  padding: .25rem .7rem; border-radius: 3px; text-transform: uppercase;
  display: inline-block; margin-bottom: 1rem;
}
.status-now { color: #00d4b8; background: rgba(0,212,184,.08); border: 1px solid rgba(0,212,184,.15); }
.status-next { color: #d4a800; background: rgba(212,168,0,.06); border: 1px solid rgba(212,168,0,.12); }
.status-later { color: var(--text-muted); background: rgba(52,72,69,.3); border: 1px solid rgba(52,72,69,.5); }
.roadmap-name { font-size: .92rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; }
.roadmap-desc { font-size: .8rem; font-weight: 300; line-height: 1.65; color: var(--text-dim); margin-bottom: 1rem; }
.roadmap-criterion {
  font-size: .72rem; font-weight: 300; line-height: 1.6; color: var(--text-muted);
  padding-top: .8rem; border-top: 1px solid var(--card-border);
}
.roadmap-criterion span { font-family: var(--mono); font-size: .52rem; letter-spacing: .1em; color: var(--cyan-mid); text-transform: uppercase; margin-right: .3rem; }

/* ── WHY ROOTSTAR ── */
.why-grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.why-card { padding: 1.8rem; border-left: 2px solid var(--cyan-dim); transition: border-color .3s; }
.why-card:hover { border-color: var(--cyan); }
.why-title { font-size: .85rem; font-weight: 600; color: var(--white); margin-bottom: .4rem; }
.why-desc { font-size: .8rem; font-weight: 300; color: var(--text-dim); line-height: 1.65; }

/* ── TEAM ── */
.team-grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.team-card {
  padding: 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px; transition: all .3s;
}
.team-card:hover { border-color: rgba(0,212,184,.15); }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.team-role { font-family: var(--mono); font-size: .55rem; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; margin-bottom: 1rem; }
.team-bio { font-size: .82rem; font-weight: 300; line-height: 1.7; color: var(--text-dim); }

/* ── CTA ── */
.cta-section { position: relative; z-index: 10; padding: 7rem 3rem; text-align: center; }
.cta-section .section-divider { left: 15%; right: 15%; }
.cta-title { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 800; color: var(--white); letter-spacing: -.02em; margin-bottom: .8rem; }
.cta-title em { font-style: normal; background: linear-gradient(135deg, var(--cyan), var(--cyan-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { font-size: .9rem; font-weight: 300; color: var(--text-dim); max-width: 460px; margin: 0 auto 2rem; line-height: 1.65; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 10; border-top: 1px solid var(--card-border);
  padding: 2.5rem 3rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.foot-logo { font-weight: 700; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.foot-logo .r { color: var(--white); }
.foot-logo .s { color: var(--cyan); }
.foot-tag { font-size: .58rem; color: var(--text-muted); margin-top: .2rem; letter-spacing: .04em; }
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a { font-size: .58rem; letter-spacing: .06em; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--cyan); }
.foot-copy { font-size: .52rem; color: var(--text-muted); letter-spacing: .06em; }
.foot-legal {
  width: 100%; display: flex; justify-content: center; gap: .6rem; align-items: center;
  font-size: .5rem; letter-spacing: .08em; color: var(--text-muted);
  margin-top: .5rem; padding-top: 1rem; border-top: 1px solid rgba(52,72,69,.4);
}
.foot-legal a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.foot-legal a:hover { color: var(--cyan); }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes riseIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ── */
.legal-page { position: relative; z-index: 10; padding: 10rem 3rem 6rem; max-width: 860px; margin: 0 auto; }
.legal-title { font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 800; color: var(--white); margin-bottom: 2rem; }
.legal-content h2 { font-size: 1rem; font-weight: 700; color: var(--white); margin: 2rem 0 .6rem; }
.legal-content p { font-size: .85rem; line-height: 1.85; color: var(--text-dim); margin-bottom: .7rem; font-weight: 300; }
.legal-content ul, .legal-content ol { margin: .6rem 0 1rem 1.5rem; color: var(--text-dim); }
.legal-content li { font-size: .82rem; line-height: 1.85; }
.legal-content strong { color: var(--text); font-weight: 500; }
.legal-content a { color: var(--cyan); text-decoration: none; }
.legal-content a:hover { color: var(--cyan-bright); }
.legal-content hr { border: none; border-top: 1px solid var(--text-muted); margin: 2rem 0; }

/* ── VELITHRA DESKTOP ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.vd-logo { height: clamp(36px, 5vw, 52px); width: auto; margin-bottom: 1rem; filter: drop-shadow(0 0 12px rgba(255,255,255,.04)); }
.vd-subhead { font-family: var(--mono); font-size: .65rem; letter-spacing: .15em; color: var(--cyan); text-transform: uppercase; margin-bottom: .5rem; max-width: none; }
.vd-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.vd-card {
  padding: 1.8rem 1.4rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
  border-top: 2px solid var(--cyan-dim); transition: all .3s;
}
.vd-card:hover { border-color: rgba(0,212,184,.15); border-top-color: var(--cyan); box-shadow: 0 0 30px rgba(0,212,184,.03); }
.vd-num { font-family: var(--mono); font-size: .48rem; letter-spacing: .2em; color: var(--cyan-mid); margin-bottom: .8rem; }
.vd-name { font-size: .88rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.vd-desc { font-size: .76rem; font-weight: 300; line-height: 1.55; color: var(--text-dim); }
.vd-footer {
  margin-top: 2rem; text-align: center;
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .12em; color: var(--text-muted);
  padding: 1rem 0; border-top: 1px solid var(--card-border);
}
.vd-cta { margin-top: 1.5rem; text-align: center; }

/* ── APPLIED PROGRAMS ── */
.applied-grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.applied-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 6px; overflow: hidden; transition: all .3s;
  display: flex; flex-direction: column;
}
.applied-card:hover { border-color: rgba(0,212,184,.15); box-shadow: 0 0 40px rgba(0,212,184,.03); }
.applied-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--black); }
.applied-img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .85; transition: opacity .3s; }
.applied-card:hover .applied-img { opacity: 1; }
.applied-content { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.applied-badge {
  font-family: var(--mono); font-size: .48rem; font-weight: 500;
  letter-spacing: .15em; color: var(--text-muted); text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 3px;
  background: rgba(52,72,69,.3); border: 1px solid rgba(52,72,69,.5);
  display: inline-block; width: fit-content; margin-bottom: .8rem;
}
.applied-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.applied-desc { font-size: .78rem; font-weight: 300; line-height: 1.6; color: var(--text-dim); flex: 1; margin-bottom: 1rem; }
.applied-caption { font-family: var(--mono); font-size: .5rem; letter-spacing: .06em; color: var(--text-muted); }
.applied-footer {
  margin-top: 2rem; text-align: center;
  font-size: .78rem; font-weight: 300; color: var(--text-muted); line-height: 1.5;
}

/* ── PRICING PAGE ── */
.pricing-hero {
  position: relative; z-index: 10;
  padding: 10rem 3rem 4rem;
}
.pricing-h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.1; letter-spacing: -.02em;
  margin: .7rem 0 1rem;
}
.pricing-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-intro {
  font-size: .95rem; font-weight: 300; line-height: 1.75;
  color: var(--text-dim); max-width: 600px;
}

/* Commercial model */
.model-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.model-item {
  padding: 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
}
.model-num { font-family: var(--mono); font-size: .55rem; color: var(--cyan-mid); letter-spacing: .15em; margin-bottom: .8rem; }
.model-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.model-type { font-family: var(--mono); font-size: .52rem; letter-spacing: .15em; color: var(--cyan); text-transform: uppercase; margin-bottom: .8rem; }
.model-desc { font-size: .8rem; font-weight: 300; line-height: 1.6; color: var(--text-dim); }
.model-note {
  margin-top: 1.5rem; padding: 1rem 1.5rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .06em;
  color: var(--text-muted); border-left: 2px solid var(--cyan-dim);
}

/* Pricing cards */
.pricing-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pricing-card {
  padding: 2.5rem 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
  display: flex; flex-direction: column; transition: all .3s;
}
.pricing-card:hover { border-color: rgba(0,212,184,.15); box-shadow: 0 0 40px rgba(0,212,184,.03); }
.pricing-card-featured { border-color: rgba(0,212,184,.2); }

.pricing-tier {
  font-family: var(--mono); font-size: .65rem; font-weight: 500;
  letter-spacing: .25em; color: var(--cyan); text-transform: uppercase;
  margin-bottom: .5rem;
}
.pricing-for { font-size: .82rem; font-weight: 300; color: var(--text-dim); line-height: 1.5; margin-bottom: 1.5rem; }

.pricing-prices { margin-bottom: 1.5rem; }
.pricing-line { margin-bottom: .5rem; display: flex; align-items: baseline; gap: .4rem; }
.pricing-amount { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.pricing-period { font-size: .68rem; font-weight: 400; color: var(--text-dim); }
.pricing-line-optional .pricing-amount { font-size: 1rem; color: var(--text); }
.pricing-line-optional .pricing-period { color: var(--text-muted); }

.pricing-includes-label {
  font-family: var(--mono); font-size: .5rem; letter-spacing: .2em;
  color: var(--cyan-mid); text-transform: uppercase;
  margin-bottom: .8rem; padding-top: 1rem; border-top: 1px solid var(--card-border);
}
.pricing-includes { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.pricing-includes li {
  font-size: .76rem; font-weight: 300; color: var(--text-dim); line-height: 1.5;
  display: flex; align-items: flex-start; gap: .4rem;
}
.pricing-includes li::before { content: ''; width: 4px; height: 4px; border-radius: 1px; background: var(--cyan-dim); flex-shrink: 0; margin-top: .45rem; }
.pricing-card-featured .pricing-includes li::before { background: var(--cyan); }

/* IP grid */
.ip-grid {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .5rem;
}
.ip-item {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .04em;
  color: var(--text-dim); padding: .5rem 1rem;
  background: rgba(0,212,184,.03); border: 1px solid rgba(0,212,184,.06);
  border-radius: 4px;
}

/* Hardware grid */
.hw-grid { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hw-item {
  padding: 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
}
.hw-label { font-family: var(--mono); font-size: .52rem; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; margin-bottom: .6rem; }
.hw-name { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.hw-desc { font-size: .8rem; font-weight: 300; line-height: 1.6; color: var(--text-dim); }
.hw-note {
  margin-top: 1.5rem; font-size: .78rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6;
}

/* License terms */
.terms-grid { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.terms-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 1rem;
  padding: 1.5rem 0; border-bottom: 1px solid rgba(0,212,184,.04);
}
.terms-num {
  font-family: var(--mono); font-size: .65rem; font-weight: 500;
  color: var(--cyan-dim); padding-top: .15rem;
}
.terms-name { font-size: .88rem; font-weight: 600; color: var(--white); margin-bottom: .4rem; }
.terms-desc { font-size: .78rem; font-weight: 300; line-height: 1.65; color: var(--text-dim); }

/* Operating principle */
.pricing-principle { padding: 5rem 3rem; }
.principle-line {
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  margin-bottom: .8rem;
}
.principle-canonical {
  font-size: .82rem; font-weight: 300; color: var(--text-dim);
  line-height: 1.6; max-width: 600px; margin: 0 auto;
}

/* ── HERO MICRO ── */
.hero-micro {
  font-family: var(--mono); font-size: .58rem; font-weight: 500;
  letter-spacing: .15em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 2rem;
  opacity: 0; animation: riseIn .6s ease forwards 1.8s;
}

/* ── TIER GRID (3-layer model) ── */
.tier-grid {
  margin-top: 3rem; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.tier-card {
  padding: 2.2rem 2rem; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: 6px;
  border-top: 2px solid var(--card-border);
  backdrop-filter: blur(6px); transition: all .3s;
}
.tier-card:hover { border-color: rgba(0,212,184,.15); box-shadow: 0 0 30px rgba(0,212,184,.03); }
.tier-infra { border-top-color: var(--cyan); }
.tier-ops { border-top-color: #d4a800; }
.tier-interface { border-top-color: var(--text-muted); }

.tier-level {
  font-family: var(--mono); font-size: .5rem; font-weight: 500;
  letter-spacing: .2em; color: var(--cyan-mid); text-transform: uppercase;
  margin-bottom: .8rem;
}
.tier-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.tier-desc { font-size: .82rem; font-weight: 300; line-height: 1.65; color: var(--text-dim); margin-bottom: 1.2rem; }
.tier-specs { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.tier-specs li {
  font-family: var(--mono); font-size: .56rem; letter-spacing: .03em;
  color: var(--text-muted); padding: .25rem 0;
  border-bottom: 1px solid rgba(0,212,184,.04);
  display: flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.tier-card:hover .tier-specs li { color: var(--text-dim); }
.tier-specs li::before { content: ''; width: 4px; height: 4px; border-radius: 1px; background: var(--cyan-dim); flex-shrink: 0; }

.tier-footer {
  margin-top: 2rem; text-align: center;
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .15em; color: var(--text-muted);
  padding: 1rem 0; border-top: 1px solid var(--card-border);
}

/* ── CLARITY GRID (is / is-not) ── */
.clarity-grid {
  margin-top: 2.5rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--card-border); border-radius: 6px;
  overflow: hidden;
}
.clarity-col { padding: 2.5rem; background: var(--card-bg); }
.clarity-is { border-right: 1px solid var(--card-border); }
.clarity-heading {
  font-family: var(--mono); font-size: .58rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.clarity-is .clarity-heading { color: var(--cyan); }
.clarity-not .clarity-heading { color: var(--text-muted); }

.clarity-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.clarity-list li {
  font-size: .85rem; font-weight: 400; line-height: 1.5;
  display: flex; align-items: center; gap: .6rem;
}
.clarity-is .clarity-list li { color: var(--text); }
.clarity-is .clarity-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.clarity-not .clarity-list li { color: var(--text-muted); }
.clarity-not .clarity-list li::before {
  content: ''; width: 6px; height: 1.5px;
  background: var(--text-muted); flex-shrink: 0;
}

/* ── CTA ACTIONS ── */
.cta-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* ══════════════════════════════════════════ COMPANION OPS (co-) ══ */
/* Scoped prefix: co-  |  No global rules modified                   */

/* ── Hero launch line (scoped to hero context, single use) ── */
.hero-launch-line {
  font-size: .8rem; font-weight: 500;
  color: var(--cyan); letter-spacing: .02em;
  margin-top: .75rem; margin-bottom: .25rem;
  opacity: .9;
}
.hero-launch-byline {
  color: var(--text-dim); font-weight: 400;
}

.co-trust-strip {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  margin-top: 1.25rem;
}
.co-trust-strip li {
  font-family: var(--mono); font-size: .62rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim);
  display: flex; align-items: center; gap: .45rem;
}
.co-trust-strip li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan-mid); flex-shrink: 0;
}

.co-byline {
  font-family: var(--mono); font-size: .62rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim); margin-top: .5rem; margin-bottom: .25rem;
}

.co-pilot-badge {
  font-family: var(--mono); font-size: .52rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid var(--cyan-mid);
  padding: .2rem .55rem; border-radius: 3px;
  vertical-align: middle; margin-left: .5rem;
  position: relative; top: -.1em;
}

.co-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}

.co-card {
  background: var(--card-bg);
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  border-right: 1px solid var(--card-border);
  transition: background .2s;
}
.co-card:last-child { border-right: none; }
.co-card:hover { background: rgba(13,20,19,.95); }

.co-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  color: var(--cyan-mid);
}
.co-icon svg { width: 100%; height: 100%; }

.co-card-name {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .06em; color: var(--white); line-height: 1.4;
}

.co-card-desc {
  font-size: .8rem; line-height: 1.65; color: var(--text-dim);
  flex-grow: 1;
}

.co-pilot-note {
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--cyan-dim);
  border-radius: 4px;
  font-size: .78rem; color: var(--text-dim); line-height: 1.6;
  background: var(--card-bg);
}

.co-pilot-label {
  display: inline-block;
  font-family: var(--mono); font-size: .58rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan-mid); margin-right: .75rem;
}

.co-cta {
  margin-top: 2.5rem;
}

/* Companion Ops responsive overrides */
@media (max-width: 1024px) {
  .co-grid { grid-template-columns: 1fr 1fr; }
  .co-card { border-right: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
  .co-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-card { border-right: none; border-bottom: 1px solid var(--card-border); }
  .co-card:last-child { border-bottom: none; }
}
/* ═══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════ LUMA VISION + LADDER (luma-) ══ */

/* ── Vision Band ── */
.luma-vision-band {
  position: relative; z-index: 10;
  background: linear-gradient(135deg, rgba(0,212,184,.06) 0%, rgba(0,212,184,.02) 50%, rgba(0,212,184,.06) 100%);
  border-top: 1px solid rgba(0,212,184,.12);
  border-bottom: 1px solid rgba(0,212,184,.12);
  padding: 2.5rem 3rem;
}
.luma-vision-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; gap: .75rem;
}
.luma-vision-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700; letter-spacing: -.01em;
  color: var(--white); line-height: 1.3;
}
.luma-vision-headline em { color: var(--cyan); font-style: normal; }
.luma-vision-sub {
  font-size: .9rem; line-height: 1.7;
  color: var(--text-dim); max-width: 780px;
}

/* ── Deployment Ladder Grid ── */
.ldl-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}
.ldl-card {
  background: var(--card-bg);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  border-right: 1px solid var(--card-border);
  transition: background .2s;
}
.ldl-card:last-child { border-right: none; }
.ldl-card:hover { background: rgba(13,20,19,.95); }

.ldl-card-header {
  display: flex; justify-content: space-between; align-items: center;
}
.ldl-tier-label {
  font-family: var(--mono); font-size: .55rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted);
}
.ldl-status {
  font-family: var(--mono); font-size: .52rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 3px;
}
.ldl-status-now   { color: var(--cyan);       background: rgba(0,212,184,.08); border: 1px solid rgba(0,212,184,.2); }
.ldl-status-next  { color: #a78bfa;            background: rgba(167,139,250,.08); border: 1px solid rgba(167,139,250,.2); }
.ldl-status-later { color: var(--text-dim);    background: rgba(120,150,145,.06); border: 1px solid rgba(120,150,145,.15); }

.ldl-card-name {
  font-family: var(--mono); font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; color: var(--white); line-height: 1.3;
}
.ldl-card-desc {
  font-size: .82rem; line-height: 1.65; color: var(--text-dim);
}
.ldl-specs {
  list-style: none; display: flex; flex-direction: column; gap: .45rem;
  margin-top: auto; padding-top: .75rem;
  border-top: 1px solid var(--card-border);
}
.ldl-specs li {
  font-size: .72rem; color: var(--text-dim); line-height: 1.4;
  display: flex; align-items: center; gap: .5rem;
}
.ldl-specs li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--cyan-mid); flex-shrink: 0;
}
.ldl-footnote {
  margin-top: 1.5rem;
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .1em; color: var(--text-muted);
  text-align: center; text-transform: uppercase;
  padding-top: 1.25rem; border-top: 1px solid var(--card-border);
}

/* ── Team context line ── */
.team-context {
  margin-top: 2rem;
  font-size: .8rem; line-height: 1.6; color: var(--text-dim);
  padding: 1rem 1.4rem;
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--cyan-dim);
  border-radius: 4px;
  background: var(--card-bg);
}

/* ── CTA helper text ── */
.cta-helper {
  margin-top: 1.25rem;
  font-family: var(--mono); font-size: .62rem; font-weight: 500;
  letter-spacing: .06em; color: var(--text-muted);
  text-align: center;
}

/* ── Luma section logo ── */
.luma-section-logo {
  width: clamp(140px, 18vw, 220px); height: auto;
  display: block; margin-bottom: 1.25rem;
  opacity: .92;
  filter: drop-shadow(0 0 20px rgba(255,255,255,.04));
}

/* ── Luma system anchor line ── */
.luma-system-line {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .04em; color: var(--cyan-mid);
  line-height: 1.6; margin-bottom: 1rem;
  padding: .75rem 1.2rem;
  border-left: 2px solid var(--cyan-dim);
  background: rgba(0,212,184,.03);
}

/* ── Tier note (GPU scaling signal) ── */
.tier-note {
  font-family: var(--mono); font-size: .62rem; font-weight: 500;
  letter-spacing: .06em; color: var(--cyan-mid);
  line-height: 1.5; margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(0,212,184,.1);
}

/* ── Hero micro-2 (NVIDIA signal line) ── */
.hero-micro-2 {
  font-size: .72rem; font-weight: 500;
  color: var(--cyan-mid); letter-spacing: .04em;
  margin-top: .3rem; opacity: .85;
}

/* ── What Rootstar Delivers grid ── */
.delivers-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}
.delivers-item {
  background: var(--card-bg);
  padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  border-right: 1px solid var(--card-border);
  transition: background .2s;
}
.delivers-item:last-child { border-right: none; }
.delivers-item:hover { background: rgba(13,20,19,.95); }
.delivers-num {
  font-family: var(--mono); font-size: .52rem; font-weight: 500;
  letter-spacing: .18em; color: var(--text-muted); text-transform: uppercase;
}
.delivers-name {
  font-family: var(--mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .03em; color: var(--white); line-height: 1.4;
}
.delivers-desc {
  font-size: .78rem; line-height: 1.65; color: var(--text-dim);
}

/* ── Luma system note (secondary softer line) ── */
.co-system-note {
  margin-top: .25rem;
  font-style: italic;
  color: var(--text-dim);
  font-size: .82rem;
}

/* Delivers responsive */
@media (max-width: 1200px) {
  .delivers-grid { grid-template-columns: repeat(3, 1fr); }
  .delivers-item:nth-child(3) { border-right: none; }
  .delivers-item:nth-child(3), .delivers-item:nth-child(4), .delivers-item:nth-child(5) {
    border-top: 1px solid var(--card-border);
  }
}

/* Luma responsive overrides */
@media (max-width: 1024px) {
  .luma-vision-band { padding: 2rem; }
  .ldl-grid { grid-template-columns: 1fr; }
  .ldl-card { border-right: none; border-bottom: 1px solid var(--card-border); }
  .ldl-card:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .luma-vision-band { padding: 1.75rem 1.5rem; }
  .luma-vision-sub { font-size: .82rem; }
}
/* ════════════════════════════════════════════════════════════════════ */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section { padding: 5rem 2rem; }
  .tier-grid { grid-template-columns: 1fr; }
  .og-grid { grid-template-columns: 1fr; }
  .og-meta-grid { grid-template-columns: 1fr; }
  .stack-meta-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .clarity-grid { grid-template-columns: 1fr; }
  .clarity-is { border-right: none; border-bottom: 1px solid var(--card-border); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .arch-diagram { padding: 1.5rem 1rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .hw-grid { grid-template-columns: 1fr; }
  .vd-grid { grid-template-columns: 1fr 1fr; }
  .applied-grid { grid-template-columns: 1fr; }
  .delivers-grid { grid-template-columns: 1fr 1fr; }
  .pricing-hero { padding: 8rem 2rem 3rem; }
  footer { padding: 2rem; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .stack-card { padding: 1.8rem 1.2rem; }
  .og-card { padding: 1.5rem 1.2rem; }
  .tier-card { padding: 1.8rem 1.2rem; }
  .vd-grid { grid-template-columns: 1fr; }
  .vd-card { padding: 1.4rem 1.2rem; }
  .og-heading-row { flex-direction: column; gap: .8rem; }
  .og-section-logo { width: 48px; }
  .clarity-col { padding: 1.8rem 1.2rem; }
  .hero-video { display: none; }
  .hero-video-wrap { background: url('hero-poster.jpg') center 40% / cover no-repeat; }
  .hero-proof { flex-direction: column; gap: .3rem; }
  .proof-sep { display: none; }
  .cta-section { padding: 4rem 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .delivers-grid { grid-template-columns: 1fr; }
  .foot-legal { flex-wrap: wrap; justify-content: center; }
}
