:root {
  --font-sans: "Plus Jakarta Sans", "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Montserrat", "Plus Jakarta Sans", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --brand-green: #064e3b;
  --brand-green-light: #0d7e54;
  --brand-gold: #d97706;
  --brand-gold-hover: #b45309;
  --brand-sand: #f8f9fa;
  --brand-charcoal: #0f172a;
  --brand-gray: #475569;
  --ink: #1e2923;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-xl: 22px;
  --radius-3xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);

  --container: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background: var(--brand-sand);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfbfa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(6, 78, 59, 0.95);
  color: var(--brand-gold);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

.mono {
  font-family: var(--font-mono);
}

.display {
  font-family: var(--font-display);
}

.muted {
  color: var(--brand-gray);
}

.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;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: var(--brand-gold);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: var(--brand-gold-hover);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-weight: 700;
}

.chip-green {
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  border: 1px solid rgba(6, 78, 59, 0.11);
}

.chip-gold {
  background: rgba(217, 119, 6, 0.1);
  color: var(--brand-gold);
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.06);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  padding: 18px 0;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, padding 220ms ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(248, 249, 250, 0.95);
  padding: 12px 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  outline: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
}

.brand-text span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(71, 85, 105, 0.95);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.desktop-menu {
  display: none;
  position: relative;
}

.menu-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(6, 78, 59, 0.18);
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-btn:active {
  transform: translateY(1px);
}

.menu-btn:hover {
  background: rgba(6, 78, 59, 0.1);
  border-color: rgba(6, 78, 59, 0.28);
}

.menu-pop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  padding: 10px;
  display: none;
  z-index: 50;
}

.menu-pop.open {
  display: grid;
  gap: 6px;
}

.menu-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.9);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  border: 1px solid transparent;
}

.menu-item:hover {
  background: rgba(248, 249, 250, 0.95);
}

.menu-item.active {
  background: rgba(6, 78, 59, 0.08);
  color: var(--brand-green);
  border-color: rgba(6, 78, 59, 0.14);
}

.hamburger {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  display: inline-block;
  transition: background-color 160ms ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, top 160ms ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.hamburger.open {
  background: transparent;
}

.hamburger.open::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-actions {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 10px;
}

.menu-action.icon-only {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(6, 78, 59, 0.18);
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  display: grid;
  place-items: center;
}

.menu-action.icon-only:hover {
  background: rgba(6, 78, 59, 0.1);
  border-color: rgba(6, 78, 59, 0.28);
}

.menu-action.download {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(6, 78, 59, 0.18);
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-action.download:hover {
  background: rgba(6, 78, 59, 0.1);
  border-color: rgba(6, 78, 59, 0.28);
}

.menu-actions .btn-gold {
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  letter-spacing: 0.16em;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.84);
  transition: color 160ms ease;
  outline: none;
}

.nav-link:hover {
  color: var(--brand-green);
}

.nav-link.active {
  color: var(--brand-green);
  font-weight: 800;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.pill-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(6, 78, 59, 0.08);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.pill-phone:hover {
  background: rgba(6, 78, 59, 0.1);
  border-color: rgba(6, 78, 59, 0.16);
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--brand-sand);
  color: var(--brand-charcoal);
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.icon-btn:active {
  transform: translateY(1px);
}

.icon-btn.soft {
  border-radius: 999px;
  border-color: rgba(6, 78, 59, 0.12);
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
}

.icon-btn.soft:hover {
  background: rgba(6, 78, 59, 0.1);
}

.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid rgba(248, 249, 250, 0.9);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  padding: 14px 20px 18px;
  display: grid;
  gap: 10px;
}

.mobile-item {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.mobile-item:hover {
  background: rgba(248, 249, 250, 0.9);
}

.mobile-item.active {
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  border-color: rgba(6, 78, 59, 0.12);
}

.mobile-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(248, 249, 250, 0.7);
  display: grid;
  gap: 10px;
}

.mobile-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px;
  font-size: 12px;
}

.mobile-footer-row span:first-child {
  font-family: var(--font-mono);
  color: rgba(71, 85, 105, 0.95);
}

.mobile-footer-row span:last-child {
  font-weight: 800;
  color: var(--brand-green);
  font-family: var(--font-mono);
}

