@font-face {
    font-family: 'ow_hud';
    src: url('ow_hud.ttf') format('truetype');
}

@font-face {
    font-family: 'monster';
    src: url('monster.ttf') format('truetype');
}

@font-face {
    font-family: 'main_mono';
    src: url('main_mono.ttf') format('truetype');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'monster', 'Inter', sans-serif;
    background: #000000;
    color: #E8E8E8;
    line-height: 1.7;
}

h1,
h2 {
    font-family: 'main_mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 3rem 0;
}

h2 {
    font-size: 1.3rem;
    color: #7A4A9C;
    margin-bottom: 2rem;
}

a {
    color: #7A4A9C;
}

/* status banner */
.status-banner {
    text-align: center;
    font-family: 'ow_hud', monospace;
    font-size: 1.2rem;
    color: #7A4A9C;
    background: #2A2A2A;
    border-bottom: 1px solid #4B2C3A;
    padding: 1rem 0 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.status-banner::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #7A4A9C;
    border-radius: 50%;
    margin-right: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
    vertical-align: middle;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #7A4A9C; }
    50% { opacity: 0.4; box-shadow: 0 0 2px #7A4A9C; }
}

/* hero */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 30%, rgba(122, 74, 156, 0.08) 0%, transparent 60%), #000000;
}

.hero h1 {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #fff;
}

.hero .accent {
    color: #7A4A9C;
}

.hero p {
    margin-top: 1rem;
    color: #B6A8C8;
    font-size: 1rem;
}

.scroll-arrow {
    display: block;
    margin: 2rem auto 0;
    width: 32px;
    height: auto;
    transform: rotate(90deg);
    opacity: 0.5;
    filter: brightness(0) saturate(100%) invert(35%) sepia(47%) saturate(1243%) hue-rotate(243deg) brightness(92%) contrast(88%);
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: rotate(90deg) translateY(0);
    }

    50% {
        transform: rotate(90deg) translateY(8px);
    }
}

/* services */
.service-grid {
    display: grid;
    gap: 1.25rem;
}

.service-card {
    background: #2A2A2A;
    border: 1px solid #4B2C3A;
    border-radius: 8px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

.service-card:hover {
    border-color: #7A4A9C;
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #E8E8E8;
}

.service-card .desc {
    font-size: 0.8rem;
    color: #B6A8C8;
    grid-column: 1 / -1;
}

.service-card .price {
    font-family: 'main_mono', monospace;
    font-size: 1.2rem;
    color: #7A4A9C;
    white-space: nowrap;
}

.service-card .time {
    font-size: 0.78rem;
    color: #B6A8C8;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 550px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card .time {
        text-align: left;
    }
}

/* examples */
#examples h2 { text-align: center; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; border-radius: 8px; border: 1px solid #4B2C3A; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* also-do */
#also-do h2 { text-align: center; }
.also-list { list-style: none; display: grid; gap: 0.5rem; }
.also-list li { padding: 0.5rem 1rem; background: #2A2A2A; border-left: 3px solid #7A4A9C; border-radius: 0 4px 4px 0; font-size: 0.9rem; color: #B6A8C8; }
.also-list li::before { content: '\2713'; color: #7A4A9C; display: inline-block; margin-right: 0.6rem; }

/* wont-do */
#wont-do h2 { text-align: center; }
.wont-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.wont-list li {
    padding: 0.5rem 1rem;
    background: #2A2A2A;
    border-left: 3px solid #4B2C3A;
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    color: #B6A8C8;
}

.wont-list li::before {
    content: '\2715';
    color: #4B2C3A;
    display: inline-block;
    margin-right: 0.6rem;
}

/* contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 550px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: #2A2A2A;
    border: 1px solid #4B2C3A;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.contact-card .icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 0.8rem;
    color: #E8E8E8;
    margin-bottom: 0.35rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: #B6A8C8;
}

footer {
    border-top: 1px solid #4B2C3A;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: #B6A8C8;
}

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}