/* Homepage-only accents */
html[data-theme="dark"] .home-cta {
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(201, 168, 106, 0.1), transparent 58%),
    radial-gradient(900px 520px at 90% 0%, rgba(110, 231, 183, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(11, 13, 16, 0.88), rgba(7, 8, 10, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .home-cta .bg-gray-800\/50 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.032));
  border-color: var(--t-border-soft);
  box-shadow: var(--shadow-md), var(--inset-light);
}

html[data-theme="dark"] .home-cta input.bg-gray-900\/50,
html[data-theme="dark"] .home-cta textarea.bg-gray-900\/50,
html[data-theme="dark"] .home-cta select.bg-gray-900\/50 {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .home-cta input.bg-gray-900\/50:focus,
html[data-theme="dark"] .home-cta textarea.bg-gray-900\/50:focus,
html[data-theme="dark"] .home-cta select.bg-gray-900\/50:focus {
  border-color: rgba(201, 168, 106, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
}

html[data-theme="light"] .home-hero {
  outline: 1px solid rgba(112, 195, 43, 0.22);
  outline-offset: -1px;
}
html[data-theme="light"] .home-hero::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 28px;
  border: 1px solid rgba(112, 195, 43, 0.55);
  box-shadow:
    0 0 0 1px rgba(112, 195, 43, 0.12),
    0 18px 44px rgba(112, 195, 43, 0.12);
  mix-blend-mode: normal;
}
@media (max-width: 640px) {
  html[data-theme="light"] .home-hero::after {
    inset: 8px;
  }
}
