:root {
  --green-950: #02130f;
  --green-900: #031d17;
  --green-850: #05261e;
  --green-800: #073228;
  --green-700: #0c4b3b;
  --green-500: #1b8065;
  --gold-100: #fff2c4;
  --gold-300: #f0cf7d;
  --gold-500: #d6a847;
  --gold-700: #9e6d21;
  --cream: #f8f3e8;
  --cream-muted: #d8d0c0;
  --ink: #101c18;
  --line: rgba(232, 197, 112, 0.22);
  --line-strong: rgba(232, 197, 112, 0.48);
  --glass: rgba(8, 45, 35, 0.72);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(32, 127, 99, 0.2), transparent 32rem),
    linear-gradient(180deg, var(--green-950), var(--green-900) 40%, #041712 100%);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-500);
  color: var(--green-950);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold-300);
  color: var(--green-950);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #b9852e, #efd485 45%, #b9852e);
  color: #16251e;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  opacity: 0.74;
}

.announcement strong {
  font-weight: 900;
}

.announcement a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(2, 22, 17, 0.78);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 18, 14, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(211, 166, 69, 0.16);
}

.brand-mark img {
  width: 72px;
  max-width: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--cream-muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #ddd8cb;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.main-nav .nav-cta {
  margin-left: 6px;
  padding-inline: 18px;
  border: 1px solid var(--gold-500);
  background: var(--gold-500);
  color: var(--green-950);
}

.main-nav .nav-cta:hover {
  background: var(--gold-300);
  color: var(--green-950);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  padding: clamp(70px, 8vw, 118px) 0 32px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 190, 111, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 190, 111, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 84%);
  mask-image: linear-gradient(to bottom, black, transparent 84%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  right: -120px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(40, 153, 118, 0.28), transparent 68%);
}

.hero-glow-two {
  bottom: -260px;
  left: 16%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(214, 168, 71, 0.15), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.1vw, 5.85rem);
  letter-spacing: -0.048em;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--gold-300);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #d7d3c9;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--green-950);
  box-shadow: 0 12px 30px rgba(214, 168, 71, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(214, 168, 71, 0.26);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
}

.button-ghost:hover {
  border-color: var(--gold-300);
  background: rgba(255, 255, 255, 0.07);
}

.button-wide {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 30px;
  padding: 0;
  color: #c9c6bd;
  font-size: 0.76rem;
  list-style: none;
}

.trust-list span {
  color: var(--gold-300);
}

.portal-search {
  max-width: 660px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7, 49, 38, 0.55);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.portal-search label {
  display: block;
  margin: 0 0 9px 4px;
  color: var(--gold-100);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-control {
  display: flex;
  gap: 8px;
}

.search-control input {
  width: 100%;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  outline: none;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
}

.search-control input::placeholder {
  color: #999d95;
}

.search-control input:focus {
  border-color: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(214, 168, 71, 0.12);
}

.search-control button {
  min-width: 108px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--gold-500);
  color: var(--green-950);
  cursor: pointer;
  font-weight: 900;
}

.search-feedback {
  min-height: 1.2em;
  margin: 8px 4px 0;
  color: var(--cream-muted);
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: clamp(26px, 4vw, 46px);
  background: var(--green-800);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.18);
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
}

