:root {
  --ink: #17201c;
  --muted: #5b665f;
  --paper: #f7f3ea;
  --panel: #fffdf7;
  --line: rgba(23, 32, 28, 0.14);
  --green: #12624f;
  --green-2: #0b3f37;
  --coral: #d95d39;
  --gold: #d9aa38;
  --blue: #246b86;
  --shadow: 0 24px 70px rgba(24, 35, 31, 0.18);
  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: var(--paper);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.field-row,
.newsletter,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-size: 0.84rem;
}

nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a,
.top-cta,
.idea-card a,
.article-grid a {
  text-decoration: none;
}

.top-cta {
  justify-self: end;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 234, 0.98) 0%, rgba(247, 243, 234, 0.86) 34%, rgba(247, 243, 234, 0.18) 74%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 92vw);
  padding: clamp(72px, 12vw, 142px) clamp(18px, 6vw, 72px) 80px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #38443d;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green-2);
  font-size: 0.88rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #eee7d8;
  color: var(--green-2);
  font-weight: 800;
  text-align: center;
}

.section,
.calculator-band,
.newsletter,
.premium-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 70px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.idea-grid,
.revenue-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.idea-card,
.revenue-grid article,
.calculator,
.article-grid article,
.offer-card,
.ad-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 28px rgba(24, 35, 31, 0.07);
}

.idea-card {
  min-height: 288px;
  padding: 22px;
}

.score {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
}

.idea-card p,
.revenue-grid p,
.calculator-copy p,
.article-grid p,
.premium-copy p,
.offer-card p,
.ad-card p,
.content-article p,
.monetization-note p {
  color: var(--muted);
  line-height: 1.55;
}

.idea-card a,
.article-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
}

.premium-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #f1e4cd;
  border-block: 1px solid var(--line);
}

.premium-copy {
  max-width: 720px;
}

.offer-card,
.ad-card {
  padding: clamp(22px, 4vw, 34px);
}

.price {
  margin: 18px 0;
  color: var(--green-2);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 0.95;
}

.offer-card small,
.ad-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.ad-slot {
  display: grid;
  gap: 6px;
  align-content: center;
  justify-items: center;
  min-height: 120px;
  margin: 22px clamp(18px, 5vw, 70px);
  padding: 18px;
  border: 1px dashed rgba(18, 98, 79, 0.42);
  border-radius: 8px;
  background: #fff8e5;
  color: var(--green-2);
  text-align: center;
}

.ad-slot span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ad-slot strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.ad-slot small {
  color: var(--muted);
}

.ad-wide {
  max-width: 1080px;
  margin-inline: auto;
}

.calculator-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #dfe8df;
  border-block: 1px solid var(--line);
}

.calculator-copy {
  max-width: 560px;
}

.calculator {
  padding: clamp(18px, 3vw, 28px);
}

.calculator > label,
.controls label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.field-row {
  gap: 10px;
  margin: 8px 0 22px;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.icon-button {
  width: 50px;
  height: 48px;
  flex: 0 0 50px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--coral);
  font-size: 1.4rem;
  cursor: pointer;
}

.controls {
  display: grid;
  gap: 14px;
}

input[type="range"] {
  display: block;
  min-height: 28px;
  padding: 0;
  accent-color: var(--green);
}

.result {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  color: white;
  background: var(--green-2);
  border-radius: 8px;
}

.result-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result strong {
  font-size: 3rem;
  line-height: 0.95;
}

.revenue-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.revenue-grid article {
  min-height: 226px;
  padding: 22px;
}

.article-section {
  background: #f8f7f1;
}

.article-grid article {
  min-height: 240px;
  padding: 22px;
}

.pill {
  display: inline-grid;
  min-width: 42px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--green-2);
  background: rgba(217, 170, 56, 0.26);
  font-weight: 900;
}

.newsletter {
  justify-content: space-between;
  gap: 24px;
  background: var(--green-2);
  color: white;
}

.newsletter .eyebrow {
  color: var(--gold);
}

.newsletter h2 {
  max-width: 720px;
}

.signup {
  display: grid;
  grid-template-columns: minmax(210px, 320px) auto;
  gap: 10px;
}

.signup button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--green-2);
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  min-height: calc(100svh - 72px);
}

.contact-box {
  display: grid;
  gap: 8px;
  max-width: 440px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-box a {
  color: var(--green);
  font-weight: 900;
}

.page-shell,
.article-page {
  min-height: calc(100svh - 72px);
}

.page-hero,
.sales-hero,
.content-article,
.monetization-note {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 70px);
}

.page-hero,
.sales-hero {
  background: #e9efe7;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.sales-hero h1 {
  max-width: 13ch;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.ad-card h2 {
  margin: 14px 0 8px;
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  line-height: 0.95;
}

.compact-section {
  padding-top: clamp(38px, 6vw, 72px);
}

.content-article {
  max-width: 960px;
  margin: 0 auto;
}

.content-article h1 {
  max-width: 14ch;
}

.content-article h2 {
  margin-top: 44px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lead {
  max-width: 68ch;
  font-size: 1.18rem;
}

.comparison-table {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.comparison-table div {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--panel);
}

.comparison-table span {
  color: var(--muted);
}

.comparison-table a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.inline-cta,
.monetization-note {
  margin-top: 38px;
  border-radius: 8px;
  background: var(--green-2);
  color: white;
}

.inline-cta {
  padding: 24px;
}

.inline-cta p,
.monetization-note p {
  color: rgba(255, 255, 255, 0.78);
}

.inline-cta h3,
.monetization-note h2 {
  margin-top: 0;
}

.prompt-list {
  display: grid;
  gap: 12px;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(247, 243, 234, 0.98) 0%, rgba(247, 243, 234, 0.84) 54%, rgba(247, 243, 234, 0.12) 100%);
  }

  .ticker,
  .idea-grid,
  .calculator-band,
  .revenue-grid,
  .article-grid,
  .premium-band,
  .sales-hero,
  .newsletter,
  .signup {
    grid-template-columns: 1fr;
  }

  .ticker {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .newsletter,
  footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .comparison-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .topbar {
    min-height: 64px;
  }

  .brand span:last-child {
    display: none;
  }

  .top-cta {
    padding-inline: 11px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-content {
    padding-top: 54px;
  }

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