/* MyTalker design system — accessible, calm, modern. Theme-able via [data-theme] on <html>;
   default :root = Dark "Obsidian". Light = Clean Light. Symbol plates stay white in both (--sym-bg). */
:root, :root[data-theme="dark"] {
  --bg: #060810;
  --bg-soft: #0d1018;
  --panel: #12151f;
  --panel-2: #1a1e2b;
  --line: #262b3a;
  --text: #f2f4ff;
  --muted: #9aa3bf;
  --brand: #5b8cff;
  --brand-2: #9a6cff;
  --teal: #29e3b8;
  --teal-2: #18c79f;
  --warn: #ffd166;
  --pink: #ff7eb6;
  --sym-bg: #ffffff;            /* white backing behind ARASAAC symbols — stays light in every theme */
  --nav-bg: rgba(10, 12, 20, 0.92); /* floating bottom nav / translucent chrome */
  --ok: #9af0db;
  --cloud: #cdb8ff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
:root[data-theme="light"] {
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --panel: #ffffff;
  --panel-2: #eef1f8;
  --line: #dfe4ef;
  --text: #141a2e;
  --muted: #5b6480;
  --brand: #4f6cf7;
  --brand-2: #7a5cff;
  --teal: #12b48f;
  --teal-2: #0e9c7a;
  --warn: #d98a00;
  --pink: #d6336c;
  --sym-bg: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --ok: #0e9c7a;
  --cloud: #6d4bd8;
  --shadow: 0 16px 40px rgba(20, 26, 46, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--text); line-height: 1.6;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(138, 92, 255, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(47, 214, 176, 0.16), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Skip link for keyboard/screen-reader users */
.skip { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }

/* Nav */
header.nav { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.72); border-bottom: 1px solid var(--line); }
.nav .container { display: flex; align-items: center; gap: 18px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .dot { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 0 18px rgba(108, 140, 255, 0.6); }
.nav nav { display: flex; gap: 20px; margin-left: auto; align-items: center; }
.nav nav a { color: var(--muted); font-weight: 600; font-size: 15px; }
.nav nav a:hover { color: var(--text); text-decoration: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid transparent; border-radius: 999px;
  padding: 11px 20px; font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .06s ease, filter .15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 10px 26px rgba(108, 140, 255, 0.35); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal-2)); color: #042; }
.btn-lg { padding: 15px 28px; font-size: 17px; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible { outline: 3px solid var(--warn); outline-offset: 2px; }

/* Hero */
.hero { padding: 84px 0 56px; }
.hero h1 { font-size: clamp(34px, 6vw, 60px); line-height: 1.05; margin: 0 0 18px; letter-spacing: -0.02em; }
.hero h1 .grad { background: linear-gradient(120deg, var(--teal), var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 640px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--teal);
  background: rgba(47, 214, 176, 0.12); border: 1px solid rgba(47, 214, 176, 0.35); padding: 6px 12px; border-radius: 999px; }

/* Layout helpers */
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } .nav nav a.hide-sm { display: none; } }

section { padding: 56px 0; }
.section-title { font-size: clamp(26px, 4vw, 38px); margin: 0 0 10px; letter-spacing: -0.01em; }
.section-sub { color: var(--muted); max-width: 620px; margin: 0 0 30px; }

/* Cards */
.card { background: linear-gradient(180deg, var(--panel), var(--bg-soft)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card h3 { margin: 8px 0 6px; font-size: 19px; }
.card .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 22px;
  background: rgba(108, 140, 255, 0.14); border: 1px solid var(--line); }

/* Steps */
.steps { counter-reset: step; }
.step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.step:last-child { border-bottom: 0; }
.step .num { counter-increment: step; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.step .num::before { content: counter(step); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }
.plan { background: linear-gradient(180deg, var(--panel), var(--bg-soft)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow); position: relative; }
.plan.featured::after { content: "Most popular"; position: absolute; top: -12px; right: 16px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.plan .amount { font-size: 34px; font-weight: 800; margin: 6px 0 2px; }
.plan ul { list-style: none; padding: 0; margin: 14px 0 18px; display: grid; gap: 9px; }
.plan li { display: flex; gap: 9px; color: var(--muted); font-size: 14px; }
.plan li::before { content: "✓"; color: var(--teal); font-weight: 800; }
.plan .btn { margin-top: auto; justify-content: center; }

/* Forms */
.auth-wrap { min-height: 70vh; display: grid; place-items: center; padding: 40px 0; }
.form-card { width: 100%; max-width: 420px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.field input, .field select { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font-size: 15px; }
.note { font-size: 13px; color: var(--muted); }
.error { background: rgba(255, 126, 182, 0.12); border: 1px solid var(--pink); color: #ffd0e4; padding: 10px 12px; border-radius: 10px; font-size: 14px; margin-bottom: 12px; display: none; }
.error.show { display: block; }

/* Dashboard */
.dash { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 64px); }
@media (max-width: 820px) { .dash { grid-template-columns: 1fr; } .side { display: flex; overflow-x: auto; gap: 6px; } }
.side { background: var(--bg-soft); border-right: 1px solid var(--line); padding: 18px 12px; }
.side a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--muted); font-weight: 600; cursor: pointer; }
.side a.active, .side a:hover { background: var(--panel); color: var(--text); text-decoration: none; }
.dash-main { padding: 26px; }
.kpi { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
@media (max-width: 720px) { .kpi { grid-template-columns: repeat(2, 1fr); } }
.kpi .card { padding: 16px; }
.kpi .big { font-size: 28px; font-weight: 800; }
.row-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.row-item:last-child { border-bottom: 0; }
.tag { font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--panel-2); color: var(--muted); }
.tag.plan-plus, .tag.plan-family { background: rgba(108,140,255,.18); color: #cdd6ff; }
/* Status pills for the internal analytics console. */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; border: 1px solid var(--line); background: var(--panel-2); color: var(--muted); }
.badge.ok { color: var(--teal); border-color: rgba(41,227,184,.35); background: rgba(41,227,184,.12); }
.badge.warn { color: var(--warn); border-color: rgba(255,209,102,.35); background: rgba(255,209,102,.12); }
.badge.cloud { color: var(--cloud); border-color: rgba(205,184,255,.35); background: rgba(205,184,255,.12); }
.badge.local { color: var(--teal); border-color: rgba(41,227,184,.35); background: rgba(41,227,184,.12); }
/* Dependency-free bar charts for the customer usage detail. */
.chart { display: flex; align-items: flex-end; gap: 2px; height: 110px; padding-top: 6px; }
.chart .bar { flex: 1; min-width: 2px; background: linear-gradient(180deg, var(--brand), var(--teal)); border-radius: 3px 3px 0 0; opacity: .85; }
.chart .bar:hover { opacity: 1; }
.chartx { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 4px; }
.hbar { display: flex; align-items: center; gap: 10px; padding: 5px 0; }
.hbar-track { flex: 1; height: 10px; background: var(--panel-2); border-radius: 999px; overflow: hidden; }
.hbar-fill { height: 100%; background: linear-gradient(90deg, var(--brand), var(--teal)); border-radius: 999px; }
.del { margin-left: auto; background: transparent; border: 1px solid var(--line); color: var(--muted); border-radius: 8px; padding: 6px 10px; cursor: pointer; }
.hidden { display: none !important; }

/* Demo grid (live predictive board) */
.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 620px) { .board { grid-template-columns: repeat(2, 1fr); } }
.tile { border: none; border-radius: 14px; padding: 16px 10px; min-height: 86px; color: #fff; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; font-size: 15px; font-weight: 600; }
.tile .em { font-size: 44px; }
/* Symbol pictures should FILL the tile, not sit small in a corner (see mytalker-design skill). */
.tile img { width: 72px; height: 72px; object-fit: cover; background: #fff; border-radius: 12px; }
.tile.flow { background: linear-gradient(160deg, var(--teal), var(--teal-2)); color: #042; }
.tile.core { background: var(--panel-2); }
.tile.escape { background: linear-gradient(160deg, #6b2a5a, #8a3a72); }
.utter { font-size: 22px; min-height: 30px; }

/* Footer */
footer.site { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 30px; color: var(--muted); }
footer.site .container { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; }
footer.site a { color: var(--muted); }

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }

/* ──────────────────────────────────────────────────────────────────────────
   Futuristic overhaul — glass, glow, gradient mesh, motion, product suite.
   Additive: keeps all existing class semantics, elevates the look.
   ────────────────────────────────────────────────────────────────────────── */
body { position: relative; }
/* Ambient animated gradient mesh behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(40rem 30rem at 78% -8%, rgba(138,92,255,0.28), transparent 60%),
    radial-gradient(36rem 28rem at 10% 8%, rgba(47,214,176,0.20), transparent 60%),
    radial-gradient(30rem 24rem at 50% 110%, rgba(108,140,255,0.18), transparent 60%);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(0,-2%,0) scale(1.06); } }

/* Glassy elevated cards */
.card, .plan { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.glass { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); backdrop-filter: blur(12px); }
.glow { box-shadow: 0 0 0 1px rgba(108,140,255,0.25), 0 24px 70px rgba(108,140,255,0.25); }

/* Hero: two-column with art */
.hero { padding-top: 64px; }
.hero-wrap { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 44px; align-items: center; }
.hero-art { position: relative; }
.hero-art img { width: 100%; height: auto; border-radius: 28px; border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 80px rgba(138,92,255,0.25); background: var(--panel); }
.hero-art::after { content: ""; position: absolute; inset: -10% -6% auto auto; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(47,214,176,0.35), transparent 70%); filter: blur(40px); z-index: -1; }
.float { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 880px) { .hero-wrap { grid-template-columns: 1fr; } .hero-art { order: -1; max-width: 460px; } }

/* Product suite */
.suite .product { display: flex; flex-direction: column; gap: 10px; overflow: hidden; position: relative; }
.suite .product .shot { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }
.suite .product .tagrow { display: flex; gap: 8px; flex-wrap: wrap; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); }
.section-title .grad, h1 .grad { background-size: 200% 200%; animation: hue 8s ease infinite; }
@keyframes hue { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Card hover lift */
.card, .plan, .product { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.suite .product:hover, .feature-lift:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: 0 18px 50px rgba(108,140,255,0.22); }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; text-align: center; }
.stats .n { font-size: 34px; font-weight: 800; background: linear-gradient(120deg, var(--teal), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) { body::before, .float, .section-title .grad, h1 .grad { animation: none !important; } }

/* Brand mark — ILY hand + equalizer chat bubble (#10), transparent white, frameless.
   Source is tight-cropped so it fills the slot; transparent so it sits on any header bg. */
.brand .dot { width: 52px; height: 52px; border-radius: 0; box-shadow: none;
  background: url('/img/logo.svg?v=3') center / contain no-repeat; }

/* ============ AI redesign: animated background + living logo ============ */
/* Animated aurora/gradient-mesh background (HPE×NVIDIA feel). Sits behind all content. */
.ai-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; background: var(--bg); }
.ai-bg::before, .ai-bg::after { content: ""; position: absolute; inset: -35%; filter: blur(46px); will-change: transform; }
.ai-bg::before {
  background:
    radial-gradient(38% 38% at 25% 30%, rgba(47,214,176,.26), transparent 60%),
    radial-gradient(44% 44% at 75% 25%, rgba(138,92,255,.30), transparent 60%),
    radial-gradient(40% 40% at 60% 82%, rgba(108,140,255,.22), transparent 60%);
  animation: aurora1 26s ease-in-out infinite alternate;
}
.ai-bg::after {
  background:
    radial-gradient(34% 34% at 70% 40%, rgba(47,214,176,.18), transparent 60%),
    radial-gradient(40% 40% at 30% 72%, rgba(138,92,255,.22), transparent 60%);
  mix-blend-mode: screen; animation: aurora2 34s ease-in-out infinite alternate;
}
.ai-bg .grid { position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 28%, #000, transparent 76%);
          mask-image: radial-gradient(80% 60% at 50% 28%, #000, transparent 76%);
  animation: gridpan 42s linear infinite; }
@keyframes aurora1 { from { transform: translate3d(-4%,-2%,0) rotate(0deg) scale(1.05); } to { transform: translate3d(5%,3%,0) rotate(8deg) scale(1.16); } }
@keyframes aurora2 { from { transform: translate3d(4%,2%,0) rotate(0deg) scale(1.1); } to { transform: translate3d(-5%,-3%,0) rotate(-10deg) scale(1.22); } }
@keyframes gridpan { from { background-position: 0 0, 0 0; } to { background-position: 46px 92px, 92px 46px; } }

/* Logo comes to life: draw-in reveal on load + continuous glow pulse + hover. */
.brand .dot { animation: logoReveal .9s cubic-bezier(.2,.7,.2,1) both, logoPulse 3.6s ease-in-out 1.1s infinite;
  transition: transform .25s ease, filter .25s ease; }
@keyframes logoReveal { from { opacity: 0; transform: scale(.55) translateY(3px); filter: blur(3px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes logoPulse { 0%,100% { filter: drop-shadow(0 0 3px rgba(47,214,176,.35)) drop-shadow(0 0 7px rgba(138,92,255,.22)); } 50% { filter: drop-shadow(0 0 9px rgba(47,214,176,.7)) drop-shadow(0 0 18px rgba(138,92,255,.5)); } }
.brand:hover .dot { transform: scale(1.08) rotate(-2deg); filter: drop-shadow(0 0 11px rgba(47,214,176,.85)) drop-shadow(0 0 22px rgba(138,92,255,.6)); }

/* Pulsing equalizer motif (the "voice" coming alive). */
.eq-accent { display: flex; align-items: center; gap: 10px; margin: 16px 0 2px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.eq { display: block; }
.eq rect { transform-box: fill-box; transform-origin: 50% 100%; animation: eqbar 900ms ease-in-out infinite; }
.eq rect:nth-child(odd) { fill: var(--teal); } .eq rect:nth-child(even) { fill: var(--brand-2); }
.eq rect:nth-child(1) { animation-delay: 0ms; } .eq rect:nth-child(2) { animation-delay: 140ms; }
.eq rect:nth-child(3) { animation-delay: 280ms; } .eq rect:nth-child(4) { animation-delay: 90ms; }
.eq rect:nth-child(5) { animation-delay: 220ms; }
@keyframes eqbar { 0%,100% { transform: scaleY(.32); } 50% { transform: scaleY(1); } }

@media (prefers-reduced-motion: reduce) {
  .ai-bg::before, .ai-bg::after, .ai-bg .grid, .brand .dot, .eq rect { animation: none !important; }
  .brand .dot { filter: none; }
}

/* ===== Redesign slice 2: scroll-reveal + glow cards + motion (progressive enhancement) ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
/* Gradient-glow on cards/plans (matches the product hover already in the sheet). */
.card:hover, .plan:hover { transform: translateY(-4px); border-color: var(--brand);
  box-shadow: 0 18px 50px rgba(108,140,255,.22), 0 0 0 1px rgba(138,92,255,.35); }
.btn-lg { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Redesign slice 3: typography pass (editorial scale, rhythm, balance) ===== */
body { text-rendering: optimizeLegibility; font-feature-settings: "kern" 1, "liga" 1; letter-spacing: -0.005em; }
h1, h2, h3, .section-title { text-wrap: balance; }
p, .lede, .section-sub { text-wrap: pretty; }
.hero { padding: 96px 0 60px; }
.hero h1 { font-size: clamp(40px, 6.4vw, 68px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 800; margin: 0 0 20px; }
.hero p.lede { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.55; max-width: 58ch; }
section { padding: 72px 0; }
.section-title { font-size: clamp(30px, 4.6vw, 46px); line-height: 1.08; letter-spacing: -0.022em; font-weight: 800; margin: 0 0 12px; }
.section-sub { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6; max-width: 64ch; }
.kicker { letter-spacing: .16em; color: var(--teal); }
/* Mobile nav: keep each link on one line; tighten spacing and drop secondary links on phones. */
.nav nav a { white-space: nowrap; }
@media (max-width: 640px) {
  .nav .container { gap: 8px; }
  .brand { font-size: 17px; gap: 8px; }
  .brand .dot { width: 40px; height: 40px; }
  .nav nav { gap: 12px; }
  .nav nav a { font-size: 14px; }
  .nav nav a[href="/demo"], .nav nav a[href="/listen"] { display: none; }
}
/* Demo video framing */
.videoframe { width: 100%; border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow), 0 0 70px rgba(47,214,176,0.18); background: #000; display: block; }
