:root {
    --ink: #1a1a1a;
    --ink-soft: #2d2d2d;
    --muted: #6b6b6b;
    --paper: #f3f3f3;
    --foam: #ffffff;
    --brand: #e11d2e;
    --brand-deep: #c41222;
    --brand-soft: rgba(225, 29, 46, 0.1);
    --line: rgba(26, 26, 26, 0.08);
    --search: #ececec;
    --shadow: 0 18px 48px rgba(26, 26, 26, 0.08);
    --shadow-soft: 0 8px 24px rgba(26, 26, 26, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --font: "Montserrat", "Segoe UI", sans-serif;
    --pad-x: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    position: relative;
    overflow-x: hidden;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
}

/* ——— Header (full width) ——— */
.site-header {
    width: 100%;
    padding: 0.95rem var(--pad-x);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: var(--foam);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
    white-space: nowrap;
}

.brand .k {
    display: inline-block;
    width: 0.72em;
    height: 1em;
    margin: 0 0.02em;
    position: relative;
    vertical-align: -0.08em;
}

.brand .k::before,
.brand .k::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 0.22em;
    height: 0.62em;
    background: var(--brand);
    border-radius: 1px;
}

.brand .k::before {
    top: 0.08em;
    transform: translateX(-50%) rotate(-32deg);
    transform-origin: bottom center;
}

.brand .k::after {
    bottom: 0.08em;
    transform: translateX(-50%) rotate(32deg);
    transform-origin: top center;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    flex-wrap: wrap;
    grid-column: 2 / -1;
}

.nav a {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
    background: rgba(26, 26, 26, 0.04);
}

.nav a.active {
    color: var(--brand);
    background: var(--brand-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--search);
    border-radius: 999px;
    padding: 0.65rem 1.15rem;
    width: min(280px, 28vw);
}

.search svg {
    width: 16px;
    height: 16px;
    color: var(--muted);
    flex-shrink: 0;
}

.search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font);
    font-size: 0.84rem;
    color: var(--ink);
    width: 100%;
}

.search input::placeholder {
    color: #9a9a9a;
}

.icon-btn {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: var(--ink-soft);
    transition: background 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

/* ——— Main (full width) ——— */
main {
    width: 100%;
    flex: 1;
    padding: 1.5rem var(--pad-x) 3.5rem;
}

.site-footer {
    width: 100%;
    text-align: center;
    padding: 1.35rem var(--pad-x);
    color: var(--muted);
    font-size: 0.84rem;
    background: var(--foam);
    border-top: 1px solid var(--line);
}

/* ——— Buttons ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    padding: 0.95rem 1.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(180deg, #ef233c 0%, var(--brand-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(225, 29, 46, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(225, 29, 46, 0.4);
}

.btn-ghost {
    background: var(--foam);
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(225, 29, 46, 0.35);
    color: var(--brand);
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* ——— Home page ——— */
body.is-home main {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.home-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    padding: clamp(3rem, 8vh, 5.5rem) var(--pad-x);
    overflow: hidden;
    background:
        linear-gradient(135deg, #140a0b 0%, #1c1012 42%, #2a0f14 72%, #1a0c0e 100%);
    color: #f5f2f0;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-hero-glow {
    position: absolute;
    right: -12%;
    top: 50%;
    width: min(70vw, 720px);
    height: min(70vw, 720px);
    transform: translateY(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(225, 29, 46, 0.45) 0%, rgba(225, 29, 46, 0.12) 42%, transparent 70%);
    animation: homeGlow 5.5s ease-in-out infinite alternate;
}

.home-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, #000 20%, transparent 75%);
    opacity: 0.55;
}

.home-hero-wheel {
    position: absolute;
    right: clamp(-8%, -2vw, 4%);
    top: 50%;
    transform: translateY(-50%);
    width: min(58vw, 640px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    animation: homeWheelIn 1s ease both;
}

.home-wheel-ring {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 18px rgba(255, 255, 255, 0.03),
        0 40px 80px rgba(0, 0, 0, 0.35);
}

.home-wheel-disc {
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        from -90deg,
        #e11d2e 0deg 60deg,
        #1a1a1a 60deg 120deg,
        #c41222 120deg 180deg,
        #3a3a3a 180deg 240deg,
        #9f1239 240deg 300deg,
        #111111 300deg 360deg
    );
    border: 10px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    will-change: transform;
}

.home-wheel-disc span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 50%;
    background: rgba(255, 255, 255, 0.18);
    transform-origin: top center;
}

