:root {
  --ink: #172018;
  --forest: #173f2a;
  --forest-dark: #0e2d1c;
  --paper: #f4f2e9;
  --paper-deep: #e9e7dc;
  --lime: #d7ff63;
  --mint: #cde8d2;
  --line: #cfd2c5;
  --muted: #626b60;
  --white: #fffef8;
  --shadow: 0 24px 70px rgba(25, 41, 27, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--lime);
  color: var(--ink);
  padding: .8rem 1rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  height: 82px;
  max-width: 1440px;
  margin: auto;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 16%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--lime);
  font-size: .72rem;
  letter-spacing: -.04em;
}
nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); }
nav a { text-decoration: none; font-size: .87rem; font-weight: 650; }
.nav-cta {
  padding: .7rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
}

.hero {
  max-width: 1440px;
  margin: auto;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 4vw, 4.5rem) clamp(4rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.eyebrow, .section-number {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--forest);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: var(--forest); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  margin: 1.7rem 0 1.7rem;
  font-size: clamp(3.8rem, 7.4vw, 7.3rem);
  line-height: .89;
  letter-spacing: -.072em;
  font-weight: 760;
}
h1 em { color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin: 2.2rem 0 3.2rem; }
.button {
  border: 0;
  border-radius: 6px;
  padding: 1rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(18, 49, 30, .18); }
.button-primary { background: var(--forest); color: var(--white); }
.button-primary span { color: var(--lime); }
.text-link { font-size: .9rem; font-weight: 750; text-underline-offset: .25rem; }
.hero-proof { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: 1.05rem; }
.hero-proof span { margin-top: .18rem; color: var(--muted); font-size: .75rem; }

