:root {
  color-scheme: only dark;
  --bg: #07101f;
  --surface: #111b2d;
  --surface-2: #0d1727;
  --border: #2b3b55;
  --border-strong: #426899;
  --text: #edf4ff;
  --muted: #98a9c3;
  --blue: #69a2ff;
  --blue-soft: rgba(105, 162, 255, .14);
  --green: #43d49b;
  --green-soft: rgba(67, 212, 155, .12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 13% 0%, rgba(53, 105, 184, .22), transparent 31rem),
    radial-gradient(circle at 90% 28%, rgba(43, 96, 176, .12), transparent 28rem),
    linear-gradient(180deg, #07101f 0%, #091321 58%, #070f1c 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .35;
  background-image:
    linear-gradient(rgba(105, 162, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 162, 255, .035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(17, 27, 45, .86);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header nav a {
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #b8c7db;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--blue-soft);
  outline: none;
}

.hero {
  position: relative;
  padding: clamp(74px, 10vw, 126px) clamp(4px, 5vw, 58px) 82px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 4%;
  bottom: 4rem;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(105, 162, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 52px rgba(105, 162, 255, .025),
    0 0 0 104px rgba(105, 162, 255, .018);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span,
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(67, 212, 155, .1);
}

h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(50px, 8.2vw, 94px);
  line-height: .96;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.intro {
  max-width: 660px;
  margin: 0;
  color: #adbad0;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
}

.release-summary {
  display: flex;
  align-items: stretch;
  gap: 1px;
  width: fit-content;
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--border);
}

.release-summary div {
  min-width: 138px;
  padding: 14px 17px;
  background: rgba(13, 23, 39, .96);
}

.release-summary dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.release-summary dd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 15px;
  font-weight: 750;
}

.release-summary .status-dot {
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.catalog {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(14, 24, 41, .88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(27px, 4vw, 38px);
  letter-spacing: -.04em;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.artifact-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(140deg, #111d31 0%, #0e1828 74%);
}

.artifact-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 100%;
  padding: 42px 24px;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 44%, rgba(105, 162, 255, .19), transparent 48%),
    linear-gradient(155deg, rgba(105, 162, 255, .08), transparent 60%);
}

.artifact-visual::before,
.artifact-visual::after {
  position: absolute;
  border: 1px solid rgba(105, 162, 255, .14);
  border-radius: 50%;
  content: "";
}

.artifact-visual::before {
  width: 124px;
  height: 124px;
}

.artifact-visual::after {
  width: 170px;
  height: 170px;
}

.artifact-visual img {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
}

.artifact-visual span {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.artifact-content {
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.badge-platform {
  color: #a9c9ff;
  background: var(--blue-soft);
}

.badge-verified {
  border-color: rgba(67, 212, 155, .28);
  color: #86eabf;
  background: var(--green-soft);
}

.badge .status-dot {
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.artifact-content h3 {
  margin: 20px 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -.05em;
}

.artifact-description {
  max-width: 690px;
  margin: 0;
  color: #b4c1d4;
  font-size: 17px;
  line-height: 1.58;
}

.features {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: #c5d0df;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.features li {
  position: relative;
  padding-left: 19px;
}

.features li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
}

.metadata {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--border);
}

.metadata div {
  min-width: 0;
  padding: 13px 14px;
  background: #0b1525;
}

.metadata dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.metadata dd {
  overflow: hidden;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artifact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid #79acff;
  border-radius: 10px;
  color: #07101f;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(60, 119, 211, .22);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.download-button:hover,
.download-button:focus-visible {
  transform: translateY(-1px);
  background: #82b1ff;
  box-shadow: 0 16px 38px rgba(60, 119, 211, .3);
  outline: none;
}

.device-note {
  max-width: 350px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

details {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

summary {
  width: fit-content;
  color: #afc7e9;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

summary:hover {
  color: var(--text);
}

.details-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.details-grid > div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.details-grid code {
  display: block;
  overflow-wrap: anywhere;
  color: #b8cff3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  line-height: 1.5;
}

.details-grid p {
  margin: 0;
  color: #aebbd0;
  font-size: 12px;
  line-height: 1.55;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 4px 0;
  color: #7f90a9;
  font-size: 12px;
  line-height: 1.5;
}

footer a {
  flex: 0 0 auto;
  color: #9fc3ff;
  font-weight: 750;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    align-items: flex-end;
    flex-direction: column;
  }

  .hero::after {
    opacity: .45;
  }

  .artifact-card {
    grid-template-columns: 1fr;
  }

  .artifact-visual {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

@media (max-width: 600px) {
  .shell {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }

  .site-header {
    align-items: center;
    padding: 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }

  .site-header nav a {
    padding: 5px 0;
    border: 0;
    background: none;
    font-size: 12px;
  }

  .hero {
    padding: 62px 4px 58px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .release-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .release-summary div {
    min-width: 0;
  }

  .release-summary div:last-child {
    grid-column: 1 / -1;
  }

  .catalog {
    padding: 18px;
    border-radius: 16px;
  }

  .artifact-content {
    padding: 23px 18px;
  }

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

  .artifact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .download-button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