.hero-badge {
  position: absolute;
  right: -18px;
  bottom: -28px;
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(3, 30, 23, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-badge-number {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.hero-badge span:last-child {
  color: #ddd8cb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-status {
  position: absolute;
  top: -22px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(3, 24, 19, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.hero-status small,
.hero-status strong {
  display: block;
}

.hero-status small {
  color: #aeb3ab;
  font-size: 0.67rem;
}

.hero-status strong {
  margin-top: 2px;
  font-size: 0.78rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #66dda9;
  box-shadow: 0 0 0 7px rgba(102, 221, 169, 0.11), 0 0 22px rgba(102, 221, 169, 0.6);
}

.intent-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: clamp(72px, 9vw, 115px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(6, 40, 31, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.intent-bar a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 10px;
  border-right: 1px solid var(--line);
  color: #dcd8ce;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  transition: background 160ms ease, color 160ms ease;
}

.intent-bar a:last-child {
  border-right: 0;
}

.intent-bar a:hover {
  background: rgba(214, 168, 71, 0.12);
  color: var(--gold-100);
}

.intent-bar span {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.platform-intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.split-intro,
.section-topline {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.section-heading h2,
.section-topline h2,
.radar-panel h2,
.prime-copy h2,
.founder-copy h2,
.conversion-copy h2,
.farms-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 4.8vw, 4.75rem);
  letter-spacing: -0.045em;
}

.intro-copy p,
.section-topline > p,
.radar-panel > p,
.prime-copy > p,
.founder-copy > p,
.conversion-copy > p,
.farms-copy > p,
.faq-intro > p {
  color: #c6c5bd;
  line-height: 1.85;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.value-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(13, 67, 52, 0.52), rgba(5, 34, 27, 0.56));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.value-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(18, 84, 64, 0.58), rgba(5, 34, 27, 0.7));
  transform: translateY(-5px);
}

.value-number {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.value-card h3 {
  margin: 34px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 500;
}

.value-card p {
  margin-bottom: 0;
  color: #b9bbb4;
  font-size: 0.88rem;
  line-height: 1.7;
}

.experiences {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #f5efe3;
  color: var(--ink);
}

.experiences .eyebrow {
  color: #986c26;
}

.experiences .section-topline > p {
  color: #58625d;
}

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

.category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--green-900);
  box-shadow: 0 22px 60px rgba(29, 37, 33, 0.14);
  isolation: isolate;
}

.category-card-large {
  grid-column: 1 / -1;
  min-height: 520px;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(1, 18, 14, 0.97) 0%, rgba(2, 24, 18, 0.72) 49%, rgba(2, 24, 18, 0.16) 100%);
}

.category-card:not(.category-card-large) .category-overlay {
  background: linear-gradient(180deg, rgba(1, 18, 14, 0.08), rgba(1, 18, 14, 0.92) 68%);
}

.category-content {
  position: absolute;
  inset: auto 0 0;
  max-width: 650px;
  padding: 36px;
  color: var(--cream);
}

.category-card-large .category-content {
  inset: 0 auto 0 0;
  display: flex;
  width: 54%;
  max-width: 690px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(38px, 6vw, 72px);
}

.category-content > span {
  margin-bottom: 12px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.category-content h3 {
  max-width: 570px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.3vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
}

.category-card:not(.category-card-large) .category-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.category-content p {
  max-width: 530px;
  margin-bottom: 18px;
  color: #d2d0c8;
  font-size: 0.9rem;
}

.category-content a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold-300);
  color: var(--gold-100);
  font-size: 0.8rem;
  font-weight: 900;
  padding-bottom: 3px;
}

.category-card.is-search-match {
  box-shadow: 0 0 0 4px var(--gold-300), 0 25px 70px rgba(29, 37, 33, 0.24);
}

.radar-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 50%, rgba(24, 112, 84, 0.2), transparent 32rem),
    var(--green-950);
}

.radar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.7fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.radar-visual {
  position: relative;
}

.radar-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.radar-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(214, 168, 71, 0.22);
  border-radius: 50%;
}

.orbit-one {
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
}

.orbit-two {
  bottom: -90px;
  left: -90px;
  width: 330px;
  height: 330px;
}

.radar-panel {
  padding: 12px 0;
}

.radar-panel h2 {
  margin-bottom: 28px;
}

.radar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 18px;
}

.radar-tabs button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #d7d5cc;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.radar-tabs button[aria-selected="true"] {
  border-color: var(--gold-300);
  background: var(--gold-500);
  color: var(--green-950);
}

.radar-result {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(13, 68, 52, 0.62), rgba(5, 32, 25, 0.72));
}

.radar-result > span {
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.radar-result h3 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.12;
}