.home-wheel-disc span:nth-child(1) { transform: translate(-50%, 0) rotate(0deg); }
.home-wheel-disc span:nth-child(2) { transform: translate(-50%, 0) rotate(60deg); }
.home-wheel-disc span:nth-child(3) { transform: translate(-50%, 0) rotate(120deg); }
.home-wheel-disc span:nth-child(4) { transform: translate(-50%, 0) rotate(180deg); }
.home-wheel-disc span:nth-child(5) { transform: translate(-50%, 0) rotate(240deg); }
.home-wheel-disc span:nth-child(6) { transform: translate(-50%, 0) rotate(300deg); }

.home-wheel-hub {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    border: 4px solid var(--brand);
    display: grid;
    place-items: center;
    font-family: "Syne", var(--font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 34rem;
    display: grid;
    gap: 1.15rem;
    align-content: center;
}

.home-brand {
    display: inline-flex;
    align-items: center;
    font-family: "Syne", var(--font);
    font-size: clamp(3.2rem, 8vw, 5.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    animation: fadeUp 0.7s ease both;
}

.home-brand .k {
    display: inline-block;
    width: 0.72em;
    height: 1em;
    margin: 0 0.02em;
    position: relative;
    vertical-align: -0.08em;
}

.home-brand .k::before,
.home-brand .k::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 0.22em;
    height: 0.62em;
    background: var(--brand);
    border-radius: 1px;
}

.home-brand .k::before {
    top: 0.08em;
    transform: translateX(-50%) rotate(-32deg);
    transform-origin: bottom center;
}

.home-brand .k::after {
    bottom: 0.08em;
    transform: translateX(-50%) rotate(32deg);
    transform-origin: top center;
}

.home-hero-copy h1 {
    font-family: "Syne", var(--font);
    font-size: clamp(1.55rem, 3.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.92);
    max-width: 16ch;
    animation: fadeUp 0.7s ease 0.08s both;
}

.home-lead {
    color: rgba(245, 242, 240, 0.72);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.65;
    max-width: 34ch;
    animation: fadeUp 0.7s ease 0.16s both;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.55rem;
    animation: fadeUp 0.7s ease 0.24s both;
}

.home-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.home-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.home-offers {
    width: 100%;
    padding: clamp(3rem, 7vw, 5rem) var(--pad-x) clamp(2.5rem, 5vw, 4rem);
    background: var(--paper);
}

.home-offers-head {
    max-width: 40rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
}

.home-offers-head h2 {
    font-family: "Syne", var(--font);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.home-offers-head p {
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 42ch;
}

.home-offer-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.15rem;
}

.home-offer-card {
    background: var(--foam);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent, var(--brand));
    border-radius: var(--radius-sm);
    padding: 1.35rem 1.25rem 1.25rem;
    display: grid;
    gap: 0.55rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fadeUp 0.55s ease both;
}

.home-offer-card:nth-child(2) { animation-delay: 0.06s; }
.home-offer-card:nth-child(3) { animation-delay: 0.12s; }
.home-offer-card:nth-child(4) { animation-delay: 0.18s; }
.home-offer-card:nth-child(5) { animation-delay: 0.24s; }
.home-offer-card:nth-child(6) { animation-delay: 0.3s; }

.home-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.home-offer-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent, var(--brand));
}

.home-offer-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-offer-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.home-offer-code {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-family: ui-monospace, "Cascadia Code", monospace;
}

