﻿:root {
  --bg: #e4e4e8;
  --text: #16161a;
  --muted: #6b6b73;
  --coral: #ff453a;
  --lime: #1fc11b;
  --blue: #1fc11b;
  --blue-soft: #b6f0b4;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(22, 22, 26, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(31, 193, 27, 0.16), transparent 28%),
    linear-gradient(180deg, #e6e6ea 0%, #d4d4da 100%);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

a,
button {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

code {
  font-size: 0.86em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(22, 22, 26, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  color: #202833;
}

.brand-group,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand em {
  color: rgba(22, 22, 26, 0.42);
  font-style: normal;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--blue);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.brand-site {
  display: block;
  flex-shrink: 0;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-site:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.header-menu {
  display: contents;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
  border: 1px solid rgba(32, 40, 51, 0.2);
  border-radius: 9px;
  background: rgba(32, 40, 51, 0.05);
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.site-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(22, 22, 26, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav .btn-premium {
  order: -1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-block: -6px;
  padding: 0 10px;
  border: 1px solid rgba(22, 22, 26, 0.16);
  border-radius: 7px;
  background: rgba(22, 22, 26, 0.04);
  color: rgba(22, 22, 26, 0.62);
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-nav .btn-premium:hover {
  border-color: rgba(22, 22, 26, 0.3);
  background: rgba(22, 22, 26, 0.09);
  color: #16161a;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: transparent;
  color: #f3f3f5;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 18px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-demo:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: #16161a;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 18px;
  box-shadow: 0 14px 28px rgba(22, 22, 26, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-buy:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(22, 22, 26, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 18px;
}

.hero,
.section,
.buy-band,
.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 20px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 18em;
  margin: 0 auto;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.lede,
.section-copy p,
.buy-band p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.lede {
  margin: 18px auto 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-device {
  width: min(1180px, calc(100vw - 24px));
  margin: 56px auto 0;
}

.laptop {
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.42));
}

.laptop-lid {
  width: 88%;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px 22px 16px 16px;
  background:
    linear-gradient(180deg, #2a2d2b 0%, #141615 100%);
}

.laptop-camera {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a3d3b, #0b0c0b 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: #060706;
}

.browser-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #111313;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.browser-dots i:first-child { background: var(--coral); }
.browser-dots i:nth-child(2) { background: #ffd25f; }
.browser-dots i:last-child { background: var(--lime); }

.browser-url {
  justify-self: center;
  min-width: min(320px, 70%);
  border-radius: 999px;
  background: #0b0d0d;
  color: rgba(244, 247, 242, 0.48);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  text-align: center;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1080;
  object-fit: contain;
  object-position: top center;
  background: #060706;
}

.laptop-base {
  position: relative;
  width: 100%;
  height: 16px;
  margin-top: 2px;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, #3a3d3b 0%, #1c1e1d 55%, #121413 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.laptop-notch {
  position: absolute;
  left: 50%;
  top: 3px;
  width: 86px;
  height: 6px;
  border-radius: 0 0 5px 5px;
  background: #0a0b0a;
  transform: translateX(-50%);
}

.shot-card img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-device figcaption,
.shot-card figcaption,
.preview-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-device figcaption {
  text-align: center;
}

.shot-open {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.section,
.buy-band {
  scroll-margin-top: 88px;
}

.section {
  padding: 84px 0 20px;
}

.section-copy {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-copy h2,
.buy-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-copy p {
  margin: 12px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 180px;
  border: 1px solid rgba(22, 22, 26, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(31, 193, 27, 0.1), transparent 58%),
    var(--card);
  padding: 22px;
}

.feature-card h3 {
  margin: 16px 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.lime { background: var(--blue); }
.dot.mute { background: #c5d0db; }

.shot-grid,
.shot-trio {
  display: grid;
  gap: 16px;
}

.shot-grid {
  grid-template-columns: 1fr 1fr;
}

.shot-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.shot-trio .shot-open {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.shot-trio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.shot-wide {
  grid-column: 1 / -1;
}

.shot-home {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(22, 22, 26, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.shot-home figcaption {
  padding: 0 16px 14px;
}

.page-card-wide {
  margin: 0 0 22px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.page-grid .page-card {
  margin: 0;
}

.page-card {
  display: block;
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 22px;
  border: 1px solid rgba(22, 22, 26, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.page-card .live-bar {
  border-bottom: 1px solid rgba(22, 22, 26, 0.08);
}

.page-card .shot-open {
  display: block;
  overflow: hidden;
  background: #f4f4f5;
}

.page-card img {
  display: block;
  width: 100%;
  height: auto;
}

.page-card figcaption {
  margin: 0;
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(22, 22, 26, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.page-card figcaption code {
  margin-right: 8px;
  color: var(--blue);
}

.live-frame {
  overflow: hidden;
  border: 1px solid rgba(22, 22, 26, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.live-bar {
  display: flex;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(22, 22, 26, 0.08);
}

.live-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.live-bar span:first-child { background: var(--coral); }
.live-bar span:nth-child(2) { background: #ffd25f; }
.live-bar span:last-child { background: var(--lime); }

.video-stage {
  position: relative;
}

.product-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  background: #111313;
}

.video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(6, 7, 6, 0.38);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.video-frame:not(.is-playing) .product-video::-webkit-media-controls-enclosure {
  display: none;
}

.video-play:hover,
.video-play:focus-visible {
  background: rgba(6, 7, 6, 0.5);
}

.video-play-icon {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #1fc11b;
  box-shadow: 0 16px 48px rgba(31, 193, 27, 0.28);
  transition: transform 0.2s ease;
}

.video-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent #ffffff;
  transform: translate(-50%, -50%);
}

.video-play:hover .video-play-icon,
.video-play:focus-visible .video-play-icon {
  transform: scale(1.06);
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.phone-frame {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  justify-items: center;
  align-items: start;
}

.phone-shot {
  position: relative;
  margin: 0;
  width: 100%;
}

.phone-shot::before,
.phone-shot::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #9a9a9a, #6e6e6e);
}

.phone-shot::before {
  left: -3px;
  top: 16%;
  width: 3px;
  height: 18px;
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 32px 0 0 #8d8d8d,
    0 64px 0 0 #8d8d8d;
}

.phone-shot::after {
  right: -3px;
  top: 28%;
  width: 3px;
  height: 52px;
  border-radius: 0 2px 2px 0;
}

.phone-bezel {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border: 1px solid #7c7c7c;
  border-radius: 50px;
  background:
    linear-gradient(160deg, #4a4a4a 0%, #1a1a1a 18%, #0c0c0c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 0 0 1px #2c2c2c,
    0 0 0 1px #111,
    var(--shadow);
}

.phone-bezel::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 3;
  width: 98px;
  height: 26px;
  border-radius: 999px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-bezel::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: #6f6f6f;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-bezel .shot-open {
  display: block;
  overflow: hidden;
  border-radius: 41px;
}

.phone-bezel img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
}

.phone-shot figcaption,
.ide-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.mobile-points,
.label-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mobile-points li,
.label-points li {
  border: 1px solid rgba(22, 22, 26, 0.08);
  border-radius: 16px;
  background: var(--card);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 16px;
}

.label-points {
  margin: 0 0 28px;
}

.label-points code {
  color: var(--blue);
}

.ide-shot {
  margin: 0;
}

.file-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.file-list li {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(22, 22, 26, 0.08);
  border-radius: 16px;
  background: var(--card);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.file-list code {
  color: var(--blue);
  font-size: 0.84rem;
}

.buy-band {
  margin: 72px auto 40px;
  border: 0;
  border-radius: 28px;
  background:
    linear-gradient(160deg, #1fc11b 0%, #6ee06a 100%);
  color: #102010;
  padding: 48px clamp(22px, 4vw, 48px);
  text-align: center;
  box-shadow: var(--shadow);
}

.buy-band .eyebrow {
  color: #0d4a0c;
}

.buy-band .btn-buy {
  background: #16161a;
  color: #ffffff;
}

.buy-band p {
  max-width: 52ch;
  margin: 14px auto 26px;
  color: rgba(16, 32, 16, 0.7);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 40px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  align-items: start;
  justify-items: center;
  overflow: auto;
  background: rgba(8, 8, 8, 0.88);
  padding: 56px 28px 36px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(1400px, 100%);
  height: auto;
  border-radius: 18px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    padding: 4px 0 2px;
    gap: 14px;
    overflow-x: auto;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {

  .product-header {
    gap: 4px;
    padding: 8px;
  }

  .product-header .brand-group {
    min-width: 0;
    gap: 4px;
  }

  .product-header .brand {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .product-header .header-actions {
    gap: 4px;
    margin-left: auto;
  }

  .product-header .header-actions .btn-demo,
  .product-header .header-actions .btn-buy {
    min-height: 36px;
    padding: 0 6px;
    font-size: 0.6rem;
    white-space: nowrap;
  }

  .product-header .menu-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
  }

  .product-header .header-menu {
    display: none;
    order: 4;
    width: 100%;
    padding-top: 4px;
    border-top: 1px solid rgba(32, 40, 51, 0.12);
  }

  .product-header .header-menu.is-open { display: block; }

  .product-header .site-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-left: 0;
    padding: 0;
    overflow: visible;
  }

  .product-header .site-nav a {
    flex: none;
    padding: 11px 4px;
    border-bottom: 1px solid rgba(32, 40, 51, 0.08);
  }

  .product-header .site-nav .btn-premium {
    order: 0;
    min-height: 40px;
    margin: 0 0 4px;
    padding: 0 10px;
  }


  .site-header {
    flex-wrap: wrap;
  }

  .header-actions {
    gap: 6px;
    margin-left: auto;
  }

  .header-actions .btn-demo,
  .header-actions .btn-buy {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    padding: 4px 0 2px;
    gap: 14px;
    overflow-x: auto;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .feature-grid,
  .shot-grid,
  .shot-trio,
  .file-list li {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
    text-align: left;
  }

  h1 {
    margin: 0;
  }

  .lede,
  .hero-actions {
    justify-content: flex-start;
    margin-left: 0;
  }

  .product-video {
    max-height: 420px;
  }

  .video-play-icon {
    width: 80px;
    height: 80px;
  }

  .video-play-icon::after {
    border-width: 14px 0 14px 24px;
  }

  .hero-device {
    width: calc(100vw - 20px);
  }

  .laptop-lid {
    width: 92%;
    padding: 10px 10px 8px;
    border-radius: 16px 16px 12px 12px;
  }

  .laptop-base {
    height: 12px;
  }

  .browser-url {
    min-width: 0;
    font-size: 0.64rem;
  }
}

.theme-dark {
  --bg: #0b0b0d;
  --text: #f3f3f5;
  --muted: #9a9aa2;
  --card: #161618;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.theme-dark {
  background: linear-gradient(180deg, #141416 0%, #0a0a0c 100%);
  color: var(--text);
}

.theme-dark .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 14, 0.88);
  color: #f3f3f5;
}

.theme-dark .brand em,
.theme-dark .site-nav a {
  color: rgba(243, 243, 245, 0.58);
}

.theme-dark .site-nav a:hover {
  color: #ffffff;
}

.theme-dark .menu-toggle {
  border-color: rgba(243, 243, 245, 0.2);
  background: rgba(243, 243, 245, 0.06);
}

.theme-dark .product-header .header-menu {
  border-top-color: rgba(243, 243, 245, 0.12);
}

.theme-dark .site-nav .btn-premium {
  border-color: rgba(243, 243, 245, 0.16);
  background: rgba(243, 243, 245, 0.06);
  color: rgba(243, 243, 245, 0.72);
}

.theme-dark .site-nav .btn-premium:hover {
  border-color: rgba(243, 243, 245, 0.32);
  background: rgba(243, 243, 245, 0.12);
  color: #ffffff;
}

.theme-dark .btn-buy {
  background: #1fc11b;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 193, 27, 0.22);
}

.theme-dark .btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
}

.theme-dark .shot-home,
.theme-dark .page-card,
.theme-dark .live-frame,
.theme-dark .mobile-points li,
.theme-dark .label-points li,
.theme-dark .file-list li {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--card);
}

.theme-dark .feature-card {
  border-color: transparent;
  background: #1fc11b;
  color: #ffffff;
}

.theme-dark .feature-card h3,
.theme-dark .feature-card code {
  color: #ffffff;
}

.theme-dark .feature-card p {
  color: rgba(255, 255, 255, 0.86);
}

.theme-dark .feature-card .dot.lime,
.theme-dark .feature-card .dot.mute {
  background: #ffffff;
}

.theme-dark .page-card .live-bar,
.theme-dark .live-bar,
.theme-dark .page-card figcaption {
  border-color: rgba(255, 255, 255, 0.08);
}

.theme-dark .page-card .shot-open {
  background: #101012;
}

.theme-dark .dot.mute {
  background: #3a3d3a;
}

.theme-dark .eyebrow {
  color: rgba(243, 243, 245, 0.62);
}

.theme-dark .hero .eyebrow {
  color: #1fc11b;
}

.theme-dark .buy-band {
  background: #1c1c20;
  color: #f3f3f5;
}

.theme-dark .buy-band .eyebrow {
  color: rgba(243, 243, 245, 0.62);
}

.theme-dark .buy-band p {
  color: rgba(243, 243, 245, 0.62);
}

.theme-dark .buy-band .btn-buy {
  background: #1fc11b;
  color: #ffffff;
}

.product-video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; border: 0; object-fit: contain; }
.purchase-agreement { display: flex; justify-content: center; align-items: flex-start; gap: 9px; max-width: 620px; margin: 18px auto 0; color: rgba(16, 32, 16, 0.76); font-size: 0.82rem; font-weight: 600; line-height: 1.5; }
.purchase-agreement input { margin-top: 0.2em; accent-color: var(--blue); }
.purchase-agreement a, .license-page a { text-decoration: underline; text-underline-offset: 0.18em; }
.buy-band .delivery-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0 auto 14px; color: rgba(16, 32, 16, 0.84); font-size: 0.8rem; font-weight: 800; line-height: 1.4; }
.delivery-note span { display: inline-grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #16161a; color: #ffffff; }
.payment-methods { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 16px auto 0; }
.payment-methods-label { margin-right: 2px; color: rgba(16, 32, 16, 0.62); font-size: 0.72rem; font-weight: 700; }
.payment-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 28px; border: 1px solid rgba(16, 32, 16, 0.15); border-radius: 6px; background: #ffffff; padding: 0 8px; box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18); font-family: Arial, sans-serif; font-size: 0.68rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.payment-paypal { color: #0070ba; font-style: italic; }
.payment-paypal strong { color: #003087; }
.payment-visa { color: #1434cb; font-size: 0.78rem; font-style: italic; letter-spacing: -0.06em; }
.payment-amex { background: #2e77bc; color: #ffffff; font-size: 0.62rem; letter-spacing: 0; }
.payment-mastercard { position: relative; min-width: 48px; padding: 0; }
.payment-mastercard::before,
.payment-mastercard::after { position: absolute; width: 16px; height: 16px; border-radius: 50%; content: ""; }
.payment-mastercard::before { left: 12px; background: #eb001b; }
.payment-mastercard::after { right: 12px; background: rgba(247, 158, 27, 0.9); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; clip-path: inset(50%); }
.theme-dark .purchase-agreement { color: rgba(243, 243, 245, 0.76); }
.theme-dark .buy-band .delivery-note { color: rgba(243, 243, 245, 0.84); }
.theme-dark .delivery-note span { background: #1fc11b; color: #ffffff; }
.theme-dark .payment-methods-label { color: rgba(243, 243, 245, 0.58); }
.theme-dark .payment-badge { border-color: rgba(255, 255, 255, 0.15); }
.license-page { width: min(960px, calc(100% - 36px)); margin: 0 auto; padding: 72px 0; }
.license-hero { max-width: 760px; margin-bottom: 32px; }
.license-hero h1 { margin: 0; }
.license-hero p { color: var(--muted); font-weight: 600; line-height: 1.7; }
.license-card { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; background: var(--card); padding: clamp(24px, 5vw, 56px); box-shadow: var(--shadow); }
.license-card section + section { margin-top: 34px; padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.license-card h2 { font-size: 1.2rem; letter-spacing: -0.025em; }
.license-card p, .license-card li { color: var(--muted); line-height: 1.75; }
.license-card ol { padding-left: 1.35rem; }
.license-back { display: inline-block; margin-top: 28px; color: var(--blue); font-weight: 800; }
.theme-dark .license-card { background: #161618; }
.theme-dark .license-hero a, .theme-dark .license-card a, .theme-dark .license-back { color: #75e872; }
