/* ===== Happy Hours campaign page ===== */

.hh-page {
    background: var(--black);
}

/* ----- Hero (cyan frame + composite BG — match design) ----- */
.hh-hero {
    position: relative;
    padding: 0;
    background: var(--black);
}

.hh-hero-frame {
    position: relative;
    max-width: none;
    margin: 0;
    min-height: min(78vh, 820px);
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hh-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hh-hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keep crowd + characters visible (illustration on the right) */
    object-position: 62% 28%;
}

.hh-hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Purple spotlight behind center copy + CTA */
        radial-gradient(
            ellipse 85% 65% at 50% 58%,
            rgba(143, 38, 189, 0.42) 0%,
            rgba(143, 38, 189, 0.12) 42%,
            transparent 68%
        ),
        /* Readability: darker at top, lighter so right-side art shows */
        linear-gradient(
            105deg,
            rgba(8, 6, 10, 0.82) 0%,
            rgba(8, 6, 10, 0.45) 38%,
            rgba(8, 6, 10, 0.35) 55%,
            rgba(6, 8, 14, 0.55) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.2) 45%,
            rgba(0, 0, 0, 0.5) 100%
        );
}

.hh-hero-glow {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: min(100%, 980px);
    height: min(55vh, 480px);
    background: radial-gradient(
        ellipse at center,
        rgba(192, 132, 252, 0.28) 0%,
        rgba(25, 252, 226, 0.08) 38%,
        transparent 65%
    );
    pointer-events: none;
    filter: blur(18px);
    mix-blend-mode: screen;
    opacity: 0.95;
}

.hh-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 88px) 28px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .hh-hero-bg-img {
        object-position: 56% 22%;
    }

    .hh-hero-frame {
        min-height: auto;
        border-radius: 0;
    }

    .hh-hero-inner {
        padding: 40px 18px 44px;
    }
}

@media (max-width: 600px) {
    .hh-hero {
        padding: 0;
    }

    .hh-hero-bg-img {
        object-position: center top;
    }
}

.hh-hero-copy {
    text-align: center;
}

.hh-gradient-text {
    background: linear-gradient(90deg, #c084fc 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hh-hero-title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.hh-hero-sub {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(24px, 3.4vw, 40px);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 22px;
}

.hh-teal {
    color: var(--teal);
}

.hh-purple {
    color: #c084fc;
}

.hh-hero-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 760px;
    margin: 0 auto 14px;
}

.hh-hero-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
}

.hh-stat-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.hh-stat-card {
    flex: 0 1 216px;
    min-width: 180px;
    max-width: 300px;
    padding: 22px 20px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hh-stat-card__value {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    white-space: nowrap;
}

.hh-stat-card__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
}

.hh-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hh-hero-login-line {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
}

.hh-hero-login {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hh-hero-login:hover {
    color: var(--teal);
}

/* ----- Buttons: max 250px wide (design) ----- */
.hh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    max-width: 250px;
    width: auto;
    min-width: 0;
    min-height: 64px;
    padding: 12px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--black);
    background: var(--teal);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow:
        0 0 24px rgba(25, 252, 226, 0.45),
        0 0 48px rgba(25, 252, 226, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hh-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 32px rgba(25, 252, 226, 0.55),
        0 0 64px rgba(25, 252, 226, 0.25);
}

.hh-btn--center {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 250px;
}

/* ----- Section layout ----- */
.hh-section {
    padding: 72px 24px;
}

.hh-container {
    max-width: 1140px;
    margin: 0 auto;
}

.hh-section-head {
    text-align: center;
    margin-bottom: 44px;
}

.hh-section-title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hh-section-sub {
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    max-width: 820px;
    margin: 0 auto;
}

.hh-legal {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 14px;
}

/* ----- Offering boxed section ----- */
.hh-offering {
    padding-top: 32px;
}

