/* Autotab — marketing pages (/ and /support).
   Same rule as the legal pages: no web fonts, no scripts, no third-party anything.
   The Content-Security-Policy in _headers allows only same-origin CSS and images, so
   every style lives here — no style attributes in the HTML. */

:root {
  --space: #070b14;
  --space-2: #0c1426;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-edge: rgba(255, 255, 255, 0.09);
  --ink: #eef4f8;
  --ink-soft: #b9c6d2;
  --muted: #7d8ea0;
  --neon: #30edf2;
  --violet: #8c73ff;
  --amber: #ffb82e;
  --green: #40f29e;
  --red: #ff4d5c;
  --gold: #d9b85a;
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--space);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- ambient background ---------- */
.sky {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(48, 237, 242, 0.20), transparent 60%),
    radial-gradient(900px 700px at -10% 18%, rgba(140, 115, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(48, 237, 242, 0.10), transparent 60%),
    linear-gradient(180deg, var(--space) 0%, var(--space-2) 100%);
}
.grid-floor {
  position: fixed; left: -20%; right: -20%; bottom: -30vh; height: 70vh; z-index: -1;
  background-image:
    linear-gradient(rgba(48, 237, 242, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 237, 242, 0.13) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(700px) rotateX(62deg);
  transform-origin: top center;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  animation: drive 7s linear infinite;
}
@keyframes drive { from { background-position: 0 0; } to { background-position: 0 64px; } }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  background: rgba(7, 11, 20, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top .wrap { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 18px rgba(48, 237, 242, 0.35); }
.brand span { color: var(--neon); }
.brand b { font-weight: 800; }
.top nav { margin-left: auto; display: flex; align-items: center; gap: 26px; font-size: 15px; }
.top nav a { color: var(--ink-soft); }
.top nav a:hover { color: var(--ink); text-decoration: none; }
.top nav a.pill { color: var(--space); }

/* ---------- buttons ---------- */
.pill { white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 16px;
  background: linear-gradient(135deg, #5ff6f8, var(--neon) 45%, #19c3d6);
  color: #041016;
  box-shadow: 0 10px 30px rgba(48, 237, 242, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pill:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(48, 237, 242, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
.pill.small { padding: 8px 16px; font-size: 14px; }
.ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600;
  color: var(--ink); border: 1px solid var(--panel-edge); background: var(--panel);
}
.ghost:hover { text-decoration: none; border-color: rgba(48, 237, 242, 0.5); }
.apple { width: 18px; height: 18px; fill: currentColor; }

/* ---------- hero ---------- */
.hero h1 { max-width: 11.5em; }
.hero { padding: 84px 0 40px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon); padding: 6px 12px; border-radius: 999px;
  background: rgba(48, 237, 242, 0.08); border: 1px solid rgba(48, 237, 242, 0.28);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }
h1 {
  font-size: clamp(42px, 5.4vw, 70px); line-height: 1.0; letter-spacing: -0.045em; font-weight: 900;
  margin: 22px 0 22px;
}
.shine {
  background: linear-gradient(100deg, #ffffff 0%, var(--neon) 35%, var(--violet) 65%, #ffffff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 8s ease-in-out infinite;
}
@keyframes sheen { 50% { background-position: 100% 0; } }
.lede { font-size: clamp(18px, 1.7vw, 21px); color: var(--ink-soft); max-width: 34em; margin: 0 0 30px; }
.cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.fine { color: var(--muted); font-size: 14px; margin-top: 18px; }
.center-cta { justify-content: center; }

/* phones */
.stage { position: relative; height: 640px; }
.stage::before {
  content: ""; position: absolute; left: 12%; right: 8%; top: 18%; bottom: 10%;
  background: radial-gradient(circle, rgba(48, 237, 242, 0.45), rgba(140, 115, 255, 0.25) 45%, transparent 70%);
  filter: blur(40px);
}
.phone {
  position: absolute; width: 270px; border-radius: 44px; padding: 9px;
  background: linear-gradient(145deg, #2b3445, #0d1119 60%, #232b39);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.phone img { border-radius: 36px; }
.phone.a { left: 26%; top: 0; z-index: 3; animation: float 7s ease-in-out infinite; }
.phone.b { left: 0; top: 90px; width: 232px; transform: rotate(-9deg); z-index: 2; opacity: 0.92; animation: floatb 8s ease-in-out infinite; }
.phone.c { right: 0; top: 110px; width: 232px; transform: rotate(9deg); z-index: 1; opacity: 0.92; animation: floatc 9s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-14px); } }
@keyframes floatb { 50% { transform: rotate(-9deg) translateY(12px); } }
@keyframes floatc { 50% { transform: rotate(9deg) translateY(-10px); } }

/* ticker */
.ticker { margin: 30px 0 10px; border-top: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); overflow: hidden; }
.ticker .track { display: flex; gap: 56px; width: max-content; padding: 18px 0; animation: scroll 38s linear infinite; }
.ticker span { color: var(--ink-soft); font-weight: 600; white-space: nowrap; font-size: 15px; }
.ticker b { color: var(--neon); margin-right: 8px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 90px 0; }
.kicker { color: var(--neon); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; }
h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.035em; margin: 12px 0 18px; font-weight: 850; }
.sub { color: var(--ink-soft); font-size: 19px; max-width: 40em; margin: 0 0 44px; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--panel-edge); border-radius: var(--radius);
  padding: 30px; min-height: 250px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(48, 237, 242, 0.35); }
.card::after {
  content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px; border-radius: 50%;
  background: radial-gradient(circle, var(--glow, rgba(48, 237, 242, 0.25)), transparent 70%);
  pointer-events: none;
}
.card h3 { font-size: 24px; letter-spacing: -0.02em; margin: 18px 0 10px; line-height: 1.15; }
.card p { color: var(--ink-soft); margin: 0; font-size: 16px; }
.w3 { grid-column: span 3; } .w2 { grid-column: span 2; } .w4 { grid-column: span 4; } .w6 { grid-column: span 6; }
.icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  font-size: 26px; border: 1px solid;
}
.i-cyan { color: var(--neon); background: rgba(48, 237, 242, 0.1); border-color: rgba(48, 237, 242, 0.45); box-shadow: 0 0 22px rgba(48, 237, 242, 0.3); }
.i-violet { color: var(--violet); background: rgba(140, 115, 255, 0.12); border-color: rgba(140, 115, 255, 0.5); box-shadow: 0 0 22px rgba(140, 115, 255, 0.3); }
.i-amber { color: var(--amber); background: rgba(255, 184, 46, 0.1); border-color: rgba(255, 184, 46, 0.45); box-shadow: 0 0 22px rgba(255, 184, 46, 0.25); }
.i-green { color: var(--green); background: rgba(64, 242, 158, 0.1); border-color: rgba(64, 242, 158, 0.45); box-shadow: 0 0 22px rgba(64, 242, 158, 0.25); }
.i-red { color: var(--red); background: rgba(255, 77, 92, 0.1); border-color: rgba(255, 77, 92, 0.45); box-shadow: 0 0 22px rgba(255, 77, 92, 0.25); }
.g-violet { --glow: rgba(140, 115, 255, 0.28); }
.g-amber { --glow: rgba(255, 184, 46, 0.22); }
.g-green { --glow: rgba(64, 242, 158, 0.22); }
.g-red { --glow: rgba(255, 77, 92, 0.22); }
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; margin-left: 8px; vertical-align: middle; }
.tag.gold { color: var(--gold); border: 1px solid rgba(217, 184, 90, 0.5); background: rgba(217, 184, 90, 0.1); }
.tag.pro { color: var(--neon); border: 1px solid rgba(48, 237, 242, 0.45); background: rgba(48, 237, 242, 0.08); }

