:root {
  --bg: #08130f;
  --panel: rgba(246, 240, 227, 0.94);
  --panel-strong: #f4ebd7;
  --line: rgba(23, 43, 33, 0.16);
  --ink: #13241d;
  --muted: #506257;
  --brand: #2c6b45;
  --brand-deep: #18432b;
  --accent: #d59543;
  --accent-soft: rgba(213, 149, 67, 0.18);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(5, 12, 10, 0.32);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(76, 123, 85, 0.34), transparent 36%),
    radial-gradient(circle at top right, rgba(213, 149, 67, 0.2), transparent 24%),
    linear-gradient(180deg, #10221b 0%, #08130f 58%, #07110d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.24;
}

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

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

.page {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-copy span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 253, 249, 0.72);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 249, 0.14);
  color: rgba(255, 253, 249, 0.9);
  background: rgba(255, 253, 249, 0.05);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 36px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(244, 235, 215, 0.96), rgba(235, 228, 212, 0.88)),
    linear-gradient(160deg, rgba(44, 107, 69, 0.08), transparent 55%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 67, 43, 0.08);
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1,
.section h2,
.section-accent h2,
.faq h2,
.cta h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.7rem);
  max-width: 11ch;
}

.hero p.lead,
.section p,
.section-accent p,
.faq-item p,
.cta p,
.card p {
  line-height: 1.7;
  max-width: 62ch;
}

.hero p.lead,
.section p,
.cta p,
.feature p {
  color: var(--muted);
}

.hero p.lead {
  margin-top: 22px;
  font-size: 1.07rem;
}

.section p + p,
.section-accent p + p,
.cta p + p,
.card p + p {
  margin-top: 18px;
}

.hero-metrics,
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric,
.feature,
.faq-item {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--line);
}

.metric strong,
.feature strong {
  display: block;
  color: var(--brand-deep);
}

.metric strong {
  font-size: 1.6rem;
}

.metric span {
  display: block;
  margin-top: 6px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero-aside,
.timeline,
.faq-list {
  display: grid;
  gap: 24px;
}

.card,
.section-accent {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(14, 31, 24, 0.96), rgba(9, 20, 16, 0.96));
  color: var(--white);
  border: 1px solid rgba(255, 253, 249, 0.08);
  box-shadow: var(--shadow);
}

.redirect-card {
  background:
    linear-gradient(180deg, rgba(24, 67, 43, 0.98), rgba(18, 46, 30, 0.98)),
    linear-gradient(150deg, rgba(213, 149, 67, 0.18), transparent 55%);
}

.card ul,
.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.55;
}

.card li + li,
.list li + li {
  margin-top: 10px;
}

.card li::before,
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.redirect-status {
  min-height: 3em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button {
  background: linear-gradient(180deg, #dca155, #c57d2d);
  color: #1f1407;
  box-shadow: 0 16px 30px rgba(197, 125, 45, 0.25);
}

.button-secondary {
  border: 1px solid rgba(255, 253, 249, 0.22);
  background: rgba(255, 253, 249, 0.08);
  color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.section,
.faq,
.cta {
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section,
.faq,
.cta {
  color: var(--ink);
}

.section {
  grid-column: span 7;
}

.section-accent {
  grid-column: span 5;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--brand-deep);
  font-weight: 800;
}

.faq {
  margin-top: 40px;
  background: var(--panel-strong);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.cta {
  margin-top: 40px;
  background:
    linear-gradient(140deg, rgba(214, 158, 83, 0.22), rgba(255, 253, 249, 0.96)),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(244, 235, 215, 0.94));
}

.cta .button-secondary {
  border-color: rgba(24, 67, 43, 0.16);
  color: var(--brand-deep);
  background: rgba(24, 67, 43, 0.05);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 40px;
  padding: 18px 2px 4px;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.92rem;
}

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

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

  .section,
  .section-accent {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--container), calc(100% - 20px));
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .header,
  .brand {
    align-items: flex-start;
  }

  .header,
  .nav {
    justify-content: flex-start;
  }

  .hero,
  .section,
  .section-accent,
  .faq,
  .cta {
    padding: 24px;
  }

  .hero-metrics,
  .cards {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 92px;
  }

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