:root {
    --bg:      #EDECEB;
    --bg-alt:  #E5E4E2;
    --dark:    #0E0E0E;
    --darker:  #080808;
    --black:   #111111;
    --white:   #F5F4F2;
    --mint:    #7ED4B2;
    --pink:    #E0A0BC;
    --text:    #111111;
    --muted:   rgba(17,17,17,0.45);
    --faint:   rgba(17,17,17,0.2);
    --border:  rgba(17,17,17,0.09);
    --iri:     linear-gradient(135deg, var(--pink) 0%, var(--mint) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* ─── CURSOR ─── */
.cursor {
    width: 10px; height: 10px;
    background: var(--black); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.2s;
}
.cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(17,17,17,0.25); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, opacity 0.2s;
}
.cursor.hover { transform: translate(-50%,-50%) scale(2.5); background: var(--mint); }
.cursor-ring.hover { transform: translate(-50%,-50%) scale(1.5); opacity: 0.3; }

/* ─── PROGRESS ─── */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 2px;
    background: var(--iri); z-index: 200;
    width: 0; transition: width 0.08s linear;
}

/* ─── LOGOTYPE BADGE ─── */
.badge {
    border-radius: 50%; background: #111;
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.badge-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.11) 1px, transparent 1px);
    background-size: 10px 10px;
}
.badge-glow {
    position: absolute; inset: -30%; pointer-events: none;
    background:
        radial-gradient(ellipse at 66% 52%, rgba(126,212,178,0.65) 0%, transparent 50%),
        radial-gradient(ellipse at 28% 50%, rgba(224,160,188,0.55) 0%, transparent 52%);
    filter: blur(20px);
}
.badge-text {
    position: relative; z-index: 2;
    font-family: 'Anton', sans-serif;
    color: #0D0D0D; text-align: center;
    line-height: 0.9; letter-spacing: 0.01em;
}

/* sizes */
.badge--nav  { width: 42px; height: 42px; }
.badge--nav  .badge-dots { background-size: 5px 5px; }
.badge--nav  .badge-glow { filter: blur(9px); }
.badge--nav  .badge-text { font-size: 12px; }

.badge--hero { width: 300px; height: 300px; }
.badge--hero .badge-text { font-size: 94px; }

.badge--foot { width: 36px; height: 36px; }
.badge--foot .badge-dots { background-size: 5px 5px; }
.badge--foot .badge-glow { filter: blur(8px); }
.badge--foot .badge-text { font-size: 11px; }

/* ─── NAV ─── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 52px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(237,236,235,0.84); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-brand {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px; letter-spacing: 0.06em;
    color: var(--black); text-decoration: none;
}
.nav-brand span {
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.nav-lang {
    display: flex; gap: 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.18em;
}
.nav-lang a { color: var(--black); text-decoration: none; opacity: 0.3; transition: opacity 0.2s; }
.nav-lang a.active, .nav-lang a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-instagram { color: var(--black); opacity: 0.35; transition: opacity 0.2s; display: flex; align-items: center; }
.nav-instagram:hover { opacity: 1; }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 52px 100px;
    position: relative; overflow: hidden;
}
.hero-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); }
.blob-1 { width: 600px; height: 480px; background: var(--mint); opacity: 0.22; top: -12%; right: -5%; animation: blobA 9s ease-in-out infinite; }
.blob-2 { width: 480px; height: 400px; background: var(--pink); opacity: 0.2; top: 20%; left: -8%; animation: blobB 11s ease-in-out infinite; }
.blob-3 { width: 340px; height: 280px; background: var(--mint); opacity: 0.12; bottom: -5%; left: 35%; animation: blobA 14s ease-in-out infinite reverse; }
@keyframes blobA { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(28px,-18px) scale(1.05)} }
@keyframes blobB { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-18px,26px) scale(1.04)} }

.hero-inner {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 90px; align-items: center;
    position: relative; z-index: 2; width: 100%;
}
.hero-badge-wrap {
    opacity: 0; transform: scale(0.88);
    animation: badgeIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
}
@keyframes badgeIn { to { opacity: 1; transform: scale(1); } }

.hero-logo {
    width: 300px; height: 300px; object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

.hero-photo {
    width: 300px; height: 300px;
    object-fit: cover; object-position: center top;
    border-radius: 50%;
    display: block;
}

.nav-logo-img {
    height: 44px; width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 24px;
    opacity: 0; transform: translateY(12px);
    animation: fadeUp 0.7s ease 0.75s forwards;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 9.5vw, 138px);
    line-height: 0.91; letter-spacing: -0.01em;
    color: var(--black); margin-bottom: 34px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; opacity: 0; transform: translateY(110%); }
.hero-title .line:nth-child(1) span { animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.85s forwards; }
.hero-title .line:nth-child(2) span { animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.0s forwards; }
.hero-title .line:nth-child(3) span { animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.15s forwards; }
.hero-title .outline { -webkit-text-stroke: 2px var(--black); color: transparent; }
.hero-title .iri {
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
    font-family: 'Noto Serif JP', serif; font-weight: 300;
    font-size: 15px; line-height: 1.85; color: var(--muted);
    max-width: 360px; margin-bottom: 42px;
    opacity: 0; animation: fadeUp 0.8s ease 1.35s forwards;
}
.hero-sub .jp { display: block; margin-top: 9px; font-size: 12px; color: var(--faint); }
.hero-ctas {
    display: flex; gap: 12px; align-items: center;
    opacity: 0; animation: fadeUp 0.8s ease 1.55s forwards;
}
.btn-dark {
    background: var(--black); color: var(--white);
    padding: 16px 38px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }
.btn-ghost {
    color: var(--black); padding: 16px 28px;
    font-family: 'Noto Serif JP', serif; font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(17,17,17,0.18);
    display: inline-block; transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(17,17,17,0.65); transform: translateY(-2px); }

/* ─── TICKER ─── */
.ticker {
    background: var(--dark); padding: 13px 0; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticker-track { display: flex; width: max-content; animation: tickerMove 30s linear infinite; }
.ticker-item {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px;
    letter-spacing: 0.22em; color: rgba(245,242,238,0.28);
    text-transform: uppercase; padding: 0 32px; white-space: nowrap;
}
.ticker-item.iri {
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent; opacity: 1;
}
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── COACH (dark) ─── */
.coach {
    background: var(--dark);
    color: var(--white); position: relative;
}
.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    margin-bottom: 52px;
}
.eyebrow--light { color: rgba(245,244,242,0.35); }
.eyebrow--dark  { color: var(--muted); }