.home-offers-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

@keyframes homeGlow {
    from { opacity: 0.75; transform: translateY(-50%) scale(1); }
    to { opacity: 1; transform: translateY(-50%) scale(1.06); }
}

@keyframes homeWheelIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.92) translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1) translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-glow,
    .home-hero-wheel,
    .home-brand,
    .home-hero-copy h1,
    .home-lead,
    .home-hero-actions,
    .home-offer-card {
        animation: none;
    }
}

/* ——— Section heads ——— */
.section-head {
    width: 100%;
    margin: 0.25rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.section-head h1,
.section-head h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.section-head p {
    color: var(--muted);
    margin-top: 0.5rem;
    max-width: 48ch;
    font-size: 1.02rem;
}

.section-head .head-copy {
    max-width: 48rem;
}

/* ——— Offers grid ——— */
.offer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.offer-tile {
    background: var(--foam);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.6rem 1.5rem 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    min-height: 210px;
    display: flex;
    flex-direction: column;
}

.offer-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--accent, var(--brand));
}

.offer-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.offer-tile .tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent, var(--brand));
    margin-bottom: 0.55rem;
}

.offer-tile h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}

.offer-tile p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.offer-code {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--brand-soft);
    color: var(--brand-deep);
    font-weight: 700;
    font-size: 0.84rem;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    letter-spacing: 0.04em;
    width: fit-content;
}

.page-cta {
    margin-top: 2.25rem;
}

/* ——— Spin page (full width) ——— */
.spin-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: center;
    min-height: calc(100vh - 200px);
}

.spin-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 560px;
    padding: 2rem 0.5rem;
    overflow: visible;
    background: transparent;
}

.spin-stage::before {
    content: none;
}

.wheel-aura {
    position: absolute;
    width: min(92%, 540px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(225, 29, 46, 0.18), transparent 55%),
        radial-gradient(circle at 50% 60%, rgba(26, 26, 26, 0.06), transparent 60%);
    filter: blur(2px);
    pointer-events: none;
    animation: auraPulse 4.5s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.06); opacity: 1; }
}

.wheel-arena {
    position: relative;
    display: grid;
    place-items: center;
    width: min(88vw, 520px);
    height: min(88vw, 520px);
    z-index: 1;
}

.wheel-pointer {
    position: absolute;
    top: -6px;
    z-index: 8;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 8px 14px rgba(225, 29, 46, 0.35));
    animation: pointerBounce 1.5s ease-in-out infinite;
}

.pointer-stem {
    width: 18px;
    height: 28px;
    background: linear-gradient(180deg, #ff4d5e, var(--brand-deep));
    border-radius: 4px 4px 2px 2px;
    border: 2px solid #fff;
    position: relative;
    z-index: 1;
}

.pointer-tip {
    width: 0;
    height: 0;
    margin-top: -2px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 22px solid var(--brand-deep);
}

@keyframes pointerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.wheel-outer {
    position: relative;
    width: min(78vw, 460px);
    height: min(78vw, 460px);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 35% 30%, #fff 0%, #f3f3f3 40%, #e8e8e8 100%);
    box-shadow:
        0 0 0 10px #fff,
        0 0 0 14px rgba(225, 29, 46, 0.18),
        0 28px 60px rgba(26, 26, 26, 0.16),
        inset 0 2px 8px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.wheel-outer.is-spinning {
    box-shadow:
        0 0 0 10px #fff,
        0 0 0 16px rgba(225, 29, 46, 0.35),
        0 0 40px rgba(225, 29, 46, 0.25),
        0 28px 60px rgba(26, 26, 26, 0.18);
}

.wheel-bezel {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.wheel-peg {
    --n: 12;
    position: absolute;
    left: 50%;
    top: 0;
    width: 10px;
    height: 50%;
    margin-left: -5px;
    transform-origin: center bottom;
    transform: rotate(calc(var(--i) * 360deg / var(--n)));
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.wheel-peg::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #d4d4d4);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 1px 1px #fff;
}

.wheel-lights {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.wheel-light {
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 50%;
    margin-left: -4px;
    transform-origin: center bottom;
    transform: rotate(calc(var(--i) * 20deg));
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    animation: none;
}

.wheel-light::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-radius: 50%;
    background: #ffd166;
    box-shadow: 0 0 8px rgba(255, 209, 102, 0.85);
    animation: lightTwinkle 1.2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.08s);
}

.wheel-outer.is-spinning .wheel-light::after {
    animation-duration: 0.35s;
    background: #fff;
    box-shadow: 0 0 12px #fff, 0 0 18px var(--brand);
}

@keyframes lightTwinkle {
    0%, 100% { opacity: 0.35; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.2); }
}

.wheel-wrap {
    position: relative;
    width: calc(100% - 52px);
    height: calc(100% - 52px);
    z-index: 1;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        inset 0 0 28px rgba(0, 0, 0, 0.22),
        0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 4.5s cubic-bezier(0.12, 0.75, 0.12, 1);
}

.wheel-blank {
    background: #e11d2e !important;
}

.wheel-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, transparent 42%, transparent 58%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
    z-index: 2;
}

