/* ============================================
   ROAD RACE DANSHIBU - Liquid Glass Portal
   Inspired by cinnamon.ai aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #ffeb3b;
    --primary-glow: rgba(255, 235, 59, 0.3);
    --primary-dim: rgba(255, 235, 59, 0.15);
    --bg-dark: #0a0a0f;
    --bg-gradient-1: #0d0d1a;
    --bg-gradient-2: #111128;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.35);
    --font-main: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Geometric Background Canvas --- */
#geo-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- Header (Glassmorphism Nav) --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#main-header.scrolled {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

header nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

header nav ul li a:hover {
    color: var(--text-primary);
}

header nav ul li a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 120px 40px 80px;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    margin-bottom: 12px;
}

.hero-tagline {
    margin-top: 16px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
}

/* --- Timer (Glass Card) --- */
.timer-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.timer-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.timer-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.timer-event-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.timer-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.timer-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-suffix {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 6px;
}

.timer-separator {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--primary);
    opacity: 0.5;
    margin-top: -16px;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-line {
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto;
    opacity: 0.5;
}

/* --- Sponsors Section --- */
#sponsors {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.slider {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.track {
    display: flex;
    align-items: center;
    width: calc(250px * 8);
    animation: scrollTrack 40s linear infinite;
}

.sponsor-banner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
    opacity: 0.85; /*スポンサー画像を薄くする*/
    transition: opacity 0.3s ease;
}

.sponsor-banner-item:hover {
    opacity: 1;
}

.track img {
    width: 180px;
    max-height: 60px;
    object-fit: contain;
    
    transition: filter 0.3s ease;
}

.sponsor-banner-item:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--primary-glow));
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 4)); }
}

/* --- Team Section --- */
#team {
    position: relative;
    z-index: 1;
    padding: 80px 0 0;
    text-align: center;
}

.team-area {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.face-button {
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    position: absolute;
    cursor: pointer;
    opacity: 0.85;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.face-glass {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.face-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    pointer-events: none;
}

.face-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.face-button:hover {
    transform: scale(1.15);
    z-index: 100;
}

.face-button:hover img {
    transform: rotateY(360deg);
}

.face-button:hover .face-glass {
    background: linear-gradient(135deg, var(--primary-dim), rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 30px var(--primary-glow), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.face-button .name {
    margin-top: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.face-button:hover .name {
    color: var(--text-primary);
}

/* --- Widgets Section --- */
#widgets {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    text-align: center;
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--primary-dim);
}

.widget-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
    opacity: 0.5;
}

.widget h4 {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 16px;
}

.placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    overflow: hidden;
}

.note-placeholder {
    flex-direction: column;
    gap: 8px;
}

.placeholder-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.youtube-placeholder {
    padding: 0;
}

.youtube-placeholder iframe {
    border-radius: var(--radius-sm);
}

/* --- Footer --- */
footer {
    position: relative;
    z-index: 1;
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

footer p {
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
    .header-inner {
        padding: 16px 20px;
    }

    .logo {
        font-size: 1rem;
    }

    header nav ul {
        gap: 20px;
    }

    header nav ul li a {
        font-size: 0.7rem;
    }

    #hero {
        padding: 100px 20px 60px;
    }

    .timer-glass {
        padding: 28px 24px;
        border-radius: var(--radius-lg);
    }

    .timer-unit {
        min-width: 50px;
    }

    .widget-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .team-area {
        height: 70vh;
    }
}

/* --- Contact Page --- */
#contact {
    position: relative;
    z-index: 1;
    padding: 160px 40px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.contact-form-wrapper {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 48px;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 36px;
    text-align: center;
}

.required-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Honeypot - hidden from real users */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.required {
    color: var(--primary);
    margin-left: 4px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(255, 235, 59, 0.03);
    box-shadow: 0 0 0 3px var(--primary-dim);
}

.form-input.input-error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: #ff6b6b;
    margin-top: 6px;
}

.form-error.show {
    display: block;
}

.recaptcha-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit:hover:not(:disabled) {
    background: #fff176;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.form-submit:active:not(:disabled) {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-message {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.form-message-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.form-message-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ef9a9a;
}

/* Nav active state */
header nav ul li a.nav-active {
    color: var(--primary);
}

header nav ul li a.nav-active::after {
    width: 100%;
}

@media (max-width: 768px) {
    #contact {
        padding: 120px 20px 60px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }
}

/* --- Profile Page --- */
#profile {
    position: relative;
    z-index: 1;
    padding: 140px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Profile content stays above floating photos */
.profile-back,
.profile-hero,
.profile-info-card,
.profile-appeal,
.profile-sns {
    position: relative;
    z-index: 10;
}

.profile-hero {
    text-align: center;
    margin-bottom: 48px;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary), rgba(255, 255, 255, 0.2));
    margin: 0 auto 24px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.profile-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.profile-name-en {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--primary);
    text-transform: uppercase;
}

/* Profile Info Card */
.profile-info-card {
    max-width: 700px;
    width: 100%;
    margin-bottom: 48px;
    padding: 40px;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 24px;
    align-items: baseline;
}

.profile-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-transform: uppercase;
    white-space: nowrap;
}

.profile-info-value {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.profile-info-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: var(--glass-border);
    margin: 8px 0;
}

/* Appeal Point */
.profile-appeal {
    max-width: 700px;
    width: 100%;
    margin-bottom: 48px;
    padding: 32px 40px;
    text-align: center;
}

.profile-appeal-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 16px;
}

.profile-appeal-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* SNS Links */
.profile-sns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 64px;
}

.profile-sns-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    text-decoration: none;
}

.profile-sns-link:hover {
    background: var(--primary-dim);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.profile-sns-link svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    fill: currentColor;
    display: block;
    pointer-events: none;
}

.profile-sns-link:visited {
    color: var(--text-secondary);
}

/* Floating Photos (circular, physics-animated) */
.floating-photo {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-photo-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.floating-photo-inner img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-photo:hover {
    z-index: 200;
    transform: scale(1.2) !important;
}

.floating-photo:hover .floating-photo-inner {
    background: linear-gradient(135deg, var(--primary-dim), rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 30px var(--primary-glow), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-photo:hover .floating-photo-inner img {
    transform: rotateY(360deg);
}

.floating-photo-label {
    text-align: center;
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.floating-photo:hover .floating-photo-label {
    color: var(--text-primary);
}

/* Back to team link */
.profile-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.profile-back:hover {
    color: var(--primary);
}

.profile-back svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 768px) {
    #profile {
        padding: 120px 20px 60px;
    }

    .profile-avatar {
        width: 140px;
        height: 140px;
    }

    .profile-info-card,
    .profile-appeal {
        padding: 24px 20px;
    }

    .profile-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .profile-info-label {
        margin-top: 8px;
    }

    .floating-photo-inner {
        width: 90px;
        height: 90px;
    }

    .floating-photo-label {
        font-size: 0.6rem;
    }
}

/* --- About Page --- */
#about {
    position: relative;
    z-index: 1;
    padding: 160px 40px 100px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
}

.about-header {
    margin-bottom: 80px;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-title-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.about-section {
    /* no card, text directly on background */
}

.about-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-secondary);
    font-weight: 300;
}

@media (max-width: 768px) {
    #about {
        padding: 120px 24px 60px;
    }

    .about-body {
        gap: 48px;
    }
}

/* --- Selection Style --- */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}
