/* martial.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #0c0c0c;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    position: relative;
}

/* Kanji watermark background */
body::before {
    content: '武';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40vw;
    opacity: 0.05;
    color: #333333;
    pointer-events: none;
    z-index: -1;
    font-weight: 900;
    line-height: 1;
}

.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.impact {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(5rem, 14vw, 9rem);
    line-height: 0.9;
    text-align: center;
    letter-spacing: -0.02em;
}

.quest {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #dc2626;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.disciplines {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.discipline {
    margin-bottom: 3rem;
    border-bottom: 1px solid #333333;
    padding-bottom: 2rem;
}

.discipline:last-child {
    border-bottom: none;
}

.disc-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.9;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.disc-text {
    font-size: 0.85rem;
    color: #a3a3a3;
    max-width: 500px;
    margin-bottom: 0.5rem;
}

.red-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
    margin-top: 0.75rem;
}

.strike {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slash-line {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 0;
    border-bottom: 2px solid rgba(220,38,38,0.4);
    transform: rotate(-5deg);
    z-index: 0;
}

.strike-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    transform: rotate(-5deg);
    position: relative;
    z-index: 1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.bow {
    text-align: center;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 50vh;
    justify-content: center;
    border-top: 1px solid #333333;
}

.respect {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    letter-spacing: 0.05em;
}

.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Divider lines using muted color */
section {
    position: relative;
}

/* Secondary text styling for body copy */
.secondary-text {
    color: #a3a3a3;
}

/* Muted text color */
.muted-text {
    color: #525252;
}

/* Subtle dividers */
hr, .divider {
    border: none;
    height: 1px;
    background-color: #333333;
    margin: 2rem 0;
}

/* Shadow text for depth */
.shadow-text {
    color: #525252;
    font-weight: 300;
}
