/* ==========================================================================
   Aurena Showcase — stylesheet
   Extracted from the previously inline styles in index.html.
   Organised as: design tokens → base/reset → keyframes → layout → components
   → section-specific pieces. Reusable classes are favoured over one-offs.
   Note: hover effects are driven by `style-hover` attributes in index.html,
   which the support.js runtime compiles into real :hover rules — so they are
   intentionally NOT duplicated here.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* palette */
  --bg: #09090B;
  --ink: #F4F2EE;          /* primary "white" */
  --ink-soft: #EAE7E1;
  --ink-softer: #EDE9E2;
  --dark: #0c0c0c;         /* text on light buttons */
  --teal: #5FE3DA;
  --purple: #8E72F2;
  --pink: #E867CE;

  /* muted text ramp */
  --t-100: #CFCAC2;
  --t-200: #C7C2BA;
  --t-300: #B8B4AE;
  --t-400: #B6B1AA;
  --t-500: #B0ABA3;
  --t-600: #A6A19A;
  --t-700: #9C978F;
  --t-800: #9A958E;
  --t-900: #7C776F;

  /* hairlines */
  --line: rgba(255,255,255,.06);
  --line-2: rgba(255,255,255,.07);
  --line-3: rgba(255,255,255,.09);

  /* fonts */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* accents */
  --grad-accent: linear-gradient(90deg, #5FE3DA, #8E72F2 52%, #E867CE);
  --panel-bg: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,0));
}

/* ---------- Base / reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--purple); color: #0a0a0a; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Keyframes ---------- */
@keyframes auFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes auVu { 0%,100% { transform: scaleY(.22); } 50% { transform: scaleY(1); } }
@keyframes auGlow { 0%,100% { opacity: .45; } 50% { opacity: .8; } }
@keyframes auSpin { to { transform: rotate(360deg); } }
@keyframes auFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes auZoomIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
@keyframes auAur1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(8%,7%) scale(1.18); } }
@keyframes auAur2 { 0% { transform: translate(0,0) scale(1.12); } 100% { transform: translate(-7%,-9%) scale(1); } }
@keyframes auAur3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(6%,-6%) scale(1.22); } }

/* ---------- Layout ---------- */
.page { position: relative; min-height: 100vh; }

.container { max-width: 1200px; margin: 0 auto; }
.container--narrow { max-width: 1100px; }

.section {
  padding: clamp(80px,9vw,130px) clamp(20px,4vw,56px);
  border-top: 1px solid var(--line);
}
.section--compact { padding: clamp(70px,8vw,110px) clamp(20px,4vw,56px); }
.section--tint { background: linear-gradient(180deg, rgba(255,255,255,.014), rgba(255,255,255,0)); }
.section--clip { position: relative; overflow: hidden; }
.section--cta {
  position: relative;
  padding: clamp(100px,12vw,170px) clamp(20px,4vw,56px);
  border-top: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}

/* two-column feature rows (image + copy) */
.feature-row {
  display: flex;
  gap: clamp(36px,5vw,72px);
  align-items: center;
  flex-wrap: wrap;
}
.feature-row--reverse { flex-direction: row-reverse; }
.feature-row--spaced { margin-top: clamp(60px,7vw,110px); }
.col-copy { flex: 1 1 400px; min-width: 300px; }
.col-media { flex: 1 1 460px; min-width: 300px; position: relative; }

/* section intro blocks */
.block-head { margin-bottom: clamp(36px,4vw,52px); }
.measure-head { max-width: 760px; margin-bottom: clamp(40px,5vw,64px); }
.center-head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px,5vw,60px); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 16px;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #86817A;
  margin: 0 0 18px;
}
.grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}

.heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px,4vw,46px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.heading--gap { margin-bottom: 24px; }
.heading-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px,6vw,76px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0 0 22px;
}
.heading-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px,4.4vw,52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.heading-lg--flush { margin: 0; }
.heading-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px,6vw,68px);
  line-height: 1.0;
  letter-spacing: -.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.h3-fluid {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px,2.6vw,28px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 18px;
}
.h3-fluid--gap { margin-bottom: 22px; }