.mobile-cta {
  width: 100%;
  background: var(--brand-green);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.mobile-cta:hover {
  background: var(--brand-green-light);
}

.mobile-cta.secondary {
  background: rgba(6, 78, 59, 0.08);
  color: var(--brand-green);
  border: 1px solid rgba(6, 78, 59, 0.18);
}

.mobile-cta.secondary:hover {
  background: rgba(6, 78, 59, 0.12);
}

@media (min-width: 1024px) {
  .desktop-menu {
    display: block;
  }
  .nav-actions {
    display: flex;
  }
  .mobile-actions {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

.section {
  position: relative;
}

.hero {
  padding-top: 96px;
  padding-bottom: 36px;
  background: var(--brand-sand);
  overflow: hidden;
}

.hero-orb-gold {
  position: absolute;
  right: 0;
  top: 0;
  width: 450px;
  height: 450px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.06);
  filter: blur(120px);
  pointer-events: none;
}

.hero-orb-green {
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.06);
  filter: blur(100px);
  pointer-events: none;
}

.hero-topbar {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-topbar .rightnote {
  display: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-gray);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.card.hero-main {
  background: var(--brand-green);
  color: #fff;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 900ms ease;
}

.hero-backdrop.is-active {
  opacity: 0.35;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4), transparent);
}

.hero-main-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hero-badge {
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-gold);
}

.hero-copy {
  margin-top: 56px;
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: 40px;
  margin: 0;
}

.hero-title .gold {
  color: var(--brand-gold);
}

.hero-sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.95);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions .btn-gold {
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 12px;
}

.hero-actions .btn-outline {
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 12px;
}

.card.hero-side {
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.side-title {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--brand-green);
}

.side-kicker {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.quote-box {
  background: var(--brand-sand);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-xl);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.quote-box p {
  margin: 0;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.9);
  font-style: italic;
  line-height: 1.6;
}

.quote-sign {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  color: var(--brand-green);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  background: var(--brand-sand);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-xl);
  padding: 14px;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  color: var(--brand-green);
  line-height: 1.05;
}

.metric span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gray);
}

.hero-helper {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.helper-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-gray);
  cursor: pointer;
  border: 0;
  background: transparent;
}

.helper-link:hover {
  color: var(--brand-green);
}

.bounce {
  animation: bounce 1.2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (min-width: 640px) {
  .hero-topbar .rightnote {
    display: inline-block;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .hero-title {
    font-size: 52px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 112px;
  }
  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }
  .hero-main {
    grid-column: span 8;
    padding: 48px;
  }
  .hero-side {
    grid-column: span 4;
  }
  .hero-copy {
    margin-top: 88px;
  }
}

.overview {
  padding: 84px 0;
  background: #fff;
  overflow: hidden;
}

.overview-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 79, 48, 1) 0.6px, transparent 0.6px);
  background-size: 24px 24px;
  opacity: 0.03;
  pointer-events: none;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 46px;
}

.section-kicker {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  color: var(--brand-charcoal);
  letter-spacing: -0.02em;
}

.section-rule {
  width: 82px;
  height: 4px;
  background: var(--brand-green);
}

.overview-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 44px;
}

.overview-subbrand {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.overview-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--brand-charcoal);
  font-weight: 300;
}

.overview-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.prose p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(71, 85, 105, 0.95);
}

.initiative-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.initiative {
  background: var(--brand-sand);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-3xl);
  padding: 18px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.initiative:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(6, 78, 59, 0.25);
  box-shadow: var(--shadow-md);
}

.initiative .icon-wrap {
  width: fit-content;
  padding: 12px;
  border-radius: 14px;
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  margin-bottom: 12px;
}

.initiative h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--brand-charcoal);
}

.initiative p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--brand-gray);
}

.figure-stack {
  display: grid;
  gap: 16px;
}

.figure {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  position: relative;
}

.figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.figure:hover img {
  transform: scale(1.05);
}

.figure .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(6, 78, 59, 0.95);
  color: #fff;
}

