/* ============ Tokens ============ */
:root {
  --ink:      #0f1a12;         /* deep forest */
  --ink-2:    #1c2a20;
  --paper:    #f7f3ea;         /* warm cream */
  --paper-2:  #ede6d6;
  --line:     #d9d0bd;
  --muted:    #5a6156;
  --sun:      #f2a20a;         /* solar amber */
  --sun-2:    #d68a00;
  --leaf:     #2d5a3a;         /* signal green for confirmations */
  --danger:   #b3341c;

  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 26, 18, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(15, 26, 18, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 26, 18, 0.35);

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-md: 1.1rem;
  --text-lg: 1.35rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: clamp(2.3rem, 4.4vw, 3.2rem);
  --text-hero: clamp(2.6rem, 6vw, 4.4rem);

  --container: 1180px;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 {
  font-family: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
}
p { margin: 0; }
a { color: var(--ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--sun-2); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sun-2);
  padding: 0.35rem 0.75rem;
  background: rgba(242, 162, 10, 0.12);
  border-radius: 999px;
}
.eyebrow--light {
  color: #ffd06b;
  background: rgba(15, 26, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(242, 162, 10, 0.4);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(242, 162, 10, 0.25);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  line-height: 1;
}
.btn--sm { padding: 0.6rem 1.05rem; font-size: var(--text-sm); }
.btn--lg { padding: 1rem 1.6rem; font-size: var(--text-md); }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--sun);
  color: #1a1108;
  border-color: var(--sun-2);
  box-shadow: 0 6px 18px -8px rgba(242, 162, 10, 0.7);
}
.btn--primary:hover { background: var(--sun-2); color: #fff; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247, 243, 234, 0.35);
}
.btn--ghost:hover { background: rgba(247, 243, 234, 0.1); color: var(--paper); }
.section .btn--ghost { color: var(--ink); border-color: var(--ink); }
.section .btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800;
  font-size: var(--text-md);
  color: var(--ink);
}
.nav__brand svg { color: var(--sun-2); flex-shrink: 0; }
.nav__brand--footer { color: var(--paper); }
.nav__brand--footer svg { color: var(--sun); }
.nav__brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 1px;
}
.nav__brand-text strong { font-weight: 800; }
.nav__brand-sub {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex; gap: 1.7rem;
  font-size: var(--text-sm); font-weight: 500;
}
.nav__links a { color: var(--muted); }
.nav__links a:hover { color: var(--ink); }
@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: min(760px, 92vh);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,26,18,0.15) 0%, rgba(15,26,18,0.55) 55%, rgba(15,26,18,0.85) 100%),
    linear-gradient(90deg, rgba(15,26,18,0.55) 0%, rgba(15,26,18,0) 45%);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__title {
  font-size: var(--text-hero);
  margin: 1rem 0 1.25rem;
  color: var(--paper);
}
.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--sun);
}
.hero__sub {
  font-size: var(--text-md);
  color: rgba(247, 243, 234, 0.86);
  max-width: 58ch;
  line-height: 1.55;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}
.hero__meta {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 243, 234, 0.22);
  max-width: 620px;
}
.hero__meta li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__meta strong {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--text-md);
  color: var(--paper);
}
.hero__meta span {
  font-size: var(--text-xs);
  color: rgba(247, 243, 234, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .hero__meta { grid-template-columns: 1fr; gap: 0.9rem; }
}

/* ============ Disclosure strip ============ */
.strip {
  background: #1a1108;
  color: #f7d78a;
}
.strip__row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 0;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.strip__row svg { flex-shrink: 0; color: var(--sun); }

/* ============ Sections ============ */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.section--tint { background: var(--paper-2); }
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section__title {
  font-size: var(--text-3xl);
  margin: 1rem 0 0.75rem;
  max-width: 22ch;
}
.section__title--light { color: var(--paper); }
.section__lede {
  font-size: var(--text-md);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
}
.section__lede--light { color: rgba(247, 243, 234, 0.78); }

/* ============ Roles ============ */
.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .roles { grid-template-columns: 1fr; }
}
.role {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.role__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.role__media img { width: 100%; height: 100%; object-fit: cover; }
.role__body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
}
.role h3 { font-size: var(--text-xl); margin: 0; }
.role__lede { color: var(--muted); font-size: var(--text-base); }
.role__list {
  list-style: none; padding: 0; margin: 0.25rem 0 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.role__list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
.role__list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sun);
}
.role__meta {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ============ Steps ============ */
.steps {
  list-style: none; padding: 0;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.steps__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--sun-2);
  letter-spacing: 0.06em;
}
.steps h4 { font-size: var(--text-md); margin: 0; }
.steps p { color: var(--muted); font-size: var(--text-sm); line-height: 1.55; }