/* body copy */
.lead { margin: 0; font-size: clamp(16px,2vw,19px); line-height: 1.6; color: var(--t-100); }
.lead--dim { color: var(--t-400); text-wrap: pretty; }
.copy { margin: 0; font-size: 17px; line-height: 1.62; color: var(--t-500); }
.copy + .copy { margin-top: 16px; }
.copy--sm { font-size: 16px; line-height: 1.6; color: var(--t-600); }
.copy--muted { font-size: 16px; line-height: 1.62; color: var(--t-700); }
.note { margin: 0; font-size: 15px; line-height: 1.58; color: var(--t-600); }
.mono-note { font-family: var(--font-mono); font-size: 13px; color: var(--t-900); margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  display: inline-block;
  border-radius: 11px;
  cursor: pointer;
  text-align: center;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.btn--sm { font-size: 14px; padding: 9px 18px; border-radius: 9px; }
.btn--md { font-size: 16px; padding: 15px 30px; }
.btn--lg { font-size: 17px; padding: 17px 34px; border-radius: 12px; }
.btn--primary { background: var(--ink); color: var(--dark); }
.btn--primary.btn--md { box-shadow: 0 10px 40px rgba(244,242,238,.12); }
.btn--primary.btn--lg { box-shadow: 0 14px 50px rgba(244,242,238,.14); }
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(142,114,242,.5);
  color: var(--ink);
  box-shadow: 0 0 18px rgba(142,114,242,.14);
}
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Cards / panels / chips ---------- */
.card {
  border: 1px solid var(--line-3);
  border-radius: 16px;
  background: var(--panel-bg);
  padding: 28px;
}
.card--feature { position: relative; padding: 30px 28px 32px; }
.card--sm { padding: 22px 24px; border-radius: 14px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.card-grid--loose { gap: clamp(28px,4vw,52px); align-items: start; }
.card-grid--tight { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: clamp(44px,5vw,64px); }
.card-stack { display: flex; flex-direction: column; gap: 16px; }

.panel {
  padding: 26px 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
}
.panel--inset { margin-top: 24px; padding: 22px 24px; background: var(--panel-bg); }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-row--spaced { gap: 8px; margin-top: 24px; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--t-300);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  padding: 6px 11px;
}
.chip--lg {
  font-size: 13px;
  color: var(--t-200);
  border-radius: 8px;
  padding: 8px 13px;
  background: rgba(255,255,255,.02);
}

/* ---------- Feature bullet lists ---------- */
.feature-list { display: flex; flex-direction: column; gap: 2px; }
.feature-item {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line-2);
}
.feature-dot {
  flex: none;
  margin-top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--teal);
  box-shadow: 0 0 9px rgba(95,227,218,.85);
}
.feature-body { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--t-100); }
.link-accent {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(95,227,218,.45);
  text-shadow: 0 0 10px rgba(95,227,218,.4);
}

/* ---------- Screenshots & decorative glows ---------- */
.shot {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 36px 90px rgba(0,0,0,.6);
}
.shot--zoom { cursor: zoom-in; }
.shot--soft { box-shadow: 0 30px 70px rgba(0,0,0,.55); margin-bottom: 20px; }

.glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(ellipse at center, rgba(142,114,242,.14), rgba(142,114,242,0) 70%);
  filter: blur(24px);
  pointer-events: none;
}
.glow--wide { inset: -18%; filter: blur(22px); }

