:root {
  --brand-accent: #94b41e;
  --brand-accent-weak: rgba(148, 180, 30, 0.14);
  --brand-accent-hover: rgba(148, 180, 30, 0.25);
  --brand-accent-strong: #7a9516;

  --bg: #101510;
  --bg-soft: #1f261f;
  --fg: #1f2a1f;
  --muted: #3e4d3f;
  --accent: var(--brand-accent);
  --accent-soft: var(--brand-accent-weak);
  --line: #4b5a4b;
  --brand-dark: #253025;
  --card-dark: rgba(18, 26, 18, 0.88);
  --card-dark-soft: rgba(28, 36, 28, 0.78);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(18, 26, 18, 0.15);
  --shadow-card: 0 14px 36px rgba(10, 16, 10, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(
      circle at 6% 6%,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(248, 250, 246, 0.96) 18%,
      rgba(237, 241, 235, 0.72) 36%,
      rgba(237, 241, 235, 0) 60%
    ),
    radial-gradient(circle at 10% 0%, var(--brand-accent-hover), transparent 40%),
    radial-gradient(circle at 88% 8%, var(--brand-accent-weak), transparent 36%),
    linear-gradient(
      100deg,
      #ffffff 0%,
      #f8faf7 12%,
      #eef4eb 28%,
      #e3ecde 46%,
      rgba(148, 180, 30, 0.18) 66%,
      rgba(148, 180, 30, 0.28) 84%,
      var(--brand-accent) 100%
    );
  color: var(--fg);
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.topbar,
.hero,
.format-strip {
  width: min(1100px, calc(100% - 36px));
  margin-inline: auto;
}

.topbar {
  padding: 26px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 750;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.brand img {
  border-radius: 0;
  mix-blend-mode: multiply;
  filter: saturate(0.95) contrast(1.05);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(56, 72, 57, 0.44);
  border-radius: 999px;
  padding: 2px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.22);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2c3b2d;
  padding: 7px 13px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.76);
  color: #1f2a1f;
}

.hero {
  padding: 30px 0 26px;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 24px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 640;
}

.hero-copy h1 {
  margin: 0;
  max-width: 14ch;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: clamp(1.95rem, 4.8vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: #1f2a1f;
}

.lead {
  margin-top: 20px;
  color: #2f3f30;
  max-width: 62ch;
  line-height: 1.58;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
  font-weight: 680;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #11140f;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px var(--brand-accent-hover);
}

.btn-ghost {
  color: #233123;
  border-color: rgba(104, 126, 37, 0.48);
  background: linear-gradient(180deg, rgba(246, 249, 239, 0.94), rgba(233, 240, 220, 0.92));
  box-shadow: 0 10px 24px rgba(124, 148, 28, 0.14);
}

.btn-ghost:hover {
  background: linear-gradient(180deg, rgba(251, 253, 247, 0.98), rgba(240, 245, 230, 0.96));
  box-shadow: 0 12px 26px rgba(124, 148, 28, 0.2);
}

.hero-card {
  border: 1px solid rgba(148, 180, 30, 0.34);
  background:
    linear-gradient(180deg, rgba(208, 220, 163, 0.18), rgba(208, 220, 163, 0) 22%),
    linear-gradient(150deg, rgba(150, 178, 39, 0.4), rgba(18, 26, 18, 0.95));
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(10, 16, 10, 0.34),
    0 0 0 1px rgba(148, 180, 30, 0.06);
}

.hero-card h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(10, 16, 10, 0.45);
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: #ffffff;
  display: grid;
  gap: 12px;
  line-height: 1.56;
  text-shadow: 0 1px 2px rgba(10, 16, 10, 0.35);
}

.path-list {
  display: grid;
  gap: 10px;
}

.path-item {
  display: grid;
  gap: 4px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.path-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.path-item-emphasis {
  background: linear-gradient(180deg, rgba(159, 192, 41, 0.42), rgba(148, 180, 30, 0.24));
  border-color: rgba(240, 246, 221, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(88, 112, 18, 0.22),
    0 0 0 1px rgba(199, 219, 130, 0.12);
}

.path-item-emphasis .path-kicker {
  color: #f1f6df;
}

.path-item-emphasis strong {
  color: #ffffff;
}

.path-kicker {
  color: #d8e5c7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 700;
}

.path-item strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.path-item span:last-child {
  line-height: 1.42;
  font-size: 0.98rem;
}

.format-strip {
  padding: 10px 0 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.format-strip article {
  border: 1px solid rgba(110, 140, 108, 0.45);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(31, 41, 31, 0.88), var(--brand-accent-strong));
  padding: 18px;
  box-shadow: 0 10px 24px rgba(12, 18, 12, 0.24);
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.format-strip article:hover {
  transform: translateY(-2px);
  border-color: var(--brand-accent-hover);
}

.format-strip h3 {
  margin: 0;
  font-size: 0.99rem;
  color: #ffffff;
}

.format-strip p {
  margin: 8px 0 0;
  color: #ffffff;
  line-height: 1.52;
}

.strip-link {
  display: inline-flex;
  margin-top: 14px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  width: fit-content;
}

.strip-link:hover {
  border-bottom-color: #ffffff;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 10, 0.62);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(420px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(110, 146, 108, 0.46);
  background: linear-gradient(180deg, rgba(21, 30, 21, 0.95), rgba(16, 22, 16, 0.95));
  box-shadow: 0 20px 48px rgba(7, 12, 7, 0.45);
  padding: 22px;
}

.modal-card h2 {
  margin: 0;
  color: #e0e8db;
}

.modal-card p {
  margin: 10px 0 18px;
  color: #c6d2c4;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .format-strip {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) and (max-height: 860px) {
  .topbar {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 18px;
    gap: 20px;
  }

  .lead {
    margin-top: 16px;
  }

  .cta-row {
    margin-top: 20px;
  }

  .hero-card {
    padding: 12px;
  }

  .feature-list {
    gap: 10px;
  }

  .format-strip {
    padding-top: 8px;
    padding-bottom: 28px;
    gap: 12px;
  }

  .format-strip article {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .topbar,
  .hero,
  .format-strip {
    width: calc(100% - 26px);
  }

  .topbar {
    padding-top: 18px;
  }

  .hero {
    padding-top: 22px;
  }

  .btn {
    min-height: 42px;
    width: 100%;
  }
}
