:root {
  --bg: #0b0b0f;
  --text: #ffffff;
  --muted: #a0a0a0;
  --primary: #e8c36a;
  --secondary: #ffd166;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --accent-green: rgba(0, 255, 156, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.brand-link {
  transition: color 150ms ease;
}

.brand-link:hover {
  color: #e8c36a;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.bg-decor {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.deco {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
}

.deco-1 {
  left: -8rem;
  top: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(232, 195, 106, 0.06);
}

.deco-2 {
  right: 0;
  top: 33%;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 209, 102, 0.1);
}

.deco-3 {
  bottom: 0;
  left: 33%;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.05);
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-header {
  position: relative;
  padding-top: 1.5rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--panel-strong);
  backdrop-filter: blur(8px);
}

.brand {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(232, 195, 106, 0.3);
  background: rgba(232, 195, 106, 0.08);
  color: #e8c36a;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background-color 150ms ease,
    border-color 150ms ease;
}

.contact-link:hover {
  border-color: #e8c36a;
  background: rgba(232, 195, 106, 0.15);
}

.section-spacing {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.hero-inner {
  margin: 0 auto;
  max-width: 56rem;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.3);
  background: rgba(255, 209, 102, 0.1);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 2rem 0 0;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-lead {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  color: #e8e8e8;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 500;
}

.hero-copy {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition:
    transform 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease;
  cursor: pointer;
}

.btn-primary {
  border: 1px solid rgba(232, 195, 106, 0.4);
  background: rgba(232, 195, 106, 0.12);
  color: #e8c36a;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(232, 195, 106, 0.15);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: scale(1.02);
  background: #e8c36a;
  color: #000;
  border-color: #e8c36a;
  box-shadow:
    0 8px 24px rgba(232, 195, 106, 0.35),
    0 0 20px rgba(232, 195, 106, 0.2);
  font-weight: 800;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: #e8c36a;
  background: rgba(232, 195, 106, 0.12);
}

.hero-note {
  margin-top: 1.5rem;
  color: #9ea3a8;
  font-size: 0.875rem;
}

.value-section {
  position: relative;
  padding-bottom: 4rem;
}

.value-panel {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 2rem;
}

.value-header {
  max-width: 48rem;
}

.section-title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--muted);
}

.benefit-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.benefit-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  padding: 1.25rem;
}

.benefit-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.benefit-copy {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.related-section {
  position: relative;
  padding-bottom: 7rem;
}

.related-copy {
  margin-top: 0.5rem;
  color: var(--muted);
}

.related-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.asset-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.asset-card:hover {
  border-color: #e8c36a;
  transform: translateY(-3px);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(232, 195, 106, 0.2);
}

.asset-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(22, 135, 94, 0.1),
    rgba(232, 195, 106, 0.08)
  );
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.asset-card:hover::before {
  opacity: 1;
}

.asset-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.asset-copy {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.asset-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(232, 195, 106, 0.4);
  background: rgba(232, 195, 106, 0.12);
  color: #e8c36a;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background-color 150ms ease,
    border-color 150ms ease;
}

.asset-card:hover .asset-link {
  border-color: #e8c36a;
  background: rgba(232, 195, 106, 0.2);
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.875rem;
  color: #8c8c8c;
  text-align: center;
}

@media (min-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-spacing {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

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

  .btn {
    width: auto;
  }

  .value-panel {
    padding: 2.5rem;
  }

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

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

  .asset-card-featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .section-spacing {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }

  .value-section {
    padding-bottom: 6rem;
  }

  .value-panel {
    padding: 3rem;
  }

  .related-section {
    padding-bottom: 7rem;
  }

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

  .asset-card-featured {
    grid-column: auto;
  }
}