/* ---------- Aurora background ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}
.aurora__blob { position: absolute; }
.aurora__blob--1 {
  top: -18%; left: -12%; width: 72vw; height: 72vw;
  background: radial-gradient(circle at center, rgba(95,227,218,.20), transparent 60%);
  filter: blur(95px);
  animation: auAur1 32s ease-in-out infinite alternate;
}
.aurora__blob--2 {
  top: 6%; right: -16%; width: 78vw; height: 78vw;
  background: radial-gradient(circle at center, rgba(142,114,242,.22), transparent 60%);
  filter: blur(105px);
  animation: auAur2 38s ease-in-out infinite alternate;
}
.aurora__blob--3 {
  bottom: -22%; left: 14%; width: 82vw; height: 62vw;
  background: radial-gradient(circle at center, rgba(232,103,206,.16), transparent 62%);
  filter: blur(115px);
  animation: auAur3 44s ease-in-out infinite alternate;
}
.aurora__blob--4 {
  top: 34%; left: 32%; width: 52vw; height: 52vw;
  background: radial-gradient(circle at center, rgba(95,227,218,.12), transparent 60%);
  filter: blur(95px);
  animation: auAur1 52s ease-in-out infinite alternate-reverse;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px,4vw,56px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(9,9,11,.62);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px,2vw,30px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav__link { font-size: 14px; color: var(--t-300); font-weight: 500; }
.brand-icon { width: 28px; height: 28px; border-radius: 7px; display: block; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(120px,15vh,180px) clamp(20px,4vw,56px) clamp(40px,6vw,80px);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 120vw);
  height: 560px;
  background:
    radial-gradient(ellipse at 35% center, rgba(95,227,218,0.16), transparent 55%),
    radial-gradient(ellipse at 65% center, rgba(232,103,206,0.14), transparent 55%),
    radial-gradient(ellipse at center, rgba(142,114,242,0.16), rgba(142,114,242,0) 62%);
  filter: blur(20px);
  pointer-events: none;
  animation: auGlow 7s ease-in-out infinite;
}
.vu-field {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  opacity: .24;
  pointer-events: none;
}
.vu-bar {
  width: 7px;
  height: 100%;
  background: linear-gradient(to top, #E867CE, #8E72F2 45%, #5FE3DA);
  border-radius: 4px;
  filter: drop-shadow(0 0 5px rgba(142,114,242,.7));
  transform-origin: bottom;
}
.hero__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px,1.7vw,22px);
  margin-bottom: 26px;
}
.hero__icon {
  flex: none;
  width: clamp(50px,8vw,104px);
  height: clamp(50px,8vw,104px);
  border-radius: clamp(12px,1.8vw,23px);
  box-shadow: 0 12px 44px rgba(0,0,0,.5), 0 0 60px rgba(150,110,220,.28);
  display: block;
}
.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px,9.5vw,112px);
  line-height: .86;
  letter-spacing: -.035em;
  text-shadow: 0 0 22px rgba(142,114,242,.45), 0 0 50px rgba(95,227,218,.3), 0 0 90px rgba(232,103,206,.22);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px,5.4vw,64px);
  line-height: 1.0;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--ink-soft);
}
.hero__title em { font-style: italic; font-weight: 500; }
.hero__sub {
  max-width: 660px;
  margin: 0 auto 38px;
  font-size: clamp(17px,2.1vw,21px);
  line-height: 1.55;
  color: var(--t-400);
  text-wrap: pretty;
}
.hero__sub em { color: var(--ink); font-style: italic; }
.hero-shot { position: relative; max-width: 1240px; margin: clamp(48px,6vw,86px) auto 0; }
.hero-shot__glow {
  position: absolute;
  inset: -4% 6% -8%;
  background: radial-gradient(ellipse at center, rgba(142,114,242,0.18), rgba(142,114,242,0) 70%);
  filter: blur(28px);
  pointer-events: none;
}
.hero-shot img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 50px 130px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05), 0 0 80px rgba(142,114,242,.16);
  cursor: zoom-in;
}

/* small pill badges */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--t-800);
  border: 1px solid rgba(142,114,242,.45);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 26px;
  box-shadow: 0 0 22px rgba(142,114,242,.16), inset 0 0 14px rgba(142,114,242,.06);
}
.pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(95,227,218,1), 0 0 4px rgba(95,227,218,1);
}
.pill--purple {
  gap: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--purple);
  text-shadow: 0 0 10px rgba(142,114,242,.6);
  border-color: rgba(142,114,242,.5);
  padding: 6px 13px;
  margin-bottom: 18px;
  box-shadow: 0 0 18px rgba(142,114,242,.16), inset 0 0 12px rgba(142,114,242,.07);
}

