@charset "UTF-8";

:root {
  --color-bg: #f8f1e5;
  --color-surface: #fffaf0;
  --color-surface-alt: #f3e3c9;
  --color-text: #262626;
  --color-text-soft: #4a4a4a;
  --color-primary: #2f6b3b;
  --color-primary-soft: #3f8d4f;
  --color-primary-deep: #123526;
  --color-accent-gold: #f2b544;
  --color-accent-orange: #f28c3c;
  --color-wood: #b17a4b;
  --color-wood-deep: #7a532f;
  --color-success: #2f8f4e;
  --color-warning: #e9a63a;
  --color-danger: #c94b42;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2933;
  --gray-900: #111827;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Fira Code", "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-64: 16rem;
  --space-96: 24rem;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.16);
  --shadow-md: 0 6px 14px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 14px 30px rgba(15, 23, 42, 0.25);
  --shadow-soft-elevated: 0 18px 40px rgba(18, 53, 38, 0.26);
  --shadow-wood-inset: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -2px 3px rgba(122, 83, 47, 0.55);
  --transition-fast: 120ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 320ms ease-out;
  --layout-max-width: 1120px;
  --header-height: 64px;
}

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

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

p, h1, h2, h3, h4, h5, h6, figure {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

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

body, #__next, #root {
  min-height: 100vh;
}

main {
  min-height: calc(100vh - var(--header-height));
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary-deep);
  line-height: var(--line-height-snug);
}

h1 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.6rem);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-soft);
}

a:hover {
  color: var(--color-primary-soft);
}

.link {
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.link:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section--muted {
  background: radial-gradient(circle at top left, rgba(242, 181, 68, 0.12), transparent 55%), radial-gradient(circle at bottom right, rgba(47, 107, 59, 0.12), transparent 55%);
}

.section-heading {
  margin-bottom: var(--space-4);
}

.section-intro {
  max-width: 640px;
  margin-bottom: var(--space-6);
  color: var(--color-text-soft);
}

.grid {
  display: grid;
  gap: var(--space-4);
}

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

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

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(47, 107, 59, 0.08);
  color: var(--color-primary-deep);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--font-size-sm);
  line-height: 1;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft));
  color: #fffaf5 !important;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary));
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-xs);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-orange));
  color: #3a2313;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.4);
  color: var(--color-primary-deep);
  box-shadow: none;
  border-radius: var(--radius-full);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
  transform: none;
}

button:focus-visible,
.btn:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  background-color: #fffcf5;
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: var(--gray-400);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid transparent;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 1px rgba(242, 181, 68, 0.9);
  background-color: #fffdf8;
}

input[disabled],
select[disabled],
textarea[disabled] {
  background-color: var(--gray-100);
  color: var(--gray-500);
  cursor: not-allowed;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-primary-deep);
}

.form-field {
  margin-bottom: var(--space-4);
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-alt));
  box-shadow: var(--shadow-soft-elevated);
  padding: var(--space-5);
  overflow: hidden;
}

.card--wooden {
  background: linear-gradient(135deg, #c78b54, #9b6033);
  color: #fff8ea;
  box-shadow: 0 18px 40px rgba(88, 54, 24, 0.6);
}

.card--wooden::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(0deg, rgba(121, 69, 25, 0.25) 1px, transparent 1px);
  background-size: 36px 100%, 100% 32px;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  pointer-events: none;
}

.card--resource {
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(242, 181, 68, 0.18), transparent 60%), radial-gradient(circle at bottom right, rgba(47, 107, 59, 0.22), transparent 60%), #fffaf0;
  box-shadow: var(--shadow-md);
}

.card-header {
  margin-bottom: var(--space-3);
}

.card-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.25rem;
}

.card-meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.badge-pill {
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
  background: rgba(0, 0, 0, 0.06);
  font-size: var(--font-size-xs);
}

.hero {
  position: relative;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.hero-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
}