.scan { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.scan .shot { position: relative; width: 270px; max-width: 100%; margin-left: auto; margin-right: 40px; }
.steps { list-style: none; padding: 0; margin: 22px 0 0; counter-reset: s; }
.steps li { counter-increment: s; display: flex; gap: 14px; margin: 0 0 14px; color: var(--ink-soft); }
.steps li::before {
  content: counter(s); flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 14px; color: var(--space); background: var(--neon); box-shadow: 0 0 14px rgba(48, 237, 242, 0.6);
}
.steps b { color: var(--ink); }

.bars { margin-top: 22px; display: grid; gap: 10px; }
.bar { display: grid; grid-template-columns: 110px 1fr 70px; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-soft); }
.bar i { display: block; height: 10px; border-radius: 99px; background: linear-gradient(90deg, var(--neon), var(--violet)); box-shadow: 0 0 12px rgba(48, 237, 242, 0.4); }
.bar em { font-style: normal; text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.b40 { width: 100%; } .b25 { width: 62%; } .b21 { width: 52%; } .b11 { width: 28%; }

.gauge { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.chip { font-size: 13px; font-weight: 600; padding: 6px 11px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--panel-edge); color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.chip b { color: var(--green); }
.chip.warn b { color: var(--amber); }

/* gallery */
.gallery { display: flex; gap: 22px; overflow-x: auto; padding: 10px 24px 30px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.gallery figure { margin: 0; flex: none; width: 240px; scroll-snap-align: center; }
.gallery .phone { position: relative; width: 100%; }
.gallery figcaption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 14px; }

/* privacy */
.vault {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center;
  border-radius: 32px; padding: 54px;
  background: radial-gradient(600px 300px at 90% 0%, rgba(64, 242, 158, 0.15), transparent 70%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-edge);
}
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; color: var(--ink-soft); }
.checks li::before { content: "✓"; color: var(--green); font-weight: 900; text-shadow: 0 0 10px rgba(64, 242, 158, 0.6); }
.checks b { color: var(--ink); }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { border-radius: 26px; padding: 32px; border: 1px solid var(--panel-edge); background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)); display: flex; flex-direction: column; }
.plan h3 { margin: 0; font-size: 22px; }
.price { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; margin: 14px 0 2px; }
.price small { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.alt { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 10px; }
.plan li { color: var(--ink-soft); padding-left: 26px; position: relative; font-size: 15px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--neon); font-weight: 900; }
.plan.pro { border-color: rgba(48, 237, 242, 0.55); box-shadow: 0 0 0 1px rgba(48, 237, 242, 0.25), 0 30px 80px rgba(48, 237, 242, 0.12); position: relative; }
.plan.pro .price { color: var(--neon); }
.plan.gold { border-color: rgba(217, 184, 90, 0.45); }
.plan.gold .price { color: var(--gold); }
.plan.gold li::before { color: var(--gold); }
.badge { position: absolute; top: -13px; left: 32px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: var(--neon); color: var(--space); box-shadow: 0 0 18px rgba(48, 237, 242, 0.6); }
.terms-note { color: var(--muted); font-size: 14px; margin-top: 26px; }