/* ---------- "Why different" pillar cards ---------- */
.card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--purple);
  text-shadow: 0 0 11px rgba(142,114,242,.6);
  margin-bottom: 18px;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.card__body { margin: 0; font-size: 15.5px; line-height: 1.58; color: var(--t-600); }

.callout {
  margin-top: clamp(28px,3.5vw,40px);
  padding: 28px 32px;
  border: 1px solid rgba(142,114,242,.32);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(142,114,242,.07), rgba(142,114,242,0));
  box-shadow: 0 0 32px rgba(142,114,242,.12), inset 0 0 22px rgba(142,114,242,.05);
}
.callout__text {
  margin: 0;
  font-size: clamp(18px,2.4vw,24px);
  line-height: 1.42;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink-softer);
  text-wrap: pretty;
}

/* ---------- Metadata pull-quote ---------- */
.pullquote {
  max-width: 860px;
  margin: clamp(40px,5vw,64px) auto 0;
  padding: 30px 34px;
  border-left: 2px solid var(--purple);
  background: linear-gradient(90deg, rgba(142,114,242,.06), rgba(142,114,242,0));
  border-radius: 0 12px 12px 0;
  box-shadow: -2px 0 22px rgba(142,114,242,.28);
}
.pullquote__text {
  margin: 0;
  font-size: clamp(17px,2.2vw,22px);
  line-height: 1.5;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink-softer);
}

/* ---------- Retro section backdrop ---------- */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0px, rgba(255,255,255,.022) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
  opacity: .7;
}

/* ---------- Playlists inset panel heading ---------- */
.panel__title { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 8px; }

/* ---------- Remote / phones / jukebox ---------- */
.cluster-center {
  display: flex;
  gap: clamp(28px,4vw,56px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.phones { display: flex; gap: clamp(20px,3vw,40px); flex: none; }
.phone { position: relative; width: clamp(190px,24vw,250px); }
.phone--low { align-self: flex-end; }
.phone__frame {
  position: relative;
  border: 9px solid #1B1A1E;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.04);
  background: #000;
}
.phone__img { width: 100%; height: auto; cursor: zoom-in; }
.jukebox-copy { flex: 1 1 320px; min-width: 280px; max-width: 440px; }
.jukebox-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px,3vw,34px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}

/* ---------- Specs / platforms ---------- */
.platform__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.platform__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 13px rgba(142,114,242,.9), 0 0 4px rgba(142,114,242,1);
}
.platform__name { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0; }
.platform__body { margin: 0; font-size: 15px; line-height: 1.55; color: var(--t-600); }
.stack-block { border-top: 1px solid rgba(255,255,255,.08); padding-top: 36px; }

.rip-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 8px; }
.rip-body { margin: 0; font-size: 15px; line-height: 1.58; color: var(--t-600); }

/* ---------- Footer ---------- */
.footer { padding: clamp(48px,6vw,72px) clamp(20px,4vw,56px); border-top: 1px solid var(--line); }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__brand .brand-icon { width: 24px; height: 24px; border-radius: 6px; }
.footer__brand .brand-name { font-size: 18px; }
.footer__tag { font-family: var(--font-mono); font-size: 12px; color: var(--t-900); margin-left: 8px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; color: var(--t-800); }
.footer__links a { font-weight: 500; }

