/* ==========================================================
   Soccer Laws Dojo — LP (Fable version)
   濃緑 × 白 × 審判イエロー / スポーツエディトリアル
   ========================================================== */

:root {
    /* Pitch greens */
    --green-950: #041f16;
    --green-900: #062b1f;
    --green-800: #0a3d2c;
    --green-700: #10513a;
    --green-600: #17694a;
    --green-500: #1f8a5f;
    --green-100: #e2f0e8;
    --green-50: #f2f8f4;

    /* Referee cards */
    --yellow: #ffd200;
    --yellow-deep: #f0b90b;
    --red: #e5484d;

    /* Neutrals */
    --white: #ffffff;
    --ink: #10231b;
    --muted: #5c6f66;
    --line: #dbe6df;
    --line-dark: rgba(255, 255, 255, 0.14);

    --font-ja: 'Noto Sans JP', sans-serif;
    --font-display: 'Anton', 'Noto Sans JP', sans-serif;
    --font-sport: 'Oswald', 'Noto Sans JP', sans-serif;

    --radius: 18px;
    --radius-lg: 28px;
    --header-h: 68px;
    --shadow: 0 16px 48px -18px rgba(4, 31, 22, 0.35);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
    font-family: var(--font-ja);
    color: var(--ink);
    background: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.lang-en {
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 200;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 12px;
}

.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .pc-only {
        display: inline;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
    text-align: center;
    padding: 15px 30px;
    border-radius: 999px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 10px 28px -10px rgba(240, 185, 11, 0.65);
}

.btn-yellow:hover {
    background: #ffe14d;
}

.btn-outline {
    border: 2px solid var(--green-800);
    color: var(--green-800);
    background: transparent;
}

.btn-outline:hover {
    background: var(--green-50);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(4, 31, 22, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    transition: background 0.3s;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: var(--header-h);
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: auto;
}

.brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(150deg, var(--green-600), var(--green-800));
    position: relative;
    flex: none;
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.25);
}