.coach-stats { display: flex; flex-direction: column; gap: 48px; }
.stat { padding-left: 24px; position: relative; }
.stat::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: var(--iri);
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 100px);
    line-height: 1; letter-spacing: -0.02em; color: var(--white);
}
.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(245,244,242,0.32); margin-top: 4px;
}
.stat-label .jp { color: rgba(245,244,242,0.16); margin-left: 10px; font-family: 'Noto Serif JP', serif; }

.coach-right { padding-top: 62px; }
.coach-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 68px); line-height: 1;
    margin-bottom: 6px; color: var(--white);
}
.coach-title-text {
    font-family: 'Noto Serif JP', serif; font-size: 13px; font-weight: 300;
    color: rgba(245,244,242,0.38); margin-bottom: 36px;
    letter-spacing: 0.04em; line-height: 1.7;
}
.coach-bio {
    font-size: 16px; line-height: 1.85;
    color: rgba(245,244,242,0.6); font-weight: 300; margin-bottom: 36px;
}
.coach-quote {
    font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 300;
    font-style: italic; line-height: 1.7;
    color: rgba(245,244,242,0.5); margin-bottom: 36px;
    padding-left: 20px;
    border-left: 2px solid transparent;
    border-image: var(--iri) 1;
}
.coach-credentials { display: flex; flex-direction: column; gap: 12px; }
.credential {
    display: flex; align-items: flex-start; gap: 14px;
    font-family: 'IBM Plex Mono', monospace; font-size: 12px;
    color: rgba(245,244,242,0.38); letter-spacing: 0.04em; line-height: 1.5;
}
.credential::before {
    content: '—';
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent; flex-shrink: 0;
}

/* ─── PROGRAM (light) ─── */
.program { padding: 140px 52px; background: var(--bg-alt); }
.program-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; }
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7.5vw, 100px); line-height: 0.94;
    letter-spacing: -0.01em; color: var(--black);
}
.section-title .outline { -webkit-text-stroke: 1.5px var(--black); color: transparent; }
.program-sub {
    font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: 13px;
    color: var(--muted); max-width: 200px; line-height: 1.9; text-align: right;
}
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.program-card {
    background: rgba(255,255,255,0.55); padding: 44px 30px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(17,17,17,0.06); transition: background 0.3s;
}
.program-card:hover { background: rgba(255,255,255,0.9); }
.program-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--iri); transition: width 0.4s ease;
}
.program-card:hover::after { width: 100%; }
.card-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 72px;
    color: rgba(17,17,17,0.05); line-height: 1; margin-bottom: 28px;
}
.card-bar { width: 28px; height: 2px; background: var(--iri); margin-bottom: 22px; }
.card-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.02em; margin-bottom: 6px; color: var(--black); }
.card-jp { font-family: 'Noto Serif JP', serif; font-size: 11px; color: var(--faint); margin-bottom: 18px; }
.card-desc { font-size: 13px; line-height: 1.75; color: var(--muted); font-weight: 300; }

