:root {
  --paper: #f2f0eb;
  --ink: #171817;
  --muted: #656965;
  --line: rgba(23, 24, 23, .14);
  --accent: #3e7047;
  --accent-dark: #2d5635;
  --card: rgba(255,255,255,.58);
  --shadow: 0 22px 70px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.45)),
    repeating-linear-gradient(0deg, rgba(0,0,0,.013) 0 1px, transparent 1px 4px),
    var(--paper);
  line-height: 1.55;
}

a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,.12);
}
.brand-name {
  font: 600 21px/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: .01em;
}
.brand-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.top-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.top-link:hover { color: var(--ink); }

.coming-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 58px 0 84px;
}
.coming-card {
  width: min(760px, 100%);
  text-align: center;
}
.hero-icon-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin-bottom: 26px;
}
.hero-icon-wrap::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,112,71,.18), rgba(62,112,71,0) 70%);
  filter: blur(7px);
}
.hero-icon {
  position: relative;
  width: clamp(116px, 16vw, 150px);
  height: auto;
  border-radius: 31%;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(255,255,255,.42);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(62,112,71,.12);
}
h1 {
  font: 500 clamp(54px, 8vw, 94px)/.97 Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
  margin: 20px 0 18px;
}
.tagline {
  font: 500 clamp(27px, 4vw, 42px)/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
  margin: 0 0 20px;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 680px;
  color: #363936;
  margin: 0 auto;
}
.platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.platform {
  min-width: 152px;
  padding: 11px 17px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.5);
  box-shadow: 0 8px 30px rgba(0,0,0,.035);
}
.platform-name {
  display: block;
  font-weight: 750;
  letter-spacing: .01em;
}
.platform-status {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

footer {
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }
.footer-links { display: flex; gap: 18px; }

/* Imprint */
.legal-main {
  flex: 1;
  padding: 60px 0 90px;
}
.legal-wrap { width: min(860px, 100%); }
.legal-kicker {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal-main h1 {
  font-size: clamp(48px, 7vw, 76px);
  margin: 0 0 18px;
}
.legal-intro {
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 36px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.035);
}
.legal-card.wide { grid-column: 1 / -1; }
.legal-card h2 {
  margin: 0 0 14px;
  font: 500 24px/1.1 Georgia, "Times New Roman", serif;
}
.legal-card p { margin: 0 0 9px; }
.legal-card p:last-child { margin-bottom: 0; }
.label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 2px;
}
.value { font-weight: 600; }
.legal-card a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.small-note { color: var(--muted); font-size: 13px; }

@media (max-width: 700px) {
  header { padding-top: 20px; }
  .brand-sub { display: none; }
  .coming-main { padding-top: 38px; }
  .platform { min-width: 140px; flex: 1 1 140px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card.wide { grid-column: auto; }
}