.brand-badge::after {
    /* イエローカード */
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    width: 10px;
    height: 14px;
    border-radius: 2.5px;
    background: var(--yellow);
    transform: rotate(-12deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-logo {
    width: 42px;
    height: 42px;
    flex: none;
    object-fit: cover;
    object-position: 12% 18%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-text small {
    font-family: var(--font-sport);
    font-size: 9px;
    letter-spacing: 0.32em;
    opacity: 0.65;
}

.header-nav {
    display: none;
    gap: 26px;
}

.header-nav a {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.header-nav a:hover {
    opacity: 1;
    color: var(--yellow);
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: none;
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle i {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px 24px;
    background: rgba(4, 31, 22, 0.96);
    border-bottom: 1px solid var(--line-dark);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a.btn {
    margin-top: 14px;
    border-bottom: none;
    color: var(--ink);
}

@media (min-width: 960px) {
    .header-nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        radial-gradient(1100px 600px at 78% 12%, rgba(31, 138, 95, 0.4), transparent 60%),
        linear-gradient(168deg, var(--green-900) 0%, var(--green-950) 62%, #031710 100%);
    color: var(--white);
    padding: calc(var(--header-h) + 64px) 24px 0;
    overflow: hidden;
}

.hero-pitch {
    position: absolute;
    inset: 0;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.hero-pitch svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-run {
    color: rgba(255, 210, 0, 0.4);
}

.run-path {
    stroke-dashoffset: 0;
    animation: runDash 26s linear infinite;
}

@keyframes runDash {
    to {
        stroke-dashoffset: -720;
    }
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-bottom: 90px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sport);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 26px;
}

.whistle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 0 rgba(255, 210, 0, 0.6);
    animation: whistle 2.4s ease-out infinite;
}

@keyframes whistle {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 210, 0, 0.55);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 210, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 210, 0, 0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 26px;
}

.hero-title-en {
    font-family: var(--font-display);
    font-size: clamp(58px, 11vw, 132px);
    line-height: 0.94;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
    user-select: none;
}

.hero-title-ja {
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0.02em;
    margin-top: -0.5em;
}

.hero-title-ja em {
    font-style: normal;
    color: var(--yellow);
}

.hero-lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 34px;
    max-width: 34em;
}

.hero-lead strong {
    color: var(--white);
    font-weight: 900;
}

.hero-audience {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -14px 0 24px;
}

.hero-audience li {
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
}

.hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    text-underline-offset: 5px;
}

.hero-text-link span {
    color: var(--yellow);
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.store-links img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.2s;
}

.store-links a:hover img {
    transform: scale(1.05);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.mini-card {
    display: inline-block;
    width: 12px;
    height: 16px;
    border-radius: 3px;
    flex: none;
}

.mini-card-yellow {
    background: linear-gradient(160deg, #ffe14d, var(--yellow-deep));
    transform: rotate(-10deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Hero visual */
.hero-visual {
    position: relative;
    justify-self: center;
    width: min(100%, 460px);
    min-height: 480px;
}

.view-cone {
    /* 審判の視野角 */
    position: absolute;
    bottom: -8%;
    left: -14%;
    width: 130%;
    height: 120%;
    background: conic-gradient(from -42deg at 8% 96%,
            transparent 0deg,
            rgba(255, 210, 0, 0.14) 18deg,
            rgba(255, 210, 0, 0.03) 46deg,
            transparent 60deg);
    pointer-events: none;
}

.hero-callout {
    position: absolute;
    z-index: 4;
    top: -10px;
    left: -16%;
    display: grid;
    gap: 3px;
    width: max-content;
    max-width: 210px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px 16px 4px 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--green-950);
    box-shadow: 0 18px 38px -24px rgba(0, 0, 0, 0.8);
    animation: floaty 4.2s ease-in-out infinite;
    pointer-events: none;
}

.hero-callout::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: -9px;
    width: 16px;
    height: 10px;
    background: rgba(255, 255, 255, 0.96);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.hero-callout b {
    font-family: var(--font-sport);
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--yellow-deep);
}

.hero-callout span {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.5;
    white-space: nowrap;
}

.phone {
    position: absolute;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone img {
    width: 100%;
    height: auto;
}

.phone-main {
    width: 62%;
    left: 8%;
    top: 24px;
    z-index: 2;
    transform: rotate(-3deg);
}

.phone-back {
    width: 52%;
    right: 0;
    top: 96px;
    transform: rotate(7deg);
    opacity: 0.88;
}

@keyframes floaty {

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

    50% {
        transform: translateY(-9px);
    }
}

@media (min-width: 960px) {
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        gap: 24px;
    }

    .hero-visual {
        min-height: 620px;
    }
}

/* Ticker */
.ticker {
    position: relative;
    border-top: 1px solid var(--line-dark);
    background: rgba(0, 0, 0, 0.28);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.ticker-track span {
    font-family: var(--font-sport);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.ticker-track span:nth-child(4n+3) {
    color: var(--yellow);
    opacity: 0.85;
}

.ticker-track i {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.25);
    font-style: normal;
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Scoreboard ---------- */
.scoreboard {
    background: var(--green-950);
    color: var(--white);
    padding: 46px 24px;
    border-top: 3px solid var(--yellow);
}

.scoreboard-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
}

.score {
    text-align: center;
}

.score strong {
    display: block;
    font-family: var(--font-sport);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.score sup {
    font-size: 0.45em;
    color: var(--yellow);
    margin-left: 2px;
}

.score p {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
}

@media (min-width: 768px) {
    .scoreboard-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------- Sections common ---------- */
.section {
    padding: 84px 24px;
}

@media (min-width: 768px) {
    .section {
        padding: 104px 24px;
    }
}

.section-head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.eyebrow {
    font-family: var(--font-sport);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 16px;
}

.eyebrow-yellow {
    color: var(--yellow);
}

.section-head h2 {
    font-size: clamp(28px, 4.6vw, 44px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.section-head h2 em {
    font-style: normal;
    color: var(--green-600);
}

.section-head-light h2 em {
    color: var(--yellow);
}

.section-lead {
    margin-top: 18px;
    font-size: 15px;
    color: var(--muted);
}

.section-head-light .section-lead {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Train (How it works) ---------- */
.train {
    background: var(--white);
}

.train-steps {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    counter-reset: step;
}

.train-step {
    position: relative;
    background: var(--green-50);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 30px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.train-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-min {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: var(--font-sport);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--green-500);
    font-variant-numeric: tabular-nums;
}

.train-step h3 {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 12px;
}

.train-step h3 b {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--green-600);
}

.train-step p {
    font-size: 14px;
    color: var(--muted);
}

@media (min-width: 900px) {
    .train-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-cta {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--green-950);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.section-cta strong,
.section-cta span {
    display: block;
}

.section-cta strong {
    font-size: 18px;
    font-weight: 900;
}

.section-cta span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12.5px;
}

@media (min-width: 720px) {
    .section-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 26px 30px;
    }
}

/* ---------- Modes ---------- */
.modes-section {
    background:
        radial-gradient(900px 500px at 20% 0%, rgba(31, 138, 95, 0.35), transparent 60%),
        linear-gradient(180deg, var(--green-900), var(--green-950));
    color: var(--white);
}

.modes-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.modes-phone {
    justify-self: center;
    width: min(64vw, 300px);
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}

.modes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.modes-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s;
}

.modes-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.modes-list li:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mode-no {
    flex: none;
    font-family: var(--font-sport);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    font-variant-numeric: tabular-nums;
}

.modes-list b {
    display: block;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.modes-list b small {
    display: inline-block;
    margin-left: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 4px;
    padding: 2px 8px;
    vertical-align: 2px;
}

.modes-list p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 2px;
}

.mode-monthly .mode-no {
    color: var(--yellow);
}

.modes-note {
    max-width: 1000px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 900px) {
    .modes-layout {
        grid-template-columns: 340px 1fr;
        gap: 72px;
    }

    .modes-phone {
        width: 100%;
    }
}

/* ---------- Screens ---------- */
.screens-section {
    background: var(--green-50);
    overflow: hidden;
}

.screens-scroller {
    display: flex;
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 10px 4px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.screens-toolbar {
    max-width: 1200px;
    margin: 0 auto 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.screens-toolbar p strong,
.screens-toolbar p span {
    display: block;
}

.screens-toolbar p strong {
    font-family: var(--font-sport);
    color: var(--green-600);
    letter-spacing: 0.22em;
}

.screens-toolbar p span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.screens-arrows {
    display: flex;
    gap: 8px;
}

.screens-arrows button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--green-800);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.screens-arrows button:hover:not(:disabled) {
    background: var(--green-800);
    color: var(--white);
}

.screens-arrows button:disabled {
    cursor: default;
    opacity: 0.32;
}

.screens-cta {
    max-width: 920px;
    margin: 44px auto 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.screens-cta p strong,
.screens-cta p span {
    display: block;
}

.screens-cta p strong {
    font-size: 17px;
    font-weight: 900;
}

.screens-cta p span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12.5px;
}

@media (min-width: 760px) {
    .screens-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 30px 34px;
    }
}

.screens-scroller::-webkit-scrollbar {
    display: none;
}

.screens-scroller.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.screen-card {
    flex: none;
    width: 236px;
    scroll-snap-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px 18px 0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.screen-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.screen-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 14px;
}

.screen-card figcaption b {
    font-family: var(--font-sport);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--green-600);
}

.screen-card img {
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -6px 28px -12px rgba(4, 31, 22, 0.35);
}

.scroll-hint {
    text-align: center;
    font-family: var(--font-sport);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-top: 4px;
}

/* ---------- Squad ---------- */
.squad-section {
    background:
        radial-gradient(800px 460px at 85% 100%, rgba(31, 138, 95, 0.35), transparent 60%),
        linear-gradient(180deg, var(--green-950), var(--green-900));
    color: var(--white);
}

.squad-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.squad-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.squad-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 210, 0, 0.5);
}

.squad-card img {
    width: 104px;
    height: 104px;
    margin: 0 auto 18px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.5);
}

.squad-role {
    display: block;
    font-family: var(--font-sport);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.34em;
    color: var(--yellow);
    margin-bottom: 8px;
}

.squad-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.squad-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 700px) {
    .squad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .squad-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------- Creator ---------- */
.creator-section {
    background: var(--white);
}

.creator-panel {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(150deg, var(--green-800), var(--green-950));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px 34px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.creator-panel::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 340px;
    height: 340px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.creator-badge {
    justify-self: center;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    border: 2px solid rgba(255, 210, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 210, 0, 0.06);
    flex: none;
}

.creator-badge b {
    font-size: 44px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.creator-badge small {
    font-family: var(--font-sport);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.creator-body h2 {
    font-size: clamp(24px, 3.6vw, 34px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
}

.creator-body h2 em {
    font-style: normal;
    color: var(--yellow);
}

.creator-body>p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 22px;
}

.creator-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.creator-list li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    font-weight: 700;
}

.creator-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 900;
}

.disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 860px) {
    .creator-panel {
        grid-template-columns: auto 1fr;
        padding: 64px 60px;
    }
}

/* ---------- Regulation update ---------- */
.update-section {
    background: var(--green-50);
}

.update-panel {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    background: var(--yellow);
    color: var(--ink);
    overflow: hidden;
    position: relative;
}

.update-panel::after {
    content: '';
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 2px solid rgba(4, 31, 22, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.update-season {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.update-season>span {
    font-family: var(--font-sport);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.26em;
}

.update-season strong {
    font-family: var(--font-display);
    font-size: clamp(74px, 14vw, 126px);
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.update-season strong span {
    font-size: 0.48em;
    letter-spacing: -0.02em;
}

.update-body {
    position: relative;
    z-index: 1;
}

.update-body .eyebrow {
    color: var(--green-800);
    margin-bottom: 12px;
}

.update-body h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.4;
}

.update-body h2 em {
    color: var(--green-700);
    font-style: normal;
}

.update-body>p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 16px;
    font-size: 14.5px;
    font-weight: 500;
}

.update-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding: 9px 16px;
    border: 1px solid rgba(4, 31, 22, 0.28);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.update-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-700);
    box-shadow: 0 0 0 4px rgba(4, 91, 61, 0.14);
}

.update-status.is-done i {
    position: relative;
    width: 14px;
    height: 14px;
    box-shadow: none;
}

.update-status.is-done i::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 5px;
    width: 3px;
    height: 6px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (min-width: 800px) {
    .update-panel {
        grid-template-columns: minmax(260px, 0.78fr) 1.22fr;
        padding: 64px 60px;
    }
}

/* ---------- Plans ---------- */
.plans-section {
    background: var(--green-50);
}

.plans-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

.plans-grid-single {
    grid-template-columns: minmax(0, 680px);
    justify-content: center;
}

.plan-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.plan-card header {
    margin-bottom: 24px;
}

.plan-tag {
    display: inline-block;
    font-family: var(--font-sport);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--green-600);
    border: 1px solid var(--green-600);
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

.plan-tag-yellow {
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
}

.plan-card h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 10px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price b {
    font-family: var(--font-sport);
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
}

.plan-price span {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.plan-annual {
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green-600);
}

.plan-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    flex: 1;
}

.plan-card li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    font-weight: 500;
}

.plan-card li.ok::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--green-500);
}