.quote-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-3xl);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-card .mark {
  position: absolute;
  right: 16px;
  top: 4px;
  font-size: 78px;
  color: rgba(217, 119, 6, 0.15);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.quote-card p {
  margin: 0;
  font-style: italic;
  font-size: 14px;
  line-height: 1.75;
  color: var(--brand-charcoal);
}

.quote-card .sig {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.quote-card .sig strong {
  color: var(--brand-green);
}

.stat-grid {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(248, 249, 250, 0.9);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: center;
}

.stat-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-green);
}

.stat-grid span {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (min-width: 640px) {
  .initiative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .section-head {
    grid-template-columns: 5fr 7fr;
    align-items: start;
    gap: 64px;
    margin-bottom: 62px;
  }
  .overview-top {
    grid-template-columns: 5fr 7fr;
    align-items: start;
    gap: 64px;
  }
  .overview-main {
    grid-template-columns: 7fr 5fr;
    gap: 54px;
  }
  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
  }
}

.services {
  padding: 84px 0;
  background: var(--brand-sand);
}

.section-center {
  max-width: 48rem;
  margin: 0 auto 58px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.section-center p {
  margin: 0;
  font-weight: 300;
  line-height: 1.75;
  color: var(--brand-gray);
}

.services-layout {
  display: none;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-bottom: 26px;
}

.service-tabs {
  grid-column: span 4;
  display: grid;
  gap: 12px;
}

.service-tab {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-tab .tab-ico {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
}

.service-tab .tab-ico .icon {
  width: 22px;
  height: 22px;
}

.service-tab h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--brand-charcoal);
}

.service-tab p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--brand-gray);
  font-weight: 300;
  line-height: 1.35;
}

.service-tab.active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-md);
}

.service-tab.active .tab-ico {
  background: rgba(217, 119, 6, 0.2);
  color: var(--brand-gold);
}

.service-tab.active h3 {
  color: #fff;
}

.service-tab.active p {
  color: rgba(226, 232, 240, 0.9);
}

.service-board {
  grid-column: span 8;
  background: #fff;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 460px;
}

.service-board .info {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.service-board .info h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--brand-charcoal);
}

.service-board .info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--brand-gray);
}

.service-board .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.06);
  color: var(--brand-green);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  width: fit-content;
}

.service-board .bullets {
  display: grid;
  gap: 10px;
}

.service-board .bullets strong {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(119, 128, 121, 1);
}

.service-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-board li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--brand-charcoal);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-gold);
  margin-top: 6px;
  flex: 0 0 auto;
}

.service-foot {
  padding-top: 18px;
  border-top: 1px solid rgba(248, 249, 250, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-foot .stamp {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 12px;
  color: var(--brand-green);
  text-transform: uppercase;
}

.service-foot a {
  color: var(--brand-gold);
  font-weight: 900;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-foot a:hover {
  color: var(--brand-green);
}

.service-board .image {
  position: relative;
  min-height: 260px;
  background: var(--brand-charcoal);
  overflow: hidden;
}

.service-board .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.service-board .image .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 1), transparent);
  opacity: 0.85;
}

.service-board .image .overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
}

.service-board .image .overlay span:first-child {
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--brand-gold);
}

.service-board .image .overlay span:last-child {
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  line-height: 1.35;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 78, 59, 0.2);
  transform: translateY(-2px);
}

.service-card .head {
  height: 176px;
  position: relative;
  background: var(--brand-charcoal);
}

.service-card .head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.service-card .head .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}

.service-card .head .labelbar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card .head .badge {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  display: grid;
  place-items: center;
}

.service-card .head .meta span:first-child {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.service-card .head .meta span:last-child {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
}

.service-card .body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.service-card .body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--brand-gray);
}

.service-card .body strong {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(119, 128, 121, 1);
}

.service-card .body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-card .body li {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--brand-charcoal);
}

.service-card .foot {
  padding: 14px 18px;
  background: var(--brand-sand);
  border-top: 1px solid rgba(248, 249, 250, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-card .foot span {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 10px;
  color: var(--brand-green);
  text-transform: uppercase;
}

.service-card .foot a {
  font-weight: 900;
  font-size: 12px;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .foot a:hover {
  color: var(--brand-gold);
}

@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .services-layout {
    display: grid;
  }
  .service-cards {
    display: none;
  }
  .service-board {
    grid-template-columns: 1fr 320px;
  }
  .service-board .image {
    min-height: 100%;
  }
  .service-board .info {
    padding: 40px;
  }
}

.press {
  padding: 84px 0;
  background: #fff;
  position: relative;
}

.press::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 249, 250, 0.3);
  pointer-events: none;
}

