:root {
  --ink: #09231c;
  --forest: #082b22;
  --forest-2: #0d3d31;
  --lime: #d7ff48;
  --paper: #f6f7f1;
  --white: #ffffff;
  --muted: #63746e;
  --line: #dce3dd;
  --soft: #e9eee7;
  --radius: 1.2rem;
  --shadow: 0 24px 70px rgba(4, 28, 22, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--lime); padding: .7rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 78px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--forest);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; width: max-content; color: var(--white); text-decoration: none; font-size: 1.25rem; font-weight: 850; letter-spacing: -.04em; }
.brand > span:last-child > span { color: var(--lime); }
.brand-mark { width: 34px; height: 34px; border: 2px solid var(--lime); border-radius: 50%; display: grid; place-items: center; position: relative; }
.brand-mark::before, .brand-mark::after, .brand-mark span { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--lime); position: absolute; }
.brand-mark::before { left: 8px; top: 9px; }
.brand-mark::after { right: 7px; bottom: 8px; }
.brand-mark span { right: 9px; top: 8px; box-shadow: -2px 10px 0 var(--lime); }

.site-header nav { display: flex; align-items: center; gap: 2rem; }
.site-header nav a { color: #d4e1dc; text-decoration: none; font-size: .9rem; font-weight: 650; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--lime); }
.header-cta { justify-self: end; padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; text-decoration: none; font-size: .85rem; font-weight: 800; }

.hero {
  min-height: min(720px, calc(100svh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
}

.hero-copy { padding: clamp(3.5rem, 8vw, 8.5rem) clamp(1.25rem, 6vw, 7rem); align-self: center; position: relative; z-index: 2; }
.hero-copy::after { content: ""; position: absolute; width: 20rem; height: 20rem; left: -12rem; bottom: -7rem; border: 1px solid rgba(215,255,72,.22); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(215,255,72,.025), 0 0 0 10rem rgba(215,255,72,.018); pointer-events: none; }
.eyebrow, .kicker { margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .15em; font-size: .75rem; line-height: 1.3; font-weight: 900; }
.eyebrow { color: #e1ebdf; display: flex; align-items: center; gap: .7rem; }
.eyebrow span { width: 2rem; height: 2px; background: var(--lime); }
.kicker { color: #32745f; }
h1, h2, h3, blockquote { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: .98; }
h1 { max-width: 770px; margin: 0; font-size: clamp(3.1rem, 6vw, 6.8rem); }
h1 em { display: block; color: var(--lime); font-weight: inherit; }
.hero-lede { max-width: 650px; margin: 2rem 0 0; color: #cfddd8; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; margin-top: 2.2rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: .82rem 1.2rem; border-radius: 999px; text-decoration: none; font-size: .92rem; font-weight: 850; }
.button-primary { background: var(--lime); color: #10251f; }
.button-primary:hover, .button-primary:focus-visible { background: #e3ff7e; transform: translateY(-1px); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: rgba(255,255,255,.6); }
.trust-list { display: flex; gap: 2rem; padding: 1.8rem 0 0; margin: 2.1rem 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); color: #b7c9c3; font-size: .8rem; }
.trust-list li { max-width: 190px; }
.trust-list strong { display: block; color: var(--lime); font-family: Georgia, serif; font-size: 1.65rem; line-height: 1; margin-bottom: .3rem; }

.hero-visual { margin: 0; position: relative; min-height: 560px; background: #214b3d; }
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: 58% center; }
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,43,34,.48), transparent 28%), linear-gradient(0deg, rgba(8,43,34,.55), transparent 42%); }
.hero-visual figcaption { position: absolute; z-index: 2; right: clamp(1.25rem, 4vw, 3rem); bottom: clamp(1.25rem, 4vw, 3rem); width: min(300px, calc(100% - 2.5rem)); padding: 1.1rem 1.2rem; color: var(--white); background: rgba(7,31,25,.83); border-left: 3px solid var(--lime); backdrop-filter: blur(8px); }
.hero-visual figcaption span { display: block; color: var(--lime); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.hero-visual figcaption strong { display: block; margin-top: .3rem; font-size: .93rem; line-height: 1.4; }

.section { padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem); }
.section-heading { max-width: 760px; }
.section-heading h2, .method h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); }
.section-heading > p:last-child, .method-intro > p:last-child { color: var(--muted); max-width: 650px; margin: 1.4rem 0 0; }

.orientation { background: var(--white); }
.decision-panel { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(320px,.55fr); gap: clamp(1.2rem, 3vw, 3rem); margin-top: 3.2rem; align-items: stretch; }
.choice-groups { border-top: 1px solid var(--line); }
fieldset { border: 0; border-bottom: 1px solid var(--line); margin: 0; padding: 1.5rem 0; }
legend { width: 100%; margin-bottom: 1rem; font-weight: 850; }
legend span { display: inline-block; width: 2.3rem; color: #759087; font-size: .72rem; letter-spacing: .1em; }
.choice-row { display: flex; flex-wrap: wrap; gap: .55rem; padding-left: 2.3rem; }
.choice-row button { min-height: 44px; padding: .65rem .95rem; border: 1px solid var(--line); background: var(--white); color: #254039; border-radius: 999px; cursor: pointer; font-weight: 700; }
.choice-row button:hover, .choice-row button:focus-visible { border-color: #7b9c90; }
.choice-row button[aria-pressed="true"] { color: #10251f; background: var(--lime); border-color: #b6d82d; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }

.result-card { display: flex; flex-direction: column; min-height: 100%; padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--radius); color: var(--white); background: var(--forest); box-shadow: var(--shadow); }
.result-label { color: var(--lime); text-transform: uppercase; font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.result-card h3 { margin: .8rem 0 1rem; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; }
.result-card > p:not(.result-label) { color: #cbdad5; }
.result-card > a { margin-top: auto; padding-top: 1.5rem; color: var(--lime); font-weight: 850; text-decoration: none; }
.result-note { display: flex; gap: .6rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); color: #9fb4ad; font-size: .76rem; }
.result-note span { display: grid; place-items: center; flex: 0 0 20px; height: 20px; border: 1px solid #708a81; border-radius: 50%; font-weight: 850; }

.guides { background: var(--paper); }
.heading-row { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: end; }
.heading-row > p { max-width: 520px; justify-self: end; }
.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #cbd6cf; border-left: 1px solid #cbd6cf; margin-top: 3.5rem; }
.guide-card { min-height: 310px; display: flex; flex-direction: column; padding: 1.5rem; border-right: 1px solid #cbd6cf; border-bottom: 1px solid #cbd6cf; background: rgba(255,255,255,.35); }
.guide-card-featured { background: var(--lime); }
.guide-index { color: #789087; font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.guide-card-featured .guide-index { color: #496113; }
.guide-card > div { margin: auto 0; }
.guide-card p { margin: 0 0 .5rem; text-transform: uppercase; font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.guide-card h3 { margin: 0 0 .8rem; font-size: 1.75rem; line-height: 1.06; }
.guide-card div span { color: var(--muted); font-size: .83rem; }
.guide-card-featured div span { color: #40531c; }
.guide-card > a, .status { margin-top: auto; font-size: .78rem; font-weight: 850; }
.guide-card > a { display: flex; justify-content: space-between; text-decoration: none; }
.status { color: #789087; }

.method { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); color: var(--white); background: var(--forest); }
.method .kicker { color: var(--lime); }
.method-intro > p:last-child { color: #b9cbc5; }
.method-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.method-steps li { display: grid; grid-template-columns: 50px .8fr 1fr; gap: 1rem; align-items: start; padding: 1.65rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.method-steps li > span { color: var(--lime); font-size: .72rem; font-weight: 900; }
.method-steps strong { font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.15; }
.method-steps p { margin: 0; color: #a9beb7; font-size: .88rem; }

.closing { padding: clamp(4.5rem, 9vw, 9rem) 1.25rem; text-align: center; background: var(--white); }
.closing blockquote { max-width: 1000px; margin: 1.2rem auto 2.2rem; font-size: clamp(2.5rem, 5.5vw, 5.8rem); }

footer { padding: 2.5rem clamp(1.25rem, 6vw, 7rem); display: grid; grid-template-columns: 1fr auto; gap: .8rem 2rem; align-items: center; color: #cad8d3; background: #051e18; }
footer p { margin: 0; font-size: .86rem; }
footer nav { grid-column: 2; grid-row: 1 / span 2; display: grid; grid-template-columns: repeat(2,auto); gap: .4rem 1.4rem; font-size: .78rem; }
footer nav a { text-decoration: none; }
footer nav span { color: #829990; }
footer small { grid-column: 1 / -1; padding-top: 1.5rem; margin-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); color: #718a81; }

:focus-visible { outline: 3px solid #f0ffac; outline-offset: 3px; }

.consent-panel { position: fixed; z-index: 1000; left: 1rem; right: 1rem; bottom: 1rem; display: grid; grid-template-columns: 1fr auto; gap: 1.2rem 2rem; align-items: center; max-width: 1040px; margin: 0 auto; padding: 1.2rem 1.35rem; color: var(--white); background: #041a15; border: 1px solid rgba(255,255,255,.2); border-radius: 1rem; box-shadow: 0 18px 70px rgba(0,0,0,.35); }
.consent-panel strong { display: block; color: var(--lime); font-size: .95rem; }
.consent-panel p { margin: .35rem 0 0; color: #c7d5d0; font-size: .8rem; line-height: 1.45; }
.consent-panel a { color: var(--white); }
.consent-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.consent-actions button, .footer-button { min-height: 42px; padding: .65rem .85rem; color: var(--white); background: transparent; border: 1px solid #6e837b; border-radius: 999px; font: inherit; font-size: .75rem; font-weight: 800; cursor: pointer; }
.consent-actions .consent-accept { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.footer-button { min-height: 0; padding: 0; border: 0; border-radius: 0; color: #cad8d3; font-size: inherit; text-align: left; }
.legal-alert { margin: 0 0 2rem; padding: 1rem 1.2rem; border-left: 4px solid #c18437; background: #fff7e8; }
.legal-list dt { margin-top: 1.1rem; color: var(--ink); font-weight: 850; }
.legal-list dd { margin: .25rem 0 0; color: #42574f; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 4rem; }
  .hero-visual { min-height: 520px; }
  .decision-panel, .method { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; gap: .75rem; }
  .brand { font-size: 1.05rem; }
  .brand-mark { width: 30px; height: 30px; }
  .header-cta { padding: .55rem .75rem; font-size: .75rem; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 4.3rem; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .trust-list { flex-direction: column; gap: 1rem; }
  .hero-visual { min-height: 390px; }
  .hero-visual img { object-position: 64% center; }
  .section { padding-top: 4rem; padding-bottom: 4rem; }
  .heading-row { grid-template-columns: 1fr; gap: .5rem; }
  .heading-row > p { justify-self: start; }
  .choice-row { padding-left: 0; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 265px; }
  .method-steps li { grid-template-columns: 40px 1fr; }
  .method-steps p { grid-column: 2; }
  footer { grid-template-columns: 1fr; }
  footer nav { grid-column: 1; grid-row: auto; margin: 1rem 0; }
  .consent-panel { grid-template-columns: 1fr; }
  .consent-actions { display: grid; }
}

@media (prefers-reduced-motion: no-preference) {
  .button, .choice-row button { transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
  .guide-card { transition: background-color .25s ease, transform .25s ease; }
  .guide-card:not(.guide-card-featured):hover { background: var(--white); transform: translateY(-2px); }
}