/* ─── CTA (dark) ─── */
.cta-section { background: var(--darker); padding: 120px 52px; position: relative; overflow: hidden; }
.cta-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(110px); }
.cta-blob-1 { width: 450px; height: 370px; background: var(--mint); opacity: 0.14; top: -15%; right: 8%; }
.cta-blob-2 { width: 380px; height: 320px; background: var(--pink); opacity: 0.11; bottom: -15%; left: 5%; }
.cta-content { position: relative; z-index: 2; max-width: 760px; }
.cta-eyebrow {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(245,244,242,0.32); margin-bottom: 20px;
}
.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(68px, 11vw, 148px);
    line-height: 0.91; color: var(--white); margin-bottom: 36px;
}
.cta-title .iri {
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.cta-sub {
    font-family: 'Noto Serif JP', serif; font-size: 17px; font-weight: 300;
    color: rgba(245,244,242,0.55); line-height: 1.85; margin-bottom: 48px; max-width: 440px;
}
.cta-buttons { display: flex; gap: 14px; }
.btn-iri {
    background: var(--iri); color: var(--black);
    padding: 17px 44px;
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none; display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-iri:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-ghost-light {
    border: 1px solid rgba(245,244,242,0.22); color: var(--white);
    padding: 17px 36px; font-family: 'Noto Serif JP', serif; font-size: 14px;
    text-decoration: none; display: inline-block;
    transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost-light:hover { border-color: rgba(245,244,242,0.7); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: #050505; padding: 60px 52px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-brand {
    font-family: 'IBM Plex Mono', monospace; font-size: 17px;
    letter-spacing: 0.04em; color: var(--white);
}
.footer-brand span {
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.footer-langs { display: flex; gap: 28px; }
.footer-lang {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em;
    color: rgba(245,244,242,0.2); text-decoration: none; transition: color 0.2s;
}
.footer-lang:hover, .footer-lang.active { color: rgba(245,244,242,0.7); }
.footer-right { display: flex; align-items: center; gap: 28px; }
.footer-instagram { color: rgba(245,244,242,0.2); transition: color 0.2s; display: flex; align-items: center; }
.footer-instagram:hover { color: rgba(245,244,242,0.7); }
.footer-bottom {
    margin-top: 44px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(245,244,242,0.16); }
.footer-location { font-family: 'Noto Serif JP', serif; font-size: 12px; color: rgba(245,244,242,0.16); }

/* ─── ANNOUNCEMENT STRIP ─── */
.announcement {
    background: var(--darker); padding: 13px 52px;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
    color: rgba(245,244,242,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ann-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 8px #4ade80; flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.ann-highlight {
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.ann-sep { color: rgba(245,244,242,0.15); padding: 0 4px; }
.ann-date { color: rgba(245,244,242,0.75); }

/* ─── COACH PHOTOS ─── */
.coach-photos {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.coach-photo { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.coach-photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(15%) brightness(0.82);
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s ease;
    display: block;
}
.coach-photo:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.9);
}
.coach-content {
    padding: 100px 52px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}

/* ─── JAAF SECTION ─── */
.jaaf { padding: 140px 52px; background: var(--dark); color: var(--white); }
.jaaf-inner {
    display: grid; grid-template-columns: 360px 1fr;
    gap: 100px; align-items: center;
}
.jaaf-left { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.jaaf-logo-box {
    padding: 28px 32px; background: #fff;
    display: inline-block;
}
.jaaf-logo { width: 220px; display: block; }
.jaaf-official {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 18px; border: 1px solid rgba(255,255,255,0.1);
}
.jaaf-official-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 7px #4ade80; flex-shrink: 0;
}
.jaaf-official-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(245,244,242,0.6);
}
.jaaf-club-id {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em;
    color: rgba(245,244,242,0.25);
}
.jaaf-club-id span {
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

.jaaf-desc {
    font-size: 16px; line-height: 1.85;
    color: rgba(245,244,242,0.58); font-weight: 300; margin-bottom: 40px;
}
.competition-box {
    display: flex; align-items: center; gap: 28px;
    padding: 22px 28px; margin-bottom: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.competition-box::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: var(--iri);
}
.comp-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(245,244,242,0.3); line-height: 1.4;
}
.comp-date {
    font-family: 'Bebas Neue', sans-serif; font-size: 42px; line-height: 1;
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.comp-note {
    font-family: 'Noto Serif JP', serif; font-size: 13px; font-weight: 300;
    color: rgba(245,244,242,0.35);
}

.jaaf-steps { display: flex; flex-direction: column; }
.jaaf-step {
    display: flex; align-items: center; gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.jaaf-step:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.step-num {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    flex-shrink: 0; width: 22px;
}
.step-text {
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.04em;
    color: rgba(245,244,242,0.45); line-height: 1.5;
}

/* ─── RESULTS ─── */
.results { padding: 140px 52px; background: var(--bg); }
.results-header { margin-bottom: 72px; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.result-card {
    padding: 48px 36px;
    background: rgba(255,255,255,0.4);
    border: 1px solid var(--border);
    transition: background 0.3s;
}
.result-card:hover { background: rgba(255,255,255,0.85); }
.result-stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 88px);
    line-height: 1; margin-bottom: 16px;
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.result-desc { font-size: 14px; line-height: 1.65; color: var(--muted); font-weight: 300; }
.result-detail {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    color: var(--faint); letter-spacing: 0.08em; display: block; margin-top: 6px;
}

/* ─── SCHOOLS ─── */
.schools { padding: 64px 52px; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.schools-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.schools-label {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px;
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
    white-space: nowrap;
}
.schools-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.schools-list { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.school-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 24px;
    letter-spacing: 0.05em; color: var(--black); opacity: 0.35;
    transition: opacity 0.2s;
}
.school-name:hover { opacity: 0.85; }

/* ─── SHOES ─── */
.shoes { padding: 140px 52px; background: var(--dark); color: var(--white); }
.shoes-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 72px;
}
.shoes-sub {
    font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: 13px;
    color: rgba(245,244,242,0.38); max-width: 220px; line-height: 1.9; text-align: right;
}
.shoes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.shoe-card {
    background: rgba(255,255,255,0.03); padding: 48px 40px 44px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: background 0.3s;
}
.shoe-card:hover { background: rgba(255,255,255,0.06); }
.shoe-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--iri); transition: width 0.4s ease;
}
.shoe-card:hover::after { width: 100%; }
.shoe-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; gap: 20px; }
.shoe-brand-score { display: flex; flex-direction: column; gap: 4px; }
.shoe-brand {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(245,244,242,0.3);
}
.shoe-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 96px); line-height: 1; letter-spacing: -0.02em;
    background: var(--iri);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.shoe-badges { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; padding-top: 6px; }
.shoe-badge {
    font-family: 'IBM Plex Mono', monospace; font-size: 9px;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 5px 10px; white-space: nowrap;
}
.shoe-badge--speed { background: rgba(126,212,178,0.12); color: var(--mint); }
.shoe-badge--daily { background: rgba(245,244,242,0.06); color: rgba(245,244,242,0.45); }
.shoe-badge--comp  { background: rgba(224,160,188,0.12); color: var(--pink); }
.shoe-badge--kids  { border: 1px solid rgba(255,255,255,0.08); color: rgba(245,244,242,0.25); }
.shoe-name {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3vw, 36px);
    letter-spacing: 0.03em; color: var(--white); margin-bottom: 20px; line-height: 1;
}
.shoe-excerpt {
    font-size: 13px; line-height: 1.85; color: rgba(245,244,242,0.5);
    font-weight: 300; flex: 1; margin-bottom: 28px;
}
.shoe-bestfor {
    display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.shoe-bestfor-label {
    font-family: 'IBM Plex Mono', monospace; font-size: 9px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(245,244,242,0.22); white-space: nowrap;
}
.shoe-bestfor-tags {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px;
    letter-spacing: 0.06em; color: rgba(245,244,242,0.38); line-height: 1.6;
}

/* ─── INSTAGRAM ─── */
.insta { padding: 140px 52px; background: var(--bg-alt); }
.insta-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 56px;
}
.insta-handle-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.14em; color: var(--muted); text-decoration: none;
    transition: color 0.2s;
}
.insta-handle-link:hover { color: var(--black); }

