html, body {
  margin: 0;
  padding: 0;
  background: #FFFDF8;
}

* {
  box-sizing: border-box;
}

a {
  color: #BA7517;
  text-decoration: none;
}

a:hover {
  color: #EF9F27;
}

::selection {
  background: #FAC775;
  color: #2B2319;
}

@keyframes hodi-coin-drop {
  0%   { transform: translateY(-90px) scale(.8); opacity: 0; }
  12%  { opacity: 1; }
  38%  { transform: translateY(0) scale(1); opacity: 1; }
  46%  { transform: translateY(-10px) scale(1); }
  54%  { transform: translateY(0) scale(1); }
  88%  { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(0) scale(.9); opacity: 0; }
}

@keyframes hodi-cradle-glow {
  0%, 30%  { filter: drop-shadow(0 0 0px rgba(250,199,117,0)); }
  45%      { filter: drop-shadow(0 0 26px rgba(250,199,117,.85)); }
  70%,100% { filter: drop-shadow(0 0 0px rgba(250,199,117,0)); }
}

@keyframes hodi-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hodi-mark {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hodi-mark-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,.18) 0%, rgba(43,35,25,0) 68%);
}

.hodi-mark-svg {
  position: relative;
  animation: hodi-cradle-glow 4.2s ease-in-out infinite;
}

.hodi-mark-coin {
  transform-origin: 60px 48px;
  animation: hodi-coin-drop 4.2s cubic-bezier(.5,0,.3,1) infinite;
}

.hodi-nav-link:hover {
  color: #FAC775 !important;
}

.hodi-nav-cta:hover,
.hodi-hero-cta:hover,
.hodi-form-submit:hover {
  background: #3B6D11 !important;
}

.hodi-input:focus,
.hodi-select:focus {
  border-color: #EF9F27 !important;
  box-shadow: 0 0 0 3px rgba(250,199,117,.35);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 900px) {
  .hodi-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hodi-story-grid,
  .hodi-features-grid,
  .hodi-form-grid {
    grid-template-columns: 1fr !important;
  }
  .hodi-hero-heading {
    font-size: 52px !important;
  }
}