.plan-card li.ng {
    color: var(--muted);
}

.plan-card li.ng::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #c2cfc8;
    font-weight: 900;
}

.plan-card-premium {
    background: linear-gradient(160deg, var(--green-800), var(--green-950));
    color: var(--white);
    border: none;
    box-shadow: var(--shadow);
}

.plan-card-premium .plan-price span,
.plan-card-premium li.ng {
    color: rgba(255, 255, 255, 0.6);
}

.plan-card-premium .plan-annual {
    color: var(--yellow);
}

.plan-card-premium li.ok::before {
    color: var(--yellow);
}

.plan-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    border-radius: 6px;
    padding: 5px 12px;
    transform: rotate(3deg);
}

.plan-note {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 820px) {
    .plans-grid:not(.plans-grid-single) {
        grid-template-columns: 1fr 1.15fr;
    }

    .plans-grid:not(.plans-grid-single) .plan-card-onetime {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1100px) {
    .plans-grid:not(.plans-grid-single) {
        max-width: 1100px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plans-grid:not(.plans-grid-single) .plan-card-onetime {
        grid-column: auto;
    }
}

/* Team plan */
.team-plan {
    max-width: 900px;
    margin: 28px auto 0;
    background: var(--white);
    border: 1px dashed var(--green-500);
    border-radius: var(--radius-lg);
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.team-plan .eyebrow {
    margin-bottom: 8px;
}

.team-plan h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.team-plan p {
    font-size: 13.5px;
    color: var(--muted);
}

.team-plan .btn {
    flex: none;
    align-self: flex-start;
}

@media (min-width: 820px) {
    .team-plan {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .team-plan .btn {
        align-self: center;
    }
}

/* ---------- FAQ ---------- */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-list details[open] {
    border-color: var(--green-500);
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    flex: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-50);
    color: var(--green-600);
    font-weight: 900;
    font-size: 18px;
    transition: transform 0.25s, background 0.25s;
}

.faq-list details[open] summary::after {
    content: '−';
    background: var(--yellow);
    color: var(--ink);
}

.faq-list details p {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--muted);
}

/* ---------- Final CTA ---------- */
.final-cta {
    position: relative;
    background:
        radial-gradient(900px 500px at 50% 120%, rgba(31, 138, 95, 0.5), transparent 65%),
        linear-gradient(180deg, var(--green-950), #031710);
    color: var(--white);
    text-align: center;
    padding: 120px 24px 100px;
    overflow: hidden;
}

.final-pitch {
    position: absolute;
    inset: 0;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.final-pitch svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.final-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.final-en {
    font-family: var(--font-display);
    font-size: clamp(15px, 2.4vw, 22px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.final-cta h2 {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
}

.final-cta h2 em {
    font-style: normal;
    color: var(--yellow);
}

.final-lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
}

.final-cta .store-links {
    justify-content: center;
}

.qr-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 44px;
}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-item img {
    width: 112px;
    height: 112px;
    border-radius: 14px;
    background: var(--white);
    padding: 8px;
}

.qr-item small {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
    .qr-row {
        display: none;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: #02120c;
    color: var(--white);
    padding: 48px 24px 32px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.brand-footer .brand-text strong {
    font-size: 15px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}

.footer-nav a {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--yellow);
}

.footer-sns {
    display: flex;
    gap: 12px;
}

.footer-sns a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.2s, color 0.2s;
}

.footer-sns a:hover {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
}

.footer-lang {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin-top: 28px;
}

.footer-lang a,
.footer-lang span {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-lang a:hover {
    color: var(--yellow);
}

.footer-lang span[aria-current] {
    color: var(--yellow);
}

.footer-lang .footer-lang-disabled {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.footer-lang-disabled small {
    margin-left: 3px;
    font-size: 8px;
    letter-spacing: 0.04em;
}

.footer-copy {
    text-align: center;
    margin-top: 16px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.35);
}

/* 言語版：提供モードの注記 */
.mode-note-mark {
    color: var(--yellow);
    font-weight: 900;
}

@media (min-width: 860px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ---------- QR Modal ---------- */
.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(2, 18, 12, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.qr-modal[hidden] {
    display: none;
}

.qr-modal-panel {
    position: relative;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 44px 36px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
}

.qr-modal-panel h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 8px;
}

.qr-modal-panel>p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.qr-modal-panel .qr-row {
    margin-top: 0;
    display: flex;
}

.qr-modal-panel .qr-item img {
    border: 1px solid var(--line);
    padding: 6px;
}

.qr-modal-panel .qr-item small {
    color: var(--muted);
}

.qr-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--green-50);
    color: var(--muted);
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.qr-modal-close:hover {
    background: var(--line);
}

/* ---------- Mobile persistent CTA ---------- */
.mobile-download-bar {
    display: none;
}

@media (max-width: 767px) {
    .hero {
        padding: calc(var(--header-h) + 34px) 20px 0;
    }

    .hero-inner {
        gap: 30px;
        padding-bottom: 56px;
    }

    .hero-kicker {
        margin-bottom: 18px;
        padding: 7px 13px;
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .hero-title {
        margin-bottom: 18px;
    }

    .hero-title-en {
        font-size: clamp(54px, 18vw, 72px);
    }

    .hero-title-ja {
        margin-top: -0.4em;
        font-size: clamp(28px, 8.2vw, 34px);
        white-space: nowrap;
    }

    .hero-lead {
        margin-bottom: 26px;
        font-size: 14px;
        line-height: 1.9;
    }

    .hero-audience {
        margin-bottom: 20px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-callout {
        top: 0;
        left: 0;
        padding: 10px 13px;
    }

    .phone-main {
        top: 70px;
    }

    .phone-back {
        top: 126px;
    }

    .section-head {
        margin-bottom: 44px;
    }

    .screens-toolbar {
        align-items: center;
    }

    .screens-toolbar p span {
        max-width: 17em;
    }

    .scroll-hint {
        display: none;
    }

    .mobile-download-bar {
        position: fixed;
        z-index: 180;
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 10px 10px 12px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 18px;
        background: rgba(4, 31, 22, 0.94);
        color: var(--white);
        box-shadow: 0 16px 48px rgba(2, 18, 12, 0.34);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transition: opacity 0.25s, transform 0.25s;
    }

    .mobile-download-bar.is-hidden {
        opacity: 0;
        transform: translateY(120%);
        pointer-events: none;
    }

    .mobile-download-bar .brand-badge {
        width: 34px;
        height: 34px;
    }

    .mobile-download-bar p {
        min-width: 0;
        margin-right: auto;
        line-height: 1.25;
    }

    .mobile-download-bar p strong,
    .mobile-download-bar p small {
        display: block;
        white-space: nowrap;
    }

    .mobile-download-bar p strong {
        font-size: 13px;
        font-weight: 900;
    }

    .mobile-download-bar p small {
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 9px;
    }

    .mobile-download-bar .btn {
        min-height: 44px;
        padding: 11px 15px;
        font-size: 12px;
        white-space: nowrap;
        box-shadow: none;
    }
}

/* ---------- Mobile layout refinement ---------- */
@media (max-width: 767px) {
    :root {
        --header-h: 64px;
        --radius-lg: 22px;
    }

    body {
        line-height: 1.7;
    }

    .header-inner {
        padding-inline: 14px;
        gap: 12px;
    }

    .brand {
        gap: 8px;
        min-width: 0;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 13px;
        white-space: nowrap;
    }

    .brand-text small {
        font-size: 8px;
        letter-spacing: 0.26em;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex: none;
    }

    .hero {
        padding: calc(var(--header-h) + 30px) 20px 0;
    }

    .hero-inner {
        gap: 26px;
        padding-bottom: 48px;
    }

    .hero-title-ja {
        font-size: clamp(27px, 8vw, 33px);
        line-height: 1.22;
        white-space: normal;
        text-wrap: balance;
    }

    .hero-visual {
        min-height: 440px;
    }

    .section {
        padding: 64px 20px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: 0.3em;
    }

    .section-head h2 {
        font-size: clamp(25px, 7.2vw, 30px);
        line-height: 1.42;
        text-wrap: balance;
    }

    .section-lead {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.75;
        text-wrap: pretty;
    }

    .section-lead br {
        display: none;
    }

    .train-steps {
        gap: 14px;
    }

    .train-step {
        padding: 26px 22px 24px;
        border-radius: 20px;
    }

    .train-step h3 {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .train-step h3 b {
        font-size: 34px;
    }

    .step-min {
        top: 18px;
        right: 20px;
    }

    .section-cta {
        margin-top: 18px;
        padding: 22px 20px;
        gap: 16px;
    }

    .section-cta .btn,
    .team-plan .btn,
    .plan-card .btn {
        width: 100%;
        min-height: 48px;
    }

    .modes-layout {
        gap: 34px;
    }

    .modes-phone {
        width: min(76vw, 286px);
        justify-self: center;
    }

    .modes-note {
        margin-top: 28px;
        line-height: 1.75;
    }

    .screens-toolbar {
        align-items: center;
    }

    .screens-toolbar p strong {
        font-size: 13px;
    }

    .screens-arrows button {
        width: 42px;
        height: 42px;
    }

    .screens-scroller {
        width: calc(100% + 20px);
        margin-right: -20px;
        gap: 14px;
        padding: 8px 20px 20px 0;
        scroll-padding-inline: 0 20px;
    }

    .screen-card {
        width: min(70vw, 252px);
        padding: 14px 14px 0;
        scroll-snap-align: start;
    }

    .screens-cta {
        margin-top: 30px;
        padding: 24px 18px;
        gap: 18px;
    }

    .screens-cta p strong {
        font-size: 16px;
        line-height: 1.65;
        text-wrap: pretty;
    }

    .screens-cta p span {
        margin-top: 6px;
        line-height: 1.7;
    }

    .screens-cta .store-links {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .screens-cta .store-links a {
        flex: 1 1 0;
        max-width: 142px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .screens-cta .store-links img {
        width: auto;
        max-width: 100%;
        height: 44px;
        object-fit: contain;
    }

    .scroll-hint {
        display: none;
    }

    .squad-grid {
        gap: 14px;
    }

    .squad-card {
        display: grid;
        grid-template-columns: 74px minmax(0, 1fr);
        column-gap: 18px;
        padding: 22px 20px;
        text-align: left;
    }

    .squad-card img {
        grid-row: 1 / 4;
        width: 74px;
        height: 74px;
        margin: 0;
        align-self: center;
    }

    .squad-role {
        margin-bottom: 2px;
        font-size: 9px;
    }

    .squad-card h3 {
        margin-bottom: 4px;
        font-size: 18px;
    }

    .squad-card p {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .creator-panel {
        gap: 28px;
        padding: 38px 24px;
    }

    .creator-badge {
        width: 132px;
        height: 132px;
    }

    .creator-badge b {
        font-size: 38px;
    }

    .creator-body h2 {
        font-size: 25px;
        line-height: 1.45;
        text-wrap: balance;
    }

    .update-panel {
        gap: 24px;
        padding: 34px 24px;
    }

    .update-season strong {
        font-size: clamp(64px, 21vw, 82px);
    }

    .update-body h2 {
        font-size: 24px;
        line-height: 1.5;
        text-wrap: balance;
    }

    .plans-section .section-head h2 span {
        display: inline-block;
    }

    .plans-grid {
        gap: 18px;
    }

    .plan-card {
        padding: 30px 22px 24px;
    }

    .plan-card header {
        margin-bottom: 20px;
    }

    .plan-card ul {
        gap: 10px;
        margin-bottom: 24px;
    }

    .plan-card li {
        padding-left: 24px;
        font-size: 13px;
    }

    .plan-ribbon {
        top: 16px;
        right: 16px;
    }

    .team-plan {
        margin-top: 18px;
        padding: 26px 22px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-list summary {
        min-height: 56px;
        padding: 16px 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-list details p {
        padding: 0 18px 18px;
        font-size: 13px;
    }

    .final-cta {
        padding: 82px 20px 88px;
    }

    .final-cta h2 {
        font-size: 28px;
        line-height: 1.45;
        text-wrap: balance;
    }

    .final-lead {
        margin-bottom: 28px;
    }

    .final-cta .store-links {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }

    .final-cta .store-links a {
        flex: 0 1 150px;
    }

    .final-cta .store-links img {
        width: 100%;
        height: auto;
    }

    .site-footer {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .mobile-download-bar {
        left: 12px;
        right: 12px;
        bottom: max(8px, env(safe-area-inset-bottom));
        gap: 9px;
        min-height: 60px;
        padding: 8px 8px 8px 10px;
    }

    .mobile-download-bar .btn {
        padding: 10px 14px;
    }
}

@media (max-width: 370px) {
    .brand-text strong {
        font-size: 12px;
    }

    .brand-text small {
        letter-spacing: 0.2em;
    }

    .mobile-download-bar .brand-logo {
        display: none;
    }

    .screens-arrows {
        display: none;
    }
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

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

.reveal[data-delay="1"] {
    transition-delay: 0.12s;
}

.reveal[data-delay="2"] {
    transition-delay: 0.24s;
}

.reveal[data-delay="3"] {
    transition-delay: 0.36s;
}

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ticker-track,
    .run-path,
    .whistle-dot,
    .hero-callout {
        animation: none;
    }
}

/* ---------- English version ---------- */
body.lang-en .hero-title-ja {
    max-width: 12em;
    margin-top: -0.38em;
    font-size: clamp(34px, 3.8vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

body.lang-en .hero-lead {
    max-width: 39em;
}

body.lang-en .hero-callout span {
    white-space: normal;
}

body.lang-en .score p,
body.lang-en .squad-card p,
body.lang-en .plan-card li,
body.lang-en .faq-list details p {
    line-height: 1.6;
}

body.lang-en .creator-badge b {
    font-size: clamp(42px, 6vw, 70px);
}

@media (max-width: 767px) {
    body.lang-en .hero-title-ja {
        max-width: none;
        font-size: clamp(30px, 9.2vw, 38px);
        white-space: normal;
    }

    body.lang-en .hero-callout {
        max-width: 205px;
    }

    body.lang-en .plan-card .btn {
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.35;
    }
}

@media (min-width: 960px) and (max-width: 1199px) {
    body.lang-en .header-nav,
    body.lang-en .header-cta {
        display: none;
    }

    body.lang-en .menu-toggle {
        display: flex;
    }
}