.radar-result p {
  color: #c5c5bd;
  font-size: 0.87rem;
}

.radar-result a {
  display: inline-flex;
  gap: 8px;
  color: var(--gold-100);
  font-size: 0.8rem;
  font-weight: 900;
}

.local-intelligence {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #072b22, #041b15);
}

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

.intelligence-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.intelligence-card > span {
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intelligence-card h3 {
  max-width: 490px;
  margin: 26px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.intelligence-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: #bfc1ba;
}

.editorial-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(214, 168, 71, 0.08), transparent);
}

.editorial-link span {
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-link h3 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.prime-section {
  background: #f5efe3;
  color: var(--ink);
}

.prime-section .eyebrow {
  color: #986c26;
}

.prime-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.prime-copy > p {
  margin: 25px 0 30px;
  color: #56605a;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(12, 75, 59, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.check-list li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--green-800);
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
}

.check-list strong,
.check-list p {
  display: block;
}

.check-list strong {
  margin-bottom: 3px;
}

.check-list p {
  margin: 0;
  color: #69716d;
  font-size: 0.82rem;
}

.prime-visual {
  position: relative;
}

.prime-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(19, 42, 32, 0.2);
}

.sponsor-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 27, 21, 0.86);
  color: #f1eadb;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ad-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 60px;
}

.ad-format {
  min-height: 235px;
  padding: 27px;
  border: 1px solid rgba(12, 75, 59, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
}

.format-kicker {
  color: #986c26;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ad-format h3 {
  margin: 40px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.ad-format p {
  margin-bottom: 0;
  color: #626a65;
  font-size: 0.84rem;
}

.founder-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 168, 71, 0.12), transparent 30rem),
    var(--green-950);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.founder-visual img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.founder-copy h2 {
  margin-bottom: 28px;
}

.scarcity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin: 26px 0;
}

.scarcity-grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.founder-note {
  margin-bottom: 22px;
  padding: 18px;
  border-left: 3px solid var(--gold-500);
  background: rgba(214, 168, 71, 0.08);
}

.founder-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-100);
}

.founder-note p {
  margin: 0;
  color: #c2c3bc;
  font-size: 0.82rem;
}

.conversion-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #06251d, #041b15);
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.conversion-copy h2 {
  margin-bottom: 28px;
}

.journey-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.journey-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
}

.journey-list strong {
  display: block;
}

.journey-list p {
  margin: 2px 0 0;
  color: #bfc1ba;
  font-size: 0.8rem;
}

.conversion-visual img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metrics-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  margin-top: 70px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.metrics-band img {
  width: 100%;
  border-radius: 24px;
}

.metrics-copy {
  padding: 24px 28px 24px 0;
}

.metrics-copy > span {
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.metrics-copy h3 {
  max-width: 620px;
  margin: 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.metrics-copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: #bfc1ba;
}

.farms-section {
  background: #f5efe3;
  color: var(--ink);
}

.farms-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.farms-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 76px rgba(28, 47, 37, 0.2);
}

.farms-copy .eyebrow {
  color: #986c26;
}

.farms-copy h2 {
  margin-bottom: 27px;
}

.farms-copy > p {
  color: #59615d;
}

.farms-copy p a {
  border-bottom: 1px solid #986c26;
  color: #704c15;
  font-weight: 800;
}

.faq-section {
  background: var(--green-950);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-align: left;
}

.faq-item button span {
  color: var(--gold-300);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
}

.faq-answer {
  padding: 0 50px 25px 2px;
}

.faq-answer p {
  color: #bfc1ba;
}

