@font-face {
    font-family: "Archivo Black";
    src: url("../fonts/ArchivoBlack-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --wh-navy: #1B2A4A;
    --wh-indigo: #2C3E6B;
    --wh-cyan: #8ED9FF;
    --wh-teal: #5EEAD4;
    --wh-gold: #FFD54A;
    --wh-gold-soft: #F4C430;
    --wh-cream: #FFF8EB;
    --wh-story: #FF7A3D;
    --wh-hourly: #FFD166;
    --wh-daily: #4DA3FF;
    --wh-weekly: #B388FF;
    --wh-gems: #7B5CFF;
    --wh-text: #FFFFFF;
    --wh-text-muted: #C9D4EA;
    --wh-card-solid: #243457;
    --wh-card-border: rgba(142, 217, 255, 0.12);
    --wh-radius-tile: 14px;
    --wh-radius-button: 16px;
    --wh-radius-card: 20px;
    --wh-shadow-card: 0 8px 18px rgba(0, 0, 0, 0.24);
    --wh-font-display: "Archivo Black", "Trebuchet MS", sans-serif;
    --wh-font-body: "Poppins", "Segoe UI", sans-serif;
    --wh-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --wh-fast: 150ms;
    --wh-base: 240ms;
    --wh-slow: 420ms;
    --wh-header-h: 72px;
    --wh-content: 1120px;
    --wh-legal-page: #F3F6FC;
    --wh-legal-card: #FFFFFF;
    --wh-legal-text: #1B2A4A;
    --wh-legal-muted: #4B5B7A;
    --wh-legal-link: #2C6BED;
    --wh-legal-divider: #D7DEEE;
    --wh-type-hero: clamp(3.25rem, 8vw, 5rem);
    --wh-type-h2: clamp(2.15rem, 4vw, 3rem);
    --wh-type-h3: clamp(1.4rem, 2.4vw, 1.75rem);
    --wh-type-body: 1.0625rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--wh-font-body);
    font-weight: 600;
    font-size: var(--wh-type-body);
    color: var(--wh-text);
    background: var(--wh-navy);
    line-height: 1.65;
    min-height: 100dvh;
    overflow-x: clip;
    max-width: 100%;
}

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

a {
    color: var(--wh-cyan);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--wh-cyan);
    outline-offset: 3px;
}

::selection {
    background: rgba(142, 217, 255, 0.35);
    color: var(--wh-text);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    z-index: 1000;
    padding: 0.75rem 1rem;
    background: var(--wh-gold);
    color: var(--wh-navy);
    border-radius: var(--wh-radius-button);
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
}

.wh-page {
    position: relative;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(120% 80% at 50% 0%, #2C3E6B 0%, #1B2A4A 55%, #121A2E 100%);
    min-height: 100dvh;
    overflow-x: clip;
    max-width: 100%;
}

.wh-header,
.wh-main,
.wh-footer {
    position: relative;
    z-index: 1;
}

.wh-container {
    width: min(100%, var(--wh-content));
    margin-inline: auto;
}

.wh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem max(1rem, env(safe-area-inset-right)) 0.75rem max(1rem, env(safe-area-inset-left));
    padding-top: calc(0.75rem + env(safe-area-inset-top));
}

.wh-header-inner {
    max-width: min(100%, var(--wh-content));
    width: 100%;
    margin: 0 auto;
    min-height: var(--wh-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(36, 52, 87, 0.88);
    border: 1px solid var(--wh-card-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    min-width: 0;
}

.wh-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--wh-text);
    text-decoration: none;
    min-height: 44px;
    flex-shrink: 0;
}

.wh-brand:hover {
    text-decoration: none;
}

.wh-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
}

.wh-brand-name {
    font-family: var(--wh-font-display);
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.wh-nav-pill {
    display: none;
    align-items: center;
    gap: 0.15rem;
}

.wh-nav-link {
    color: var(--wh-text-muted);
    font-size: 0.9rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.wh-nav-link:hover,
.wh-nav-link.is-active {
    color: var(--wh-text);
    background: rgba(142, 217, 255, 0.1);
    text-decoration: none;
}

.wh-header-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    min-width: 0;
}

.wh-header-cta {
    display: none;
}

.wh-nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    border-radius: 12px;
    border: 1px solid var(--wh-card-border);
    background: var(--wh-card-solid);
}

.wh-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--wh-text);
    border-radius: 2px;
}

.wh-lang {
    position: relative;
}

.wh-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--wh-card-border);
    border-radius: var(--wh-radius-button);
    background: var(--wh-card-solid);
    color: var(--wh-text-muted);
    font-size: 0.875rem;
}

.wh-lang-btn[aria-expanded="true"] {
    border-color: var(--wh-cyan);
    color: var(--wh-text);
}