.press-inner {
  position: relative;
  z-index: 1;
}

.press-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 46px;
}

.press-award {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--brand-sand);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-charcoal);
  width: fit-content;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.press-card {
  background: var(--brand-sand);
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.press-card:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(6, 78, 59, 0.25);
  box-shadow: var(--shadow-md);
}

.press-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.press-meta strong {
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.press-meta span {
  color: var(--brand-gray);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.press-badge {
  width: fit-content;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-gold);
  background: rgba(217, 119, 6, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
}

.press-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-charcoal);
  line-height: 1.25;
}

.press-card:hover h3 {
  color: var(--brand-green);
}

.press-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(82, 96, 85, 0.95);
}

.press-foot {
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.press-foot span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brand-gray);
  text-transform: uppercase;
}

.press-read {
  background: transparent;
  border: 0;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 160ms ease, background-color 160ms ease;
}

.press-read:hover {
  color: var(--brand-gold);
  background: rgba(248, 249, 250, 0.9);
}

@media (min-width: 768px) {
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (min-width: 768px) {
  .press-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  z-index: 50;
  overflow-y: auto;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 42rem;
  background: #fff;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-hero {
  height: 176px;
  position: relative;
  background: var(--brand-charcoal);
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.modal-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 1), transparent);
}

.modal-hero .meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: grid;
  gap: 6px;
}

.modal-hero .meta span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.modal-hero .meta strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
}

.modal-body {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.modal-headline {
  display: grid;
  gap: 8px;
}

.modal-headline .line {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-gray);
}

.modal-headline .line strong {
  color: var(--brand-green);
}

.modal-headline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--brand-charcoal);
  line-height: 1.6;
}

.modal-copy {
  display: grid;
  gap: 14px;
  color: var(--brand-charcoal);
}

.modal-copy .summary {
  padding: 14px;
  border-radius: 10px;
  background: rgba(6, 78, 59, 0.06);
  border: 1px solid rgba(6, 78, 59, 0.12);
  color: var(--brand-green);
  font-weight: 700;
  line-height: 1.6;
  font-size: 13px;
}

.modal-copy p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.modal-copy .keywords {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-gray);
  font-style: italic;
}

.modal-foot {
  padding-top: 16px;
  border-top: 1px solid rgba(248, 249, 250, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 12px;
  color: var(--brand-green);
  text-transform: uppercase;
}

.modal-close {
  background: var(--brand-charcoal);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 160ms ease;
}

.modal-close:hover {
  background: var(--brand-green);
}

.press-cta {
  margin-top: 56px;
  background: var(--brand-green);
  color: #fff;
  border-radius: var(--radius-3xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.press-cta .backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.press-cta .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.press-cta strong {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.press-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.press-cta .cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.press-cta .cta-row a {
  width: fit-content;
}

@media (min-width: 768px) {
  .press-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .press-cta .inner {
    max-width: 52rem;
  }
  .press-cta .cta-row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

.partners {
  padding: 76px 0;
  background: rgba(248, 249, 250, 0.55);
  position: relative;
}

.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(217, 119, 6, 0.3), transparent);
}

.partners-inner {
  position: relative;
}

.partners-quote {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-3xl);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.partners-quote span {
  font-family: serif;
  font-size: 44px;
  color: var(--brand-gold);
  line-height: 1;
  display: block;
}

.partners-quote p {
  margin: 10px 0 0;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--brand-charcoal);
}

.partner-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-3xl);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 78, 59, 0.2);
  box-shadow: var(--shadow-md);
}

.partner-card .bubble {
  width: 100%;
  max-width: 220px;
  height: 84px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 12px 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--brand-green);
}

.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.partner-card strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-charcoal);
}

.partner-card span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(71, 85, 105, 0.95);
  line-height: 1.4;
}

.partner-card .tag {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
  background: rgba(6, 78, 59, 0.06);
  padding: 6px 10px;
  border-radius: 999px;
}