.hh-offering__box {
    padding: 48px 40px 56px;
    border: 1px solid rgba(25, 252, 226, 0.25);
    border-radius: 20px;
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(25, 252, 226, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 100%, rgba(143, 38, 189, 0.18) 0%, transparent 55%),
        rgba(255, 255, 255, 0.02);
}

.hh-offering-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .hh-offering-cards {
        grid-template-columns: 1fr;
    }
}

.hh-mini-card {
    padding: 28px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
}

.hh-mini-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-mini-card__icon--teal {
    background: rgba(25, 252, 226, 0.12);
    color: var(--teal);
    border: 1px solid rgba(25, 252, 226, 0.3);
}

.hh-mini-card__icon--purple {
    background: rgba(143, 38, 189, 0.15);
    color: #d8b4fe;
    border: 1px solid rgba(192, 132, 252, 0.35);
}

.hh-mini-card__value {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 6px;
}

.hh-mini-card__value--gradient {
    font-size: clamp(22px, 2.6vw, 30px);
}

.hh-mini-card__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
}

.hh-offering-copy {
    max-width: 960px;
    margin: 0 auto 32px;
    padding: 28px 32px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hh-offering-copy p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.hh-offering-footnote {
    margin-top: 20px !important;
    font-size: 12px !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ----- How to join ----- */
.hh-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

@media (max-width: 960px) {
    .hh-steps {
        grid-template-columns: 1fr;
    }
}

.hh-step {
    padding: 32px 24px 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hh-step--purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: radial-gradient(ellipse at 50% 0%, rgba(143, 38, 189, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hh-step__num-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-step__glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.65;
    transition: background 0.25s ease;
}

.hh-step--purple .hh-step__glow {
    background: rgba(143, 38, 189, 0.55);
}

.hh-step:hover .hh-step__glow {
    background: rgba(25, 252, 226, 0.5);
}

.hh-step__num {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hh-step:hover .hh-step__num {
    color: var(--black);
    background: var(--teal);
    border-color: var(--teal);
}

.hh-step__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-step__icon--teal {
    background: rgba(25, 252, 226, 0.12);
    color: var(--teal);
    border: 1px solid rgba(25, 252, 226, 0.35);
}

.hh-step__icon--purple {
    background: rgba(143, 38, 189, 0.18);
    color: #e9d5ff;
    border: 1px solid rgba(192, 132, 252, 0.4);
}

.hh-step__title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.35;
}

.hh-step__title a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 3px;
}

.hh-step__title a:hover {
    color: var(--teal);
    text-decoration: underline;
}

.hh-step__text {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.hh-step__text a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hh-step__text a:hover {
    color: #fff;
}

.hh-login-secondary {
    text-align: center;
    margin-top: 12px;
}

.hh-login-secondary a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hh-login-secondary a:hover {
    color: var(--teal);
}

/* ----- Compare table ----- */
.hh-compare-table-wrap {
    max-width: 1024px;
    margin: 0 auto 40px;
}

.hh-compare-table {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.hh-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hh-compare-row:last-child {
    border-bottom: none;
}

.hh-compare-row--head {
    min-height: 92px;
}

.hh-compare-cell {
    padding: 22px 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.hh-compare-row--head .hh-compare-cell {
    background: rgba(0, 0, 0, 0.25);
}

/* Middle column: “Regular” pricing — muted grey (screenshots) */
.hh-compare-row--head .hh-compare-cell:nth-child(2) .hh-compare-head,
.hh-compare-row--head .hh-compare-cell:nth-child(2) .hh-compare-sub {
    color: rgba(255, 255, 255, 0.45);
}

.hh-compare-row:not(.hh-compare-row--head) .hh-compare-cell:nth-child(2) {
    color: rgba(255, 255, 255, 0.48);
    font-weight: 400;
}

.hh-compare-cell--label {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.hh-compare-head {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.hh-compare-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.hh-compare-cell--hh {
    background: linear-gradient(180deg, rgba(25, 252, 226, 0.12) 0%, rgba(25, 252, 226, 0.03) 100%);
    border-left: 1px solid rgba(25, 252, 226, 0.45);
    color: var(--teal);
}

.hh-compare-row:not(.hh-compare-row--head) .hh-compare-cell--hh {
    font-weight: 600;
}

.hh-compare-hh-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
}

.hh-compare-hh-sub {
    font-size: 12px;
    color: var(--teal);
    opacity: 0.92;
}

.hh-compare-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.hh-compare-hh-small {
    font-size: 13px;
    font-weight: 500;
    color: var(--teal);
    opacity: 0.95;
}

.hh-compare-row:not(.hh-compare-row--head) .hh-compare-cell--hh strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.hh-compare-footnotes {
    margin-top: 22px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.48);
    text-align: left;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.hh-compare-footnotes p + p {
    margin-top: 8px;
}

@media (max-width: 720px) {
    .hh-compare-table {
        border: none;
        background: transparent;
        overflow: visible;
    }

    .hh-compare-row--head {
        display: none;
    }

    .hh-compare-row:not(.hh-compare-row--head) {
        display: flex;
        flex-direction: column;
        border-bottom: none;
        margin-bottom: 14px;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(0, 0, 0, 0.35);
    }

    .hh-compare-row:not(.hh-compare-row--head):last-child {
        margin-bottom: 0;
    }

    .hh-compare-cell--label {
        padding: 14px 16px 12px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.25);
    }

    .hh-compare-cell[data-label] {
        padding: 14px 16px 16px;
        gap: 0;
        align-items: flex-start;
    }

    .hh-compare-cell[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.55);
    }

    .hh-compare-cell--hh[data-label]::before {
        color: var(--teal);
        opacity: 0.95;
    }

    .hh-page--ja .hh-compare-cell[data-label]::before {
        text-transform: none;
        letter-spacing: 0.03em;
        font-size: 12px;
    }

    .hh-compare-row:not(.hh-compare-row--head) .hh-compare-cell:nth-child(2) {
        background: rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hh-compare-cell--hh {
        border-left: none;
        border-top: none;
    }
}

/* ----- Schedule ----- */
.hh-schedule-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

@media (max-width: 800px) {
    .hh-schedule-info {
        grid-template-columns: 1fr;
    }
}

.hh-info-card {
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.hh-info-card--cyan {
    box-shadow: 0 0 0 1px rgba(25, 252, 226, 0.2), 0 0 40px rgba(25, 252, 226, 0.08);
}

.hh-info-card--purple {
    box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.2), 0 0 40px rgba(143, 38, 189, 0.1);
}

.hh-info-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hh-info-card--cyan .hh-info-card__icon {
    color: var(--teal);
}

.hh-info-card--purple .hh-info-card__icon {
    color: #d8b4fe;
}

.hh-info-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.hh-info-card__text {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    padding-left: 36px;
}

.hh-info-card__text a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hh-info-card__text a:hover {
    color: #fff;
}

/* Weekly calendar block (title + intro + rows) */
.hh-schedule-calendar {
    margin-top: 40px;
    padding-top: 4px;
}

.hh-schedule-calendar .hh-schedule-week-title.hh-gradient-text {
    background: linear-gradient(92deg, #c4b5fd 0%, #2dd4bf 36%, #5eead4 68%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hh-schedule-week-title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hh-schedule-week-intro {
    font-size: 15px;
    line-height: 1.65;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 36px;
}

.hh-schedule-list {
    list-style: none;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hh-schedule-row {
    display: grid;
    grid-template-columns: minmax(112px, 1.05fr) minmax(168px, 1.35fr) minmax(128px, 0.95fr);
    gap: 20px 32px;
    align-items: center;
    padding: 22px 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(152deg, rgba(26, 26, 32, 0.98) 0%, rgba(12, 12, 16, 0.99) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 12px 40px rgba(0, 0, 0, 0.35);
}

.hh-schedule-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.hh-schedule-col--day {
    align-items: flex-start;
    text-align: left;
}

.hh-schedule-col--time {
    align-items: center;
    text-align: center;
}

.hh-schedule-col--inst {
    align-items: flex-end;
    text-align: right;
}

.hh-schedule-day {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--teal);
    line-height: 1.2;
}

.hh-schedule-date {
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hh-schedule-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.hh-schedule-time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.35;
}

.hh-schedule-time svg {
    flex-shrink: 0;
    color: #a78bfa;
}

.hh-schedule-pill {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid rgba(25, 252, 226, 0.65);
    background: rgba(0, 0, 0, 0.42);
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* JP: longer labels read better left-aligned in all columns */
.hh-page--ja .hh-schedule-col--time,
.hh-page--ja .hh-schedule-col--inst {
    align-items: flex-start;
    text-align: left;
}

.hh-page--ja .hh-schedule-time {
    justify-content: flex-start;
}

@media (max-width: 720px) {
    .hh-schedule-calendar {
        margin-top: 32px;
    }

    .hh-schedule-week-intro {
        margin-bottom: 28px;
        padding: 0 4px;
    }

    .hh-schedule-list {
        gap: 14px;
    }

    .hh-schedule-row {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
        padding: 20px 20px 22px;
        border-left: 3px solid rgba(25, 252, 226, 0.5);
        padding-left: 22px;
    }

    .hh-schedule-col--time,
    .hh-schedule-col--inst {
        align-items: flex-start;
        text-align: left;
    }

    .hh-schedule-time {
        justify-content: flex-start;
    }

    .hh-info-card__text {
        padding-left: 0;
    }
}

/* ----- Essentials grid ----- */
.hh-essentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 800px) {
    .hh-essentials-grid {
        grid-template-columns: 1fr;
    }
}

.hh-essential {
    padding: 28px 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.hh-essential--cyan::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--teal), rgba(25, 252, 226, 0.2));
    border-radius: 4px 0 0 4px;
}

.hh-essential--purple::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #c084fc, rgba(143, 38, 189, 0.3));
    border-radius: 4px 0 0 4px;
}

.hh-essential__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.35;
}

.hh-essential__text {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

/* ----- CTA banner ----- */
.hh-cta-banner__box {
    max-width: 900px;
    margin: 0 auto;
    padding: 44px 36px 40px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 23, 0.9);
    box-shadow:
        0 0 60px rgba(143, 38, 189, 0.2),
        0 0 80px rgba(25, 252, 226, 0.12);
}

.hh-cta-banner__title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 26px;
}

.hh-cta-banner__box .hh-btn {
    margin-top: 0;
}

.hh-cta-banner__box .hh-legal {
    margin-top: 18px;
}

/* ----- FAQ teaser ----- */
.hh-faq-teaser {
    padding-bottom: 100px;
}

.hh-faq-teaser__inner {
    text-align: center;
    max-width: 720px;
}

.hh-faq-teaser__title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hh-faq-teaser__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.55;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Stay within 250px max on small viewports */
@media (max-width: 380px) {
    .hh-btn,
    .hh-btn--center {
        max-width: 250px;
        width: min(100%, 250px);
    }
}

/* ----- Mobile density: sections, hero, offering, CTA ----- */
@media (max-width: 600px) {
    .hh-section {
        padding: 48px 16px;
    }

    .hh-offering__box {
        padding: 32px 16px 36px;
    }

    .hh-hero-inner {
        padding: 36px 16px 40px;
    }

    .hh-stat-cards {
        margin-bottom: 24px;
    }

    .hh-stat-card {
        min-width: 140px;
        padding: 16px 14px 18px;
    }

    .hh-hero-desc {
        font-size: 14px;
    }

    .hh-cta-banner__box {
        padding: 32px 18px 28px;
    }
}

@media (max-width: 480px) {
    .hh-essential {
        padding: 20px 18px 24px;
    }
}

/* ----- Japanese page typography & hero ----- */
.hh-page--ja {
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
}

.hh-page--ja .hh-hero-title,
.hh-page--ja .hh-section-title,
.hh-page--ja .hh-schedule-week-title,
.hh-page--ja .hh-faq-teaser__title,
.hh-page--ja .hh-cta-banner__title {
    font-family: 'Noto Sans JP', 'Noto Sans Display', sans-serif;
}

.hh-hero-lead {
    display: block;
    font-family: 'Noto Sans JP', 'Noto Sans Display', sans-serif;
    font-size: clamp(26px, 3.6vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #f472b6 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hh-hero-title-jp-main {
    display: block;
    font-family: 'Noto Sans JP', 'Noto Sans Display', sans-serif;
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--teal);
}

.hh-stat-card__value--sm {
    font-size: clamp(18px, 2.2vw, 26px) !important;
    line-height: 1.25;
    text-align: center;
}

.hh-hero-ctrader-note {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
}

.hh-hero-ctrader-note a.hh-link-faq,
.hh-campaign-overview__table td a.hh-link-faq {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hh-hero-ctrader-note a.hh-link-faq:hover,
.hh-campaign-overview__table td a.hh-link-faq:hover {
    color: var(--teal);
}

.hh-legal--hero {
    margin-top: 20px;
}

.hh-legal a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hh-legal a:hover {
    color: var(--teal);
}

.hh-offering-title-jp {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: transparent;
    font-family: 'Noto Sans JP', 'Noto Sans Display', sans-serif;
}

.hh-offering-title-jp__grad {
    background: linear-gradient(90deg, #c084fc 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hh-offering-title-jp__cyan {
    color: var(--teal);
    -webkit-text-fill-color: var(--teal);
}

.hh-mini-card__value--sm {
    font-size: clamp(16px, 1.8vw, 22px) !important;
    margin-bottom: 4px;
}

.hh-mini-card--purple-text .hh-mini-card__label {
    display: none;
}

.hh-inline-link {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hh-page--ja .hh-compare-head,
.hh-page--ja .hh-compare-sub,
.hh-page--ja .hh-compare-hh-title,
.hh-page--ja .hh-compare-hh-sub {
    text-transform: none;
    letter-spacing: 0.02em;
}

.hh-page--ja .hh-schedule-day {
    text-transform: none;
    letter-spacing: 0.04em;
}

.hh-page--ja .hh-schedule-label {
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.hh-cta-banner__sub {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin: -12px auto 28px;
    max-width: 560px;
}

.hh-btn--faq {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ----- JP campaign overview table ----- */
.hh-campaign-overview {
    padding-bottom: 100px;
}

.hh-campaign-overview__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}

.hh-campaign-overview__table-wrap {
    max-width: 960px;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.hh-campaign-overview__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.hh-campaign-overview__table th,
.hh-campaign-overview__table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    vertical-align: top;
    text-align: left;
}

.hh-campaign-overview__table tr:last-child th,
.hh-campaign-overview__table tr:last-child td {
    border-bottom: none;
}

.hh-campaign-overview__table th {
    width: 28%;
    min-width: 140px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
}

.hh-campaign-overview__table td p {
    margin: 0 0 10px;
}

.hh-campaign-overview__table td p:last-child {
    margin-bottom: 0;
}

.hh-campaign-overview__table td a {
    color: var(--teal);
    word-break: break-all;
}

.hh-campaign-overview__table td a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .hh-campaign-overview__table-wrap {
        padding: 2px;
    }

    .hh-campaign-overview__table th,
    .hh-campaign-overview__table td {
        display: block;
        width: 100%;
        padding: 14px 14px;
    }

    .hh-campaign-overview__table th {
        border-bottom: none;
        padding-bottom: 8px;
    }

    .hh-campaign-overview {
        padding-bottom: 72px;
    }
}
