:root {
  color-scheme: light;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --emerald: #175c45;
  --emerald-2: #218567;
  --ink: #18211c;
  --muted: #59615c;
  --gold: #b08d57;
  --line: rgba(23,92,69,.14);
  font-family: Inter, Manrope, "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
body { min-height: 100vh; margin: 0; display: grid; grid-template-rows: auto 1fr auto; color: var(--ink); background: radial-gradient(circle at 86% 8%,rgba(33,133,103,.12),transparent 30%),radial-gradient(circle at 5% 90%,rgba(176,141,87,.12),transparent 32%),var(--ivory); }
a { color: inherit; }
.skip { position: fixed; left: 16px; top: -70px; z-index: 10; padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--emerald); transition: top .2s; }
.skip:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--emerald-2); outline-offset: 4px; }
header,footer { width: min(1160px,calc(100% - 48px)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
header { min-height: 92px; border-bottom: 1px solid var(--line); }
.brand { width: 154px; height: 66px; display: grid; place-items: center; overflow: hidden; }
.brand img { width: 154px; height: auto; display: block; }
.back { color: var(--emerald); font-size: 13px; font-weight: 750; text-decoration: none; }
main { width: min(1160px,calc(100% - 48px)); margin: auto; padding: 70px 0 86px; }
.launch-card { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 82px; align-items: center; }
.copy { max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 25px; color: var(--emerald); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-2); box-shadow: 0 0 16px rgba(33,133,103,.4); }
h1 { max-width: 760px; margin: 0; font: 500 clamp(52px,6vw,88px)/.98 Georgia,"Times New Roman",serif; letter-spacing: -.05em; text-wrap: balance; }
.lead { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.actions a { min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 14px; font-size: 13px; font-weight: 800; text-decoration: none; }
.primary { color: #fff; background: linear-gradient(135deg,var(--emerald-2),var(--emerald)); box-shadow: 0 16px 38px rgba(23,92,69,.2); }
.secondary { border-color: rgba(23,92,69,.25)!important; color: var(--emerald); background: rgba(255,253,248,.72); }
.store-note { max-width: 620px; margin: 24px 0 0; color: #727b76; font-size: 12px; line-height: 1.7; }
aside { padding: 30px; border: 1px solid rgba(23,92,69,.18); border-radius: 34px 8px 34px 8px; background: rgba(255,253,248,.87); box-shadow: 0 34px 80px rgba(38,58,48,.12); backdrop-filter: blur(16px); }
.icon-wrap { width: 138px; height: 138px; margin: 0 auto 25px; overflow: hidden; border: 1px solid rgba(23,92,69,.12); border-radius: 32px; background: #fff; box-shadow: 0 18px 42px rgba(38,58,48,.12); }
.icon-wrap img { width: 100%; height: 100%; display: block; }
.status { margin: 0 0 22px; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--emerald); font-size: 12px; font-weight: 800; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 15px rgba(176,141,87,.4); }
dl { margin: 0; border-top: 1px solid var(--line); }
dl div { padding: 14px 2px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); font-size: 11px; }
dd { margin: 0; color: var(--ink); font-size: 11px; font-weight: 800; text-align: right; }
footer { min-height: 82px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
footer nav { display: flex; gap: 20px; }
footer a { color: var(--emerald); text-decoration: none; }
@media (max-width: 860px) {
  .launch-card { grid-template-columns: 1fr; gap: 48px; }
  aside { max-width: 520px; width: 100%; }
}
@media (max-width: 560px) {
  header,main,footer { width: min(100% - 32px,1160px); }
  header { min-height: 78px; }
  .brand,.brand img { width: 132px; }
  .back { font-size: 11px; }
  main { padding: 54px 0 64px; }
  h1 { font-size: 48px; }
  .lead { font-size: 15px; }
  .actions a { width: 100%; }
  aside { padding: 24px; }
  footer { padding: 22px 0; flex-direction: column; align-items: flex-start; gap: 12px; }
}