.segment-divider {
    display: none;
}

.wheel-center {
    position: absolute;
    inset: 50%;
    width: 88px;
    height: 88px;
    margin: -44px 0 0 -44px;
    border-radius: 50%;
    background: linear-gradient(160deg, #fff 0%, #f5f5f5 55%, #ececec 100%);
    border: 5px solid var(--brand);
    z-index: 4;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    color: var(--brand);
    box-shadow:
        0 10px 24px rgba(225, 29, 46, 0.28),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: var(--font);
    padding: 0;
}

.wheel-center:hover {
    transform: scale(1.06);
    box-shadow:
        0 14px 30px rgba(225, 29, 46, 0.38),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.wheel-center:disabled {
    cursor: not-allowed;
    opacity: 0.85;
    transform: none;
}

.hub-label {
    position: relative;
    z-index: 1;
}

.segment-label {
    position: absolute;
    inset: 0;
    transform: rotate(var(--mid, 0deg));
    pointer-events: none;
    z-index: 2;
}

/* Classic prize-wheel labels: radial text on the segment, no sticker boxes */
.segment-label .segment-text {
    position: absolute;
    top: 11%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: min(5.8rem, 34%);
    max-width: 6.2rem;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: clamp(0.68rem, 1.65vw, 0.9rem);
    font-weight: 800;
    font-family: var(--font);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.55),
        0 0 10px rgba(0, 0, 0, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.25);
}

.segment-label.is-flipped .segment-text {
    transform: translateX(-50%) rotate(180deg);
}

.segment-label.is-lose .segment-text {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0.95;
}

.spin-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(0.5rem, 2vw, 1rem) 0;
    box-shadow: none;
    animation: fadeUp 0.6s ease both;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spin-eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.spin-panel h1 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
    line-height: 1.1;
}

.spin-panel .lead {
    color: var(--muted);
    margin-bottom: 1.35rem;
    font-size: 1.05rem;
    max-width: 38ch;
    line-height: 1.6;
}

.spin-offer-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.6rem;
    padding: 0;
}

.spin-offer-chips li {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--chip, var(--brand));
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
}

.spin-offer-chips li.is-lose-chip {
    color: var(--muted);
}

.congrats-card.is-lose .congrats-badge {
    background: linear-gradient(145deg, #6b7280, #4b5563);
    box-shadow: 0 12px 28px rgba(75, 85, 99, 0.28);
}

.congrats-card.is-lose .congrats-badge-ring {
    border-color: rgba(107, 114, 128, 0.4);
}

.congrats-card.is-lose .congrats-eyebrow {
    color: #6b7280;
}

.congrats-card.is-lose .congrats-burst,
.spin-panel-step[data-step="3"].is-active:has(.congrats-card.is-lose) .congrats-burst {
    background: radial-gradient(circle, rgba(107, 114, 128, 0.16) 0%, rgba(107, 114, 128, 0.04) 40%, transparent 70%);
}

#claimBtn[hidden],
#congratsCodeWrap[hidden] {
    display: none !important;
}

