@font-face {
  font-family: "Sora";
  src: url("/assets/Sora-Variable.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: "Sora", system-ui, sans-serif;
  color: #f6fff7;
  background: #061b14;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { min-height: 100%; margin: 0; }

body {
  min-height: 100svh;
  background: #061b14 url("/assets/forest-background.png") center / cover no-repeat fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 14, 10, .28), rgba(2, 14, 10, .82));
  pointer-events: none;
}

main {
  position: relative;
  min-height: 100svh;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: max(28px, env(safe-area-inset-top)) 24px max(30px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: auto;
}

.brand img { width: 68px; height: 68px; border-radius: 8px; }
.brand strong { font-size: 22px; line-height: 1.2; }
h1 { margin: 0; max-width: 640px; font-size: 42px; line-height: 1.08; letter-spacing: 0; }
p { margin: 0; max-width: 580px; color: #d7e8dc; font-size: 17px; line-height: 1.55; }
.actions { display: grid; gap: 12px; margin-top: 8px; }

.button {
  min-height: 54px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  font: 700 16px/1.25 "Sora", system-ui, sans-serif;
  text-align: center;
  text-decoration: none;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
  -webkit-tap-highlight-color: transparent;
}

.button:active { transform: scale(.975); }
.primary { color: #082017; background: #baf7a7; border: 1px solid #d6ffca; }
.secondary { color: #f6fff7; background: rgba(6, 31, 23, .72); border: 1px solid rgba(189, 244, 177, .46); }
.stores { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.privacy { color: #b7cabd; font-size: 13px; line-height: 1.5; }

@media (max-width: 520px) {
  h1 { font-size: 34px; }
  .stores { grid-template-columns: 1fr; }
}

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