.wh-lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 160px;
    padding: 0.4rem;
    border-radius: var(--wh-radius-card);
    background: var(--wh-indigo);
    border: 1px solid var(--wh-card-border);
    box-shadow: var(--wh-shadow-card);
    display: none;
    z-index: 20;
}

.wh-lang-menu.is-open {
    display: block;
}

.wh-lang-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    color: var(--wh-text-muted);
    font-size: 0.9rem;
}

.wh-lang-option:hover,
.wh-lang-option.is-active {
    background: rgba(142, 217, 255, 0.12);
    color: var(--wh-text);
}

.wh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border: none;
    border-radius: var(--wh-radius-button);
    font-family: var(--wh-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform var(--wh-fast) var(--wh-ease), filter var(--wh-base) var(--wh-ease), background var(--wh-base) var(--wh-ease);
}

.wh-btn:hover {
    text-decoration: none;
}

.wh-btn:active {
    transform: translateY(1px) scale(0.98);
}

.wh-btn-primary {
    background: linear-gradient(135deg, #FFE27A 0%, #FFD54A 45%, #E6B800 100%);
    color: var(--wh-navy);
    box-shadow: 0 6px 0 rgba(15, 23, 42, 0.35);
}

.wh-btn-primary:hover {
    filter: brightness(1.05);
}

.wh-btn-ghost {
    background: transparent;
    color: var(--wh-cyan);
    border: 2px solid var(--wh-cyan);
}

.wh-btn-ghost:hover {
    background: rgba(142, 217, 255, 0.1);
}

.wh-btn-lg {
    min-height: 56px;
    padding-inline: 1.75rem;
    font-size: 1.05rem;
}

.wh-main {
    flex: 1;
}

.wh-section {
    padding: 4rem max(1.25rem, env(safe-area-inset-right)) 4rem max(1.25rem, env(safe-area-inset-left));
}

.wh-section-head {
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

.wh-section-head:not(.is-left) {
    margin-inline: auto;
    text-align: center;
}

.wh-section-title {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h2);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    text-wrap: balance;
}

.wh-section-sub {
    color: var(--wh-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 42ch;
    text-wrap: pretty;
}

.wh-section-head:not(.is-left) .wh-section-sub {
    margin-inline: auto;
}

.wh-subhead {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h3);
    margin: 2rem 0 1rem;
    letter-spacing: -0.01em;
}

.wh-pill-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 213, 74, 0.16);
    color: var(--wh-gold);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wh-hero {
    position: relative;
    isolation: isolate;
    padding: 1.5rem 0 3.5rem;
    min-height: calc(100dvh - 6rem);
    display: block;
    overflow: hidden;
    background: var(--wh-deep-field, #121A2E);
}

.wh-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    contain: paint;
    clip-path: inset(0);
}

/* Classic 16:9 cover like Tornado3 — avoid 100vw on the iframe (expands mobile scroll width) */
.wh-hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78%;
    height: 100%;
    min-width: 100%;
    min-height: 56.25%;
    transform: translate(-50%, -50%) scale(1.35);
    border: 0;
    pointer-events: none;
    background: #000;
}

@media (min-aspect-ratio: 16/9) {
    .wh-hero-video iframe {
        width: 100%;
        height: 56.25vw;
        min-height: 100%;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.wh-hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 120% 90% at 50% 30%, rgba(27, 42, 74, 0.35) 0%, rgba(18, 26, 46, 0.72) 62%, rgba(18, 26, 46, 0.95) 100%),
        linear-gradient(180deg, rgba(18, 26, 46, 0.82) 0%, rgba(27, 42, 74, 0.45) 36%, rgba(18, 26, 46, 0.58) 68%, rgba(18, 26, 46, 0.96) 100%);
}

.wh-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 2rem, var(--wh-content));
    max-width: 100%;
    min-height: calc(100dvh - 6rem);
    margin-inline: auto;
    display: grid;
    gap: 2rem;
    align-items: center;
    align-content: center;
}

