:root {
  color-scheme: dark light;
  --bg: #07121b;
  --bg-2: #123254;
  --panel: rgba(11, 28, 42, 0.86);
  --panel-2: rgba(18, 50, 84, 0.74);
  --text: #f4fbff;
  --muted: #b8cfdb;
  --line: rgba(244, 251, 255, 0.16);
  --accent: #37d3f0;
  --accent-2: #80f3ff;
  --shadow: rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(55, 211, 240, 0.26), transparent 340px),
    linear-gradient(180deg, #37d3f0 0, #123254 520px, #07121b 100%);
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--accent);
  color: #06121a;
  border-radius: 8px;
}

.skip:focus {
  top: 16px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 18, 27, 0.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.topbar__inner,
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}

.brand,
.nav,
.footer__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand,
.nav__link,
.footer__link,
.inline {
  text-decoration: none;
}

.brand__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), var(--bg-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.brand__text,
.footer__brand {
  color: var(--muted);
}

.nav__link,
.footer__link,
.inline {
  color: var(--accent-2);
}

.section {
  padding: 46px 0;
}

.hero {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 27, 41, 0.94), rgba(18, 50, 84, 0.88));
  box-shadow: 0 24px 70px var(--shadow);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.appicon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 16px 34px var(--shadow);
  margin-bottom: 18px;
}

.kicker {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.h1 {
  font-size: clamp(2.25rem, 5.8vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0 0 18px;
}

.section__head {
  max-width: 780px;
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  margin: 0 0 10px;
}

.section__desc,
.card__text,
.panel__value {
  color: var(--muted);
}

.card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.btn--primary {
  background: var(--accent);
  color: #06121a;
}

.btn--ghost {
  color: var(--text);
  background: rgba(244, 251, 255, 0.06);
}

.window,
.card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 251, 255, 0.05);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.dot:nth-child(2) {
  background: #ffbd2e;
}

.dot:nth-child(3) {
  background: #28c840;
}

.window__title {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 700;
}

.window__body {
  padding: 18px;
}

.badge {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(244, 251, 255, 0.07);
  border: 1px solid var(--line);
  margin-bottom: 8px;
}

.volume-preview {
  min-height: 280px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(55, 211, 240, 0.22), rgba(18, 50, 84, 0.1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  position: relative;
  overflow: hidden;
}

.volume-preview::before {
  content: "";
  position: absolute;
  inset: 36px 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 38%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.12) 30%, transparent 56%),
    radial-gradient(circle at 62% 58%, rgba(55, 211, 240, 0.65), transparent 44%);
  filter: blur(2px);
  transform: rotate(-18deg) skewX(-12deg);
}

.volume-preview::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: perspective(600px) rotateX(56deg) rotateZ(-25deg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  position: relative;
  min-height: 230px;
  padding: 18px;
}

.card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.orb {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--accent);
}

.orb--alt {
  border-color: var(--accent-2);
}

.card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.panel {
  background: var(--panel-2);
}

.panel__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.panel__row:first-child {
  border-top: 0;
}

.panel__label {
  font-weight: 800;
  color: var(--text);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 18, 27, 0.86);
}

@media (max-width: 820px) {
  .topbar__inner,
  .footer__inner,
  .brand,
  .nav {
    align-items: flex-start;
  }

  .topbar__inner,
  .footer__inner,
  .hero__grid,
  .panel__row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .hero {
    padding: 20px;
  }

  .h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }
}