.hero-kicker {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  margin-bottom: var(--space-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-forest {
  position: relative;
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius-xl);
  background: linear-gradient(to top, #18402a 0%, #235836 45%, #f6efe2 46%, #f8f1e5 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}

.hero-forest-sky {
  position: absolute;
  inset: 0 0 45% 0;
  background: radial-gradient(circle at 20% 10%, rgba(242, 181, 68, 0.6), transparent 55%), radial-gradient(circle at 80% 0%, rgba(242, 140, 60, 0.4), transparent 50%);
  opacity: 0.85;
}

.hero-forest-horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 38%;
  height: 70px;
  background: radial-gradient(circle at 10% 0, #1f4a2c 0, #123526 55%), radial-gradient(circle at 90% 0, #1c4327 0, #0f2218 60%);
  border-radius: 50%;
}

.hero-forest-trees {
  position: absolute;
  inset: 38% -6% 32% -6%;
  background-image: linear-gradient(120deg, rgba(15, 34, 24, 0.95) 12%, transparent 12% 20%, rgba(15, 34, 24, 0.9) 20% 32%, transparent 32% 40%, rgba(15, 34, 24, 0.85) 40% 50%, transparent 50% 60%, rgba(15, 34, 24, 0.75) 60% 70%, transparent 70% 80%, rgba(15, 34, 24, 0.9) 80% 90%, transparent 90%), linear-gradient(60deg, rgba(31, 74, 44, 0.9) 18%, transparent 18% 26%, rgba(31, 74, 44, 0.86) 26% 36%, transparent 36% 46%, rgba(31, 74, 44, 0.8) 46% 56%, transparent 56% 64%, rgba(31, 74, 44, 0.8) 64% 74%, transparent 74% 84%, rgba(31, 74, 44, 0.9) 84%);
  opacity: 0.9;
}

.hero-forest-ground {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 18%;
  height: 90px;
  background: radial-gradient(circle at 15% -10%, #3f8d4f 0, #225538 65%), radial-gradient(circle at 85% -10%, #4a9758 0, #255e39 60%);
  border-radius: 50%;
  box-shadow: 0 -4px 0 rgba(248, 241, 229, 0.6);
}

.hero-forest-path {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 36%;
  height: 70%;
  background: radial-gradient(circle at 50% 10%, #f9e0bd 0, #d8b186 35%, #a57648 70%);
  transform: translateX(-50%) skewX(-8deg);
  clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
  opacity: 0.96;
}

.hero-forest-mill {
  position: absolute;
  left: 18%;
  bottom: 24%;
  width: 120px;
  height: 90px;
  background: linear-gradient(180deg, #d8ab7a, #b17a4b);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(12, 20, 16, 0.7);
}

.hero-forest-mill::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -32px;
  width: 80px;
  height: 42px;
  background: linear-gradient(145deg, #7d3a24, #5a2416);
  border-radius: 12px 12px 4px 4px;
  transform: translateX(-50%);
}

.hero-forest-mill::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 5px solid #f9e0bd;
  box-shadow: 0 0 0 4px rgba(121, 69, 25, 0.7);
  transform: translateX(-50%);
}

.hero-forest-storage {
  position: absolute;
  right: 12%;
  bottom: 20%;
  width: 110px;
  height: 70px;
  background: linear-gradient(180deg, #c18444, #8a5526);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(12, 20, 16, 0.7);
}

.hero-forest-storage::before {
  content: "";
  position: absolute;
  inset: 12px 10px;
  border-radius: 10px;
  box-shadow: var(--shadow-wood-inset);
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0.15) 6px, rgba(0, 0, 0, 0.08) 6px, rgba(0, 0, 0, 0.08) 8px);
}

.hero-forest-buildings {
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 26%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-forest-building {
  width: 46px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f2d1a1, #c48b52);
  box-shadow: 0 10px 18px rgba(6, 18, 12, 0.65);
}

.hero-forest-building:nth-child(2) {
  transform: translateY(-10px) scale(1.08);
}

.hero-forest-coins {
  position: absolute;
  right: 6%;
  top: 8%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-forest-coin-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 18, 12, 0.72);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.45);
}

.hero-forest-coin-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff9cf, #f2b544 45%, #c58025 80%);
  box-shadow: 0 0 0 2px rgba(63, 37, 8, 0.8);
}

.hero-forest-resource-text {
  font-size: 0.7rem;
  color: #fdf7e6;
  white-space: nowrap;
}

.hero-forest-path-nodes {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 34%;
  height: 70%;
  transform: translateX(-50%) skewX(-8deg);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 10%;
  pointer-events: none;
}

.hero-forest-node {
  width: 42px;
  height: 32px;
  border-radius: 999px;
  background: rgba(25, 19, 13, 0.7);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.45);
}

.hero-forest-node-main {
  height: 40px;
}

.hero-forest-wheel {
  position: absolute;
  left: 8%;
  top: 10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #f2b544 0 60deg, #f28c3c 60deg 120deg, #3f8d4f 120deg 180deg, #f2b544 180deg 240deg, #f28c3c 240deg 300deg, #3f8d4f 300deg 360deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}

.hero-forest-wheel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff7e5, #f2b544 70%);
}

.hero-forest-wheel::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 10px;
  height: 16px;
  transform: translateX(-50%);
  background: #fff7e5;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.hero-forest-workers {
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 14%;
  height: 24px;
  display: flex;
  justify-content: space-around;
}