.wh-hero-title {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-hero);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.wh-hero-headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--wh-font-display);
    font-size: clamp(1.55rem, 6vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.wh-headline-chip {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 14px;
    background: var(--wh-gold);
    color: var(--wh-navy);
}

.wh-hero-sub {
    color: var(--wh-text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 36ch;
    margin: 0;
}

.wh-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.wh-store-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.wh-hero-cta .wh-store-badge img {
    height: 48px;
}

.wh-hero-visual {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: 24px;
}

.wh-hero-panel {
    border-radius: 24px;
    background: var(--wh-card-solid);
    border: 1px solid var(--wh-card-border);
    box-shadow: var(--wh-shadow-card);
    padding: 0;
    min-height: 280px;
    overflow: hidden;
    position: relative;
}

.wh-hero-shot {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 70vw;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 24px;
    transform: none;
    animation: shot-settle 0.85s var(--wh-ease) both;
}

@keyframes shot-settle {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wh-letter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
}

.wh-letter-grid-lg {
    max-width: 280px;
    width: 100%;
}

.wh-letter-grid-sm {
    max-width: 168px;
    width: 100%;
    gap: 0.3rem;
}

.wh-tile {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: var(--wh-radius-tile);
    background: linear-gradient(145deg, #9FE0FF 0%, #6BC4EF 100%);
    color: var(--wh-navy);
    font-family: var(--wh-font-display);
    font-size: 1.15rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
    animation: tile-pop 0.55s var(--wh-ease) both;
}

.wh-letter-grid-sm .wh-tile {
    font-size: 0.85rem;
    border-radius: 10px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.wh-tile.is-gold {
    background: linear-gradient(135deg, #FFE27A 0%, #FFD54A 45%, #E6B800 100%);
}

.wh-tile:nth-child(1) { animation-delay: 0.04s; }
.wh-tile:nth-child(2) { animation-delay: 0.08s; }
.wh-tile:nth-child(3) { animation-delay: 0.12s; }
.wh-tile:nth-child(4) { animation-delay: 0.16s; }
.wh-tile:nth-child(5) { animation-delay: 0.2s; }
.wh-tile:nth-child(6) { animation-delay: 0.24s; }
.wh-tile:nth-child(7) { animation-delay: 0.28s; }
.wh-tile:nth-child(8) { animation-delay: 0.32s; }
.wh-tile:nth-child(9) { animation-delay: 0.36s; }
.wh-tile:nth-child(10) { animation-delay: 0.4s; }
.wh-tile:nth-child(11) { animation-delay: 0.44s; }
.wh-tile:nth-child(12) { animation-delay: 0.48s; }
.wh-tile:nth-child(13) { animation-delay: 0.52s; }
.wh-tile:nth-child(14) { animation-delay: 0.56s; }
.wh-tile:nth-child(15) { animation-delay: 0.6s; }
.wh-tile:nth-child(16) { animation-delay: 0.64s; }

@keyframes tile-pop {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wh-phone {
    position: absolute;
    right: 4%;
    bottom: 4%;
    width: min(148px, 40vw);
    border-radius: 22px;
    background: #121A2E;
    border: 3px solid #3A4F7A;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    padding: 0.35rem;
    animation: tile-pop 0.7s var(--wh-ease) 0.35s both;
    overflow: hidden;
}

.wh-phone-hero {
    z-index: 2;
}

.wh-phone-inline {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(240px, 72%);
    margin: 0 auto;
}

.wh-phone-shot {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
    background: #1B2A4A;
}

.wh-phone-notch {
    width: 42%;
    height: 8px;
    margin: 0.2rem auto 0.55rem;
    border-radius: 999px;
    background: #243457;
}

.wh-phone-screen {
    background: linear-gradient(180deg, #2C3E6B 0%, #1B2A4A 100%);
    border-radius: 20px;
    padding: 0.75rem;
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    min-height: 240px;
}

.wh-phone-status {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: var(--wh-text-muted);
    font-size: 0.65rem;
}

.wh-phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.wh-phone-tabs {
    display: flex;
    gap: 0.35rem;
    margin-top: auto;
}

.wh-phone-tabs span {
    width: 28px;
    height: 8px;
    border-radius: 999px;
    background: rgba(142, 217, 255, 0.2);
}

.wh-phone-tabs span.is-active {
    background: var(--wh-gold);
    width: 36px;
}

.wh-toast {
    position: absolute;
    top: 6%;
    right: 3%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
    background: var(--wh-indigo);
    border: 1px solid rgba(255, 213, 74, 0.45);
    box-shadow: var(--wh-shadow-card);
    animation: tile-pop 0.6s var(--wh-ease) 0.55s both;
    max-width: min(140px, 42vw);
}

.wh-toast-label {
    color: var(--wh-text-muted);
    font-size: 0.75rem;
}

.wh-toast-word {
    font-family: var(--wh-font-display);
    color: var(--wh-gold);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
}

.wh-pillar-rows {
    display: grid;
    gap: 1.5rem;
}

.wh-pillar-row {
    display: grid;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: var(--wh-radius-card);
    background: rgba(36, 52, 87, 0.72);
    border: 1px solid var(--wh-card-border);
}

.wh-pillar-visual {
    width: min(100%, 180px);
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    background: #121A2E;
    border: 2px solid #3A4F7A;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
    display: grid;
    place-items: stretch;
    margin-inline: auto;
    overflow: hidden;
    padding: 0.3rem;
}

.wh-pillar-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
}

.wh-pillar-row h3 {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h3);
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
}

.wh-pillar-row p {
    color: var(--wh-text-muted);
    max-width: 42ch;
}

.wh-pillar-row:nth-child(2) .wh-pillar-visual {
    border-color: rgba(94, 234, 212, 0.45);
}

.wh-pillar-row:nth-child(3) .wh-pillar-visual {
    border-color: rgba(255, 213, 74, 0.45);
}

.wh-demo {
    background: #121A2E;
}

.wh-demo-inner {
    display: grid;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.wh-demo-copy .wh-section-sub {
    margin-inline: auto;
}

.wh-modes-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.wh-mode-card {
    padding: 1.35rem 1.25rem;
    border-radius: var(--wh-radius-card);
    background:
        radial-gradient(120% 80% at 0% 0%, color-mix(in srgb, var(--mode-accent, var(--wh-cyan)) 22%, transparent), transparent 55%),
        var(--wh-card-solid);
    border: 1px solid var(--wh-card-border);
    transition: transform var(--wh-base) var(--wh-ease), box-shadow var(--wh-base) var(--wh-ease);
}

.wh-mode-card[data-accent="story"] { --mode-accent: var(--wh-story); }
.wh-mode-card[data-accent="zen"] { --mode-accent: var(--wh-teal); }
.wh-mode-card[data-accent="hourly"] { --mode-accent: var(--wh-hourly); }
.wh-mode-card[data-accent="daily"] { --mode-accent: var(--wh-daily); }
.wh-mode-card[data-accent="weekly"] { --mode-accent: var(--wh-weekly); }

.wh-mode-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wh-shadow-card);
}

.wh-mode-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
}

.wh-mode-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: var(--mode-accent, var(--wh-cyan));
    flex-shrink: 0;
}

.wh-mode-card h3 {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h3);
}

.wh-mode-card p {
    color: var(--wh-text-muted);
    font-size: 0.95rem;
}

.wh-bento {
    display: grid;
    gap: 1.25rem;
}

.wh-bento-gallery {
    position: relative;
    min-height: 320px;
    padding: 1.35rem 1.35rem 1.5rem;
    border-radius: var(--wh-radius-card);
    background:
        radial-gradient(80% 80% at 20% 20%, rgba(142, 217, 255, 0.2), transparent 55%),
        var(--wh-indigo);
    border: 1px solid var(--wh-card-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    overflow: hidden;
}

.wh-bento-tag {
    align-self: flex-start;
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    background: var(--wh-gold);
    color: var(--wh-navy);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wh-bento-shots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    flex: 1;
}

.wh-bento-shot {
    display: block;
    padding: 0;
    border: 1px solid rgba(142, 217, 255, 0.18);
    border-radius: 16px;
    overflow: hidden;
    background: #121A2E;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    cursor: zoom-in;
    transition: transform var(--wh-base) var(--wh-ease), border-color var(--wh-base) var(--wh-ease), box-shadow var(--wh-base) var(--wh-ease);
}

.wh-bento-shot:hover,
.wh-bento-shot:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 213, 74, 0.55);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
    outline: none;
}

