/* ---------------------------------------------------------------------------
   Players Look — marketing site chrome (brand --plk tokens, broadcast dark).
   Player pages use profile.css with per-player --pl-* tokens; this file is
   the BRAND look: near-black + electric green.
--------------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; }

/* Content links (unclassed anchors) get the brand accent — never browser blue.
   Classed components (.btn, nav, cards) keep their own link styling. */
a:not([class]) { color: var(--plk-brand); text-decoration: none; }
a:not([class]):hover { text-decoration: underline; }

:root {
    --plk-ink:     #0b0e14;
    --plk-surface: #12161f;
    --plk-line:    rgba(255, 255, 255, 0.09);
    --plk-text:    #eef0f4;
    --plk-muted:   #9aa1b0;
    --plk-brand:   #16e0a4;
    --plk-on-brand:#0b0e14;
    --font-display: 'Anton', Impact, sans-serif;
    --font-ui:      'Archivo', -apple-system, 'Segoe UI', Roboto, sans-serif;
    --clip-cut: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

body {
    background: var(--plk-ink);
    color: var(--plk-text);
    font-family: var(--font-ui);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
body.bare { display: flex; align-items: center; justify-content: center; }

/* ---- nav ------------------------------------------------------------------ */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px clamp(20px, 5vw, 64px);
    border-bottom: 1px solid var(--plk-line);
}
.site-nav__brand {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.06em;
    color: var(--plk-text);
    text-decoration: none;
}
.site-nav__brand em { font-style: normal; color: var(--plk-brand); }
.site-nav__brand img { height: 40px; width: auto; display: block; }
.site-nav__links { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 28px); }
.site-nav__links a {
    color: var(--plk-muted); text-decoration: none; font-size: 14px; font-weight: 600;
    padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.site-nav__links a:hover { color: var(--plk-text); }
.site-nav__links a.is-active { color: var(--plk-text); border-bottom-color: var(--plk-brand); }
.site-nav__login { color: var(--plk-text) !important; }

/* ---- buttons -------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 15px 38px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    clip-path: var(--clip-cut);
    font-family: var(--font-ui);
    cursor: pointer;
    border: 0;
}
.btn { transition: background 140ms ease, color 140ms ease; }
.btn--accent { background: var(--plk-brand); color: var(--plk-on-brand) !important; }
.btn--accent:hover { background: #7df5cf; }
.btn--ghost {
    background: rgba(255, 255, 255, 0.07);
    color: var(--plk-text) !important;
}
.btn--ghost:hover { background: var(--plk-brand); color: var(--plk-on-brand) !important; }
.btn--nav { padding: 10px 22px; font-size: 13px; }

/* ---- marketing hero -------------------------------------------------------- */
.m-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(64px, 11vw, 140px) clamp(20px, 6vw, 84px) 0;
    text-align: center;
}
.m-hero__wash {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1000px 600px at 50% -10%, rgba(22, 224, 164, 0.14), transparent 65%),
        repeating-linear-gradient(115deg, transparent 0 90px, rgba(255, 255, 255, 0.014) 90px 92px);
}
.m-hero__kicker {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: clamp(11px, 1.4vw, 14px);
    color: var(--plk-brand);
    margin-bottom: 18px;
}
.m-hero__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0.95;
    font-size: clamp(52px, 9.5vw, 136px);
}
.m-hero__title span { display: block; }
.m-hero__accent { color: var(--plk-brand); }
.m-hero__sub {
    max-width: 62ch;
    margin: 26px auto 34px;
    color: var(--plk-muted);
    font-size: clamp(16px, 1.9vw, 19px);
    line-height: 1.65;
}
.m-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: clamp(48px, 7vw, 84px); }

.m-hero__ticker {
    display: flex;
    flex-wrap: wrap;
    border-top: 3px solid var(--plk-brand);
    background: color-mix(in srgb, var(--plk-ink) 78%, black);
    margin: 0 calc(-1 * clamp(20px, 6vw, 84px));
    text-align: left;
}
.ticker__item {
    flex: 1 1 150px;
    padding: 18px 24px;
    border-right: 1px solid var(--plk-line);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ticker__item:last-child { border-right: 0; }
.ticker__value { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 30px); }
.ticker__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--plk-muted); }