.btn-spin {
    min-width: 11.5rem;
}

.btn-spin svg {
    animation: spinHint 2.8s linear infinite;
}

.btn-spin:disabled svg {
    animation: none;
}

@keyframes spinHint {
    to { transform: rotate(360deg); }
}

.result-box {
    min-height: 180px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(225, 29, 46, 0.06), rgba(26, 26, 26, 0.03));
    border: 1px dashed rgba(225, 29, 46, 0.28);
    padding: 1.35rem;
    margin: 0.4rem 0 1.5rem;
    display: grid;
    align-content: center;
    gap: 0.4rem;
    flex: 1;
}

.result-box .eyebrow {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
}

.result-box h2 {
    font-size: 1.65rem;
    font-weight: 800;
}

.result-box p {
    color: var(--muted);
    font-size: 0.95rem;
}

.result-box.empty {
    color: var(--muted);
    font-size: 0.98rem;
}

.spin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ——— Spin 3-step flow ——— */
.spin-flow {
    width: 100%;
    display: grid;
    gap: 1.5rem;
}

.spin-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.spin-step {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.spin-step .step-num {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8e8e8;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.spin-step.is-active {
    color: var(--ink);
}

.spin-step.is-active .step-num {
    background: var(--brand);
    color: #fff;
}

.spin-step.is-done .step-num {
    background: #1a1a1a;
    color: #fff;
}

.spin-step-line {
    width: 2.5rem;
    height: 2px;
    background: var(--line);
}

.spin-panel-step[hidden] {
    display: none !important;
}

.spin-panel-step.is-active {
    animation: fadeUp 0.45s ease both;
}

.no-offer-state {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(2rem, 5vw, 3.5rem) 0;
    text-align: center;
    box-shadow: none;
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    min-height: 360px;
    align-content: center;
}

.no-offer-state.compact {
    min-height: 220px;
    margin-top: 0.5rem;
}

.no-offer-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.no-offer-state h1,
.no-offer-state h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.no-offer-state p {
    color: var(--muted);
    max-width: 36ch;
    margin-bottom: 0.5rem;
}

.congrats-card,
.redeem-card {
    max-width: 820px;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(1rem, 3vw, 1.75rem) 0;
    box-shadow: none;
    text-align: center;
    display: grid;
    gap: 0.85rem;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.spin-panel-step[data-step="3"] {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.congrats-confetti {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.congrats-burst {
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(70vw, 420px);
    height: min(70vw, 420px);
    transform: translate(-50%, -50%) scale(0.4);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(225, 29, 46, 0.18) 0%, rgba(225, 29, 46, 0.05) 40%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.spin-panel-step[data-step="3"].is-active .congrats-burst {
    animation: congratsBurst 1.1s ease-out both;
}

.congrats-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    margin-bottom: 0.25rem;
    background: linear-gradient(145deg, #e11d2e, #c41222);
    color: #fff;
    box-shadow: 0 12px 28px rgba(225, 29, 46, 0.28);
}

.congrats-badge-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(225, 29, 46, 0.35);
}

.congrats-badge-icon {
    font-size: 1.55rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.congrats-card.is-animating .congrats-badge {
    animation: congratsPop 0.7s cubic-bezier(0.2, 1.4, 0.3, 1) both;
}

.congrats-card.is-animating .congrats-badge-ring {
    animation: congratsRing 1.2s ease-out 0.15s both;
}

.congrats-card.is-animating .congrats-eyebrow {
    animation: congratsRise 0.55s ease both 0.12s;
}

.congrats-card.is-animating h1 {
    animation: congratsRise 0.6s ease both 0.22s;
}

.congrats-card.is-animating .congrats-desc {
    animation: congratsRise 0.55s ease both 0.34s;
}

.congrats-card.is-animating .congrats-code-wrap {
    animation: congratsRise 0.6s ease both 0.46s;
}

.congrats-card.is-animating .congrats-claim {
    animation: congratsRise 0.55s ease both 0.52s;
}

.congrats-card.is-animating .congrats-note {
    animation: congratsRise 0.55s ease both 0.58s;
}

.congrats-card.is-animating .congrats-actions {
    animation: congratsRise 0.55s ease both 0.7s;
}

.congrats-actions {
    justify-content: center;
}

.congrats-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
}

.congrats-card h1,
.redeem-card h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.congrats-desc,
.redeem-card .lead {
    color: var(--muted);
    max-width: 40ch;
}

.congrats-code-wrap {
    margin: 0.5rem 0;
    padding: 0.35rem 0;
    border-radius: 0;
    background: transparent;
    border: none;
    display: grid;
    gap: 0.35rem;
    min-width: min(100%, 280px);
}

.congrats-code-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.congrats-code {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--brand-deep);
}

.congrats-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.45rem;
    padding: 0.55rem 1.05rem;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    background: var(--brand-soft);
    border: 1px solid rgba(225, 29, 46, 0.22);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.congrats-copy-btn svg {
    width: 16px;
    height: 16px;
}

.congrats-copy-btn:hover {
    background: rgba(225, 29, 46, 0.16);
    border-color: rgba(225, 29, 46, 0.35);
    transform: translateY(-1px);
}

.congrats-copy-btn.is-copied {
    color: #0f7b3c;
    background: rgba(15, 123, 60, 0.1);
    border-color: rgba(15, 123, 60, 0.22);
}

.congrats-card.is-animating .congrats-code {
    animation: congratsCodePulse 1.6s ease-in-out 0.8s 2 both;
}

.congrats-note {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

.congrats-claim {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 600;
    max-width: 34ch;
    line-height: 1.5;
    margin: 0.15rem 0 0.1rem;
}

.congrats-claim a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    transition: color 0.2s ease;
}

.congrats-claim a:hover {
    color: var(--brand-deep);
}

@keyframes congratsRise {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes congratsPop {
    0% {
        opacity: 0;
        transform: scale(0.2) rotate(-20deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.12) rotate(6deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes congratsRing {
    0% {
        opacity: 0.9;
        transform: scale(0.7);
    }
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@keyframes congratsBurst {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.35);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.35);
    }
}

@keyframes congratsCodePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: none;
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 18px rgba(225, 29, 46, 0.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wheel-aura,
    .wheel-light::after,
    .wheel-pointer,
    .btn-spin svg {
        animation: none !important;
    }

    .congrats-burst,
    .congrats-confetti,
    .congrats-card.is-animating .congrats-badge,
    .congrats-card.is-animating .congrats-badge-ring,
    .congrats-card.is-animating .congrats-eyebrow,
    .congrats-card.is-animating h1,
    .congrats-card.is-animating .congrats-desc,
    .congrats-card.is-animating .congrats-code-wrap,
    .congrats-card.is-animating .congrats-claim,
    .congrats-card.is-animating .congrats-note,
    .congrats-card.is-animating .congrats-actions,
    .congrats-card.is-animating .congrats-code {
        animation: none !important;
    }
}

.redeem-card {
    text-align: left;
    max-width: 820px;
    justify-items: stretch;
}

.redeem-panel {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--foam);
    padding: clamp(1.25rem, 3vw, 1.85rem);
    display: grid;
    gap: 1rem;
}

.redeem-card h1,
.redeem-card .lead {
    text-align: center;
    justify-self: center;
}

.redeem-prize {
    display: grid;
    gap: 0.35rem;
    padding: 0 0 0.85rem;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.15rem;
    justify-items: start;
    width: 100%;
}

.redeem-prize .eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
}

.redeem-prize strong {
    font-size: 1.25rem;
    font-weight: 800;
}

.redeem-form {
    display: grid;
    gap: 1rem;
}

.redeem-form[hidden],
.redeem-prize[hidden] {
    display: none !important;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.field {
    display: grid;
    gap: 0.4rem;
    align-content: start;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.field input {
    width: 100%;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    font: inherit;
    font-weight: 500;
    color: var(--ink);
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
    border-color: rgba(225, 29, 46, 0.45);
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.12);
    background: #fff;
}

.phone-row {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 0.55rem;
    align-items: stretch;
}

.phone-row select {
    width: 100%;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 0.45rem 0 0.55rem;
    font: inherit;
    font-weight: 600;
    color: var(--ink);
    background: #fafafa;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-row input {
    height: 3rem;
}

.field-error:empty {
    display: none;
}

.field-error {
    min-height: 0;
    color: var(--brand-deep);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
}

.field-phone .field-error:not(:empty) {
    margin-top: 0.15rem;
}

.form-error:empty {
    display: none;
}

.redeem-success {
    text-align: center;
    display: grid;
    gap: 0.75rem;
    justify-items: center;
    padding: 1rem 0;
}

.redeem-success[hidden] {
    display: none !important;
}

.redeem-success h2 {
    font-size: 1.7rem;
    font-weight: 800;
}

.redeem-success p {
    color: var(--muted);
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .spin-step-line {
        width: 1.25rem;
    }
}

@media (max-width: 1100px) {
    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        row-gap: 0.75rem;
    }

    .nav {
        grid-column: 1 / -1;
        order: 3;
        justify-content: flex-end;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.15rem;
    }

    .search {
        display: none;
    }

    .home-hero {
        min-height: auto;
        padding-top: clamp(2.5rem, 6vh, 4rem);
        padding-bottom: clamp(4.5rem, 14vh, 8rem);
    }

    .home-hero-wheel {
        width: min(92vw, 400px);
        right: 50%;
        top: auto;
        bottom: -18%;
        transform: translateX(50%);
        opacity: 0.28;
        animation: none;
    }

    .home-hero-glow {
        right: 50%;
        top: auto;
        bottom: -25%;
        width: min(95vw, 460px);
        height: min(95vw, 460px);
        transform: translateX(50%);
        animation: homeGlowMobile 5.5s ease-in-out infinite alternate;
    }

    @keyframes homeGlowMobile {
        from { opacity: 0.65; transform: translateX(50%) scale(1); }
        to { opacity: 1; transform: translateX(50%) scale(1.08); }
    }

    .home-hero-copy {
        max-width: 36rem;
    }

    .home-hero-copy h1 {
        max-width: none;
    }

    .spin-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.5rem;
    }

    .spin-panel {
        order: -1;
        text-align: center;
        align-items: center;
    }

    .spin-panel .lead {
        max-width: 42ch;
    }

    .spin-offer-chips {
        justify-content: center;
    }

    .spin-actions {
        justify-content: center;
    }

    .spin-stage {
        min-height: 480px;
        padding-top: 1rem;
    }

    .wheel-arena {
        width: min(92vw, 440px);
        height: min(92vw, 440px);
    }

    .wheel-outer {
        width: min(82vw, 380px);
        height: min(82vw, 380px);
    }
}

@media (max-width: 640px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .home-brand {
        font-size: clamp(2.8rem, 14vw, 3.6rem);
    }

    .home-hero-copy h1 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    }

    .wheel-wrap {
        width: calc(100% - 44px);
        height: calc(100% - 44px);
    }

    .wheel-center {
        width: 74px;
        height: 74px;
        margin: -37px 0 0 -37px;
        font-size: 0.8rem;
    }

    .segment-label .segment-text {
        top: 10%;
        width: min(5.2rem, 36%);
        font-size: clamp(0.62rem, 3.2vw, 0.78rem);
        letter-spacing: 0.03em;
    }

    .spin-panel h1 {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
    }
}
