
:root {
  --bg: #f5f2e8;
  --paper: #fffdf6;
  --ink: #1c2520;
  --muted: #667168;
  --line: #d8d7cc;
  --accent: #315e4c;
  --accent-soft: #dce9df;
  --shadow: 0 12px 35px rgba(20, 34, 27, .08);
  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;
  background:
    radial-gradient(circle at 85% 5%, rgba(103, 142, 115, .12), transparent 30rem),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255,253,246,.82);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  position: sticky;
  top: 12px;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: .76rem; }
nav { display: flex; flex-wrap: wrap; gap: 16px; }
nav a {
  text-decoration: none;
  font-size: .9rem;
  color: var(--muted);
}
nav a:hover { color: var(--ink); }

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  padding: clamp(70px, 10vw, 130px) 0 clamp(65px, 8vw, 100px);
  max-width: 900px;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--accent);
}
h1, h2, h3 { line-height: 1.06; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.6rem); margin-bottom: 24px; max-width: 1000px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 10px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
.lede {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 720px;
  color: #475249;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  font-weight: 750;
}
.button.primary { background: var(--accent); color: white; border-color: var(--accent); }
.button.disabled { opacity: .5; cursor: not-allowed; }
.section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 26px;
}
.muted { color: var(--muted); max-width: 560px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(49,94,76,.12), rgba(49,94,76,.025)),
    var(--accent-soft);
  color: var(--accent);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-body { padding: 20px; }
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 12px;
}
.price { color: var(--ink); font-weight: 800; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
}
.card-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.small-link {
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.small-link.disabled { color: var(--muted); opacity: .6; border-bottom-style: dotted; }
.log-grid { display: grid; gap: 12px; }
.log-entry {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,246,.65);
}
.log-entry time { color: var(--muted); font-size: .85rem; }
.log-entry p { margin-bottom: 0; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.platform {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.platform a { font-weight: 800; text-decoration: none; }
.platform small { display: block; color: var(--muted); margin-top: 5px; }
.platform.coming { opacity: .65; }
.two-column {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 8vw, 100px);
}
.prose { font-size: 1.08rem; }
.callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.quiet-link { color: var(--muted); text-decoration: none; }
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 45px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .85rem;
}
@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column { grid-template-columns: 1fr; }
  .section-heading, .callout { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .site-header, main, footer { width: min(100% - 22px, 1120px); }
  .brand small { display: none; }
  .platform-grid { grid-template-columns: 1fr; }
  .log-entry { grid-template-columns: 1fr; gap: 4px; }
}
