:root {
  --ink: #1f1d1a;
  --muted: #5f5a53;
  --line: rgba(44, 84, 29, 0.14);
  --paper: #f8f6f0;
  --panel: rgba(255, 255, 255, 0.9);
  --accent: #74a84a;
  --accent-deep: #2c541d;
  --accent-soft: rgba(116, 168, 74, 0.14);
  --creator: #c96d3b;
  --ai: #2f6c7a;
  --family: #7b5db6;
  --market: #8f7b21;
  --shadow: 0 18px 42px rgba(31, 29, 26, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(116, 168, 74, 0.12), transparent 32%),
    radial-gradient(circle at right 18%, rgba(44, 84, 29, 0.09), transparent 24%),
    linear-gradient(180deg, #f4f7ef 0%, var(--paper) 42%, #f1ede3 100%);
}

a {
  color: inherit;
}

.site-bridge {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(248, 246, 240, 0.82);
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
}

.site-bridge__inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-bridge__brand {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.site-bridge__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
}

.site-bridge__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-bridge__links a:hover,
.site-bridge__links a:focus-visible {
  color: var(--accent-deep);
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.tool-card,
.support-band,
.stats-strip article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.support-band {
  border-radius: 30px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.eyebrow,
.panel-label,
.status-pill,
.tag-pill {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-deep);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
}

.hero-text,
.support-band p,
.tool-card p,
.hero-list,
.feature-list {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.support-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.button,
.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible,
.card-actions a:hover,
.card-actions a:focus-visible {
  transform: translateY(-1px);
}

.button-primary,
.card-actions a {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 14px 28px rgba(44, 84, 29, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible,
.card-actions a:hover,
.card-actions a:focus-visible {
  background: #223f17;
}

.button-secondary {
  background: transparent;
  color: var(--accent-deep);
  border: 1px solid rgba(44, 84, 29, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(44, 84, 29, 0.06);
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(44, 84, 29, 0.05), rgba(255, 255, 255, 0.96)),
    var(--panel);
}

.panel-label {
  margin: 0 0 1rem;
  color: var(--accent-deep);
}

.hero-list {
  margin: 0;
  padding-left: 1.15rem;
}

.hero-list li + li {
  margin-top: 0.85rem;
}

.stats-strip {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-strip article {
  border-radius: 24px;
  padding: 1.2rem 1.35rem;
}

.stats-strip strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--accent-deep);
}

.stats-strip span {
  color: var(--muted);
}

.tool-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.tool-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 1.5rem;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: var(--accent);
}

.tool-card-creator::before {
  background: var(--creator);
}

.tool-card-ai::before {
  background: var(--ai);
}

.tool-card-family::before {
  background: var(--family);
}

.tool-card-market::before {
  background: var(--market);
}

.card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.status-pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.status-pill {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.status-beta {
  background: rgba(123, 93, 182, 0.14);
  color: #5b4190;
}

.tag-pill {
  background: rgba(31, 29, 26, 0.05);
  color: var(--muted);
}

.tool-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
}

.tool-card p {
  margin: 0.9rem 0 0;
}

.feature-list {
  margin: 1rem 0 1.4rem;
  padding-left: 1.15rem;
}

.feature-list li + li {
  margin-top: 0.55rem;
}

.support-band {
  margin-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.support-band h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-top: 0.35rem;
}

.support-band p {
  max-width: 55ch;
  margin: 0.9rem 0 0;
}

@media (max-width: 920px) {
  .hero,
  .tool-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-bridge__inner {
    width: min(100%, calc(100% - 1.2rem));
    padding: 0.9rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-bridge__links {
    justify-content: flex-start;
  }

  .page-shell {
    width: min(100%, calc(100% - 1.2rem));
    padding-top: 1.2rem;
  }

  .hero-copy,
  .hero-panel,
  .tool-card,
  .support-band,
  .stats-strip article {
    border-radius: 22px;
  }

  .button,
  .card-actions a {
    width: 100%;
  }
}