.insta-carousel-outer {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
}
.insta-track {
    flex: 1; display: flex; gap: 2px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
}
.insta-track::-webkit-scrollbar { display: none; }

.insta-card {
    flex: 0 0 calc(20% - 1.6px);
    scroll-snap-align: start;
    aspect-ratio: 1 / 1;
    position: relative; overflow: hidden;
    cursor: pointer;
}

.insta-card-bg {
    position: absolute; inset: 0; overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.insta-card:hover .insta-card-bg { transform: scale(1.05); }

.insta-card-num {
    position: absolute; bottom: -14px; right: -6px;
    font-family: 'Bebas Neue', sans-serif; font-size: 110px;
    line-height: 1; color: rgba(0,0,0,0.09);
    pointer-events: none; user-select: none; z-index: 1;
}

.insta-pat {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.insta-pat--dots {
    background-image: radial-gradient(circle, rgba(0,0,0,0.12) 1px, transparent 1px);
    background-size: 18px 18px;
}
.insta-pat--lines {
    background-image: repeating-linear-gradient(
        -45deg, transparent, transparent 11px,
        rgba(0,0,0,0.06) 11px, rgba(0,0,0,0.06) 12px
    );
}
.insta-pat--cross {
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(0,0,0,0.055) 22px, rgba(0,0,0,0.055) 23px),
        repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(0,0,0,0.055) 22px, rgba(0,0,0,0.055) 23px);
}