/* ---------- Section-specific one-offs ---------- */
.hero-intro { max-width: 760px; margin: clamp(40px,5vw,68px) auto 0; }
.copy--gap { margin-bottom: 28px; }
.is-front { position: relative; }
.mono-caption { font-family: var(--font-mono); font-size: 16px; line-height: 1.6; color: var(--t-600); margin: 0 0 24px; }
.jukebox-copy .copy { margin-bottom: 18px; }

.cta__inner { position: relative; max-width: 820px; margin: 0 auto; }
.cta__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 110vw);
  height: 480px;
  background:
    radial-gradient(ellipse at 38% center, rgba(95,227,218,0.16), transparent 58%),
    radial-gradient(ellipse at 62% center, rgba(232,103,206,0.15), transparent 58%),
    radial-gradient(ellipse at center, rgba(142,114,242,0.18), rgba(142,114,242,0) 65%);
  filter: blur(24px);
  pointer-events: none;
  animation: auGlow 7s ease-in-out infinite;
}
.cta__sub {
  font-size: clamp(17px,2.2vw,21px);
  line-height: 1.55;
  color: var(--t-400);
  margin: 0 auto 40px;
  max-width: 600px;
}
.cta__note { margin: 34px 0 0; font-size: 15px; color: #8C877F; }

/* ---------- Architecture (collapsible <details>) ---------- */
.arch__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.arch__summary::-webkit-details-marker { display: none; }
.arch__summary:hover .arch__chevron {
  background: rgba(142,114,242,.18);
  border-color: rgba(142,114,242,.95);
  box-shadow: 0 0 26px rgba(142,114,242,.38), inset 0 0 14px rgba(142,114,242,.1);
}
.arch__summary .eyebrow { margin-bottom: 10px; }
.arch__hint {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--t-700);
  margin-left: 10px;
  white-space: nowrap;
  vertical-align: 2px;
  opacity: 1;
  transition: opacity .3s ease;
}
.arch[open] .arch__hint { opacity: 0; }
.arch__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px,2.6vw,28px);
  letter-spacing: -.01em;
  line-height: 1.1;
  margin: 0;
}
.arch__chevron {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(142,114,242,.5);
  background: rgba(142,114,242,.08);
  color: var(--purple);
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 0 11px rgba(142,114,242,.6);
  box-shadow: 0 0 18px rgba(142,114,242,.18), inset 0 0 12px rgba(142,114,242,.06);
  transition: transform .25s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.arch[open] .arch__chevron { transform: rotate(180deg); }
.arch__body {
  padding: 4px 0 0;
}
.arch__body > * + * { margin-top: 18px; }
.arch__lead { margin: 32px 0 0; font-weight: 600; font-size: 16px; color: var(--ink-soft); }
.arch__lead + .feature-list { margin-top: 10px; }
.arch__subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px,2.4vw,26px);
  letter-spacing: -.01em;
  margin: 44px 0 0;
  padding-top: 0;
}
.arch__subhead + * { margin-top: 14px; }
.arch .pullquote { max-width: none; margin: 18px 0 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px,4vw,56px);
  background: rgba(6,6,8,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: zoom-out;
  animation: auFade .22s ease;
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: auZoomIn .3s cubic-bezier(.16,1,.3,1);
}
.lightbox__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--t-800);
  text-align: center;
  max-width: 90vw;
}

/* ---------- Downloads ---------- */
.dl-intro { margin-top: 18px; color: var(--t-400); }
.dl-card { display: flex; flex-direction: column; }
.dl-card .platform__body { flex: 1; }
.dl-btn { margin-top: 22px; }
.dl-note {
  text-align: center;
  font-size: 15px;
  color: var(--t-700);
  margin: 28px 0 0;
}
.dl-video-block { margin-top: clamp(56px,7vw,88px); text-align: center; }
.dl-video {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 24px auto 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-3);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel-bg);
  box-shadow: 0 22px 70px rgba(0,0,0,.45), 0 0 40px rgba(142,114,242,.12);
}
.dl-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
