@font-face {
  font-family: Nunito;
  src: local("Nunito");
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #61706f;
  --paper: #f6faf8;
  --surface: rgba(255, 255, 255, .88);
  --line: #d5e5df;
  --mint: #d8f7ec;
  --teal: #147b69;
  --orange: #ff920d;
  --orange-dark: #d96d00;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(102, 225, 190, .28), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(255, 163, 55, .17), transparent 26rem),
    var(--paper);
  font: 16px/1.65 Nunito, ui-rounded, "Segoe UI", sans-serif;
}

main {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px) 0 36px;
}

.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 36px;
  color: white;
  background: #0d1117;
  box-shadow: 0 24px 65px rgba(13, 17, 23, .2);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "?";
  position: absolute;
  right: -12px;
  bottom: -82px;
  color: rgba(255,255,255,.045);
  font-size: 19rem;
  font-weight: 900;
  line-height: 1;
}

.logo { position: relative; z-index: 1; border-radius: 28px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 7px; font-size: .8rem; font-weight: 900; letter-spacing: .13em; }
h1 { margin: 0; font-size: clamp(3.5rem, 11vw, 7rem); line-height: .88; letter-spacing: -.07em; }
.intro { max-width: 610px; margin: 22px 0; font-size: clamp(1.08rem, 2.5vw, 1.35rem); line-height: 1.45; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badges span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .86rem; }

section {
  margin-top: 22px;
  padding: clamp(23px, 5vw, 40px);
  border: 1px solid var(--line);
  border-radius: 27px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(33, 70, 60, .06);
}

.release { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--mint); }
h2 { margin: 0 0 12px; font-size: clamp(1.45rem, 4vw, 2.25rem); line-height: 1.15; letter-spacing: -.025em; }
p { margin: 0 0 15px; }
p:last-child { margin-bottom: 0; }
.meta { color: var(--muted); font-size: .92rem; }
.download {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border-radius: 18px;
  color: #17120a;
  background: linear-gradient(145deg, #ffad24, var(--orange));
  box-shadow: 0 10px 24px rgba(217, 109, 0, .25);
  font-weight: 900;
  text-decoration: none;
}
.download:hover { background: linear-gradient(145deg, #ffb73a, #ff9d1e); }
.download:focus-visible, a:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.statement { color: #083e35; background: linear-gradient(135deg, #e0fff4, #eefbf7); }
.statement p:last-child { max-width: 750px; font-size: 1.08rem; }
.grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.grid section { height: calc(100% - 22px); }
ol, ul { margin: 0; padding-left: 1.35rem; }
li + li { margin-top: 9px; }
.notice { margin-top: 22px; padding: 15px 17px; border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; background: #fff7e8; }
code { display: block; overflow-wrap: anywhere; padding: 16px; border-radius: 14px; color: #d6fff2; background: #13201d; font: .82rem/1.55 ui-monospace, SFMono-Regular, Consolas, monospace; }

footer { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px 22px; padding: 30px 12px 0; }
footer a { color: #35635b; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }

@media (max-width: 700px) {
  main { width: min(100% - 20px, 960px); padding-top: 10px; }
  .hero { grid-template-columns: 1fr; gap: 18px; border-radius: 27px; }
  .logo { width: 82px; height: 82px; border-radius: 21px; }
  .release { align-items: stretch; flex-direction: column; }
  .download { width: 100%; }
  .grid { grid-template-columns: 1fr; gap: 0; }
  section { border-radius: 22px; }
}

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