:root {
  --color-bg: #000000;
  --color-bg-soft: #06100a;
  --color-surface: #f6faf6;
  --color-surface-strong: #ffffff;
  --color-text: #eef4ee;
  --color-text-dark: #132019;
  --color-muted: #a4b3a8;
  --color-muted-dark: #58685c;
  --color-green: #43985b;
  --color-green-deep: #275d38;
  --color-gold: #f1c84c;
  --color-gold-deep: #906d17;
  --color-gold-soft: rgba(241, 200, 76, 0.22);
  --color-line: rgba(255, 255, 255, 0.08);
  --color-line-dark: rgba(19, 32, 25, 0.14);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  min-width: 320px;
}

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

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(67, 152, 91, 0.4), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(241, 200, 76, 0.24), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(67, 152, 91, 0.18), transparent 35%),
    linear-gradient(180deg, #000000 0%, #06100a 100%);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section--light {
  color: var(--color-text-dark);
}

.section--light .container,
.section--contact .container {
  background: linear-gradient(180deg, rgba(244, 247, 243, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.75rem;
}

.section-heading h2,
.hero h1,
.hero-panel h2,
.contact-copy h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-heading p:last-child {
  color: var(--color-muted-dark);
  max-width: 64ch;
}

.section-heading--split {
  max-width: none;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(241, 200, 76, 0.24), rgba(67, 152, 91, 0.64));
  border: 1px solid rgba(241, 200, 76, 0.46);
  color: #fff7dc;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 200, 76, 0.62);
  background: linear-gradient(180deg, #f5d467, #e6bc3d);
  color: #10150f;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.button--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.button--small {
  min-height: 2.7rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.button--full {
  width: 100%;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__content {
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  margin-bottom: 1.35rem;
}

.hero__lead {
  max-width: 60ch;
  font-size: 1.1rem;
  color: #dfe7df;
  margin-bottom: 1rem;
}

.hero__lead--secondary {
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(10, 21, 14, 0.98), rgba(20, 48, 31, 0.92)),
    var(--color-bg-soft);
  border: 1px solid rgba(241, 200, 76, 0.24);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 12rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 200, 76, 0.4), transparent 68%);
}

.hero-panel__top {
  position: relative;
  z-index: 1;
}

.hero-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.hero-panel__list {
  position: relative;
  z-index: 1;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hero-panel__list li {
  padding: 0.9rem 0 0.9rem 1.4rem;
  border-top: 1px solid var(--color-line);
  color: #e7efe6;
  position: relative;
}

.hero-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero-panel__facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.hero-panel__facts article {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel__facts strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-gold);
}

.hero-panel__facts span {
  color: var(--color-muted);
  display: block;
}

.opportunity-grid,
.support-grid,
.process-grid,
.trust-grid {
  display: grid;
  gap: 1.25rem;
}

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

.opportunity-card,
.support-card,
.process-step,
.trust-card,
.contact-card {
  border-radius: var(--radius-lg);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.opportunity-card {
  padding: 1.6rem;
  border: 1px solid var(--color-line-dark);
  background: rgba(19, 32, 25, 0.03);
}

.opportunity-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.opportunity-card p {
  margin-bottom: 0;
  color: var(--color-muted-dark);
}

.opportunity-card--accent {
  background: linear-gradient(145deg, rgba(67, 152, 91, 0.1), rgba(241, 200, 76, 0.16));
  border-color: rgba(241, 200, 76, 0.35);
}

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

.support-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-card:hover,
.process-step:hover,
.trust-card:hover,
.opportunity-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
}

.support-card__index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.support-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.support-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.process-step {
  position: relative;
  padding: 1.75rem;
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.72);
}

.process-step__number {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--color-green);
  color: #f6fbf6;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--color-muted-dark);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.trust-intro p:last-child {
  color: var(--color-muted);
  max-width: 54ch;
}

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

.trust-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(16, 27, 20, 0.98), rgba(10, 19, 14, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-card--outline {
  border-color: rgba(241, 200, 76, 0.34);
  background: linear-gradient(180deg, rgba(16, 27, 20, 0.96), rgba(16, 27, 20, 0.92));
}

.trust-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: var(--color-gold);
}

.trust-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.section--contact {
  padding-top: 2rem;
  padding-bottom: 5.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.contact-copy p {
  color: var(--color-muted-dark);
  max-width: 58ch;
}

.contact-copy__note {
  margin-bottom: 0;
  color: var(--color-green);
  font-weight: 600;
}

.contact-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(19, 32, 25, 0.95), rgba(10, 18, 13, 0.98));
  border: 1px solid rgba(241, 200, 76, 0.24);
  box-shadow: var(--shadow-soft);
}

.contact-list {
  margin-bottom: 1.5rem;
}

.contact-list div + div {
  border-top: 1px solid var(--color-line);
}

.contact-list div {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 0;
}

.contact-list dt {
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: #edf3ed;
  font-size: 1.05rem;
}

.contact-list a {
  color: inherit;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2.5rem;
  font-size: 0.95rem;
}

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

.hero__content,
.hero-panel,
.section-heading,
.opportunity-card,
.support-card,
.process-step,
.trust-card,
.contact-card {
  animation: rise-in 700ms ease both;
}

.hero-panel {
  animation-delay: 120ms;
}

.support-card:nth-child(2),
.process-step:nth-child(2),
.trust-card:nth-child(2) {
  animation-delay: 90ms;
}

.support-card:nth-child(3),
.process-step:nth-child(3),
.trust-card:nth-child(3) {
  animation-delay: 150ms;
}

.support-card:nth-child(4),
.trust-card:nth-child(4) {
  animation-delay: 220ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .trust-layout,
  .contact-layout,
  .section-heading--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 4.5rem 0;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.25rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  .opportunity-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}

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

  .section--light .container,
  .section--contact .container {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-panel,
  .support-card,
  .process-step,
  .trust-card,
  .contact-card,
  .opportunity-card {
    padding: 1.3rem;
  }

  .button,
  .button--small {
    width: 100%;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand__text {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