/* ---- sections ------------------------------------------------------------- */
.m-section { padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 84px); border-top: 1px solid var(--plk-line); }
.section__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(30px, 4.6vw, 54px);
    margin-bottom: clamp(26px, 4vw, 44px);
}
.section__accent { color: var(--plk-brand); }

.m-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.m-feature {
    background: var(--plk-surface);
    border: 1px solid var(--plk-line);
    border-top: 3px solid var(--plk-brand);
    clip-path: var(--clip-cut);
    padding: 26px 24px;
}
.m-feature h3 {
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.m-feature p { color: var(--plk-muted); line-height: 1.65; font-size: 15px; }

/* ---- CTA card + pricing ---------------------------------------------------- */
.m-section--cta { padding-bottom: clamp(64px, 9vw, 120px); }
.cta-card {
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(22, 224, 164, 0.16), transparent 70%),
        var(--plk-surface);
    border: 1px solid var(--plk-line);
    clip-path: var(--clip-cut);
    padding: clamp(36px, 6vw, 72px);
    text-align: center;
}
.cta-card__title { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(28px, 4.4vw, 48px); margin-bottom: 10px; }
.cta-card__sub { color: var(--plk-muted); margin-bottom: 28px; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(18px, 3vw, 32px);
    max-width: 860px;
    margin: 0 auto;
}
.price-card__name { font-family: var(--font-display); font-size: 26px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.price-card__tag { color: var(--plk-muted); font-size: 14px; margin-bottom: 16px; }
.price-note { text-align: center; color: var(--plk-muted); font-size: 13px; max-width: 62ch; margin: 28px auto 0; }
.price-card {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--plk-surface);
    border: 1px solid var(--plk-line);
    border-top: 3px solid var(--plk-brand);
    clip-path: var(--clip-cut);
    padding: clamp(30px, 5vw, 48px);
    text-align: center;
}
.price-card__price { font-family: var(--font-display); font-size: clamp(48px, 7vw, 72px); line-height: 1; }
.price-card__per { color: var(--plk-muted); font-size: 14px; margin-bottom: 24px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; flex: 1; }
.price-card li { padding: 9px 0; border-bottom: 1px solid var(--plk-line); font-size: 15px; color: #d8dce4; }
.price-card li::before { content: '✓  '; color: var(--plk-brand); font-weight: 800; }
.price-card li:last-child { border-bottom: 0; }

/* ---- footer ---------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--plk-line); padding: 36px clamp(20px, 5vw, 64px); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.site-footer__tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--plk-muted); margin-top: 6px; }
.site-footer__links { display: flex; gap: 20px; }
.site-footer__links a { color: var(--plk-muted); text-decoration: none; font-size: 14px; }
.site-footer__links a:hover { color: var(--plk-text); }
.site-footer__copy { width: 100%; color: var(--plk-muted); font-size: 12px; }

/* ---- error pages ----------------------------------------------------------- */
.error-page { text-align: center; padding: 40px; }
.error-page__code { font-family: var(--font-display); font-size: 96px; color: var(--plk-brand); line-height: 1; }
.error-page h1 { margin: 8px 0 12px; }
.error-page p { color: var(--plk-muted); margin-bottom: 24px; }

/* ---- hero split + mockup --------------------------------------------------- */
.m-hero--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    text-align: left;
    padding-bottom: clamp(48px, 7vw, 96px);
}
.m-hero--short { padding-bottom: clamp(36px, 5vw, 64px); }
.m-hero__title--left, .m-hero__sub--left { text-align: left; margin-left: 0; }
.m-hero__title--sport { font-size: clamp(38px, 6vw, 84px); }
.m-hero__ctas--left { justify-content: flex-start; }
.m-hero__proof { color: var(--plk-muted); font-size: 13px; letter-spacing: 0.04em; }
@media (max-width: 900px) {
    .m-hero--split { grid-template-columns: 1fr; text-align: center; }
    .m-hero__title--left, .m-hero__sub--left { text-align: center; margin-inline: auto; }
    .m-hero__ctas--left { justify-content: center; }
}