.wh-bento-shot:nth-child(2),
.wh-bento-shot:nth-child(4) {
    transform: translateY(0.65rem);
}

.wh-bento-shot:nth-child(2):hover,
.wh-bento-shot:nth-child(2):focus-visible,
.wh-bento-shot:nth-child(4):hover,
.wh-bento-shot:nth-child(4):focus-visible {
    transform: translateY(calc(0.65rem - 3px));
}

.wh-bento-shot img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
}

.wh-bento-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    max-width: 180px;
    margin: 1.5rem 0;
}

.wh-bento-heading {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h2);
    letter-spacing: -0.02em;
    max-width: 12ch;
    position: relative;
    z-index: 1;
}

.wh-bento-cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.wh-benefit-card {
    padding: 1.25rem;
    border-radius: var(--wh-radius-card);
    background: rgba(36, 52, 87, 0.8);
    border: 1px solid var(--wh-card-border);
}

.wh-benefit-card h3 {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h3);
    margin-bottom: 0.4rem;
}

.wh-benefit-card p {
    color: var(--wh-text-muted);
    font-size: 0.95rem;
}

.wh-icon-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.wh-icon-card {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1.15rem 0.85rem;
    border-radius: var(--wh-radius-card);
    background: var(--wh-card-solid);
    border: 1px solid var(--wh-card-border);
    transition: transform var(--wh-base) var(--wh-ease), border-color var(--wh-base) var(--wh-ease);
}

.wh-icon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(142, 217, 255, 0.4);
}

.wh-icon-frame {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #1B2A4A;
    display: grid;
    place-items: center;
    padding: 0.5rem;
}

.wh-icon-frame img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.wh-icon-card h3 {
    font-family: var(--wh-font-display);
    font-size: 1.15rem;
}

.wh-icon-card p {
    color: var(--wh-text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.wh-seasons-card {
    display: grid;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 122, 61, 0.18), transparent 45%),
        var(--wh-card-solid);
    border: 1px solid var(--wh-card-border);
    box-shadow: var(--wh-shadow-card);
}

.wh-seasons-chip {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h2);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    max-width: 16ch;
}

.wh-seasons-visual .wh-section-sub {
    margin-bottom: 1.25rem;
}