.final-cta {
  padding: 0 0 100px;
  background: var(--green-950);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding: clamp(38px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(214, 168, 71, 0.22), transparent 22rem),
    linear-gradient(135deg, #0a4b3a, #04241c 62%);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.final-cta-actions {
  display: flex;
  min-width: 260px;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
}

.final-cta-actions > span {
  color: #d1cec4;
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  padding: 78px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #01110d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-brand img {
  width: 170px;
  border-radius: 16px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 20px;
  color: #9fa39d;
  font-size: 0.85rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--gold-300);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer > .container > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer a {
  width: max-content;
  max-width: 100%;
  color: #c1c2bc;
  font-size: 0.82rem;
}

.site-footer a:hover {
  color: var(--gold-100);
}

.footer-disclaimer {
  max-width: 280px;
  color: #7e837e;
  font-size: 0.72rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #767d78;
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 10px 17px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #1f9d63;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  font-size: 0.8rem;
}

.whatsapp-float span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1rem;
}

.noscript-message {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 950;
  max-width: 350px;
  padding: 14px;
  border-radius: 14px;
  background: var(--gold-300);
  color: var(--green-950);
  font-size: 0.78rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay {
  transition-delay: 110ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .main-nav a {
    padding-inline: 9px;
    font-size: 0.76rem;
  }

  .hero-grid,
  .radar-grid,
  .founder-grid,
  .farms-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 860px);
    margin-inline: auto;
  }

  .intent-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .intent-bar a:nth-child(3) {
    border-right: 0;
  }

  .intent-bar a:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

  .prime-hero,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .prime-copy,
  .conversion-copy,
  .founder-copy,
  .farms-copy {
    max-width: 800px;
  }

  .prime-visual,
  .conversion-visual,
  .founder-visual,
  .farms-visual {
    width: min(100%, 900px);
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta-actions {
    width: min(100%, 360px);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 84px 0;
  }

  .announcement {
    gap: 7px;
    font-size: 0.66rem;
  }

  .announcement > span {
    display: none;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: calc(40px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 28px 20px;
    background: rgba(2, 22, 17, 0.985);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-header.is-scrolled .main-nav {
    top: var(--header-height);
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .main-nav .nav-cta {
    margin: 5px 0 0;
    text-align: center;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 0;
    padding-top: 70px;
  }

  .hero-grid {
    gap: 65px;
  }

  .hero-image-frame {
    transform: none;
  }

  .hero-status {
    top: -18px;
    left: 16px;
  }

  .hero-badge {
    right: 16px;
  }

  .split-intro,
  .section-topline,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading h2,
  .section-topline h2,
  .radar-panel h2,
  .prime-copy h2,
  .founder-copy h2,
  .conversion-copy h2,
  .farms-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

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

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

  .category-card-large {
    grid-column: auto;
    min-height: 470px;
  }

  .category-card-large .category-content {
    inset: auto 0 0;
    width: 100%;
    padding: 36px;
  }

  .category-card-large .category-overlay {
    background: linear-gradient(180deg, rgba(1, 18, 14, 0.04), rgba(1, 18, 14, 0.94) 64%);
  }

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

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

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

  .metrics-copy {
    padding: 10px 16px 24px;
  }

  .faq-intro {
    position: static;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .announcement {
    min-height: 38px;
    padding-inline: 10px;
    letter-spacing: 0.04em;
  }

  .announcement a {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14.3vw, 4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .search-control {
    flex-direction: column;
  }

  .search-control button {
    min-height: 46px;
  }

  .hero-status {
    display: none;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
  }

  .intent-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }

  .intent-bar a {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .intent-bar a:nth-child(even) {
    border-right: 0;
  }

  .intent-bar a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .value-grid,
  .ad-format-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 190px;
  }

  .category-card,
  .category-card-large {
    min-height: 440px;
  }

  .category-content,
  .category-card-large .category-content {
    padding: 26px;
  }

  .category-content h3,
  .category-card:not(.category-card-large) .category-content h3 {
    font-size: 1.65rem;
  }

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

  .radar-tabs button:last-child {
    grid-column: 1 / -1;
  }

  .intelligence-card {
    min-height: 0;
    padding: 28px;
  }

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

  .metrics-band {
    padding: 10px;
  }

  .final-cta-inner {
    padding: 34px 25px;
  }

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

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
