:root {
  --bg: #ffffff;
  --surface: #f5f5f7;
  --text: #1d1d1f;
  --secondary: #6e6e73;
  --tertiary: #86868b;
  --border: rgba(0, 0, 0, 0.08);
  --link: #0066cc;
  --max: 1180px;
  --narrow: 760px;
  --radius: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--max));
  min-height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  font-size: 17px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.language-picker select {
  font-size: 13px;
  color: var(--secondary);
  transition: color 180ms ease;
}

.nav-links a:hover,
.language-picker select:hover,
.footer-links a:hover {
  color: var(--text);
}

.language-picker {
  justify-self: end;
}

.language-picker select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 7px 0;
  cursor: pointer;
  outline: none;
}

.section {
  padding: 150px 24px;
}

.content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--narrow));
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 140px;
}

.hero .content {
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--tertiary);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.hero-copy {
  max-width: 650px;
  margin: 34px auto 0;
  color: var(--secondary);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.products {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 72px;
  text-align: center;
}

.section-heading h2,
.about h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 650;
}

.product-feature {
  min-height: 640px;
  padding: 78px;
  margin: 40px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 80px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.product-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.product-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon {
  width: clamp(210px, 30vw, 350px);
  height: auto;
  border-radius: 22.37%;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.13);
  transition: transform 600ms var(--ease);
}

.product-feature:hover .product-icon {
  transform: scale(1.025);
}

.product-copy {
  max-width: 480px;
}

.product-status {
  margin-bottom: 15px;
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.product-status.current {
  color: var(--link);
}

.product-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 650;
}

.product-tagline {
  margin-bottom: 28px;
  color: var(--secondary);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--link);
  font-size: 17px;
  font-weight: 500;
  transition: gap 220ms ease;
}

.product-feature:hover .text-link {
  gap: 11px;
}

.product-feature-secondary {
  margin-top: 34px;
  min-height: 500px;
  background: #ffffff;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
}

.product-feature-secondary .product-icon {
  width: clamp(190px, 26vw, 290px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.11);
}

.coming-soon {
  display: inline-block;
  color: var(--tertiary);
  font-size: 16px;
  font-weight: 500;
}

.about {
  padding-top: 170px;
  padding-bottom: 180px;
}

.about .content {
  text-align: center;
}

.about-copy {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--secondary);
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 46px 24px 38px;
}

.footer-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr auto;
  align-items: end;
  gap: 36px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-shell p {
  margin: 0;
  color: var(--tertiary);
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--secondary);
  font-size: 13px;
  transition: color 180ms ease;
}

.copyright {
  text-align: right;
  white-space: nowrap;
}

/* Scroll-in animation */
.hero .content,
.section-heading,
.product-feature,
.about .content {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 900ms var(--ease) forwards;
}

.hero .content {
  animation-delay: 80ms;
}

.section-heading {
  animation-delay: 80ms;
}

.product-feature {
  animation-delay: 120ms;
}