.wh-seasons-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 260px;
    background: #121A2E;
    border: 1px solid var(--wh-card-border);
}

.wh-seasons-shot {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
}

.wh-seasons-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    padding: 0.55rem 0.9rem;
    border-radius: 14px;
    background: rgba(18, 26, 46, 0.92);
    border: 1px solid rgba(255, 213, 74, 0.45);
    color: var(--wh-gold);
    font-size: 0.85rem;
    box-shadow: var(--wh-shadow-card);
}

.wh-seasons-list {
    display: grid;
    gap: 0.85rem;
}

.wh-season-item {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(27, 42, 74, 0.65);
    border: 1px solid var(--wh-card-border);
}

.wh-season-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.wh-season-item p {
    color: var(--wh-text-muted);
    font-size: 0.9rem;
}

.wh-rewards-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.wh-rewards-cards {
    display: grid;
    gap: 0.85rem;
}

.wh-reward-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem;
    border-radius: 16px;
    background: var(--wh-card-solid);
    border: 1px solid var(--wh-card-border);
}

.wh-reward-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.wh-reward-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.wh-reward-card p {
    color: var(--wh-text-muted);
    font-size: 0.9rem;
}

.wh-stats {
    background: rgba(18, 26, 46, 0.55);
}

.wh-stats-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.wh-stats-visual {
    min-height: 220px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 213, 74, 0.25), transparent 55%),
        var(--wh-indigo);
    border: 1px solid var(--wh-card-border);
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.wh-stat-chip {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border-radius: 18px;
    background: var(--wh-navy);
    border: 1px solid rgba(255, 213, 74, 0.4);
    box-shadow: var(--wh-shadow-card);
    max-width: 280px;
}

.wh-stat-label {
    display: block;
    color: var(--wh-text-muted);
    font-size: 0.8rem;
}

.wh-stat-value {
    display: block;
    font-family: var(--wh-font-display);
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.wh-stat-note {
    display: block;
    color: var(--wh-text-muted);
    font-size: 0.75rem;
    opacity: 0.85;
}

.wh-inline-note {
    color: var(--wh-text-muted);
    font-size: 0.9rem;
}

.wh-tiers {
    display: grid;
    gap: 1rem;
}

.wh-tier {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem 1.25rem;
    border-radius: var(--wh-radius-card);
    background: var(--wh-card-solid);
    border: 1px solid var(--wh-card-border);
}

.wh-tier.is-popular {
    border-color: rgba(255, 213, 74, 0.55);
    box-shadow: var(--wh-shadow-card);
    background: linear-gradient(180deg, rgba(255, 213, 74, 0.1), rgba(36, 52, 87, 0.95));
}

.wh-tier-badge {
    position: absolute;
    top: -0.65rem;
    right: 1rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: var(--wh-gold);
    color: var(--wh-navy);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wh-tier h3 {
    font-family: var(--wh-font-display);
    font-size: var(--wh-type-h3);
}

.wh-tier-price {
    font-family: var(--wh-font-display);
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--wh-gold);
}

.wh-tier p {
    color: var(--wh-text-muted);
    font-size: 0.95rem;
}

.wh-tier ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin: 0.25rem 0 0.5rem;
    flex: 1;
}

.wh-tier li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--wh-text-muted);
    font-size: 0.92rem;
}

.wh-tier li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 4px;
    background: var(--wh-cyan);
}

.wh-tier .wh-btn {
    width: 100%;
    margin-top: auto;
}

.wh-faq-inner {
    max-width: 760px;
}

.wh-accordion {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--wh-card-border);
}

.wh-acc-item {
    border-bottom: 1px solid var(--wh-card-border);
}

.wh-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.15rem 0.25rem;
    color: var(--wh-text);
    font-size: 1.05rem;
    min-height: 56px;
}

.wh-acc-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(142, 217, 255, 0.12);
    color: var(--wh-cyan);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform var(--wh-base) var(--wh-ease);
}

.wh-acc-item.is-open .wh-acc-icon {
    transform: rotate(45deg);
}

.wh-acc-panel {
    display: none;
    padding: 0 0.25rem 1.15rem;
    color: var(--wh-text-muted);
    max-width: 65ch;
}

.wh-acc-item.is-open .wh-acc-panel {
    display: block;
}

.wh-download-card {
    display: grid;
    gap: 2rem;
    padding: 2rem 1.5rem;
    border-radius: 28px;
    background: var(--wh-indigo);
    border: 1px solid var(--wh-card-border);
    box-shadow: var(--wh-shadow-card);
}

.wh-download-copy .wh-inline-note {
    margin-bottom: 0.85rem;
    color: var(--wh-gold);
}

.wh-download-copy .wh-section-sub {
    margin-bottom: 1.25rem;
}

.wh-download-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.wh-store-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
    opacity: 0.95;
}

