/* ────────────────────────────────────────────────────────────────
   Poker Night — page-scoped marketing styles.
   Everything is namespaced under .pn so it never leaks into the
   shared site shell (header/footer keep using site.css).
   Self-hosted only; no external fonts/images (CSP-safe).
   ──────────────────────────────────────────────────────────────── */

.pn {
    /* Brand palette pulled from the app's own surfaces. */
    --pn-cash:   #57c75e;   /* cash-game green   */
    --pn-cash-2: #2e7d36;
    --pn-tour:   #f6a821;   /* tournament gold   */
    --pn-tour-2: #c97e0a;
    --pn-clock:  #ffb020;   /* blind-clock amber */
    --pn-hist:   #3b82f6;   /* history blue      */
    --pn-hist-2: #1d4ed8;
    --pn-stat:   #a78bfa;   /* stats purple      */
    --pn-series: #c084fc;   /* series violet     */
    --pn-series-2: #7c3aed;
    --pn-ink:    #0b1020;   /* deep table navy   */
    --pn-ink-2:  #11182b;
    --pn-panel:  #161d30;
    --pn-line:   rgba(255,255,255,0.09);
    --pn-soft:   rgba(255,255,255,0.04);
    --pn-muted:  #aeb4c2;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.pn-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--pn-line);
    background:
        radial-gradient(900px 480px at 16% -8%, rgba(87,199,94,0.20), transparent 60%),
        radial-gradient(820px 460px at 88% 4%, rgba(59,130,246,0.18), transparent 62%),
        linear-gradient(180deg, #0a0f1d 0%, #0c1322 60%, #0a0f1d 100%);
}
/* faint felt-suit texture */
.pn-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 30%, rgba(255,255,255,0.05) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 18%, rgba(255,255,255,0.04) 0 2px, transparent 3px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.035) 0 2px, transparent 3px);
    background-size: 220px 220px, 280px 280px, 320px 320px;
    opacity: 0.5;
    pointer-events: none;
}
.pn-hero-inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 24px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.pn-hero-banner {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 0 16px;
    border-radius: 8px;
}
.pn-eyebrow {
    margin: 0 0 10px;
    color: var(--pn-tour);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.pn-hero h1 {
    font-size: 2.54rem;
    line-height: 1.04;
    letter-spacing: 0;
    margin: 0 0 16px;
}
.pn-hero h1 .pn-accent {
    background: linear-gradient(90deg, var(--pn-cash), var(--pn-hist));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--pn-hist);
}
.pn-hero .pn-lead {
    font-size: 1.02rem;
    color: var(--pn-muted);
    max-width: 540px;
    margin: 0 0 18px;
}
.pn-availability {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin: 0 0 20px;
    font-size: 0.92rem;
    font-weight: 700;
}
.pn-availability span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dff8e2;
}
.pn-availability span i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pn-cash);
    box-shadow: 0 0 16px rgba(87,199,94,0.85);
}
.pn-availability a {
    color: var(--pn-tour);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
.pn-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}
.pn-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fg);
    background: var(--pn-soft);
    border: 1px solid var(--pn-line);
    border-radius: 999px;
}
.pn-chip::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--pn-cash);
    box-shadow: 0 0 10px var(--pn-cash);
}
.pn-chip.is-blue::before  { background: var(--pn-hist); box-shadow: 0 0 10px var(--pn-hist); }
.pn-chip.is-gold::before  { background: var(--pn-tour); box-shadow: 0 0 10px var(--pn-tour); }
.pn-chip.is-series::before { background: var(--pn-series); box-shadow: 0 0 10px var(--pn-series); }
.pn-chip.is-privacy::before { background: var(--pn-stat); box-shadow: 0 0 10px var(--pn-stat); }
.pn-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
    max-width: 560px;
}
.pn-hero-proof span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--pn-line);
    border-radius: 8px;
    background: rgba(255,255,255,0.035);
    color: var(--pn-muted);
    font-size: 0.82rem;
    line-height: 1.3;
}

