:root {
  --midnight: #0B1321;
  --midnight-2: #111b2e;
  --midnight-3: #1a2740;
  --rose: #FC6EA8;
  --mint: #59E8D4;
  --text: #e8edf5;
  --muted: #9aa8bf;
  --line: rgba(255, 255, 255, 0.09);
  color-scheme: dark;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--midnight);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a { color: var(--mint); text-underline-offset: 3px; }
a:hover { color: #8ff2e4; }
a:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 3px; }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(11, 19, 33, 0.92);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 64px; flex-wrap: wrap;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: 0.01em;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
nav.top { display: flex; gap: 20px; font-size: 15px; }
nav.top a { color: var(--muted); text-decoration: none; }
nav.top a:hover, nav.top a[aria-current="page"] { color: var(--text); }

.hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(252, 110, 168, 0.16), transparent 70%),
    radial-gradient(ellipse 50% 45% at 10% 10%, rgba(89, 232, 212, 0.10), transparent 70%);
}
.hero .wrap { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
.hero-icon { width: 148px; height: 148px; border-radius: 33px; box-shadow: 0 18px 50px rgba(252, 110, 168, 0.25); }
h1 { font-size: clamp(38px, 6vw, 60px); line-height: 1.05; margin: 0 0 12px; letter-spacing: -0.02em; }
h1 .accent { color: var(--rose); }
.pitch { font-size: clamp(18px, 2.4vw, 22px); color: var(--text); margin: 0 0 18px; max-width: 34em; }
.platforms { color: var(--muted); margin: 0 0 22px; font-size: 15px; }
.availability {
  display: inline-block; padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--rose); color: var(--rose); font-weight: 600; font-size: 15px;
}

section { padding: 48px 0; }
section + section { border-top: 1px solid var(--line); }
h2 { font-size: 28px; line-height: 1.2; margin: 0 0 20px; letter-spacing: -0.01em; }
h3 { font-size: 19px; margin: 28px 0 8px; }
h2.spaced { margin-top: 40px; }

.features { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.features li {
  background: var(--midnight-2); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px;
}
.features strong { display: block; color: var(--mint); margin-bottom: 4px; }
.features span { color: var(--muted); font-size: 15px; }

.shots { display: grid; gap: 20px; }
.shots figure { margin: 0; }
.shots img {
  display: block; width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--line);
  background: var(--midnight-2);
}
.shots figcaption { color: var(--muted); font-size: 14px; margin-top: 8px; }
@media (min-width: 760px) {
  .shots { grid-template-columns: 1fr 1fr; }
  .shots figure:first-child { grid-column: 1 / -1; }
}

.promise { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.promise li { background: var(--midnight-3); border-radius: 999px; padding: 6px 14px; font-size: 15px; }

.page { padding: 48px 0 24px; }
.page h1 { font-size: clamp(32px, 5vw, 44px); }
.lead { color: var(--muted); font-size: 18px; margin-top: 0; }
.card {
  background: var(--midnight-2); border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; margin: 24px 0;
}
.card p:last-child { margin-bottom: 0; }
.card p:first-child { margin-top: 0; }
.email { font-size: 20px; font-weight: 600; }

table.keys { width: 100%; border-collapse: collapse; font-size: 16px; }
table.keys th, table.keys td { text-align: left; padding: 9px 12px 9px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
table.keys th { color: var(--muted); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 14px;
  background: var(--midnight-3); border: 1px solid var(--line); border-bottom-width: 2px;
  border-radius: 6px; padding: 1px 7px; white-space: nowrap;
}

details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 600; }
summary:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
details p, details ul { color: var(--text); }

.lang-divider { margin-top: 56px; padding-top: 32px; border-top: 2px solid var(--rose); }
.meta { color: var(--muted); font-size: 15px; }

footer.site { border-top: 1px solid var(--line); padding: 28px 0 40px; margin-top: 32px; color: var(--muted); font-size: 15px; }
footer.site .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
footer.site nav { display: flex; gap: 20px; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--text); }

@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero { padding: 44px 0 32px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 20px; }
  .hero-icon { width: 96px; height: 96px; border-radius: 22px; }
  section { padding: 36px 0; }
  table.keys { font-size: 15px; }
}