.wh-store-badge:hover,
.wh-store-badge:focus-visible {
    transform: translateY(-2px);
    opacity: 1;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.wh-store-badge:focus-visible {
    outline: 2px solid var(--wh-cyan, #8ED9FF);
    outline-offset: 4px;
}

.wh-store-badge img {
    height: 44px;
    width: auto;
    display: block;
}

.wh-closing {
    padding-bottom: 5rem;
}

.wh-closing-inner {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 28px;
    background: #121A2E;
    border: 1px solid var(--wh-card-border);
    position: relative;
    overflow: hidden;
}

.wh-closing-inner::before,
.wh-closing-inner::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: rgba(142, 217, 255, 0.08);
}

.wh-closing-inner::before {
    left: -30px;
    bottom: -40px;
}

.wh-closing-inner::after {
    right: -30px;
    bottom: -40px;
    background: rgba(255, 213, 74, 0.1);
}

.wh-closing-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 1.25rem;
}

.wh-closing-inner .wh-section-sub {
    margin: 0 auto 1.5rem;
}

.wh-video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.wh-video-modal.is-open {
    display: flex;
}

.wh-video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 34, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wh-video-modal-content {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    animation: wh-modal-in 0.28s var(--wh-ease);
}

@keyframes wh-modal-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wh-video-modal-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wh-video-modal-close {
    position: absolute;
    top: -3.25rem;
    right: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(142, 217, 255, 0.22);
    background: rgba(36, 52, 87, 0.85);
    color: var(--wh-text);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.wh-video-modal-close:hover {
    background: rgba(44, 62, 107, 0.95);
    border-color: rgba(142, 217, 255, 0.45);
}

.wh-video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(70vh, 520px);
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--wh-card-border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.wh-video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.wh-shot-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.wh-shot-modal.is-open {
    display: flex;
}

.wh-shot-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 34, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wh-shot-modal-content {
    position: relative;
    z-index: 1;
    width: min(100%, 390px);
    animation: wh-modal-in 0.28s var(--wh-ease);
}

.wh-shot-modal-image {
    display: block;
    width: 100%;
    max-height: min(78vh, 760px);
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    background: #000;
    border: 1px solid var(--wh-card-border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    transition: opacity 0.15s var(--wh-ease);
}

.wh-shot-modal-close {
    position: absolute;
    top: -3.25rem;
    right: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(142, 217, 255, 0.22);
    background: rgba(36, 52, 87, 0.85);
    color: var(--wh-text);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.wh-shot-modal-close:hover {
    background: rgba(44, 62, 107, 0.95);
    border-color: rgba(142, 217, 255, 0.45);
}

.wh-shot-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(142, 217, 255, 0.22);
    background: rgba(36, 52, 87, 0.85);
    color: var(--wh-text);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.wh-shot-modal-nav:hover {
    background: rgba(255, 213, 74, 0.92);
    border-color: var(--wh-gold);
    color: var(--wh-navy);
}

.wh-shot-modal-prev {
    left: -0.35rem;
}

.wh-shot-modal-next {
    right: -0.35rem;
}

.wh-shot-modal-caption {
    margin-top: 0.85rem;
    text-align: center;
    color: var(--wh-text-muted);
    font-size: 0.95rem;
}

@media (min-width: 720px) {
    .wh-shot-modal-prev {
        left: -3.5rem;
    }

    .wh-shot-modal-next {
        right: -3.5rem;
    }
}

.wh-footer {
    margin-top: auto;
    padding: 2.5rem max(1.25rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
    border-top: 1px solid var(--wh-card-border);
    background: rgba(18, 26, 46, 0.85);
}

.wh-footer-inner {
    max-width: var(--wh-content);
    margin: 0 auto 1.5rem;
    display: grid;
    gap: 2rem;
}

.wh-footer-tagline {
    color: var(--wh-text-muted);
    font-size: 0.95rem;
    margin-top: 0.85rem;
    max-width: 28ch;
}

.wh-footer-cols {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wh-footer-col-title {
    font-family: var(--wh-font-display);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.wh-footer-links {
    display: grid;
    gap: 0.35rem;
}

.wh-footer-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--wh-text-muted);
    font-size: 0.9rem;
}

.wh-footer-links a:hover {
    color: var(--wh-cyan);
}

.wh-copyright {
    max-width: var(--wh-content);
    margin: 0 auto;
    color: var(--wh-text-muted);
    font-size: 0.8rem;
    opacity: 0.85;
    text-align: center;
}

.wh-loading {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: var(--wh-navy);
    transition: opacity 0.3s var(--wh-ease), visibility 0.3s;
}

.wh-loading.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.wh-loading-dot {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFE27A, #FFD54A);
    animation: tile-pop 0.8s var(--wh-ease) infinite alternate;
}

.wh-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--wh-slow) var(--wh-ease), transform var(--wh-slow) var(--wh-ease);
}

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

body.wh-legal {
    background: var(--wh-legal-page);
    color: var(--wh-legal-text);
    font-family: var(--wh-font-body);
}

.wh-legal-bar {
    height: 4px;
    background: var(--wh-cyan);
}

.wh-legal-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.15rem max(1.25rem, env(safe-area-inset-right)) 1.15rem max(1.25rem, env(safe-area-inset-left));
    background: var(--wh-legal-card);
    border-bottom: 1px solid var(--wh-legal-divider);
}

.wh-legal-top a {
    color: var(--wh-legal-link);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.wh-legal-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--wh-legal-text);
    text-decoration: none;
    font-family: var(--wh-font-display);
    font-size: 1.05rem;
}