/* ============ Protections ============ */
.protections {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 720px) { .protections { grid-template-columns: 1fr; } }
.protection {
  background: rgba(247, 243, 234, 0.05);
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.protection h4 {
  color: var(--paper);
  font-size: var(--text-md);
  margin: 0 0 0.5rem;
}
.protection p {
  color: rgba(247, 243, 234, 0.75);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.protection a { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }
.protection a:hover { color: #ffd06b; }

/* ============ Apply ============ */
.apply {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .apply { grid-template-columns: 1fr; } }

.apply__bullets {
  list-style: none; padding: 0;
  margin: 1.5rem 0 0;
  display: flex; flex-direction: column; gap: 0.65rem;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
}
.apply__bullets li { padding-left: 1.25rem; position: relative; }
.apply__bullets li::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--sun);
}
.apply__bullets strong { color: var(--ink); font-weight: 700; }

.apply__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: var(--text-base);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(90, 97, 86, 0.65); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sun-2);
  box-shadow: 0 0 0 3px rgba(242, 162, 10, 0.22);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 96px; }

.field--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field--half > div { display: flex; flex-direction: column; gap: 0.4rem; }
@media (max-width: 540px) { .field--half { grid-template-columns: 1fr; } }

.field--group {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem 1.1rem;
  margin: 0;
  background: rgba(247, 243, 234, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.field--group legend {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
  padding: 0 0.35rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.field__hint {
  font-weight: 400;
  color: var(--muted);
  font-size: var(--text-xs);
}
.field--stack { gap: 0; }
.field--triple {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1fr;
  gap: 0.75rem;
}
.field--triple > div { display: flex; flex-direction: column; gap: 0.4rem; }
@media (max-width: 540px) {
  .field--triple { grid-template-columns: 1fr; }
}

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

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}
.field--check input {
  width: 18px; height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--sun-2);
  flex-shrink: 0;
}
.field--check label {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}

.apply__note {
  font-size: var(--text-xs);
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin-top: -0.35rem;
}

.apply__success {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--leaf);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.apply__success-inner { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; max-width: 44ch; margin: 0 auto; }
.apply__success svg { color: var(--leaf); background: rgba(45, 90, 58, 0.08); border-radius: 50%; padding: 8px; box-sizing: content-box; }
.apply__success h3 { font-size: var(--text-xl); color: var(--leaf); }
.apply__success p { color: var(--muted); font-size: var(--text-sm); line-height: 1.6; }

/* ============ FAQ ============ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); margin-top: 2rem; }
.faq summary {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: var(--text-md);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sun-2);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 68ch;
}
.faq a { color: var(--sun-2); text-decoration: underline; text-underline-offset: 3px; }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 2rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sun);
  margin-bottom: 0.85rem;
}
.footer a {
  display: block;
  color: rgba(247, 243, 234, 0.75);
  font-size: var(--text-sm);
  padding: 0.2rem 0;
}
.footer a:hover { color: var(--sun); }
.footer__tag {
  color: rgba(247, 243, 234, 0.65);
  font-size: var(--text-sm);
  max-width: 32ch;
  margin-top: 0.75rem;
  line-height: 1.55;
}
.footer__note {
  font-size: var(--text-xs);
  color: rgba(247, 243, 234, 0.55);
  line-height: 1.55;
  max-width: 42ch;
}
.footer__base {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 243, 234, 0.1);
  display: flex; justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(247, 243, 234, 0.55);
}
@media (max-width: 640px) {
  .footer__base { flex-direction: column; gap: 0.4rem; }
}