.mockup {
    background: #0d1119;
    border: 1px solid var(--plk-line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(22, 224, 164, 0.08);
    transform: rotate(0.6deg);
    font-size: 12px;
}
.mockup__chrome {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px; border-bottom: 1px solid var(--plk-line); background: #0a0d13;
}
.mockup__chrome span { width: 9px; height: 9px; border-radius: 50%; background: #2a3140; }
.mockup__chrome em {
    font-style: normal; color: var(--plk-muted); font-size: 11px; margin-left: 10px;
    background: #12161f; border-radius: 5px; padding: 3px 10px; flex: 1; text-align: center;
}
.mockup__hero {
    padding: 26px 20px 18px;
    background:
        radial-gradient(300px 160px at 85% 0%, rgba(158, 27, 50, 0.5), transparent 70%),
        linear-gradient(165deg, #2a1218 0%, #0d1119 70%);
}
.mockup__kicker { color: #e05a6e; font-weight: 800; letter-spacing: 0.2em; font-size: 8px; margin-bottom: 8px; }
.mockup__first { font-family: var(--font-display); font-size: 20px; color: #8a92a3; line-height: 1; }
.mockup__last  { font-family: var(--font-display); font-size: 38px; color: #eef0f4; line-height: 1; }
.mockup__chips { display: flex; gap: 6px; margin-top: 12px; }
.mockup__chip {
    font-size: 8px; font-weight: 800; letter-spacing: 0.08em; padding: 4px 8px;
    border: 1px solid var(--plk-line); color: var(--plk-text);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.mockup__chip--accent { background: #9e1b32; border-color: #9e1b32; }
.mockup__ticker { display: flex; border-top: 2px solid #9e1b32; background: #080b10; }
.mockup__ticker div { flex: 1; padding: 10px 12px; border-right: 1px solid var(--plk-line); }
.mockup__ticker div:last-child { border-right: 0; }
.mockup__ticker b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 16px; }
.mockup__ticker i { font-style: normal; font-size: 7px; font-weight: 800; letter-spacing: 0.16em; color: var(--plk-muted); }
.mockup__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }
.mockup__tile {
    background: #12161f; border: 1px solid var(--plk-line); border-top: 2px solid #9e1b32;
    padding: 10px 10px 8px; color: #e05a6e;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.mockup__tile b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 18px; color: var(--plk-text); }
.mockup__tile i { font-style: normal; font-size: 7px; font-weight: 800; letter-spacing: 0.14em; color: var(--plk-muted); display: block; margin-bottom: 3px; }
.mockup__tile u { text-decoration: none; font-size: 8px; font-weight: 700; display: block; margin-bottom: 4px; }
.mockup__tile svg { width: 100%; height: 14px; }
.mockup__quote {
    padding: 12px 16px 16px; border-top: 1px solid var(--plk-line);
    font-style: italic; font-size: 11px; color: #d8dce4;
}
.mockup__quote span { display: block; font-style: normal; font-size: 9px; color: var(--plk-muted); margin-top: 4px; }

/* ---- sport strip ------------------------------------------------------------ */
.m-lead { color: var(--plk-muted); max-width: 68ch; line-height: 1.65; margin-bottom: 26px; }
.sport-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .sport-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sport-strip { grid-template-columns: 1fr; } }
.sport-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid var(--plk-line);
    border-top: 3px solid transparent;
    padding: 84px 20px 18px;
    text-decoration: none;
    background-image:
        linear-gradient(to top, var(--plk-ink) 0%, var(--plk-ink) 2%, color-mix(in srgb, var(--plk-ink) 92%, transparent) 22%, color-mix(in srgb, var(--plk-ink) 45%, transparent) 60%, color-mix(in srgb, var(--plk-ink) 25%, transparent) 100%),
        var(--sport-img, none);
    /* Backgrounds are sized to the padding box but painted into the border box
       by default — the photo bled through under the 1px border as a bright
       edge line. Clip both layers to the padding box. */
    background-size: 100% 100%, cover;
    background-position: center, center 30%;
    background-clip: padding-box, padding-box;
    transition: border-top-color 140ms ease;
}
.sport-card:hover { border-top-color: var(--plk-brand); }
.sport-card b {
    display: block; font-family: var(--font-display); font-weight: 400;
    font-size: 22px; text-transform: uppercase; color: var(--plk-text); margin-bottom: 4px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.sport-card i { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--plk-brand); text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.7); }

/* ---- guide ------------------------------------------------------------------ */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.guide-card {
    position: relative;
    background: var(--plk-surface);
    border: 1px solid var(--plk-line);
    border-top: 3px solid var(--plk-brand);
    clip-path: var(--clip-cut);
    padding: 24px 22px;
    text-decoration: none;
    transition: transform 120ms ease;
}
.guide-card:hover { transform: translateY(-2px); }
.guide-card__num {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--plk-brand);
    opacity: 0.22;
    position: absolute;
    top: 8px; right: 14px;
}
.guide-card h2 { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--plk-text); margin-bottom: 10px; padding-right: 44px; }
.guide-card p { color: var(--plk-muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.guide-card__meta { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--plk-brand); text-transform: uppercase; text-decoration: none; }

.guide-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(300px, 44vh, 460px);
    display: flex;
    align-items: flex-end;
    background-image:
        linear-gradient(to top, var(--plk-ink) 2%, color-mix(in srgb, var(--plk-ink) 62%, transparent) 34%, color-mix(in srgb, var(--plk-ink) 30%, transparent) 70%),
        linear-gradient(100deg, color-mix(in srgb, var(--plk-ink) 82%, transparent) 0%, color-mix(in srgb, var(--plk-ink) 30%, transparent) 55%, transparent 100%),
        var(--gh-img);
    background-size: cover, cover, cover;
    background-position: center, center, center 30%;
}
.guide-hero__inner {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px) clamp(28px, 4vw, 44px);
}
.guide-back { font-size: 13px; font-weight: 700; color: #c9ced9; text-decoration: none; letter-spacing: 0.05em; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.guide-back:hover { color: var(--plk-brand); }
.guide-title {
    font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
    font-size: clamp(32px, 5.5vw, 68px); margin: 14px 0 8px; line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.guide-article { padding: clamp(36px, 6vw, 64px) clamp(20px, 5vw, 40px) clamp(24px, 4vw, 48px); }
.guide-body { max-width: 720px; margin: 0 auto; }
.guide-lede { font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; font-style: italic; line-height: 1.55; color: var(--plk-text); border-left: 4px solid var(--plk-brand); padding-left: 18px; margin-bottom: 28px; }
.guide-body h2 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin: 30px 0 12px; }
.guide-body p { color: #c6ccd8; line-height: 1.75; margin-bottom: 14px; }
.guide-body ul { margin: 0 0 16px 20px; }
.guide-body li { color: #c6ccd8; line-height: 1.7; margin-bottom: 10px; }
.guide-body strong { color: var(--plk-text); }
.guide-body em { color: var(--plk-text); }
.guide-example {
    background: var(--plk-surface); border: 1px solid var(--plk-line);
    padding: 14px 18px; clip-path: var(--clip-cut);
    font-size: 14px; font-weight: 700; color: var(--plk-brand) !important;
}

.guide-teaser {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 5vw, 64px);
    align-items: center;
    background: var(--plk-surface);
    border: 1px solid var(--plk-line);
    clip-path: var(--clip-cut);
    padding: clamp(28px, 5vw, 56px);
}
.guide-teaser__list { list-style: none; padding: 0; margin: 0; }
.guide-teaser__list li { padding: 12px 0; border-bottom: 1px solid var(--plk-line); color: #d8dce4; font-size: 15px; }
.guide-teaser__list li::before { content: '→  '; color: var(--plk-brand); font-weight: 800; }
.guide-teaser__list li:last-child { border-bottom: 0; }
@media (max-width: 800px) { .guide-teaser { grid-template-columns: 1fr; } }

/* ---- chip cloud (sport pages) ---------------------------------------------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
/* Corner accent: a bright 45° stroke painted exactly on the clip-cut edges
   (top-right + bottom-left). The parent's clip-path trims it razor-clean. */
.cut-accent, .m-chip { position: relative; }
.cut-accent::before, .cut-accent::after,
.m-chip::before, .m-chip::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    pointer-events: none;
    /* Tick drawn fully inside the cut (2.5px inset) — never touches the
       clip boundary, so fractional browser zoom can't leak fragments. */
    background: linear-gradient(45deg,
        transparent calc(50% - 4.5px),
        var(--plk-brand) calc(50% - 4.5px),
        var(--plk-brand) calc(50% - 2.5px),
        transparent calc(50% - 2.5px));
}
.cut-accent::before, .m-chip::before { top: 0; right: 0; }
.cut-accent::after, .m-chip::after { bottom: 0; left: 0; }

.m-chip {
    background: var(--plk-surface);
    border: 1px solid var(--plk-brand);
    color: var(--plk-text);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 18px;
    clip-path: var(--clip-cut);
}
.m-chip small { color: var(--plk-brand); font-size: 11px; }
.m-chip--dim { border-color: var(--plk-line); color: var(--plk-muted); font-weight: 700; }


.guide-card--img { padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.guide-card__photo {
    display: block;
    aspect-ratio: 16 / 8;
    background-size: cover;
    background-position: center 30%;
    filter: saturate(0.9);
    border-bottom: 1px solid var(--plk-line);
}
.guide-card--img:hover .guide-card__photo { filter: saturate(1.05); }
.guide-card__body { display: block; position: relative; padding: 20px 22px 22px; }
.guide-card__body .guide-card__num { top: 6px; }

/* ---- hero slider ----------------------------------------------------------- */
.hero-slider { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(480px, 72vh, 760px); }
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 700ms ease;
    pointer-events: none;
    background-image:
        linear-gradient(100deg, color-mix(in srgb, var(--plk-ink) 92%, transparent) 0%, color-mix(in srgb, var(--plk-ink) 62%, transparent) 48%, color-mix(in srgb, var(--plk-ink) 28%, transparent) 100%),
        linear-gradient(to top, var(--plk-ink) 0%, transparent 30%),
        var(--slide-img);
    background-size: cover;
    background-position: center, center, center 25%;
}
.hero-slide--active { opacity: 1; pointer-events: auto; }
.hero-slide__inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
}
.hero-slide .m-hero__title { font-size: clamp(46px, 8vw, 116px); }
.hero-slide .m-hero__sub { max-width: 52ch; }
.hero-slide .m-hero__ctas { margin-bottom: 0; }

.hero-slider__dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-slider__dot {
    width: 34px; height: 4px;
    border: 0; padding: 0;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: background 140ms ease;
}
.hero-slider__dot--active { background: var(--plk-brand); }

/* ---- mockup section -------------------------------------------------------- */
.mockup-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
@media (max-width: 900px) { .mockup-section { grid-template-columns: 1fr; } }

/* ---- features page ---------------------------------------------------------- */
.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.feature-row--flip .feature-row__media { order: 2; }
@media (max-width: 860px) {
    .feature-row { grid-template-columns: 1fr; }
    .feature-row--flip .feature-row__media { order: 0; }
}
.feature-row__media {
    aspect-ratio: 16 / 11;
    background-size: cover;
    background-position: center 30%;
    clip-path: var(--clip-cut);
    border: 1px solid var(--plk-line);
    filter: saturate(0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.feature-row .section__title { font-size: clamp(26px, 3.6vw, 42px); }
/* Real product screenshots: crop-fill the same cell as the stock imagery. */
.feature-row__media--shot { overflow: hidden; filter: none; background: var(--plk-surface); }
.feature-row__media--shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