.partners-foot {
  margin-top: 22px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-gray);
}

@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.contact {
  padding: 96px 0 54px;
  background: var(--brand-green);
  color: #f7f7f5;
  overflow: hidden;
  position: relative;
}

.contact-orb-green {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.1);
  filter: blur(130px);
  pointer-events: none;
}

.contact-orb-gold {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.06);
  filter: blur(120px);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-head {
  max-width: 48rem;
  display: grid;
  gap: 14px;
  margin-bottom: 54px;
}

.contact-head .section-rule {
  background: rgba(255, 255, 255, 0.28);
}

.contact-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
}

.contact label {
  color: rgba(255, 255, 255, 0.78);
}

.contact input,
.contact select,
.contact textarea {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.channels h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.info-stack {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
}

.info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-3xl);
  padding: 18px;
  display: flex;
  gap: 0;
  align-items: flex-start;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.info-card .small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
  display: block;
}

.info-card p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.info-card .sub {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}

.info-card a {
  color: rgba(255, 255, 255, 0.92);
}

.info-card a.secondary {
  color: rgba(255, 255, 255, 0.78);
}

.info-card a:hover {
  text-decoration: underline;
}

.formwrap {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-3xl);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 18px;
}

.formhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.formhead h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.formhead .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 10px;
  border-radius: 999px;
}

.success {
  background: rgba(6, 78, 59, 0.5);
  border: 1px solid rgba(217, 119, 6, 0.4);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.success strong {
  color: var(--brand-gold);
}

.success p {
  margin: 6px 0 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 300;
}

.success .icon {
  width: 22px;
  height: 22px;
  color: var(--brand-gold);
}

form {
  display: grid;
  gap: 14px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.95);
  margin-bottom: 6px;
}

.required {
  color: var(--brand-gold);
}

input,
select,
textarea {
  width: 100%;
  background: #1e2822;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease;
}

textarea {
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 119, 6, 0.75);
}

.submit {
  width: 100%;
  border-radius: 10px;
  padding: 14px 14px;
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 160ms ease;
  box-shadow: var(--shadow-sm);
}

.submit:hover {
  background: var(--brand-gold-hover);
  color: #fff;
}

.submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.logwrap {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
}

.loghead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(156, 163, 175, 0.95);
}

.loghead strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 232, 240, 0.9);
}

.clear {
  background: transparent;
  border: 0;
  color: rgba(248, 113, 113, 0.95);
  cursor: pointer;
  font-weight: 700;
}

.clear:hover {
  color: rgba(252, 165, 165, 0.95);
  text-decoration: underline;
}

.logs {
  max-height: 140px;
  overflow-y: auto;
  padding-right: 6px;
  display: grid;
  gap: 10px;
}

.log {
  background: #1e2822;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.log .left {
  display: grid;
  gap: 6px;
}

.log .name {
  color: var(--brand-gold);
  font-weight: 900;
  font-size: 12px;
}

.log .email {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(209, 213, 219, 0.95);
  word-break: break-word;
}

.log .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(217, 119, 6, 0.2);
  color: var(--brand-green);
  padding: 6px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.foot {
  margin-top: 56px;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  position: relative;
  z-index: 1;
}

.foot::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: var(--brand-green);
  z-index: -1;
}

.foot .reg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.ping {
  width: 10px;
  height: 10px;
  background: var(--brand-green);
  border-radius: 999px;
  position: relative;
}

.ping::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--brand-green);
  animation: ping 1.4s infinite;
  opacity: 0.35;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.foot h4 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}

.confidential {
  margin: 26px auto 0;
  max-width: 56rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-3xl);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.confidential .head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.confidential p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 300;
}

.legal {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.legal a:hover {
  color: var(--brand-gold);
}

.legal .sep {
  opacity: 0.5;
}

.legal .hqlabel {
  color: var(--brand-gold);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 46px;
  }
  .channels {
    grid-column: span 5;
  }
  .formcol {
    grid-column: span 7;
  }
  .formwrap {
    padding: 26px;
  }
  .legal {
    flex-direction: row;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--brand-sand);
}

::-webkit-scrollbar-thumb {
  background: #d1d5d2;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-green);
}