.hero-forest-worker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe0c4, #e9a063);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.55);
}

.hero-forest-worker::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #f2b544;
  border-radius: 999px;
  transform: translate(7px, 10px) rotate(12deg);
}

.page-header {
  padding-top: var(--space-10);
  padding-bottom: var(--space-6);
}

.page-header-eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}

.page-header-title {
  max-width: 720px;
}

.page-header-intro {
  max-width: 640px;
  margin-top: var(--space-3);
  color: var(--color-text-soft);
}

.kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.kpi-card {
  min-width: 130px;
  flex: 1;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.kpi-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.kpi-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-primary-deep);
}

.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(47, 107, 59, 0.2), rgba(242, 181, 68, 0.6));
}

.timeline-step {
  position: relative;
  padding-bottom: var(--space-4);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff8e1, #f2b544);
  box-shadow: 0 0 0 3px rgba(242, 181, 68, 0.3);
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.timeline-meta {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
  margin-bottom: 0.35rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(248, 241, 229, 0.97), rgba(248, 241, 229, 0.9));
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--color-primary-deep);
}

.navbar-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, #fff9cf, #f2b544 40%, #b17a4b 80%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-link {
  position: relative;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.2rem 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary-soft), var(--color-accent-gold));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-primary-soft);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: var(--color-primary-deep);
}

.footer {
  margin-top: var(--space-12);
  background: #151515;
  color: #f5f2ea;
}

.footer-top {
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  font-size: var(--font-size-xs);
  color: rgba(250, 248, 241, 0.7);
}

.footer-nav {
  display: grid;
  gap: var(--space-6);
}

.footer-heading {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.footer-link {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(250, 248, 241, 0.85);
  padding: 0.15rem 0;
  transition: color var(--transition-base), transform var(--transition-fast);
}

.footer-link:hover {
  color: #fffaf0;
  transform: translateX(2px);
}

.footer-disclaimer {
  max-width: 680px;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
}

.forest-divider {
  width: 100%;
  height: 90px;
  position: relative;
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.forest-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 53, 38, 0.1), transparent 60%);
}

.forest-divider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70px;
  background-image: linear-gradient(120deg, rgba(18, 53, 38, 0.3) 18%, transparent 18% 24%, rgba(18, 53, 38, 0.4) 24% 32%, transparent 32% 40%, rgba(18, 53, 38, 0.36) 40% 46%, transparent 46% 55%, rgba(18, 53, 38, 0.3) 55% 64%, transparent 64% 72%, rgba(18, 53, 38, 0.5) 72% 80%, transparent 80% 88%, rgba(18, 53, 38, 0.32) 88%), linear-gradient(60deg, rgba(35, 88, 54, 0.55) 12%, transparent 12% 20%, rgba(35, 88, 54, 0.68) 20% 30%, transparent 30% 40%, rgba(35, 88, 54, 0.65) 40% 50%, transparent 50% 60%, rgba(35, 88, 54, 0.5) 60% 70%, transparent 70% 80%, rgba(35, 88, 54, 0.55) 80% 90%, transparent 90%);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  font-size: var(--font-size-xs);
  color: var(--gray-600);
}

.tag--green {
  background: rgba(47, 107, 59, 0.08);
  color: var(--color-primary-deep);
}

.tag--gold {
  background: rgba(242, 181, 68, 0.12);
  color: #7a4a09;
}

.list-check {
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff9cf, #3f8d4f 70%);
  box-shadow: 0 0 0 3px rgba(63, 141, 79, 0.3);
}

.list-muted {
  color: var(--gray-600);
}

.notice {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: rgba(21, 21, 21, 0.96);
  color: #f7f4ea !important;
  font-size: var(--font-size-sm);
}
.notice p {
  color: #f7f4ea !important;
}
.notice-soft {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: rgba(242, 181, 68, 0.12);
  border: 1px dashed rgba(186, 132, 32, 0.9);
  color: #5b3c0c;
  font-size: var(--font-size-sm);
}

.notice-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

[tabindex="-1"]:focus {
  outline: none !important;
}

:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(35, 88, 54, 0.7);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(35, 88, 54, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

@media (max-width: 767px) {
  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
  .hero {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-forest {
    min-height: 220px;
  }
  .navbar-inner {
    justify-content: space-between;
  }
  .navbar-nav {
    display: none;
  }
  .footer-nav {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-14);
  }
  .hero-forest {
    min-height: 320px;
  }
}