.radar-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1.25deg);
}
.radar-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -110px;
  top: -120px;
  background: var(--lime);
  opacity: .13;
  border-radius: 50%;
}
.radar-topline { display: flex; align-items: center; gap: .55rem; font-size: .57rem; font-weight: 800; letter-spacing: .13em; }
.radar-topline span:last-child { margin-left: auto; color: var(--lime); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(215,255,99,.12); }
.radar-target { width: min(260px, 80%); margin: 1.2rem auto; position: relative; }
.radar-target svg { display: block; width: 100%; overflow: visible; }
.radar-target circle, .radar-target path { fill: none; stroke: rgba(255,255,255,.17); stroke-width: 1; }
.radar-target .sweep { fill: rgba(215, 255, 99, .14); stroke: rgba(215, 255, 99, .6); transform-origin: 110px 110px; animation: sweep 5s linear infinite; }
.radar-target .ping { fill: var(--lime); stroke: var(--forest); stroke-width: 3; }
.ping-one { animation: pulse 2.2s ease-out infinite; }
.ping-two { animation: pulse 2.2s .7s ease-out infinite; }
.ping-three { animation: pulse 2.2s 1.3s ease-out infinite; }
.radar-centre { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; pointer-events: none; }
.radar-centre strong { font-size: 2.6rem; line-height: 1; }
.radar-centre span { font-size: .6rem; text-transform: uppercase; letter-spacing: .14em; color: var(--mint); }
@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { r: 10px; opacity: .45; } }
.mini-match { display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.match-icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.23); border-radius: 8px; font-size: .58rem; }
.mini-match div { display: flex; flex-direction: column; gap: .16rem; }
.mini-match strong { font-size: .79rem; }
.mini-match div span { color: var(--mint); font-size: .66rem; }
.match-score { color: var(--lime); font-size: .7rem; font-weight: 800; }
.source-note { margin: .65rem 0 0; color: rgba(255,255,255,.54); font-size: .59rem; text-align: center; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.marquee div { min-width: max-content; padding: .95rem; display: flex; justify-content: center; gap: 1.3rem; font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.marquee i { color: var(--forest); font-style: normal; }

.section-shell { max-width: 1440px; margin: auto; padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4.5rem); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2, .how-intro h2, .price-copy h2, .faq h2 {
  margin: 1.2rem 0 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.section-heading p { max-width: 470px; margin-bottom: .3rem; color: var(--muted); line-height: 1.65; }
.feed-access { margin-bottom: 1rem; padding: 1rem 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border: 1px solid var(--forest); border-radius: 12px; background: var(--mint); }
.feed-access > div:first-child { display: grid; gap: .28rem; }
.feed-access strong { font-size: .88rem; }
.feed-access span { color: #425545; font-size: .76rem; line-height: 1.45; }
.feed-access-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.feed-access .button { padding: .75rem 1rem; font-size: .75rem; }
.feed-access .text-link, .text-button { font-size: .72rem; }
.text-button { border: 0; border-bottom: 1px solid currentColor; padding: .25rem 0; background: transparent; color: var(--ink); font-weight: 750; }
.filter-bar { display: flex; align-items: end; gap: 1rem; margin-bottom: 1.6rem; padding: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.filter-bar.is-locked { opacity: .58; }
.filter-bar label { min-width: 180px; }
.filter-bar label span, .signup-card label > span { display: block; margin-bottom: .4rem; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
select, input { width: 100%; border: 1px solid #bcc1b5; border-radius: 6px; background: #fff; color: var(--ink); padding: .78rem .85rem; }
select:focus, input:focus, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(79, 130, 89, .32); outline-offset: 2px; }
.filter-button { margin-left: auto; border: 0; border-bottom: 1px solid var(--ink); padding: .6rem 0; background: transparent; font-size: .8rem; font-weight: 800; }
.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.opportunity-card { min-height: 310px; padding: 1.5rem; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 12px; background: var(--white); transition: transform .2s ease, border-color .2s ease; }
.opportunity-card:hover { transform: translateY(-4px); border-color: #8f9a88; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .64rem; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.card-category { padding: .3rem .5rem; border-radius: 4px; background: var(--mint); color: var(--forest); }
.opportunity-card h3 { margin: 1.2rem 0 .7rem; font-size: 1.32rem; line-height: 1.15; letter-spacing: -.025em; }
.opportunity-card > p { color: var(--muted); font-size: .84rem; line-height: 1.5; }
.card-facts { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card-facts div { padding: .8rem 0; display: flex; flex-direction: column; gap: .15rem; }
.card-facts div + div { padding-left: .8rem; border-left: 1px solid var(--line); }
.card-facts span { color: var(--muted); font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; }
.card-facts strong { font-size: .78rem; }
.card-link { margin-top: 1rem; display: flex; justify-content: space-between; font-size: .78rem; font-weight: 800; text-decoration: none; }
.card-link:hover { text-decoration: underline; text-underline-offset: .2rem; }
.skeleton { background: linear-gradient(100deg, #ebe9df 30%, #f8f7f0 50%, #ebe9df 70%); background-size: 400%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position-x: -100%; } }
.feed-controls { min-height: 3.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.feed-message { min-height: 1.5rem; margin: 1rem 0 0; color: var(--muted); font-size: .78rem; }
.load-more-button { margin-top: 1rem; border: 1px solid var(--forest); border-radius: 999px; padding: .72rem 1rem; background: transparent; color: var(--forest); font-size: .75rem; font-weight: 800; }
.load-more-button:hover { background: var(--forest); color: var(--white); }
.load-more-button:disabled { cursor: wait; opacity: .55; }
.load-more-button[hidden] { display: none; }

.how-it-works { background: var(--forest-dark); color: var(--white); }
.section-number.light { color: var(--lime); }
.how-grid { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.how-intro p { max-width: 500px; margin-top: 2rem; color: #afc0b3; line-height: 1.7; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.16); }
.steps li > span { color: var(--lime); font-size: .7rem; font-weight: 800; }
.steps h3 { margin: 0 0 .4rem; font-size: 1.15rem; }
.steps p { margin: 0; color: #afc0b3; font-size: .88rem; line-height: 1.55; }

.price-panel { overflow: hidden; display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 20px 55px rgba(31, 45, 33, .08); }
.price-copy { padding: clamp(2rem, 5vw, 4.5rem); }
.price-copy h2 { font-size: clamp(2.8rem, 4.6vw, 4.7rem); }
.price-copy > p { max-width: 530px; margin: 1.6rem 0; color: var(--muted); line-height: 1.65; }
.price-copy ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.price-copy li { padding: .68rem 0; border-top: 1px solid var(--line); font-size: .84rem; }
.price-copy li::before { content: "✓"; margin-right: .7rem; color: var(--forest); font-weight: 900; }
.signup-card { padding: clamp(2rem, 5vw, 4.5rem); background: var(--lime); }
.price { display: flex; align-items: flex-start; }
.price > span { margin-top: .8rem; font-size: 1.7rem; font-weight: 800; }
.price strong { font-size: clamp(5rem, 8vw, 7.5rem); line-height: .9; letter-spacing: -.08em; }
.price small { align-self: end; margin: 0 0 .8rem .55rem; font-weight: 800; }
.signup-card > p { margin: 1rem 0 2rem; font-size: .86rem; }
.signup-card label { display: block; margin-bottom: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.checkout-summary { margin: 1.1rem 0; padding: 1rem; display: grid; gap: .45rem; border: 1px solid rgba(23,63,42,.35); border-radius: 8px; background: rgba(255,255,255,.46); font-size: .75rem; line-height: 1.45; }
.checkout-summary strong { font-size: .82rem; }
.checkout-summary span::before { content: "✓"; margin-right: .5rem; color: var(--forest); font-weight: 900; }
.signup-card .checkbox-label { margin: .8rem 0; display: grid; grid-template-columns: 20px 1fr; gap: .65rem; align-items: start; color: var(--ink); font-size: .72rem; line-height: 1.5; }
.checkbox-label input { width: 18px; height: 18px; margin: .1rem 0 0; accent-color: var(--forest); }
.checkbox-label a { font-weight: 800; text-underline-offset: .15rem; }
.button-wide { width: 100%; margin-top: .4rem; }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 1.3rem; margin: .75rem 0 0; font-size: .76rem; font-weight: 700; }
.microcopy { margin: 1rem 0 0 !important; color: rgba(23,32,24,.65); font-size: .68rem !important; text-align: center; }

.faq-grid { margin-top: 2rem; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); }
.faq h2 { font-size: clamp(2.6rem, 4vw, 4rem); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 1.3rem 2rem 1.3rem 0; position: relative; cursor: pointer; list-style: none; font-weight: 750; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .3rem; font-size: 1.2rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 680px; padding: 0 2rem 1.3rem 0; color: var(--muted); line-height: 1.65; font-size: .88rem; }

footer { max-width: 1440px; margin: auto; padding: 2rem clamp(1.25rem, 4vw, 4.5rem); display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: center; border-top: 1px solid var(--line); }
.footer-brand { display: flex; gap: .7rem; align-items: center; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand div span { color: var(--muted); font-size: .68rem; }
footer > p { margin: 0; color: var(--muted); font-size: .66rem; line-height: 1.5; }
footer > div:last-child { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .7rem; font-weight: 700; }
.legal-identity { display: inline-block; margin-top: .4rem; color: #8a3a22; font-weight: 750; }

.legal { max-width: 760px; min-height: 70vh; margin: auto; padding: 5rem 1.25rem; }
.legal h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.legal h2 { margin-top: 2.5rem; font-size: 1.3rem; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal h3 { margin: 1.6rem 0 .5rem; font-size: 1rem; }
.legal ul, .legal ol { padding-left: 1.25rem; }
.legal address { padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--muted); font-style: normal; line-height: 1.7; }
.legal-lede { font-size: 1.05rem; }
.legal-callout { margin: 1.5rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--forest); background: var(--white); }
.legal-warning { border-left-color: #a74627; }
.plan-summary { margin: 2rem 0; border-top: 1px solid var(--line); }
.plan-summary div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.plan-summary dt { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-summary dd { margin: 0; font-weight: 750; }
.manage-form { margin: 2rem 0; max-width: 520px; }
.success-page { min-height: 100vh; display: grid; place-items: center; padding: 1.25rem; background: var(--forest); }
.success-card { max-width: 620px; padding: clamp(2rem, 6vw, 4rem); border-radius: 18px; background: var(--paper); text-align: center; box-shadow: var(--shadow); }
.success-card .brand-mark { margin: 0 auto 1.5rem; }
.success-card h1 { font-size: clamp(3rem, 8vw, 5rem); }

@media (max-width: 950px) {
  .hero { grid-template-columns: 1fr; }
  .radar-card { max-width: 540px; width: 100%; justify-self: center; transform: none; }
  .opportunity-grid { grid-template-columns: repeat(2, 1fr); }
  .price-panel, .how-grid, .faq-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-header { height: 70px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 3.5rem; }
  h1 { font-size: clamp(3.45rem, 16vw, 5rem); }
  .section-heading { grid-template-columns: 1fr; }
  .feed-access { align-items: flex-start; flex-direction: column; }
  .feed-access-actions { align-items: flex-start; flex-wrap: wrap; }
  .filter-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-bar label { min-width: 0; }
  .filter-button { margin: 0; justify-self: start; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .feed-controls { align-items: flex-start; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-proof { justify-content: space-between; gap: 1rem; }
  .price-copy, .signup-card { padding: 2rem 1.3rem; }
  .marquee div { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
