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

  :root {
    --ink:        #1d1d1f;
    --ink-soft:   #6e6e73;
    --ink-faint:  #86868b;
    --blue:       #0071e3;
    --blue-hi:    #0077ed;
    --link:       #0066cc;
    --ember:      #b64400;
    --paper:      #ffffff;
    --canvas:     #f5f5f7;
    --wash:       #fafafc;
    --hairline:   #d2d2d7;

    --radius-lg:  28px;
    --radius-md:  18px;
    --maxw:       1000px;
    --gutter:     24px;

    --font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
            "Inter", "Segoe UI", system-ui, sans-serif;

    --ease: cubic-bezier(0.28, 0.11, 0.32, 1);

    /* finish state — overwritten by JS */
    --stage: #d7e3ea;
    --accent: #33648a;
  }

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.47;
    font-size: 17px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; height: auto; display: block; }
  ::selection { background: rgba(0,113,227,0.18); }

  :focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
  .wrap--wide { max-width: 1160px; }

  /* ─────────────────────────────  NAV  ───────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 1000;
    height: 48px;
    background: rgba(251,251,253,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  }
  .nav[data-scrolled="true"] { border-bottom-color: rgba(0,0,0,0.10); }
  .nav-inner {
    max-width: 1000px; margin: 0 auto; height: 100%;
    padding: 0 var(--gutter);
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo img { height: 21px; width: auto; }
  .nav-links { display: flex; gap: 34px; align-items: center; }
  .nav-links a {
    font-size: 13px; font-weight: 400; letter-spacing: -0.005em;
    color: #1d1d1f; opacity: 0.86;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-cta {
    font-size: 13px; font-weight: 400;
    background: var(--blue); color: #fff !important;
    padding: 5px 14px; border-radius: 980px;
    opacity: 1 !important;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--blue-hi); }
  .nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
  .nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 4px 0; transition: transform 0.25s var(--ease), opacity 0.2s; }
  .nav[data-open="true"] .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav[data-open="true"] .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  /* ─────────────────────────────  BUTTONS  ───────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 400; letter-spacing: -0.01em;
    padding: 11px 22px; border-radius: 980px;
    border: 1px solid transparent; cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
    white-space: nowrap;
  }
  .btn--fill { background: var(--blue); color: #fff; }
  .btn--fill:hover { background: var(--blue-hi); }
  .btn--ghost { background: transparent; color: var(--link); border-color: rgba(0,102,204,0.4); }
  .btn--ghost:hover { border-color: var(--link); }
  .btn--lg { font-size: 19px; padding: 13px 28px; }

  .arrow {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--link); font-size: 17px;
  }
  .arrow::after { content: "›"; font-size: 1.3em; line-height: 0; transform: translateY(1px); transition: transform 0.2s var(--ease); }
  .arrow:hover::after { transform: translate(3px, 1px); }
  .arrow:hover { text-decoration: underline; text-underline-offset: 3px; }

  /* ─────────────────────────────  SECTIONS  ───────────────────────────── */
  .section { padding: clamp(72px, 12vw, 130px) 0; }
  .section--canvas { background: var(--canvas); }
  .section--flush-top { padding-top: 0; }

  .eyebrow {
    font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
    color: var(--ember); margin-bottom: 6px;
  }
  .eyebrow--blue { color: var(--link); }

  .h-display {
    font-size: clamp(40px, 7.6vw, 80px);
    font-weight: 600; line-height: 1.06;
    letter-spacing: -0.018em;
    text-wrap: balance;
  }
  .h-section {
    font-size: clamp(30px, 4.6vw, 48px);
    font-weight: 600; line-height: 1.09;
    letter-spacing: -0.016em;
  }
  .lead {
    font-size: clamp(19px, 2.3vw, 24px);
    font-weight: 400; line-height: 1.38;
    letter-spacing: -0.012em;
    color: var(--ink);
  }
  .muted { color: var(--ink-soft); }
  .center { text-align: center; }
  .measure { max-width: 620px; }
  .measure-narrow { max-width: 500px; }

  /* ─────────────────────────────  HERO  ───────────────────────────── */
  .hero { padding: clamp(64px, 10vw, 100px) 0 0; text-align: center; overflow: hidden; }
  .hero .eyebrow { font-size: clamp(19px, 2.3vw, 24px); }
  .hero h1 { margin: 4px auto 0; max-width: 17ch; }
  .hero-sub {
    margin: 22px auto 0; max-width: 36ch;
    font-size: clamp(19px, 2.3vw, 24px); line-height: 1.4;
    letter-spacing: -0.012em; color: var(--ink);
  }
  .hero-actions {
    margin-top: 30px;
    display: flex; gap: 26px; justify-content: center; align-items: center; flex-wrap: wrap;
  }
  .hero-note { margin-top: 16px; font-size: 13px; color: var(--ink-faint); }

  /* stage + device */
  .stage {
    margin-top: clamp(40px, 6vw, 68px);
    background:
      radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--stage) 78%, #fff) 0%, var(--stage) 60%, color-mix(in srgb, var(--stage) 70%, #000 4%) 100%);
    padding: clamp(36px, 6vw, 76px) var(--gutter) clamp(40px, 6vw, 72px);
    transition: background 0.7s var(--ease);
  }
  .device {
    max-width: 860px; margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.28), 0 0 0 1px rgba(0,0,0,0.04);
  }
  .device-bar {
    height: 38px; display: flex; align-items: center; gap: 7px;
    padding: 0 16px;
    background: #f6f6f8; border-bottom: 1px solid #ececed;
  }
  .device-bar i { width: 11px; height: 11px; border-radius: 50%; background: #dcdce1; display: block; }
  .device-url {
    margin-left: 10px; flex: 1;
    background: #fff; border-radius: 6px;
    height: 22px; max-width: 320px;
    display: flex; align-items: center; padding: 0 10px;
    font-size: 11px; color: var(--ink-faint); letter-spacing: 0;
  }
  .screen { position: relative; display: grid; background: #fff; }
  .site { grid-area: 1 / 1; opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease); text-align: left; padding-bottom: clamp(32px, 5vw, 56px); }
  .site[data-active="true"] { opacity: 1; pointer-events: auto; }
  .site-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px clamp(18px, 4vw, 40px);
    font-size: clamp(11px, 1.5vw, 14px); font-weight: 600;
  }
  .site-nav b { color: var(--accent); }
  .site-nav u { display: flex; gap: clamp(10px, 2vw, 22px); text-decoration: none; color: var(--ink-soft); font-weight: 400; }
  .site-hero {
    padding: clamp(20px, 4vw, 52px) clamp(18px, 4vw, 40px) clamp(14px, 3vw, 30px);
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(16px, 3vw, 36px); align-items: center;
  }
  .site-hero .site-h { font-size: clamp(16px, 3vw, 30px); line-height: 1.12; letter-spacing: -0.02em; font-weight: 600; color: var(--ink); margin: 0; }
  .site-hero p { font-size: clamp(10px, 1.6vw, 14px); color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
  .site-hero button {
    margin-top: clamp(14px, 2.5vw, 20px); font-size: clamp(9px, 1.4vw, 12px); font-weight: 500;
    background: var(--accent); color: #fff; border: 0;
    padding: 7px 14px; border-radius: 980px;
  }
  .site-shot {
    aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
    background:
      radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,0.55), transparent 60%),
      linear-gradient(145deg, color-mix(in srgb, var(--accent) 30%, #fff), color-mix(in srgb, var(--accent) 68%, #fff));
    display: flex; align-items: center; justify-content: center;
  }
  .site-shot span { font-size: clamp(30px, 6vw, 60px); line-height: 1; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12)); }
  .site-strip {
    display: flex; gap: clamp(8px, 2vw, 20px);
    padding: 0 clamp(18px, 4vw, 40px);
    margin-top: clamp(16px, 3vw, 28px);
  }
  .site-strip div {
    flex: 1; background: var(--canvas); border-radius: 8px;
    padding: clamp(8px, 1.6vw, 14px);
    font-size: clamp(8px, 1.2vw, 11px); color: var(--ink-soft); line-height: 1.4;
  }
  .site-strip b { display: block; color: var(--ink); font-size: clamp(9px, 1.4vw, 12px); margin-bottom: 3px; }

  /* finish picker */
  .finish { margin-top: clamp(36px, 6vw, 60px); text-align: center; }
  .finish-label { font-size: 13px; color: var(--ink-faint); margin-bottom: 14px; }
  .finish-label b { color: var(--ink); font-weight: 600; }
  .swatches { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .swatch {
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
    border: 1px solid rgba(0,0,0,0.12);
    position: relative; padding: 0; background: var(--sw);
    transition: transform 0.2s var(--ease);
  }
  .swatch::after {
    content: ""; position: absolute; inset: -5px;
    border-radius: 50%; border: 1.5px solid var(--ink);
    opacity: 0; transition: opacity 0.2s;
  }
  .swatch[aria-pressed="true"]::after { opacity: 1; }
  .swatch:hover { transform: scale(1.08); }

  /* ─────────────────────────────  CAPABILITIES  ───────────────────────────── */
  .cap-grid {
    margin-top: clamp(40px, 6vw, 64px);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .cap {
    background: var(--paper); border-radius: var(--radius-lg);
    padding: 34px 30px 36px;
  }
  .section--canvas .cap { background: #fff; }
  .cap svg { width: 30px; height: 30px; color: var(--blue); margin-bottom: 20px; }
  .cap h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.014em; margin-bottom: 8px; }
  .cap p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

  /* ─────────────────────────────  STEPS  ───────────────────────────── */
  .steps { margin-top: clamp(44px, 6vw, 68px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .step { padding: 0 14px 0 0; position: relative; }
  .step + .step { padding-left: 22px; border-left: 1px solid var(--hairline); }
  .step-n { font-size: 13px; font-weight: 600; color: var(--blue); letter-spacing: 0.02em; }
  .step h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.012em; margin: 10px 0 6px; }
  .step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

  /* ─────────────────────────────  CASE  ───────────────────────────── */
  .case { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-top: clamp(40px, 6vw, 60px); }
  .case + .case { margin-top: clamp(64px, 9vw, 110px); }
  .case--flip .case-frame { order: 2; }
  .case-frame { display: block; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.05); }
  .case-frame .device-bar { border-radius: 0; }
  .case-frame img { width: 100%; height: auto; }
  .case-tag { font-size: 13px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0; }
  .case h3 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 600; letter-spacing: -0.016em; margin: 8px 0 16px; }
  .case p { color: var(--ink-soft); line-height: 1.55; margin-bottom: 20px; }
  .case blockquote {
    font-size: 19px; line-height: 1.42; letter-spacing: -0.012em;
    color: var(--ink); margin-bottom: 20px;
  }
  .case blockquote cite { display: block; margin-top: 10px; font-size: 14px; font-style: normal; color: var(--ink-faint); }

  /* ─────────────────────────────  PRICING  ───────────────────────────── */
  .price-grid { margin-top: clamp(40px, 6vw, 60px); display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 820px; margin-left: auto; margin-right: auto; }
  .price {
    background: #fff; border-radius: var(--radius-lg);
    padding: 40px 36px; display: flex; flex-direction: column;
  }
  .price[data-featured="true"] { box-shadow: 0 0 0 2px var(--blue) inset; }
  .price-badge { font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--blue); margin-bottom: 12px; min-height: 16px; }
  .price-name { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
  .price-amount { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; margin: 6px 0 2px; }
  .price-amount span { font-size: 15px; font-weight: 400; color: var(--ink-faint); letter-spacing: -0.01em; }
  .price-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
  .price ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
  .price li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); line-height: 1.4; }
  .price li svg { flex-shrink: 0; width: 15px; height: 15px; color: var(--blue); margin-top: 3px; }
  .price .btn { width: 100%; }
  .price-fine { text-align: center; font-size: 13px; color: var(--ink-faint); margin-top: 22px; }

  /* ─────────────────────────────  FAQ  ───────────────────────────── */
  .faq { max-width: 760px; margin: clamp(36px, 5vw, 52px) auto 0; border-top: 1px solid var(--hairline); }
  .faq details { border-bottom: 1px solid var(--hairline); }
  .faq summary {
    list-style: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
    padding: 22px 4px;
    font-size: 19px; font-weight: 600; letter-spacing: -0.012em;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .pm { flex-shrink: 0; width: 20px; height: 20px; position: relative; margin-top: 3px; }
  .faq summary .pm::before, .faq summary .pm::after {
    content: ""; position: absolute; background: var(--link);
    left: 50%; top: 50%; transition: transform 0.28s var(--ease), opacity 0.2s;
  }
  .faq summary .pm::before { width: 2px; height: 15px; transform: translate(-50%,-50%); }
  .faq summary .pm::after  { width: 15px; height: 2px; transform: translate(-50%,-50%); }
  .faq details[open] summary .pm::before { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
  .faq-body { overflow: hidden; }
  .faq-body p { padding: 0 40px 24px 4px; font-size: 16px; color: var(--ink-soft); line-height: 1.6; }

  /* ─────────────────────────────  ABOUT  ───────────────────────────── */
  .about { display: grid; grid-template-columns: 260px 1fr; gap: clamp(32px, 6vw, 72px); align-items: start; margin-top: clamp(36px, 5vw, 52px); }
  .about-photo { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); }
  .about-text p { font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 16px; }
  .about-text p:last-child { margin-bottom: 0; }
  .about-text strong { font-weight: 600; }

  /* ─────────────────────────────  CTA BAND  ───────────────────────────── */
  .band { background: var(--canvas); text-align: center; padding: clamp(72px, 11vw, 120px) 0; }
  .band h2 { max-width: 18ch; margin: 0 auto; }
  .band p { margin: 16px auto 30px; max-width: 42ch; font-size: 19px; color: var(--ink-soft); }

  /* ─────────────────────────────  CONTACT  ───────────────────────────── */
  .contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 72px); margin-top: clamp(36px, 5vw, 52px); }
  .contact-info h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.012em; margin-bottom: 10px; }
  .contact-info p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 20px; }
  .contact-row { display: flex; align-items: center; gap: 10px; font-size: 15px; padding: 7px 0; }
  .contact-row svg { width: 17px; height: 17px; color: var(--ink-faint); flex-shrink: 0; }
  .contact-row a { color: var(--link); }
  .contact-row a:hover { text-decoration: underline; text-underline-offset: 3px; }

  form { display: flex; flex-direction: column; gap: 16px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  label { display: block; font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; }
  input, textarea {
    width: 100%; font: inherit; font-size: 16px;
    padding: 12px 14px; border-radius: 12px;
    border: 1px solid var(--hairline); background: #fff; color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  input:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,113,227,0.14); }
  textarea { resize: vertical; min-height: 130px; }
  form .btn { align-self: flex-start; border: 0; }
  .form-status { font-size: 14px; color: var(--ink-soft); min-height: 1em; }
  .hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

  /* ─────────────────────────────  FOOTER  ───────────────────────────── */
  .foot { background: var(--canvas); border-top: 1px solid var(--hairline); font-size: 12px; color: var(--ink-faint); line-height: 1.5; }
  .foot-inner { max-width: 1000px; margin: 0 auto; padding: 22px var(--gutter) 30px; }
  .foot-top { padding-bottom: 16px; border-bottom: 1px solid var(--hairline); }
  .foot-cols { display: flex; flex-wrap: wrap; gap: 14px 36px; padding: 18px 0; }
  .foot-cols a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
  .foot-legal { padding-top: 8px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

  /* ─────────────────────────────  MOTION  ───────────────────────────── */
  [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  [data-reveal].in { opacity: 1; transform: none; }
  .hero [data-reveal] { transition-duration: 0.9s; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.001s !important; animation-duration: 0.001s !important; }
    [data-reveal] { opacity: 1; transform: none; }
  }

  /* ─────────────────────────────  RESPONSIVE  ───────────────────────────── */
  @media (max-width: 900px) {
    .cap-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
    .step + .step { border-left: 0; padding-left: 0; }
    .step:nth-child(n+3) { border-top: 1px solid var(--hairline); padding-top: 24px; }
    .case, .price-grid, .about, .contact { grid-template-columns: 1fr; }
    .about { max-width: 460px; }
    .about-photo { max-width: 220px; }
    .case-order-txt { order: 2; }
    .case--flip .case-frame { order: 0; }
  }

  @media (max-width: 640px) {
    .nav-links { position: fixed; inset: 48px 0 auto; flex-direction: column; align-items: stretch; gap: 0; background: #fbfbfd; padding: 8px 0 16px; border-bottom: 1px solid var(--hairline); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.25s var(--ease); }
    .nav[data-open="true"] .nav-links { opacity: 1; transform: none; pointer-events: auto; }
    .nav-links a { padding: 14px var(--gutter); font-size: 17px; border-bottom: 1px solid var(--hairline); opacity: 1; }
    .nav-links .nav-cta { margin: 12px var(--gutter) 0; padding: 11px; border-bottom: 0; text-align: center; }
    .nav-toggle { display: block; }
    .cap-grid { grid-template-columns: 1fr; }
    .site-hero { grid-template-columns: 1fr; }
    .site-shot { display: none; }
    .hero-actions { flex-direction: column; gap: 16px; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
  }

/* ─────────────────────────────  SUBPAGES  ───────────────────────────── */
.crumbs { font-size: 13px; color: var(--ink-faint); text-align: center; margin-bottom: 18px; }
.crumbs a { color: var(--link); }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 2px; }
.crumbs span[aria-hidden] { margin: 0 6px; }
.cap .cap-price { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; margin: 2px 0 8px; color: var(--ink); line-height: 1.15; }
.cap .cap-price small { font-size: 14px; font-weight: 400; color: var(--ink-faint); letter-spacing: -0.01em; }
.cap .arrow { margin-top: 14px; font-size: 15px; }
.price-note { margin-top: 24px; font-size: 15px; color: var(--ink-soft); max-width: 62ch; }
.price-note a { color: var(--link); }
.price-note a:hover { text-decoration: underline; text-underline-offset: 3px; }
.cap-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
@media (max-width: 640px) { .cap-grid--two { grid-template-columns: 1fr; } }

/* live demo inside the device frame */
.demo { display: block; }
.device--wide { max-width: 1120px; }
.demo-frame { display: block; width: 100%; height: clamp(480px, 58vw, 700px); border: 0; background: #fff; }
.demo-cover {
  position: absolute; inset: 0; width: 100%; border: 0; cursor: pointer;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px;
  background: transparent; font: inherit;
}
.demo-cover span {
  background: rgba(29,29,31,0.86); color: #fff; font-size: 14px; padding: 9px 18px; border-radius: 980px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s;
}
.demo-cover:hover span { background: rgba(29,29,31,1); }
.demo.live .demo-cover { display: none; }