/* Real screenshot composition in the hero. */
.pn-device-showcase {
    position: relative;
    min-height: 480px;
    max-width: 520px;
    margin: 0 auto;
}
.pn-shot {
    position: absolute;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 0;
    cursor: zoom-in;
    border-radius: 8px;
    filter: drop-shadow(0 24px 34px rgba(0,0,0,0.56));
    transition: transform 0.18s ease, filter 0.18s ease;
}
.pn-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    background: #050915;
}
.pn-shot:hover,
.pn-shot:focus-visible {
    filter: drop-shadow(0 30px 42px rgba(0,0,0,0.68));
}
.pn-shot:focus-visible {
    outline: 2px solid var(--pn-cash);
    outline-offset: 4px;
}
.pn-shot--main {
    z-index: 3;
    width: 228px;
    left: 50%;
    top: 4px;
    transform: translateX(-50%) rotate(-1deg);
}
.pn-shot--main:hover,
.pn-shot--main:focus-visible { transform: translateX(-50%) translateY(-4px) rotate(-1deg); }
.pn-shot--side {
    z-index: 2;
    width: 174px;
    opacity: 0.94;
}
.pn-shot--clock {
    left: 6px;
    top: 78px;
    transform: rotate(5deg);
}
.pn-shot--clock:hover,
.pn-shot--clock:focus-visible { transform: translateY(-4px) rotate(5deg); }
.pn-shot--web {
    right: 6px;
    top: 94px;
    transform: rotate(-6deg);
}
.pn-shot--web:hover,
.pn-shot--web:focus-visible { transform: translateY(-4px) rotate(-6deg); }
.pn-showcase-caption {
    position: absolute;
    left: 50%;
    bottom: 8px;
    z-index: 4;
    transform: translateX(-50%);
    width: min(88%, 420px);
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    background: rgba(8, 12, 22, 0.84);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}
.pn-showcase-caption span {
    display: block;
    color: var(--pn-tour);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.pn-showcase-caption strong {
    display: block;
    color: var(--fg);
    font-size: 0.94rem;
}

/* ── STORE BADGES ─────────────────────────────────────────────── */
.pn-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}
.pn-hero .pn-stores { margin-bottom: 16px; }
.pn-store {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 11px 18px;
    border-radius: 13px;
    border: 1px solid var(--pn-line);
    background: linear-gradient(180deg, #11182a, #0b1120);
    color: var(--fg);
    font-weight: 600;
    transition: transform 0.1s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.pn-store:hover {
    text-decoration: none;
    color: var(--fg);
    transform: translateY(-2px);
    border-color: rgba(87,199,94,0.55);
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}
.pn-store svg { width: 26px; height: 26px; flex-shrink: 0; }
.pn-store .pn-store-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.pn-store .pn-store-txt small {
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--pn-muted); font-weight: 600;
}
.pn-store .pn-store-txt strong { font-size: 0.98rem; }
.pn-store--soon {
    cursor: not-allowed;
    opacity: 0.5;
}
.pn-store--soon:hover { transform: none; border-color: var(--pn-line); box-shadow: none; }
.pn-store--soon .pn-store-txt small { color: var(--pn-tour); font-weight: 700; }

/* ── PHONE MOCKUPS (pure CSS, no images) ──────────────────────── */
.pn-phone {
    position: relative;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    border-radius: 34px;
    padding: 9px;
    background: linear-gradient(160deg, #2a3146, #0d1322);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.05) inset;
}
.pn-phone::after { /* notch */
    content: "";
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    width: 86px; height: 7px;
    border-radius: 99px;
    background: rgba(0,0,0,0.6);
    z-index: 4;
}
.pn-screen {
    position: relative;
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: var(--pn-ink);
    display: flex;
    flex-direction: column;
    font-size: 11px;
}
.pn-screen .pn-topbar {
    flex: 0 0 auto;
    padding: 13px 14px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(180deg, #0e1426, #0a0f1d);
}
.pn-screen .pn-topbar .pn-app-ic { width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0; }
.pn-screen .pn-topbar b { font-size: 12px; letter-spacing: 0; }
.pn-screen .pn-topbar b span { color: var(--pn-hist); }
.pn-screen .pn-band {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-weight: 700;
    font-size: 11px;
    color: #06210d;
}
.pn-screen .pn-body {
    flex: 0 1 auto;
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pn-screen .pn-nav {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 9px 6px 11px;
    background: #0c1120;
    border-top: 1px solid var(--pn-line);
    color: #6b7280;
}
.pn-screen .pn-nav span {
    font-size: 8.5px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}
.pn-screen .pn-nav span.is-on { color: var(--pn-cash); }

/* generic card rows inside a phone */
.pn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 11px;
    border-radius: 10px;
    background: var(--pn-soft);
    border: 1px solid var(--pn-line);
}
.pn-row .pn-row-l small { display: block; color: var(--pn-muted); font-size: 9px; }
.pn-row .pn-row-r { text-align: right; }
.pn-row .pn-row-r small { display: block; color: var(--pn-muted); font-size: 8.5px; }
.pn-amt { font-weight: 800; }
.pn-pos { color: var(--pn-cash); }
.pn-neg { color: #ff6b6b; }

/* Cash variant */
.pn-phone--cash .pn-band { background: linear-gradient(90deg, var(--pn-cash), var(--pn-cash-2)); }
.pn-phone--cash .pn-nav span.is-on { color: var(--pn-cash); }
.pn-pot {
    border-radius: 12px;
    padding: 12px;
    background: linear-gradient(180deg, rgba(87,199,94,0.16), rgba(87,199,94,0.04));
    border: 1px solid rgba(87,199,94,0.35);
}
.pn-pot .pn-pot-top { display: flex; justify-content: space-between; align-items: baseline; }
.pn-pot .pn-pot-top b { font-size: 13px; }
.pn-pot .pn-pot-amt { font-size: 22px; font-weight: 800; margin: 2px 0; }
.pn-pot .pn-bal { color: var(--pn-cash); font-weight: 700; font-size: 10px; }
.pn-btn-fill {
    margin-top: 2px;
    text-align: center;
    font-weight: 800;
    color: #06210d;
    padding: 11px;
    border-radius: 11px;
    background: linear-gradient(90deg, var(--pn-cash), #8fe095);
}

/* Tournament / clock variant */
.pn-phone--tour .pn-band,
.pn-phone--clock .pn-band { background: linear-gradient(90deg, var(--pn-tour), var(--pn-tour-2)); color: #2a1a00; }
.pn-phone--tour .pn-nav span.is-on,
.pn-phone--clock .pn-nav span.is-on { color: var(--pn-tour); }
.pn-clockcard {
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    background: radial-gradient(120% 120% at 50% 0%, rgba(246,168,33,0.15), rgba(246,168,33,0.03));
    border: 1px solid rgba(246,168,33,0.3);
}
.pn-clockcard .pn-live { display: flex; justify-content: space-between; font-size: 9px; color: var(--pn-muted); }
.pn-clockcard .pn-live .on { color: var(--pn-cash); font-weight: 700; }
.pn-clockcard .pn-time {
    font-size: 40px;
    font-weight: 800;
    color: var(--pn-clock);
    letter-spacing: 0;
    line-height: 1.05;
    margin: 6px 0 4px;
}
.pn-progress { height: 3px; border-radius: 99px; background: rgba(255,255,255,0.12); margin: 4px 2px 10px; }
.pn-progress i { display: block; height: 100%; width: 18%; border-radius: 99px; background: var(--pn-clock); }
.pn-blinds { font-size: 18px; font-weight: 800; }
.pn-blinds small { display: block; font-size: 8.5px; font-weight: 600; color: var(--pn-muted); margin-top: 2px; }
.pn-stats3 { display: flex; justify-content: space-between; margin-top: 11px; }
.pn-stats3 div { text-align: center; flex: 1; }
.pn-stats3 div small { display: block; font-size: 8px; color: var(--pn-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.pn-stats3 div b { font-size: 12px; }
.pn-transport { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
.pn-transport i {
    width: 30px; height: 26px;
    border-radius: 8px;
    border: 1px solid rgba(246,168,33,0.55);
    display: grid; place-items: center;
}
.pn-transport i::before { content: ""; width: 0; height: 0; border-left: 7px solid var(--pn-clock); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.pn-transport i.play { background: linear-gradient(90deg, var(--pn-tour), #ffce6b); border-color: transparent; }
.pn-transport i.play::before { width: 7px; height: 11px; border: 0; border-left: 3px solid #2a1a00; border-right: 3px solid #2a1a00; }

/* History variant */
.pn-phone--hist .pn-band { background: linear-gradient(90deg, var(--pn-hist), var(--pn-hist-2)); color: #eaf1ff; }
.pn-phone--hist .pn-nav span.is-on { color: var(--pn-hist); }
.pn-tabs { display: flex; gap: 6px; }
.pn-tabs span { flex: 1; text-align: center; font-size: 9px; font-weight: 700; padding: 7px; border-radius: 8px; border: 1px solid var(--pn-line); color: var(--pn-muted); }
.pn-tabs span.is-on { background: var(--pn-hist); color: #fff; border-color: transparent; }
.pn-lead-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: 9px; background: var(--pn-soft); border: 1px solid var(--pn-line); }
.pn-lead-row small { color: var(--pn-muted); font-size: 8.5px; display: block; }

/* ── SECTION SHELLS ───────────────────────────────────────────── */
.pn-section { max-width: var(--max-width); margin: 0 auto; padding: 56px 24px; }
.pn-section--tight { padding-top: 30px; }
.pn-band-bg { background: linear-gradient(180deg, #0b1120, #0d1426); border-top: 1px solid var(--pn-line); border-bottom: 1px solid var(--pn-line); }
.pn-screens {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        #0a0f1d;
    border-top: 1px solid var(--pn-line);
    border-bottom: 1px solid var(--pn-line);
}
.pn-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.pn-kicker,
.pn-head .pn-kicker {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pn-cash);
    margin: 0 0 10px;
}
.pn-head h2 { font-size: 2.08rem; letter-spacing: 0; margin: 0 0 12px; }
.pn-head p { color: var(--pn-muted); margin: 0; font-size: 1.02rem; }

.pn-shot-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(87,199,94,0.55) rgba(255,255,255,0.06);
}
.pn-shot-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
    display: grid;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--pn-line);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: var(--fg);
    cursor: zoom-in;
    text-align: left;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    transition: transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.pn-shot-card:hover,
.pn-shot-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(87,199,94,0.45);
    box-shadow: 0 20px 40px rgba(0,0,0,0.36);
}
.pn-shot-card:focus-visible {
    outline: 2px solid var(--pn-cash);
    outline-offset: 3px;
}
.pn-shot-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
}
.pn-shot-card span {
    display: block;
    min-height: 2.3em;
    color: var(--pn-muted);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
}

/* ── FEATURE ROWS ─────────────────────────────────────────────── */
.pn-feature {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
    padding: 30px 0;
}
.pn-feature + .pn-feature { border-top: 1px solid var(--pn-line); }
.pn-feature.is-rev .pn-feature-media { order: 2; }
.pn-feature-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px; margin: 0 0 14px;
}
.pn-feature-tag svg { width: 16px; height: 16px; }
.pn-tag--cash { color: var(--pn-cash); background: rgba(87,199,94,0.12); }
.pn-tag--tour { color: var(--pn-tour); background: rgba(246,168,33,0.12); }
.pn-tag--clock{ color: var(--pn-clock); background: rgba(255,176,32,0.12); }
.pn-tag--hist { color: var(--pn-hist); background: rgba(59,130,246,0.14); }
.pn-tag--series { color: #d8b4fe; background: rgba(192,132,252,0.14); }
.pn-feature h3 { font-size: 1.5rem; letter-spacing: 0; margin: 0 0 12px; }
.pn-feature p.pn-sub { color: var(--pn-muted); margin: 0 0 18px; max-width: 520px; }
.pn-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pn-list li { position: relative; padding-left: 30px; color: var(--fg); }
.pn-list li small { display: block; color: var(--pn-muted); font-size: 0.88rem; }
.pn-list li::before {
    content: "";
    position: absolute; left: 0; top: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--_dot, var(--pn-cash));
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.pn-feature.is-cash  .pn-list li { --_dot: var(--pn-cash); }
.pn-feature.is-tour  .pn-list li { --_dot: var(--pn-tour); }
.pn-feature.is-clock .pn-list li { --_dot: var(--pn-clock); }
.pn-feature.is-hist  .pn-list li { --_dot: var(--pn-hist); }
.pn-feature--series .pn-list li { --_dot: var(--pn-series); }

/* Tournament Series centerpiece. */
.pn-feature--series {
    margin: 22px -24px 0;
    padding: 48px 24px;
    border: 1px solid rgba(192,132,252,0.24);
    border-radius: 8px;
    background:
        radial-gradient(520px 320px at 12% 16%, rgba(192,132,252,0.15), transparent 66%),
        linear-gradient(135deg, rgba(255,255,255,0.045), rgba(124,58,237,0.055));
}
.pn-series-media { max-width: 440px; width: 100%; }
.pn-series-board {
    overflow: hidden;
    border: 1px solid rgba(216,180,254,0.3);
    border-radius: 8px;
    background: #0b1020;
    box-shadow: 0 28px 60px rgba(0,0,0,0.5);
}
.pn-series-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: linear-gradient(110deg, rgba(124,58,237,0.52), rgba(192,132,252,0.12));
}
.pn-series-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3e8ff;
    color: #4c1d95;
    font-size: 1.35rem;
}
.pn-series-top small,
.pn-series-top strong { display: block; }
.pn-series-top small { color: #e9d5ff; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.pn-series-top strong { color: #fff; font-size: 0.98rem; }
.pn-series-live { color: #111827; background: #86efac; padding: 4px 7px; border-radius: 4px; font-size: 0.65rem; font-weight: 900; }
.pn-series-summary { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--pn-line); }
.pn-series-summary div { padding: 12px 10px; text-align: center; }
.pn-series-summary div + div { border-left: 1px solid var(--pn-line); }
.pn-series-summary small,
.pn-series-summary strong { display: block; }
.pn-series-summary small { color: var(--pn-muted); font-size: 0.65rem; text-transform: uppercase; }
.pn-series-summary strong { color: #fff; font-size: 0.78rem; margin-top: 2px; }
.pn-series-table { padding: 8px 12px; }
.pn-series-row { display: grid; grid-template-columns: 38px 1fr 56px 58px; align-items: center; min-height: 46px; border-bottom: 1px solid var(--pn-line); color: #d9deea; font-size: 0.8rem; }
.pn-series-row > :nth-child(3),
.pn-series-row > :nth-child(4) { text-align: right; }
.pn-series-row small { display: block; color: var(--pn-muted); font-size: 0.64rem; }
.pn-series-row strong { color: #e9d5ff; }
.pn-series-row--head { min-height: 30px; color: var(--pn-muted); font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }
.pn-series-row.is-first { color: #fff; background: rgba(192,132,252,0.08); }
.pn-series-row.is-first > span:first-child { color: #facc15; font-weight: 900; }
.pn-series-next { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 4px 12px 10px; padding: 11px 12px; border: 1px solid rgba(246,168,33,0.3); border-radius: 6px; background: rgba(246,168,33,0.08); }
.pn-series-next small,
.pn-series-next strong { display: block; }
.pn-series-next small { color: var(--pn-tour); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; }
.pn-series-next strong { font-size: 0.78rem; }
.pn-series-next b { color: #2a1a00; background: var(--pn-tour); padding: 5px 7px; border-radius: 4px; }
.pn-series-share { margin: 0 12px 14px; padding: 10px; text-align: center; border-radius: 6px; background: linear-gradient(90deg, var(--pn-series-2), var(--pn-series)); color: #fff; font-size: 0.8rem; font-weight: 900; }
.pn-series-capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 22px 0 30px; }
.pn-series-capabilities article { padding: 18px; border-top: 2px solid var(--pn-series); background: rgba(255,255,255,0.035); }
.pn-series-capabilities span { color: var(--pn-series); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; }
.pn-series-capabilities h4 { margin: 8px 0 6px; font-size: 0.98rem; }
.pn-series-capabilities p { margin: 0; color: var(--pn-muted); font-size: 0.84rem; line-height: 1.5; }

/* ── SERIES HUB CTA ───────────────────────────────────────────── */
/* Purple family (#766CF0 -> #5B50D6, text #C4B5FD): previews the series
 * hub's AccentPurple identity. Other feature colors on this page stay put. */
.pn-hub-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px 28px;
    flex-wrap: wrap;
    margin: 0 0 34px;
    padding: 24px 26px;
    border: 1px solid rgba(118,108,240,0.38);
    border-left: 4px solid #766cf0;
    border-radius: var(--radius);
    background:
        radial-gradient(520px 220px at 6% 0%, rgba(118,108,240,0.16), transparent 60%),
        var(--pn-soft);
}
.pn-hub-cta-copy { flex: 1 1 380px; max-width: 640px; }
.pn-hub-cta-copy .pn-kicker { color: #c4b5fd; }
.pn-hub-cta-copy h3 { margin: 0 0 8px; font-size: 1.35rem; letter-spacing: 0; }
.pn-hub-cta-copy p:last-child { margin: 0; color: var(--pn-muted); font-size: 0.95rem; line-height: 1.55; }
.pn-hub-cta-btn {
    flex: 0 0 auto;
    display: inline-block;
    padding: 13px 26px;
    border-radius: 11px;
    background: linear-gradient(90deg, #766cf0, #5b50d6);
    color: #ffffff;
    font-weight: 900;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pn-hub-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(91,80,214,0.45);
    text-decoration: none;
    color: #ffffff;
}
.pn-hub-cta-btn:focus-visible { outline: 2px solid #766cf0; outline-offset: 3px; }

/* ── STEP FLOW ────────────────────────────────────────────────── */
.pn-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pn-step {
    position: relative;
    background: var(--pn-soft);
    border: 1px solid var(--pn-line);
    border-radius: var(--radius);
    padding: 22px 20px;
}
.pn-step .pn-step-n {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 800; font-size: 0.95rem;
    color: #06210d;
    background: linear-gradient(135deg, var(--pn-cash), var(--pn-hist));
    margin-bottom: 12px;
}
.pn-step h4 { margin: 0 0 6px; font-size: 1.05rem; }
.pn-step p { margin: 0; color: var(--pn-muted); font-size: 0.92rem; }

/* ── CALLOUTS ─────────────────────────────────────────────────── */
.pn-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pn-note {
    background: var(--pn-soft);
    border: 1px solid var(--pn-line);
    border-left: 4px solid var(--pn-hist);
    border-radius: var(--radius);
    padding: 20px 22px;
}
.pn-note.is-lock { border-left-color: var(--pn-cash); }
.pn-note.is-shield { border-left-color: var(--pn-stat); }
.pn-note h4 { margin: 0 0 8px; font-size: 1.05rem; display: flex; align-items: center; gap: 9px; }
.pn-note h4 svg { width: 20px; height: 20px; }
.pn-note p { margin: 0; color: var(--pn-muted); font-size: 0.94rem; }

/* ── IPHONE NOTIFICATION TOOL ────────────────────────────────── */
.pn-ios-section {
    scroll-margin-top: 24px;
}
.pn-ios-tool {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(246,168,33,0.32);
    border-radius: 8px;
    background:
        radial-gradient(620px 280px at 5% 0%, rgba(246,168,33,0.16), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    box-shadow: 0 24px 54px rgba(0,0,0,0.34);
}
.pn-ios-copy h2 {
    margin: 0 0 12px;
    font-size: 2.05rem;
    line-height: 1.12;
    letter-spacing: 0;
}
.pn-ios-copy p {
    margin: 0 0 16px;
    color: var(--pn-muted);
}
.pn-privacy-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}
.pn-privacy-list li {
    position: relative;
    padding-left: 26px;
    color: var(--fg);
    font-size: 0.94rem;
}
.pn-privacy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--pn-cash);
    box-shadow: 0 0 12px rgba(87,199,94,0.45);
}
.pn-notify-form {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--pn-line);
    border-radius: 8px;
    background: rgba(5,9,18,0.56);
}
.pn-notify-form label {
    color: var(--fg);
    font-size: 0.86rem;
    font-weight: 800;
}
.pn-field-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}
.pn-field-row input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.16);
    background: #090f1d;
    color: var(--fg);
    font: inherit;
}
.pn-field-row input::placeholder {
    color: rgba(174,180,194,0.62);
}
.pn-field-row input:focus {
    outline: 2px solid rgba(87,199,94,0.75);
    outline-offset: 2px;
    border-color: transparent;
}
.pn-field-row button,
.pn-modal-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--pn-cash), #8fe095);
    color: #06210d;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}
.pn-field-row button:hover,
.pn-modal-primary:hover {
    color: #06210d;
    text-decoration: none;
    filter: brightness(1.06);
}
.pn-field-row button:disabled {
    cursor: progress;
    filter: saturate(0.75) brightness(0.82);
    opacity: 0.72;
}
.pn-form-help,
.pn-form-status {
    margin: 0;
    color: var(--pn-muted);
    font-size: 0.82rem;
    line-height: 1.48;
}
.pn-form-status {
    min-height: 1.25em;
    color: var(--pn-tour);
    font-weight: 700;
}

/* ── FINAL CTA ────────────────────────────────────────────────── */
.pn-final {
    text-align: center;
    background:
        radial-gradient(700px 360px at 50% -20%, rgba(87,199,94,0.18), transparent 60%),
        linear-gradient(180deg, #0b1120, #0a0f1d);
    border-top: 1px solid var(--pn-line);
}
.pn-final .pn-section { padding-top: 56px; padding-bottom: 64px; }
.pn-final h2 { font-size: 2.3rem; margin: 0 0 12px; letter-spacing: 0; }
.pn-final p { color: var(--pn-muted); max-width: 540px; margin: 0 auto 26px; }
.pn-final .pn-stores { justify-content: center; }
.pn-final .pn-apple-inline {
    margin: 16px auto 0;
    font-size: 0.92rem;
}
.pn-final .pn-apple-inline a {
    color: var(--pn-tour);
    font-weight: 800;
}

.pn-banner-btn {
    position: relative;
    display: block;
    width: 100%;
    max-width: 920px;
    margin: 0 auto 30px;
    padding: 0; border: 0; background: none;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    line-height: 0;
}
.pn-banner-btn img {
    display: block; width: 100%; height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--pn-line);
    box-shadow: 0 18px 44px rgba(0,0,0,0.5);
    transition: transform 0.25s ease;
}
.pn-banner-btn:hover img,
.pn-banner-btn:focus-visible img { transform: scale(1.015); }
.pn-banner-btn:focus-visible { outline: 2px solid var(--pn-cash); outline-offset: 3px; }

.pn-disclaimer {
    max-width: 720px;
    margin: 30px auto 0;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--pn-muted);
    opacity: 0.8;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .pn-hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .pn-hero h1 { font-size: 2.62rem; }
    .pn-hero .pn-lead { margin-left: auto; margin-right: auto; }
    .pn-eyebrow, .pn-availability, .pn-chips, .pn-stores { justify-content: center; }
    .pn-hero-banner { margin-left: auto; margin-right: auto; }
    .pn-hero-media { order: -1; }
    .pn-hero-proof {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .pn-device-showcase {
        min-height: 500px;
        max-width: 500px;
    }
    .pn-shot--main { width: 235px; }
    .pn-shot--side { width: 178px; }
    .pn-shot--clock { left: 8px; top: 84px; }
    .pn-shot--web { right: 8px; top: 104px; }
    .pn-feature { grid-template-columns: 1fr; gap: 26px; }
    .pn-feature.is-rev .pn-feature-media { order: 0; }
    .pn-feature-media { max-width: 300px; margin: 0 auto; }
    .pn-feature--series { margin-left: 0; margin-right: 0; }
    .pn-series-media { max-width: 440px; }
    .pn-series-capabilities { grid-template-columns: repeat(2, 1fr); }
    .pn-steps { grid-template-columns: 1fr; }
    .pn-twocol { grid-template-columns: 1fr; }
    .pn-ios-tool { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 480px) {
    .pn-hero-inner { padding: 40px 20px 30px; }
    .pn-hero h1 { font-size: 2.16rem; }
    .pn-hero-banner { max-width: 220px; }
    .pn-hero-media { order: 0; }
    .pn-section { padding: 40px 20px; }
    .pn-device-showcase {
        min-height: 404px;
        max-width: 340px;
    }
    .pn-shot--main { width: 198px; }
    .pn-shot--side { width: 140px; }
    .pn-shot--clock { left: 0; top: 76px; }
    .pn-shot--web { right: 0; top: 92px; }
    .pn-showcase-caption {
        width: 94%;
        padding: 10px 12px;
    }
    .pn-showcase-caption strong { font-size: 0.86rem; }
    .pn-shot-card { flex-basis: 136px; }
    .pn-feature--series { padding: 30px 16px; }
    .pn-series-top { grid-template-columns: auto 1fr; }
    .pn-series-live { display: none; }
    .pn-series-summary strong { font-size: 0.7rem; }
    .pn-series-row { grid-template-columns: 32px 1fr 44px 48px; }
    .pn-series-capabilities { grid-template-columns: 1fr; }
    .pn-ios-tool,
    .pn-notify-form { padding: 18px; }
    .pn-ios-copy h2,
    .pn-final h2,
    .pn-head h2 { font-size: 1.62rem; }
    .pn-field-row { grid-template-columns: 1fr; }
    .pn-field-row button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .pn-store, .pn-banner-btn img, .pn-shot, .pn-shot-card { transition: none; }
}

/* ── APPLE BADGE (enabled → opens status popup) ───────────────── */
.pn-store--apple { cursor: pointer; opacity: 1; }
.pn-store--apple .pn-store-txt small { color: var(--pn-tour); font-weight: 700; }
.pn-store--apple:hover {
    transform: translateY(-2px);
    border-color: rgba(246,168,33,0.55);
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
    text-decoration: none;
    color: var(--fg);
}

/* ── FAQ (details/summary, no JS) ─────────────────────────────── */
.pn-faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.pn-faq details {
    background: var(--pn-soft);
    border: 1px solid var(--pn-line);
    border-radius: var(--radius);
    padding: 4px 20px;
    transition: border-color 0.15s ease;
}
.pn-faq details[open] { border-color: rgba(87,199,94,0.4); }
.pn-faq summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    padding: 16px 32px 16px 0;
    position: relative;
}
.pn-faq summary::-webkit-details-marker { display: none; }
.pn-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--pn-cash);
    transition: transform 0.18s ease;
}
.pn-faq details[open] summary::after { content: "−"; }
.pn-faq summary:hover { color: var(--pn-cash); }
.pn-faq summary:focus-visible { outline: 2px solid var(--pn-cash); outline-offset: 3px; border-radius: 6px; }
.pn-faq-a { padding: 0 0 16px; }
.pn-faq-a p { margin: 0; color: var(--pn-muted); font-size: 0.96rem; line-height: 1.62; }

/* ── APP STORE STATUS MODAL (CSS-only :target) ────────────────── */
.pn-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.pn-modal:target { display: flex; }
.pn-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 16, 0.82);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.pn-modal-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    background: linear-gradient(180deg, #141b2c, #0d1322);
    border: 1px solid var(--pn-line);
    border-radius: 18px;
    padding: 28px 26px 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    animation: pn-pop 0.18s ease;
}
.pn-modal-badge {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2a1a00;
    background: linear-gradient(90deg, var(--pn-tour), #ffce6b);
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.pn-modal-card h3 {
    margin: 0 0 14px;
    font-size: 1.3rem;
    line-height: 1.25;
    letter-spacing: 0;
}
.pn-modal-body p {
    margin: 0 0 12px;
    color: var(--pn-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}
.pn-modal-body strong { color: var(--fg); }
.pn-modal-x {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--pn-line);
    color: var(--fg);
    font-size: 1.35rem;
    line-height: 1;
}
.pn-modal-x:hover { background: var(--pn-soft); color: var(--fg); text-decoration: none; }
.pn-modal-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.pn-modal-close-btn { color: var(--pn-muted); font-weight: 600; padding: 11px 8px; }
.pn-modal-close-btn:hover { color: var(--fg); text-decoration: none; }
@keyframes pn-pop {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .pn-modal-card { animation: none; }
}