.insta-card-overlay {
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 12px;
    background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.72) 100%);
}
.insta-card-top { display: flex; justify-content: flex-end; }
.insta-ig-mark {
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85); transition: background 0.2s;
}
.insta-card:hover .insta-ig-mark { background: rgba(255,255,255,0.28); }
.insta-card-caption { display: flex; flex-direction: column; gap: 3px; }
.insta-tag-label {
    font-family: 'IBM Plex Mono', monospace; font-size: 8px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.insta-cap-title {
    font-family: 'IBM Plex Mono', monospace; font-size: 9.5px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.92); line-height: 1.4;
}
.insta-cap-sub {
    font-family: 'Noto Serif JP', serif; font-size: 8.5px;
    letter-spacing: 0.03em; text-transform: none;
    color: rgba(255,255,255,0.5);
}
.insta-card-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

.insta-arrow {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--black); color: var(--white);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.2s, transform 0.2s; opacity: 0.75;
}
.insta-arrow:hover { opacity: 1; transform: scale(1.06); }
.insta-arrow:disabled { opacity: 0.2; cursor: not-allowed; transform: none; }

.insta-footer-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 24px;
}
.insta-dots { display: flex; gap: 6px; align-items: center; }
.insta-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(17,17,17,0.18);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.insta-dot.active { background: var(--black); transform: scale(1.35); }
.insta-follow-btn {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--black); text-decoration: none;
    padding: 13px 28px; border: 1px solid rgba(17,17,17,0.18);
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.insta-follow-btn::after { content: '→'; font-size: 12px; }
.insta-follow-btn:hover {
    background: var(--black); color: var(--white);
    border-color: var(--black); transform: translateY(-2px);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

.reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .hero { padding: 100px 24px 70px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .badge--hero { width: 220px; height: 220px; }
    .badge--hero .badge-text { font-size: 70px; }
    .hero-badge-wrap { display: flex; justify-content: center; }
    .hero-logo { width: 220px; height: 220px; }
    .hero-photo { width: 220px; height: 220px; }
    .nav-logo-img { height: 36px; }
    .coach-content { grid-template-columns: 1fr; padding: 60px 24px; gap: 52px; }
    .program { padding: 80px 24px; }
    .program-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .program-sub { text-align: left; max-width: 100%; }
    .program-grid { grid-template-columns: 1fr 1fr; }
    .announcement { padding: 12px 24px; }
    .results { padding: 80px 24px; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .schools { padding: 48px 24px; }
    .shoes { padding: 80px 24px; }
    .shoes-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .shoes-sub { text-align: left; max-width: 100%; }
    .shoes-grid { grid-template-columns: 1fr; }
    .jaaf { padding: 80px 24px; }
    .jaaf-inner { grid-template-columns: 1fr; gap: 52px; }
    .jaaf-logo { width: 180px; }
    .competition-box { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cta-section { padding: 80px 24px; }
    .insta { padding: 80px 24px; }
    .insta-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .insta-card { flex: 0 0 calc(33.333% - 1.33px); }
    .insta-footer-bar { flex-direction: column; gap: 24px; align-items: flex-start; }
    footer { padding: 48px 24px; }
    .footer-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
}
@media (max-width: 520px) {
    .program-grid, .results-grid { grid-template-columns: 1fr; }
    .cta-buttons, .hero-ctas { flex-direction: column; align-items: flex-start; }
    .insta-card { flex: 0 0 calc(75% - 1.5px); }
    .insta-arrow { width: 36px; height: 36px; }
}
