*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Hero anchor buttons scroll to each section (handled explicitly in scroll.js so
   the smooth behaviour doesn't animate the on-load PRG scroll after subscribe). */
#community,
#release,
#events,
#videos {
    scroll-margin-top: 24px;
}

body {
    min-height: 100dvh;
    background: var(--mono-black, #050508);
    color: var(--mono-white, #FFFFFF);
    font-family: var(--font-family, Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Honeypot field: visually removed but still present for naive form-filling bots */
.fh-hp {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.fh-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(5, 5, 8, 0.94);
    border-top: 1px solid var(--mono-800, #26262F);
    color: var(--mono-white, #FFFFFF);
}

.fh-consent__copy {
    font-size: 14px;
    color: var(--mono-200, #DCDCDD);
    text-align: center;
}

.fh-consent__actions {
    display: flex;
    gap: 8px;
}

.fh-consent__button {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.fh-consent__button--accept {
    background: var(--mono-white, #FFFFFF);
    color: var(--mono-black, #050508);
}

.fh-consent__button--decline {
    background: transparent;
    border-color: var(--mono-600, #5A5A61);
    color: var(--mono-white, #FFFFFF);
}

.fh-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 12px 20px;
    border-radius: 200px;
    background: var(--mono-white, #FFFFFF);
    color: var(--mono-black, #050508);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 120ms ease, opacity 120ms ease;
}

.fh-pill:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

