:root {
  color-scheme: light;
  --ink: #22211d;
  --muted: #69645a;
  --line: #e4ddd0;
  --paper: #fffaf0;
  --panel: #fffdf8;
  --sage: #496c52;
  --sage-dark: #294935;
  --tomato: #b94f39;
  --gold: #d49a33;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(212, 154, 51, 0.18), transparent 34rem),
    linear-gradient(180deg, #f6eee0 0%, var(--paper) 42%, #f8f3ea 100%);
  line-height: 1.55;
}

main {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(73, 108, 82, 0.18);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 24px 60px rgba(58, 45, 26, 0.12);
  backdrop-filter: blur(16px);
}

.app-icon {
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(41, 73, 53, 0.24);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

h1, h2, p { margin-top: 0; }

h1 {
  margin-bottom: 10px;
  font-size: clamp(2.25rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.15rem;
  color: var(--muted);
}

.panel, .grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 26px;
}

.panel p:last-child, .grid article p:last-child, footer p:last-child { margin-bottom: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: white;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(185, 79, 57, 0.38);
  outline-offset: 3px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.grid article {
  padding: 22px;
}

.grid p, .panel p, footer {
  color: var(--muted);
}

.muted {
  border-color: rgba(73, 108, 82, 0.2);
  background: rgba(73, 108, 82, 0.08);
}

footer {
  padding: 28px 4px 0;
  font-size: 0.92rem;
}

footer a {
  color: var(--sage-dark);
  font-weight: 700;
}

@media (max-width: 680px) {
  main { padding-top: 24px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .app-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }

  .panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

.policy {
  display: block;
  margin-top: 22px;
}

.policy div {
  max-width: 760px;
}

.policy h2 {
  margin-top: 28px;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy a {
  color: var(--sage-dark);
  font-weight: 800;
}