.wh-legal-brand:hover {
    text-decoration: none;
}

.wh-legal-brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.wh-legal-wrap {
    max-width: 720px;
    margin: 1.5rem auto 3rem;
    padding: 1.5rem max(1rem, env(safe-area-inset-right)) 2rem max(1rem, env(safe-area-inset-left));
    background: var(--wh-legal-card);
    border-radius: var(--wh-radius-card);
    box-shadow: 0 8px 24px rgba(27, 42, 74, 0.08);
}

@media (min-width: 640px) {
    .wh-legal-wrap {
        padding: 2.5rem 2.5rem 3rem;
        margin-top: 2rem;
    }
}

.wh-legal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--wh-legal-divider);
}

.wh-legal-header h1 {
    font-family: var(--wh-font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}

.wh-legal-header .game-name {
    color: var(--wh-legal-link);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.wh-legal-header .last-updated {
    color: var(--wh-legal-muted);
    font-size: 0.875rem;
}

.wh-legal-section {
    margin-bottom: 2rem;
}

.wh-legal-section h2 {
    font-family: var(--wh-font-display);
    font-size: clamp(1.35rem, 3.5vw, 1.65rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--wh-legal-text);
    letter-spacing: -0.01em;
}

.wh-legal-section h3 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.55rem;
    color: var(--wh-legal-text);
}

.wh-legal-section p,
.wh-legal-section li {
    color: var(--wh-legal-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.wh-legal-section ul {
    margin: 0 0 1rem 1.25rem;
}

.wh-legal-section a {
    color: var(--wh-legal-link);
    font-weight: 600;
}

.wh-legal-notice {
    background: #FFF8E8;
    border: 1px solid rgba(244, 196, 48, 0.45);
    padding: 1rem 1.1rem;
    margin: 1.25rem 0;
    border-radius: 12px;
    color: #6B5420;
}

.wh-legal-contact {
    background: var(--wh-legal-page);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--wh-legal-divider);
    margin-top: 1rem;
}

.wh-legal-contact p {
    color: var(--wh-legal-text);
}

.wh-legal-footer {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
    color: var(--wh-legal-muted);
    font-size: 0.9rem;
}

.wh-legal-footer a {
    color: var(--wh-legal-link);
}

@media (min-width: 720px) {
    .wh-section {
        padding: 5.5rem max(1.25rem, env(safe-area-inset-right)) 5.5rem max(1.25rem, env(safe-area-inset-left));
    }

    .wh-modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wh-icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .wh-icon-grid#powerups-list {
        grid-template-columns: repeat(5, 1fr);
    }

    .wh-bento-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .wh-tiers {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }

    .wh-pillar-row {
        grid-template-columns: 160px 1fr;
        gap: 2rem;
    }

    .wh-pillar-row:nth-child(even) {
        grid-template-columns: 1fr 160px;
    }

    .wh-pillar-row:nth-child(even) .wh-pillar-visual {
        order: 2;
    }
}

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

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

    .wh-nav-toggle {
        display: none;
    }

    .wh-hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
    }

    .wh-demo-inner {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .wh-demo-copy .wh-section-sub {
        margin-inline: 0;
    }

    .wh-bento {
        grid-template-columns: 1.1fr 1fr;
        gap: 1.5rem;
    }

    .wh-seasons-card {
        grid-template-columns: 1fr 0.95fr;
        grid-template-areas:
            "copy media"
            "list media";
        padding: 2.25rem;
        align-items: start;
    }

    .wh-seasons-visual {
        grid-area: copy;
    }

    .wh-seasons-media {
        grid-area: media;
        position: relative;
        min-height: 100%;
        align-self: stretch;
    }

    .wh-seasons-shot {
        max-height: none;
        min-height: 100%;
        position: absolute;
        inset: 0;
    }

    .wh-seasons-list {
        grid-area: list;
    }

    .wh-bento-shots img {
        height: 170px;
    }

    .wh-bento-shot img {
        height: 170px;
    }

    .wh-hero-visual {
        min-height: 520px;
        overflow: visible;
        border-radius: 0;
    }

    .wh-hero-panel,
    .wh-hero-shot {
        min-height: 480px;
        max-height: none;
        border-radius: 28px;
    }

    .wh-phone {
        bottom: -8%;
        width: min(200px, 48vw);
        border-radius: 28px;
    }

    .wh-phone-hero {
        width: min(220px, 42%);
    }

    .wh-toast {
        top: 8%;
        right: 0;
        max-width: 150px;
        padding: 0.85rem 1rem;
    }

    .wh-rewards-layout {
        grid-template-columns: 0.85fr 1.1fr 0.95fr;
    }

    .wh-stats-layout {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
    }

    .wh-download-card {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        padding: 2.5rem;
    }

    .wh-footer-inner {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }

    .wh-copyright {
        text-align: left;
    }

    .wh-modes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 959px) {
    .wh-nav-pill.is-open {
        display: flex;
        position: absolute;
        left: 0.5rem;
        right: 0.5rem;
        top: calc(100% + 0.35rem);
        flex-direction: column;
        padding: 0.75rem;
        border-radius: 20px;
        background: var(--wh-indigo);
        border: 1px solid var(--wh-card-border);
        box-shadow: var(--wh-shadow-card);
        max-width: calc(100vw - 2rem);
    }

    .wh-header {
        padding-inline: max(0.75rem, env(safe-area-inset-left)) max(0.75rem, env(safe-area-inset-right));
    }

    .wh-header-inner {
        position: relative;
        border-radius: 20px;
        padding: 0.45rem 0.55rem 0.45rem 0.65rem;
    }

    .wh-header-cta {
        display: none !important;
    }

    .wh-brand-name {
        font-size: 1rem;
    }

    .wh-brand-icon {
        width: 36px;
        height: 36px;
    }

    /* Mobile: no YouTube cover iframe — vw/vh embeds expand scroll width on iOS */
    .wh-hero-video iframe {
        display: none !important;
    }

    .wh-hero-video {
        background:
            linear-gradient(180deg, rgba(18, 26, 46, 0.55) 0%, rgba(18, 26, 46, 0.82) 100%),
            url("../images/screenshots/shot-hero-panel.jpg") center 18% / cover no-repeat;
    }

    .wh-hero {
        padding: 1rem 0 2.25rem;
        min-height: auto;
    }

    .wh-hero-inner {
        width: min(100% - 1.5rem, var(--wh-content));
        min-height: auto;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .wh-hero-title {
        font-size: clamp(2.35rem, 11vw, 3.1rem);
    }

    .wh-hero-sub {
        font-size: 0.98rem;
        max-width: none;
        margin-bottom: 0;
    }

    .wh-hero-cta {
        align-items: stretch;
        gap: 0.85rem;
    }

    .wh-store-buttons {
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .wh-hero-cta .wh-store-badge img {
        height: 42px;
    }

    .wh-hero-cta .wh-btn {
        width: 100%;
        max-width: 320px;
    }

    .wh-hero-visual {
        min-height: 0;
    }

    .wh-hero-panel,
    .wh-hero-shot {
        min-height: 260px;
        max-height: 58vh;
    }

    .wh-phone-hero {
        width: min(132px, 36vw);
        bottom: 5%;
        right: 4%;
    }

    .wh-toast {
        font-size: 0.9rem;
    }

    .wh-toast-word {
        font-size: 1.05rem;
    }

    .wh-section {
        padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
    }

    .wh-container {
        width: min(100%, var(--wh-content));
        padding-inline: 0;
        max-width: 100%;
    }

    .wh-bento-shot:nth-child(2),
    .wh-bento-shot:nth-child(4) {
        transform: none;
    }

    .wh-bento-shot:nth-child(2):hover,
    .wh-bento-shot:nth-child(2):focus-visible,
    .wh-bento-shot:nth-child(4):hover,
    .wh-bento-shot:nth-child(4):focus-visible {
        transform: translateY(-3px);
    }

    .wh-shot-modal-prev,
    .wh-shot-modal-next {
        left: auto;
        right: auto;
    }

    .wh-shot-modal-prev {
        left: 0.35rem;
    }

    .wh-shot-modal-next {
        right: 0.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .wh-hero-video iframe {
        display: none;
    }

    .wh-video-modal-content {
        animation: none;
    }

    .wh-tile,
    .wh-phone,
    .wh-toast,
    .wh-hero-shot,
    .wh-loading-dot {
        animation: none !important;
    }

    .wh-hero-shot {
        transform: none;
    }

    .wh-bento-shots img:nth-child(2),
    .wh-bento-shots img:nth-child(4) {
        transform: none;
    }

    .wh-bento-shot:nth-child(2),
    .wh-bento-shot:nth-child(4),
    .wh-bento-shot:nth-child(2):hover,
    .wh-bento-shot:nth-child(2):focus-visible,
    .wh-bento-shot:nth-child(4):hover,
    .wh-bento-shot:nth-child(4):focus-visible {
        transform: none;
    }

    .wh-shot-modal-content {
        animation: none;
    }

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