.product-feature-secondary {
  animation-delay: 180ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 100px 20px;
  }

  .hero {
    min-height: 590px;
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .product-feature,
  .product-feature-secondary {
    min-height: auto;
    padding: 54px 28px 60px;
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .product-copy {
    max-width: 580px;
    margin: 0 auto;
  }

  .product-icon {
    width: min(62vw, 280px);
  }

  .product-feature-secondary .product-icon {
    width: min(55vw, 240px);
  }

  .about {
    padding-top: 120px;
    padding-bottom: 125px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ---------------------------------------------------------
   Dark mode
   --------------------------------------------------------- */

:root {
  color-scheme: light dark;
}

.header-controls {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #6e6e73;
  cursor: pointer;
  font-size: 17px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  background: rgba(0,0,0,.06);
  color: #1d1d1f;
  transform: scale(1.04);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #1d1d1f;
  --text: #f5f5f7;
  --secondary: #a1a1a6;
  --tertiary: #98989d;
  --border: rgba(255,255,255,.10);
  --surface: #242426;
}

:root[data-theme="dark"] body {
  background: #1d1d1f;
  color: #f5f5f7;
}

:root[data-theme="dark"] .site-header {
  background: rgba(29,29,31,.82);
  border-bottom-color: rgba(255,255,255,.09);
}

:root[data-theme="dark"] .nav-links a,
:root[data-theme="dark"] .language-picker select,
:root[data-theme="dark"] .theme-toggle {
  color: #a1a1a6;
}

:root[data-theme="dark"] .nav-links a:hover,
:root[data-theme="dark"] .theme-toggle:hover {
  color: #f5f5f7;
}

:root[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255,255,255,.08);
}

:root[data-theme="dark"] .products {
  background: #242426;
}

:root[data-theme="dark"] .product-feature {
  background: #303033;
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}

:root[data-theme="dark"] .product-feature:hover {
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

:root[data-theme="dark"] .product-status {
  color: #a1a1a6;
}

:root[data-theme="dark"] .product-status.current {
  color: #2997ff;
}

:root[data-theme="dark"] .product-tagline {
  color: #a1a1a6;
}

:root[data-theme="dark"] .about {
  background: #1d1d1f;
}

:root[data-theme="dark"] .about-copy {
  color: #a1a1a6;
}

:root[data-theme="dark"] .site-footer {
  background: #1d1d1f;
  border-top-color: rgba(255,255,255,.10);
}

:root[data-theme="dark"] .footer-shell p,
:root[data-theme="dark"] .footer-links a {
  color: #98989d;
}

:root[data-theme="dark"] .footer-links a:hover {
  color: #f5f5f7;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --bg: #1d1d1f;
    --text: #f5f5f7;
    --secondary: #a1a1a6;
    --tertiary: #98989d;
    --border: rgba(255,255,255,.10);
    --surface: #242426;
  }

  :root:not([data-theme]) body {
    background: #1d1d1f;
    color: #f5f5f7;
  }

  :root:not([data-theme]) .site-header {
    background: rgba(29,29,31,.82);
    border-bottom-color: rgba(255,255,255,.09);
  }

  :root:not([data-theme]) .nav-links a,
  :root:not([data-theme]) .language-picker select,
  :root:not([data-theme]) .theme-toggle {
    color: #a1a1a6;
  }

  :root:not([data-theme]) .products {
    background: #242426;
  }

  :root:not([data-theme]) .about {
    background: #1d1d1f;
  }

  :root:not([data-theme]) .product-feature {
    background: #303033;
    box-shadow: 0 1px 0 rgba(255,255,255,.05);
  }

  :root:not([data-theme]) .product-status,
  :root:not([data-theme]) .product-tagline,
  :root:not([data-theme]) .about-copy {
    color: #a1a1a6;
  }

  :root:not([data-theme]) .product-status.current {
    color: #2997ff;
  }

  :root:not([data-theme]) .site-footer {
    background: #1d1d1f;
    border-top-color: rgba(255,255,255,.10);
  }
}

@media (max-width: 820px) {
  .header-controls {
    gap: 12px;
  }
}


/* Reliable header controls */
.header-controls {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  font: inherit;
}
.theme-toggle:hover {
  background: rgba(127,127,127,.10);
  color: var(--text);
}
.language-picker select {
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}


/* ---------------------------------------------------------
   In development
   A lighter, outlined panel — visibly secondary to the
   solid beta-testing cards, which are unchanged.
   --------------------------------------------------------- */

.product-feature.in-development {
  min-height: 540px;
  padding: 62px 78px;
  background: rgba(154, 91, 0, 0.03);
  border: 1px dashed rgba(0, 0, 0, 0.26);
  box-shadow: none;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease),
              background 400ms ease, border-color 400ms ease;
}

.product-feature.in-development:hover {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

.in-development .product-status.current {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 980px;
  background: rgba(154, 91, 0, 0.09);
  color: #9a5b00;
  font-size: 13px;
}

.in-development .product-copy h3 {
  font-size: clamp(36px, 4.2vw, 54px);
}

.in-development .product-tagline {
  font-size: 19px;
}

.in-development .product-icon {
  width: clamp(180px, 24vw, 285px);
  opacity: 0.92;
  filter: saturate(0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
  transition: transform 600ms var(--ease), opacity 400ms ease, filter 400ms ease;
}

.product-feature.in-development:hover .product-icon {
  opacity: 1;
  filter: none;
}

:root[data-theme="dark"] .product-feature.in-development {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 255, 255, 0.28);
}

:root[data-theme="dark"] .product-feature.in-development:hover {
  background: #303033;
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .in-development .product-status.current {
  background: rgba(255, 159, 10, 0.14);
  color: #ff9f0a;
}

:root[data-theme="dark"] .in-development .product-icon {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .product-feature.in-development {
    border-color: rgba(255, 255, 255, 0.18);
  }

  :root:not([data-theme]) .product-feature.in-development:hover {
    background: #303033;
    border-color: transparent;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  }

  :root:not([data-theme]) .in-development .product-status.current {
    background: rgba(255, 159, 10, 0.14);
    color: #ff9f0a;
  }

  :root:not([data-theme]) .in-development .product-icon {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 820px) {
  .product-feature.in-development {
    min-height: auto;
    padding: 48px 28px 54px;
  }

  .in-development .product-icon {
    width: min(52vw, 235px);
  }
}

/* ---------------------------------------------------------
   Upcoming
   A third, quietest state — even more preliminary than
   in-development. Same outlined panel, but a cool slate
   accent instead of amber, so the three states read as a
   clear progression: upcoming → in development → beta open.
   --------------------------------------------------------- */

.product-feature.upcoming {
  min-height: 540px;
  padding: 62px 78px;
  background: rgba(60, 90, 130, 0.03);
  border: 1px dashed rgba(0, 0, 0, 0.22);
  box-shadow: none;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease),
              background 400ms ease, border-color 400ms ease;
}

.product-feature.upcoming:hover {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

.upcoming .product-status.current {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 980px;
  background: rgba(60, 90, 130, 0.09);
  color: #3c5a82;
  font-size: 13px;
}

.upcoming .product-copy h3 {
  font-size: clamp(36px, 4.2vw, 54px);
}

.upcoming .product-tagline {
  font-size: 19px;
}

.upcoming .product-icon {
  width: clamp(180px, 24vw, 285px);
  opacity: 0.85;
  filter: saturate(0.8);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
  transition: transform 600ms var(--ease), opacity 400ms ease, filter 400ms ease;
}

.product-feature.upcoming:hover .product-icon {
  opacity: 1;
  filter: none;
}

:root[data-theme="dark"] .product-feature.upcoming {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 255, 255, 0.24);
}

:root[data-theme="dark"] .product-feature.upcoming:hover {
  background: #303033;
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .upcoming .product-status.current {
  background: rgba(100, 150, 210, 0.16);
  color: #6fa8dc;
}

:root[data-theme="dark"] .upcoming .product-icon {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .product-feature.upcoming {
    border-color: rgba(255, 255, 255, 0.16);
  }

  :root:not([data-theme]) .product-feature.upcoming:hover {
    background: #303033;
    border-color: transparent;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  }

  :root:not([data-theme]) .upcoming .product-status.current {
    background: rgba(100, 150, 210, 0.16);
    color: #6fa8dc;
  }

  :root:not([data-theme]) .upcoming .product-icon {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 820px) {
  .product-feature.upcoming {
    min-height: auto;
    padding: 48px 28px 54px;
  }

  .upcoming .product-icon {
    width: min(52vw, 235px);
  }
}

/* ---------------------------------------------------------
   Closed beta
   One step past in-development: real builds exist, but you
   need an invite. Solid hairline border rather than the
   dashed outline, and a violet accent, so the four states
   read as a progression:
     in development -> closed beta -> open beta -> live
   The class is written by the admin panel's Stage dropdown;
   do not set it by hand in index.html, it is regenerated.
   --------------------------------------------------------- */

.product-feature.closed-beta {
  min-height: 560px;
  padding: 66px 78px;
  background: rgba(108, 92, 200, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.13);
  box-shadow: none;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease),
              background 400ms ease, border-color 400ms ease;
}

.product-feature.closed-beta:hover {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.08);
}

.closed-beta .product-status.current {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 980px;
  background: rgba(108, 92, 200, 0.1);
  color: #5b4ec2;
  font-size: 13px;
}

.closed-beta .product-copy h3 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.closed-beta .product-tagline {
  font-size: 19px;
}

.closed-beta .product-icon {
  width: clamp(190px, 26vw, 305px);
  opacity: 0.96;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
  transition: transform 600ms var(--ease), opacity 400ms ease;
}

.product-feature.closed-beta:hover .product-icon {
  opacity: 1;
}

:root[data-theme="dark"] .product-feature.closed-beta {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

:root[data-theme="dark"] .product-feature.closed-beta:hover {
  background: #303033;
  border-color: transparent;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .closed-beta .product-status.current {
  background: rgba(150, 138, 240, 0.16);
  color: #a89bff;
}

:root[data-theme="dark"] .closed-beta .product-icon {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .product-feature.closed-beta {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
  }

  :root:not([data-theme]) .product-feature.closed-beta:hover {
    background: #303033;
    border-color: transparent;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
  }

  :root:not([data-theme]) .closed-beta .product-status.current {
    background: rgba(150, 138, 240, 0.16);
    color: #a89bff;
  }

  :root:not([data-theme]) .closed-beta .product-icon {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 820px) {
  .product-feature.closed-beta {
    min-height: auto;
    padding: 48px 28px 54px;
  }

  .closed-beta .product-icon {
    width: min(56vw, 250px);
  }
}

/* ---------------------------------------------------------
   Live
   Shipped. The loudest card on the page: the solid panel of
   a beta card, plus a green status pill and a fuller icon,
   so a released app clearly outranks one still in testing.
   --------------------------------------------------------- */

.product-feature.live {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04), 0 0 0 1.5px rgba(30, 158, 104, 0.34);
}

.product-feature.live:hover {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.09), 0 0 0 1.5px rgba(30, 158, 104, 0.46);
}

.live .product-status.current {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 980px;
  background: rgba(30, 158, 104, 0.1);
  color: #12805a;
  font-size: 13px;
}

.live .product-icon {
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.15);
}

:root[data-theme="dark"] .product-feature.live {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 1.5px rgba(62, 207, 142, 0.42);
}

:root[data-theme="dark"] .product-feature.live:hover {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3), 0 0 0 1.5px rgba(62, 207, 142, 0.54);
}

:root[data-theme="dark"] .live .product-status.current {
  background: rgba(62, 207, 142, 0.16);
  color: #4fd6a0;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .product-feature.live {
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 1.5px rgba(62, 207, 142, 0.42);
  }

  :root:not([data-theme]) .product-feature.live:hover {
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3), 0 0 0 1.5px rgba(62, 207, 142, 0.54);
  }

  :root:not([data-theme]) .live .product-status.current {
    background: rgba(62, 207, 142, 0.16);
    color: #4fd6a0;
  }
}

/* ---------------------------------------------------------
   Monogram tile
   A card can go on the page before its icon exists, so an
   app with no artwork gets a lettered tile the same size and
   shape as a real icon rather than a broken image.
   --------------------------------------------------------- */

.product-icon.product-icon-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.02));
  color: var(--tertiary);
  font-size: clamp(72px, 11vw, 128px);
  font-weight: 650;
  letter-spacing: -0.04em;
  user-select: none;
}

:root[data-theme="dark"] .product-icon.product-icon-mono {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .product-icon.product-icon-mono {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  }
}
