:root {
  --bg: #f6f8f4;
  --surface: #ffffff;
  --surface-2: #ecfdf5;
  --ink: #10201c;
  --muted: #5d706b;
  --line: #d9e6df;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --green: #16a34a;
  --amber: #d97706;
  --blue: #2563eb;
  --purple: #7c3aed;
  --shadow: 0 24px 60px rgba(15, 118, 110, 0.14);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.22), transparent 36rem),
    radial-gradient(circle at 80% 10%, rgba(217, 119, 6, 0.14), transparent 24rem),
    var(--bg);
  line-height: 1.55;
}

a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 244, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 230, 223, 0.75);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.26);
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.78rem; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: 0.94rem; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { color: white !important; background: var(--ink); padding: 10px 14px; border-radius: 999px; }
.nav-toggle { display: none; }

.hero, .section, .footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 52px;
  padding-top: 74px;
  padding-bottom: 64px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
h3 { letter-spacing: -0.02em; margin-bottom: 10px; }
.hero-lede, .section-heading p, .split p, .games-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 690px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.button.primary { background: var(--teal); color: white; box-shadow: 0 16px 36px rgba(15, 118, 110, 0.22); }
.button.ghost { background: white; color: var(--ink); border: 1px solid var(--line); }
.trust-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; color: var(--muted); }
.trust-list li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 8px; }
.hero-card {
  background: linear-gradient(160deg, #ffffff, #ecfdf5);
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.card-kicker { display: inline-flex; color: var(--teal-dark); font-weight: 900; margin-bottom: 16px; }
.access-stack { display: grid; gap: 10px; margin-top: 24px; }
.access-stack span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
}

.section { padding-top: 70px; padding-bottom: 70px; }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: start; }
.access-grid, .price-grid, .game-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.access-grid article, .price-grid article, .game-cards article, .tool-card, .suggest-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 14px 36px rgba(16, 32, 28, 0.05);
}
.pill, .status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.free { background: #dcfce7; color: #166534; }
.standalone { background: #fef3c7; color: #92400e; }
.member { background: #dbeafe; color: #1e40af; }
.beta { background: #ede9fe; color: #5b21b6; }
.separate { background: #fee2e2; color: #991b1b; }
.coming { background: #e0f2fe; color: #075985; }
.section-heading { margin-bottom: 28px; }
.tool-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tool-card { display: flex; flex-direction: column; min-height: 290px; }
.tool-card p { color: var(--muted); }
.tool-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: auto 0 20px; }
.tool-card .tags span { background: #f1f5f9; color: #334155; border-radius: 999px; padding: 6px 9px; font-size: 0.78rem; font-weight: 800; }
.tool-card a { font-weight: 900; color: var(--teal-dark); text-decoration: none; }
.games {
  background: linear-gradient(135deg, #10201c, #153c36);
  border-radius: 38px;
  color: white;
  margin-top: 42px;
  padding: 44px;
}
.games .eyebrow, .games p { color: #b7eee2; }
.game-cards article { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.15); box-shadow: none; }
.suggest { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 34px; align-items: start; }
.suggest-form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; font-weight: 850; color: var(--ink); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: white;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(15, 118, 110, 0.18); border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status { min-height: 24px; color: var(--teal-dark); font-weight: 800; margin: 0; }
.price-grid .highlight { border-color: rgba(15, 118, 110, 0.35); box-shadow: var(--shadow); }
.price { font-size: 2rem; font-weight: 950; letter-spacing: -0.05em; color: var(--teal-dark); margin-bottom: 8px; }
.footer { padding-top: 26px; padding-bottom: 40px; color: var(--muted); border-top: 1px solid var(--line); }
.footer a { color: var(--teal-dark); font-weight: 800; }

@media (max-width: 860px) {
  .nav { align-items: flex-start; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero, .split, .suggest { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; gap: 28px; }
  .hero-card { transform: none; }
  .access-grid, .price-grid, .game-cards, .tool-grid { grid-template-columns: 1fr; }
  .games { border-radius: 28px; padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav, .hero, .section, .footer { padding-left: 14px; padding-right: 14px; }
  h1 { font-size: 3rem; }
  .button { width: 100%; }
  .hero-actions { align-items: stretch; }
}