/* final CTA */
.finale { text-align: center; padding: 110px 0 120px; }
.finale h2 { font-size: clamp(40px, 6vw, 76px); }
.finale .sub { margin-left: auto; margin-right: auto; }
.finale img { width: 108px; height: 108px; border-radius: 26px; margin: 0 auto 26px; box-shadow: 0 0 60px rgba(48, 237, 242, 0.45); }

/* footer */
.foot { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 34px 0 50px; color: var(--muted); font-size: 14px; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; }
.foot nav { display: flex; gap: 22px; margin-left: auto; }
.foot a { color: var(--ink-soft); }

/* ---------- support page ---------- */
.page-hero { padding: 80px 0 30px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 72px); }
.contact {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
  padding: 30px 34px; border-radius: 26px; margin: 10px 0 60px;
  background: radial-gradient(500px 200px at 100% 0%, rgba(48, 237, 242, 0.18), transparent 70%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(48, 237, 242, 0.3);
}
.contact h2 { font-size: 28px; margin: 0 0 4px; }
.contact p { margin: 0; color: var(--ink-soft); }
.faq { display: grid; gap: 14px; padding-bottom: 80px; }
.faq details { border-radius: 18px; border: 1px solid var(--panel-edge); background: var(--panel); padding: 4px 24px; transition: border-color 0.2s ease; }
.faq details[open] { border-color: rgba(48, 237, 242, 0.35); }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 18px; padding: 18px 0; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--neon); font-size: 26px; line-height: 1; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--ink-soft); margin: 0 0 18px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero, .scan, .vault { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; }
  .stage { height: 520px; max-width: 520px; margin: 0 auto; width: 100%; }
  .phone { width: 230px; } .phone.b, .phone.c { width: 196px; }
  .phone.a { left: calc(50% - 115px); }
  .bento { grid-template-columns: 1fr 1fr; }
  .w2, .w3, .w4 { grid-column: span 2; }
  .w6 { grid-column: span 2; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .scan .shot { margin: 0 auto; }
  .vault { padding: 34px; }
  .top nav a:not(.pill) { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stage { height: 400px; }
  .phone { width: 190px; padding: 7px; border-radius: 34px; } .phone img { border-radius: 28px; }
  .phone.a { left: calc(50% - 95px); }
  .phone.b, .phone.c { width: 160px; top: 70px; }
  .card { padding: 24px; min-height: 0; }
  section { padding: 64px 0; }
  .bar { grid-template-columns: 90px 1fr 60px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- CarPlay ---------- */
.carplay-sec { padding-top: 70px; }
.dash {
  position: relative; max-width: 980px; margin: 10px auto 0; padding: 16px; border-radius: 40px;
  background: linear-gradient(160deg, #262d3a, #07090e 55%, #1b212c);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.dash::before {
  content: ""; position: absolute; inset: 8% 4% -6%; z-index: -1; border-radius: 60px;
  background: radial-gradient(closest-side, rgba(48, 237, 242, 0.32), rgba(140, 115, 255, 0.16) 60%, transparent);
  filter: blur(40px);
}
.cp-slides { position: relative; aspect-ratio: 1284 / 724; border-radius: 26px; overflow: hidden; background: #0b1220; }
.cp-slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: cpfade 20s infinite; }
.cp-slides .s1 { animation-delay: 0s; }
.cp-slides .s2 { animation-delay: 5s; }
.cp-slides .s3 { animation-delay: 10s; }
.cp-slides .s4 { animation-delay: 15s; }
@keyframes cpfade { 0% { opacity: 0; } 4% { opacity: 1; } 25% { opacity: 1; } 29% { opacity: 0; } 100% { opacity: 0; } }
.cp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 980px; margin: 34px auto 0; }
.cp-thumbs figure { margin: 0; }
.cp-thumbs img { border-radius: 12px; border: 1px solid var(--panel-edge); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45); }
.cp-thumbs figcaption { margin-top: 12px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.cp-thumbs figcaption b { display: block; color: var(--ink); font-size: 16px; margin-bottom: 2px; }
.cp-thumbs .tag { margin-left: 0; margin-top: 6px; }
.cp-caption { text-align: center; color: var(--muted); font-size: 13px; margin-top: 26px; }
@media (max-width: 960px) {
  .cp-thumbs { grid-template-columns: 1fr 1fr; }
  .dash { padding: 8px; border-radius: 22px; }
  .cp-slides { border-radius: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .cp-slides img { opacity: 0; } .cp-slides .s1 { opacity: 1; }
}

/* ---------- press page ---------- */
.press-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; margin: 10px 0 60px; align-items: start; }
.press-card { border-radius: 22px; border: 1px solid var(--panel-edge); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); padding: 28px; }
.press-card h2 { font-size: 26px; margin: 0 0 12px; }
.press-card p { color: var(--ink-soft); margin: 0 0 12px; }
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.fact-list li { display: grid; grid-template-columns: 120px 1fr; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.fact-list b { color: var(--ink); font-weight: 600; }
.press-shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: 30px; }
.press-shots img { border-radius: 16px; border: 1px solid var(--panel-edge); }
.press-shots .cp { grid-column: span 2; }
@media (max-width: 960px) { .press-grid { grid-template-columns: 1fr; } .press-shots { grid-template-columns: 1fr 1fr; } }

/* promo video */
.video-sec { padding-top: 70px; }
.video-frame { width: 380px; max-width: 100%; margin: 34px auto 0; padding: 10px; border-radius: 44px;
  background: linear-gradient(145deg,#2f394b,#0c1018 60%,#262e3c); box-shadow: 0 50px 110px rgba(0,0,0,.6), 0 0 0 2px rgba(255,255,255,.08); }
.video-frame video { display: block; width: 100%; aspect-ratio: 9 / 16; border-radius: 36px; background: #070b14; }
