:root {
  --bg: #092f26;
  --bg-deep: #061f19;
  --panel: #0f3d31;
  --panel-soft: rgba(15, 61, 49, 0.84);
  --panel-line: rgba(246, 223, 167, 0.18);
  --text: #f6efd9;
  --muted: #c7d7cf;
  --gold: #dfb24a;
  --gold-soft: #f1d487;
  --ink: #0b1713;
  --success: #8cd3aa;
  --shadow: 0 24px 80px rgba(2, 8, 6, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --site-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(223, 178, 74, 0.14), transparent 30%),
    radial-gradient(circle at right 18%, rgba(241, 212, 135, 0.07), transparent 22%),
    linear-gradient(180deg, #0a352b 0%, #082920 42%, #061e18 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: -120px;
  right: -80px;
  background: rgba(223, 178, 74, 0.06);
}

.site-shell::after {
  bottom: -160px;
  left: -120px;
  background: rgba(255, 255, 255, 0.03);
}

.container {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 31, 25, 0.72);
  border-bottom: 1px solid rgba(246, 223, 167, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 223, 167, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(246, 223, 167, 0.12);
  transform: translateY(-1px);
}

.page {
  padding: 36px 0 84px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 32px 0 18px;
}

.hero-copy,
.hero-visual,
.panel,
.stat-card,
.card,
.timeline-item,
.feature-table,
.form-card,
.policy-card,
.download-card,
.contact-strip,
.mobile-about-card {
  background: linear-gradient(180deg, rgba(17, 67, 53, 0.96), rgba(8, 33, 26, 0.96));
  border: 1px solid var(--panel-line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(223, 178, 74, 0.12);
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.page-header h1,
.section-heading h2,
.mobile-about-card h1 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  margin: 18px 0 18px;
}

.hero p,
.page-header p,
.section-copy,
.card p,
.stat-card p,
.timeline-item p,
.form-card p,
.policy-card p,
.download-card p,
.contact-strip p,
.mobile-about-card p,
li {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-link,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-link {
  background: linear-gradient(135deg, var(--gold), #f0ca6c);
  color: var(--ink);
  font-weight: 800;
}

.button-outline {
  border: 1px solid rgba(246, 223, 167, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button-link:hover,
.button-outline:hover {
  transform: translateY(-2px);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 223, 167, 0.08);
}

.hero-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.hero-visual {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.hero-visual img,
.single-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
  min-height: 340px;
}

.ticker-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ticker-chip,
.metric-chip,
.tag {
  border-radius: 16px;
  border: 1px solid rgba(246, 223, 167, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.ticker-chip {
  padding: 14px 16px;
}

.ticker-chip span,
.metric-chip span,
.tag {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-chip strong,
.metric-chip strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
}

.metric-grid,
.card-grid,
.stat-grid,
.contact-grid,
.download-grid,
.policy-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.metric-chip {
  padding: 20px;
}

.section {
  padding: 34px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-heading h2,
.page-header h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p,
.page-header p {
  margin: 0;
}

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

.card,
.stat-card,
.policy-card,
.download-card,
.form-card,
.contact-strip,
.mobile-about-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card h3,
.stat-card h3,
.timeline-item h3,
.policy-card h3,
.download-card h3,
.form-card h3,
.contact-strip h3,
.mobile-about-card h2 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.card-index {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(223, 178, 74, 0.14);
  color: var(--gold-soft);
  font-weight: 800;
}

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

.stat-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold-soft);
}

.split-layout,
.contact-grid,
.download-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.single-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--panel-line);
  box-shadow: var(--shadow);
}

.single-image-card figcaption {
  padding: 18px 20px;
  background: rgba(4, 17, 13, 0.92);
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  border-radius: 24px;
  padding: 24px;
}

.timeline-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-table {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feature-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(246, 223, 167, 0.08);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row strong {
  color: var(--gold-soft);
}

.page-header {
  padding: 34px 0 26px;
}

.page-badge-group,
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag {
  padding: 10px 14px;
}

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

.policy-card ul,
.card ul,
.download-card ul {
  margin: 0;
  padding-left: 18px;
}

.contact-list,
.download-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-item,
.download-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(246, 223, 167, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.contact-item span,
.download-item span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-card form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(246, 223, 167, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(241, 212, 135, 0.5);
  box-shadow: 0 0 0 3px rgba(223, 178, 74, 0.14);
}

.status-note {
  min-height: 22px;
  color: var(--success);
  font-size: 0.94rem;
}

.footer {
  border-top: 1px solid rgba(246, 223, 167, 0.08);
  background: rgba(2, 11, 8, 0.32);
  padding: 28px 0 44px;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  align-items: start;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
  line-height: 1.7;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 223, 167, 0.08);
  color: #a3b7ae;
  font-size: 0.9rem;
}

.mobile-about {
  min-height: 100vh;
  padding: 18px 16px 28px;
  background:
    radial-gradient(circle at top right, rgba(223, 178, 74, 0.13), transparent 28%),
    linear-gradient(180deg, #0b352b 0%, #07261e 52%, #051913 100%);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.mobile-about-card {
  margin-bottom: 16px;
}

.mobile-about-card h1 {
  margin: 0 0 14px;
  font-size: 2.5rem;
}

.mobile-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mobile-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(246, 223, 167, 0.12);
  color: var(--gold-soft);
  font-size: 0.82rem;
}

.mobile-stat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mobile-stat .mobile-about-card {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .contact-grid,
  .download-grid,
  .footer-grid,
  .policy-grid,
  .metric-grid,
  .stat-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(6, 31, 25, 0.94);
    border: 1px solid rgba(246, 223, 167, 0.1);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    border-radius: 16px;
  }

  .topbar-inner {
    min-height: 78px;
  }

  .hero-copy {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--site-width), calc(100% - 28px));
  }

  .page {
    padding-bottom: 56px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero h1,
  .page-header h1 {
    line-height: 1.05;
  }

  .hero-points,
  .ticker-strip,
  .mobile-stat {
    grid-template-columns: 1fr;
  }

  .card,
  .stat-card,
  .policy-card,
  .download-card,
  .form-card,
  .contact-strip,
  .mobile-about-card {
    padding: 22px;
  }
}
