/* /Components/Layout/MainLayout.razor.rz.scp.css */
.skip-link[b-r3jfqsu9bp] {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    background: var(--cyan);
    color: var(--abyss);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.75rem 1.25rem;
}

    .skip-link:focus[b-r3jfqsu9bp] {
        left: 0;
    }

.site-header[b-r3jfqsu9bp] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 247, 251, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header-inner[b-r3jfqsu9bp] {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.brand[b-r3jfqsu9bp] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .brand img[b-r3jfqsu9bp] {
        height: 2.1rem;
        width: auto;
    }

.site-nav[b-r3jfqsu9bp] {
    display: flex;
    gap: 1.3rem;
    margin-left: auto;
}

    .site-nav a[b-r3jfqsu9bp] {
        font-family: var(--font-mono);
        font-weight: 500;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--ink);
        opacity: 0.7;
        padding-bottom: 2px;
        border-bottom: 1px solid transparent;
    }

        .site-nav a:hover[b-r3jfqsu9bp] {
            opacity: 1;
            border-bottom-color: var(--cyan);
        }

.btn-small[b-r3jfqsu9bp] {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.site-header-actions[b-r3jfqsu9bp] {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

/* Matches .site-nav's treatment rather than the button's: signing in is for people who already
   decided, so it should not compete with the primary action beside it. */
.header-signin[b-r3jfqsu9bp] {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    opacity: 0.7;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

    .header-signin:hover[b-r3jfqsu9bp] {
        opacity: 1;
        border-bottom-color: var(--cyan);
    }

@media (max-width: 1010px) {
    .site-nav[b-r3jfqsu9bp] {
        display: none;
    }

    .site-header-inner[b-r3jfqsu9bp] {
        justify-content: space-between;
    }
}

.site-footer[b-r3jfqsu9bp] {
    background: var(--abyss);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(0, 179, 226, 0.25);
}

.site-footer-inner[b-r3jfqsu9bp] {
    padding: 3rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem 2rem;
    align-items: start;
}

.footer-brand[b-r3jfqsu9bp] {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-mark[b-r3jfqsu9bp] {
    height: 1.9rem;
    width: auto;
    margin-top: 0.1rem;
}

.footer-name[b-r3jfqsu9bp] {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.footer-tagline[b-r3jfqsu9bp] {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    max-width: 24rem;
}

.footer-nav[b-r3jfqsu9bp] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: flex-end;
}

    .footer-nav a[b-r3jfqsu9bp] {
        font-family: var(--font-mono);
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.65);
    }

        .footer-nav a:hover[b-r3jfqsu9bp] {
            color: var(--cyan);
        }

.footer-copy[b-r3jfqsu9bp] {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 700px) {
    .site-footer-inner[b-r3jfqsu9bp] {
        grid-template-columns: 1fr;
    }

    .footer-nav[b-r3jfqsu9bp] {
        justify-content: flex-start;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ---------------------------------------------------------------- Ticker */
.ticker[b-53supuvrq0] {
    background: var(--abyss);
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 179, 226, 0.25);
}

.ticker-track[b-53supuvrq0] {
    display: inline-block;
    padding: 0.5rem 0;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    animation: ticker-scroll-b-53supuvrq0 46s linear infinite;
}

@keyframes ticker-scroll-b-53supuvrq0 {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ------------------------------------------------------- Hero + contours */
.hero[b-53supuvrq0] {
    position: relative;
    background:
        radial-gradient(120% 90% at 78% 18%, rgba(0, 179, 226, 0.18) 0%, transparent 55%),
        linear-gradient(165deg, var(--navy) 0%, var(--abyss) 100%);
    color: #fff;
    overflow: hidden;
}

.contours[b-53supuvrq0] {
    position: absolute;
    inset: -12% -6%;
    width: 112%;
    height: 124%;
    pointer-events: none;
}

.basin path[b-53supuvrq0] {
    fill: none;
    stroke: var(--contour-dark);
    stroke-width: 1.25;
    vector-effect: non-scaling-stroke;
}

/* The innermost rings are the deep hole; brightening them gives the field a focus. */
.basin path:nth-child(n + 7)[b-53supuvrq0] {
    stroke: rgba(0, 179, 226, 0.42);
}

.basin-main[b-53supuvrq0] {
    animation: drift-b-53supuvrq0 44s ease-in-out infinite alternate;
    transform-origin: 330px 300px;
}

.basin-far[b-53supuvrq0] {
    animation: drift-b-53supuvrq0 62s ease-in-out infinite alternate-reverse;
    transform-origin: 700px 190px;
}

@keyframes drift-b-53supuvrq0 {
    from { transform: scale(1); }
    to { transform: scale(1.045); }
}

.soundings text[b-53supuvrq0] {
    fill: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    letter-spacing: 0.05em;
}

.hero-inner[b-53supuvrq0] {
    position: relative;
    padding: 5.5rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero h1[b-53supuvrq0] {
    font-size: clamp(2.5rem, 5.6vw, 4.1rem);
    color: #fff;
    margin-top: 1rem;
    letter-spacing: -0.02em;
}

.text-cyan[b-53supuvrq0] {
    color: var(--cyan);
}

.hero-sub[b-53supuvrq0] {
    margin-top: 1.5rem;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 34rem;
}

.hero-actions[b-53supuvrq0] {
    display: flex;
    gap: 1rem;
    margin-top: 2.25rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------- Hero readouts */
.hero-panels[b-53supuvrq0] {
    display: grid;
    gap: 1rem;
}

.panel[b-53supuvrq0] {
    background: rgba(0, 4, 44, 0.72);
    border: 1px solid rgba(0, 179, 226, 0.3);
    border-radius: 3px;
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 60px rgba(0, 4, 44, 0.45);
}

.panel-head[b-53supuvrq0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(0, 179, 226, 0.22);
}

.panel-title[b-53supuvrq0] {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--cyan);
}

.panel-flag[b-53supuvrq0], .panel-live[b-53supuvrq0] {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.45);
}

.panel-live[b-53supuvrq0] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
}

    .panel-live[b-53supuvrq0]::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--cyan);
        animation: pulse-b-53supuvrq0 2.4s ease-in-out infinite;
    }

@keyframes pulse-b-53supuvrq0 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.readout[b-53supuvrq0] {
    margin: 0;
    padding: 0.9rem 1rem 0.4rem;
    font-size: 0.78rem;
}

    .readout > div[b-53supuvrq0] {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.3rem 0;
    }

    .readout dt[b-53supuvrq0] {
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 0.06em;
    }

    .readout dd[b-53supuvrq0] {
        margin: 0;
        color: #fff;
    }

.readout-hero[b-53supuvrq0] {
    color: var(--cyan) !important;
    font-weight: 600;
}

.trust[b-53supuvrq0] {
    padding: 0.6rem 1rem 1.1rem;
}

.trust-head[b-53supuvrq0] {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.trust-value[b-53supuvrq0] {
    color: var(--cyan);
    font-weight: 600;
}

.trust-bar[b-53supuvrq0] {
    margin-top: 0.45rem;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

    .trust-bar span[b-53supuvrq0] {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, var(--cyan-dark), var(--cyan));
    }

.trust-checks[b-53supuvrq0] {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.62);
}

    .trust-checks li[b-53supuvrq0] {
        padding-left: 1.15rem;
        position: relative;
        line-height: 1.45;
    }

        .trust-checks li[b-53supuvrq0]::before {
            position: absolute;
            left: 0;
        }

    .trust-checks .ok[b-53supuvrq0]::before {
        content: "✓";
        color: var(--cyan);
    }

    .trust-checks .warn[b-53supuvrq0]::before {
        content: "!";
        color: #ffc247;
        font-weight: 600;
    }

.board[b-53supuvrq0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

    .board td[b-53supuvrq0] {
        padding: 0.5rem 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.85);
    }

    .board tr:last-child td[b-53supuvrq0] {
        border-bottom: 0;
    }

.board-rank[b-53supuvrq0] {
    width: 2.5rem;
    padding-left: 1rem !important;
    color: var(--cyan) !important;
    font-weight: 600;
}

.board-fish[b-53supuvrq0] {
    text-align: right;
    color: rgba(255, 255, 255, 0.4) !important;
}

.board-lbs[b-53supuvrq0] {
    text-align: right;
    padding-right: 1rem !important;
    font-weight: 600;
}

.board-cut td[b-53supuvrq0] {
    padding: 0.4rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: #ffc247;
    background: rgba(255, 194, 71, 0.08);
    border-top: 1px dashed rgba(255, 194, 71, 0.5);
    border-bottom: 1px dashed rgba(255, 194, 71, 0.5);
}

.board-out td[b-53supuvrq0] {
    opacity: 0.42;
}

@media (max-width: 980px) {
    .hero-inner[b-53supuvrq0] {
        grid-template-columns: 1fr;
        gap: 2.75rem;
        padding-top: 4rem;
    }

    /* Once the panels sit under the copy they have the full column to use; 26rem left a third
       of a tablet's hero empty. */
    .hero-panels[b-53supuvrq0] {
        max-width: 34rem;
    }
}

/* ------------------------------------------------------ Bump board rule */
.bump-rule[b-53supuvrq0] {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 2.9rem;
    padding: 0 1rem;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    user-select: none;
}

.bump-inch[b-53supuvrq0] {
    display: flex;
    align-items: flex-end;
    position: relative;
    flex: 1 1 0;
    max-width: 5rem;
    height: 100%;
}

.bump-tick[b-53supuvrq0] {
    flex: 1 1 0;
    border-left: 1px solid var(--line);
    height: 0.4rem;
}

.bump-tick-half[b-53supuvrq0] {
    height: 0.7rem;
}

.bump-tick-inch[b-53supuvrq0] {
    height: 1.35rem;
    border-left-color: rgba(0, 8, 88, 0.45);
}

.bump-num[b-53supuvrq0] {
    position: absolute;
    left: 0;
    bottom: 1.4rem;
    transform: translateX(-50%);
    font-size: 0.62rem;
    color: var(--ink-soft);
    opacity: 0.65;
}

/* The tick count is fixed at 21 inches, so narrow screens drop the tail rather than crush it. */
@media (max-width: 760px) {
    .bump-rule[b-53supuvrq0] {
        justify-content: flex-start;
    }

    .bump-inch[b-53supuvrq0] {
        flex: 0 0 3.25rem;
    }
}

/* ------------------------------------------------------- Section rhythm */
.section[b-53supuvrq0] {
    padding: 5.5rem 0;
}

.section-tinted[b-53supuvrq0] {
    background: var(--paper-dim);
}

.section h2[b-53supuvrq0] {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--navy);
    margin-top: 0.9rem;
    max-width: 42rem;
    letter-spacing: -0.015em;
}

.lede[b-53supuvrq0] {
    margin-top: 1.1rem;
    max-width: 40rem;
    font-size: 1.02rem;
}

/* ------------------------------------------------- Rules sheet (platform) */
.sheet[b-53supuvrq0] {
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.sheet-row[b-53supuvrq0] {
    display: grid;
    grid-template-columns: 4.5rem 18rem 1fr;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.4rem 0.5rem;
    border-bottom: 1px solid var(--line);
    transition: background-color 0.15s ease;
}

    .sheet-row:hover[b-53supuvrq0] {
        background: rgba(0, 179, 226, 0.05);
    }

.sheet-num[b-53supuvrq0] {
    font-size: 0.8rem;
    color: var(--cyan-dark);
    letter-spacing: 0.08em;
}

.sheet-row h3[b-53supuvrq0] {
    font-size: 1.05rem;
    color: var(--navy);
}

.sheet-row p[b-53supuvrq0] {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

@media (max-width: 880px) {
    .sheet-row[b-53supuvrq0] {
        grid-template-columns: 3rem 1fr;
        gap: 0.5rem 1rem;
    }

        .sheet-row p[b-53supuvrq0] {
            grid-column: 2;
        }
}

/* ----------------------------------------------------- In the app (shots) */
/* The bezel is doing real work: the screens are light grey on a light grey section, and
   without a border they read as page, not as phone. */
.shots[b-53supuvrq0] {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.shot[b-53supuvrq0] {
    margin: 0;
}

.shot-frame[b-53supuvrq0] {
    max-width: 19rem;
    margin: 0 auto;
    padding: 5px;
    background: var(--navy);
    border-radius: 1.9rem;
    box-shadow: 0 18px 44px rgba(0, 8, 88, 0.16);
}

    .shot-frame img[b-53supuvrq0] {
        width: 100%;
        height: auto;
        border-radius: 1.55rem;
    }

.shot-cap[b-53supuvrq0] {
    margin: 1.1rem auto 0;
    max-width: 19rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink-soft);
}

    .shot-cap .rule-tag[b-53supuvrq0] {
        display: block;
        margin-bottom: 0.4rem;
    }

/* ------------------------------------------------------ One build, two trails */
.brands[b-53supuvrq0] {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.brands .anatomy-note[b-53supuvrq0] {
    max-width: 30rem;
}

.brand-pair[b-53supuvrq0] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

    /* Side by side is the whole argument, so these stay paired at every width and just get
       smaller — the logo and the card colour are what has to survive, and they do. */
    .brand-pair .shot-frame[b-53supuvrq0] {
        max-width: 14rem;
    }

.brand-label[b-53supuvrq0] {
    margin-top: 0.9rem;
    text-align: center;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

@media (max-width: 980px) {
    .shots[b-53supuvrq0] {
        gap: 1.5rem;
    }

    .brands[b-53supuvrq0] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Three phones stacked would run past 2,000px of scroll, so below this they become a swipe.
   Bleeding to the screen edge is what tells a thumb there is a third card. */
@media (max-width: 760px) {
    .shots[b-53supuvrq0] {
        grid-template-columns: repeat(3, 74vw);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin-inline: -1.5rem;
        padding: 0 1.5rem 0.75rem;
        -webkit-overflow-scrolling: touch;
    }

    .shot[b-53supuvrq0] {
        scroll-snap-align: center;
    }
}

/* ------------------------------------------------ Anatomy of a catch (deep) */
.section-deep[b-53supuvrq0] {
    position: relative;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.78);
    /* Chart hatching for deep water, at the angle a real chart uses. */
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 179, 226, 0.055) 0 1px,
        transparent 1px 9px);
}

    .section-deep h2[b-53supuvrq0] {
        color: #fff;
    }

.anatomy[b-53supuvrq0] {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.anatomy-head[b-53supuvrq0] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 179, 226, 0.3);
}

.spec[b-53supuvrq0] {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
}

    .spec li[b-53supuvrq0] {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        padding: 0.6rem 0;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.14);
    }

    .spec span[b-53supuvrq0] {
        color: rgba(255, 255, 255, 0.88);
    }

    .spec em[b-53supuvrq0] {
        font-style: normal;
        font-size: 0.66rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.42);
        white-space: nowrap;
    }

.anatomy-note[b-53supuvrq0] {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
}

.chart-rows[b-53supuvrq0] {
    margin-top: 1.25rem;
    border: 1px solid rgba(0, 179, 226, 0.28);
    font-size: 0.82rem;
}

    .chart-rows > div[b-53supuvrq0] {
        display: flex;
        justify-content: space-between;
        padding: 0.55rem 0.85rem;
        border-bottom: 1px solid rgba(0, 179, 226, 0.18);
    }

        .chart-rows > div:last-child[b-53supuvrq0] {
            border-bottom: 0;
        }

    .chart-rows span[b-53supuvrq0] {
        color: rgba(255, 255, 255, 0.65);
    }

    .chart-rows em[b-53supuvrq0] {
        font-style: normal;
        color: var(--cyan);
        font-weight: 600;
    }

.anatomy-fine[b-53supuvrq0] {
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 900px) {
    .anatomy[b-53supuvrq0] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ------------------------------------------------------------- Scoring */
.rules-grid[b-53supuvrq0] {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.rule[b-53supuvrq0] {
    background: var(--paper);
    padding: 1.75rem 1.5rem;
}

.rule-tag[b-53supuvrq0] {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--cyan-dark);
}

.rule h3[b-53supuvrq0] {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    color: var(--navy);
}

.rule p[b-53supuvrq0] {
    margin-top: 0.6rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

@media (max-width: 900px) {
    .rules-grid[b-53supuvrq0] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .rules-grid[b-53supuvrq0] {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------------------- Directors */
.directors-inner[b-53supuvrq0] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
}

.directors-copy[b-53supuvrq0] {
    margin-top: 1.25rem;
    color: var(--ink-soft);
    max-width: 34rem;
}

.pool[b-53supuvrq0] {
    margin-top: 2.5rem;
    max-width: 34rem;
}

.pool-label[b-53supuvrq0] {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    opacity: 0.7;
}

.pool-bar[b-53supuvrq0] {
    display: flex;
    margin-top: 0.6rem;
    height: 2.6rem;
    border: 1px solid var(--navy);
}

.pool-seg[b-53supuvrq0] {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid var(--navy);
}

    .pool-seg:last-child[b-53supuvrq0] {
        border-right: 0;
    }

    .pool-seg em[b-53supuvrq0] {
        font-style: normal;
        font-size: 0.66rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

.pool-key[b-53supuvrq0] {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    margin: 0.75rem 0 0;
    padding: 0;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

    .pool-key li[b-53supuvrq0] {
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }

    .pool-key span[b-53supuvrq0] {
        width: 0.7rem;
        height: 0.7rem;
        border: 1px solid var(--navy);
    }

.pool-1[b-53supuvrq0] { background: var(--navy); color: #fff; }
.pool-2[b-53supuvrq0] { background: var(--cyan-dark); color: #fff; }
.pool-3[b-53supuvrq0] { background: var(--cyan); color: var(--abyss); }
.pool-4[b-53supuvrq0] { background: rgba(0, 179, 226, 0.22); color: var(--navy); }

/* Below this the two narrow slices cannot hold their labels legibly. */
@media (max-width: 560px) {
    .pool-seg em[b-53supuvrq0] {
        display: none;
    }
}

@media (max-width: 980px) {
    .soundings[b-53supuvrq0] {
        display: none;
    }
}

.pool-note[b-53supuvrq0] {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.directors-list[b-53supuvrq0] {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

    .directors-list li[b-53supuvrq0] {
        position: relative;
        padding: 0.95rem 0.5rem 0.95rem 2.25rem;
        border-bottom: 1px solid var(--line);
        font-size: 0.92rem;
        color: var(--navy);
        font-weight: 500;
    }

        .directors-list li[b-53supuvrq0]::before {
            content: "✓";
            position: absolute;
            left: 0.35rem;
            color: var(--cyan-dark);
            font-weight: 700;
        }

@media (max-width: 900px) {
    .directors-inner[b-53supuvrq0] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ----------------------------------------------------------------- CTA */
.cta[b-53supuvrq0] {
    background: var(--abyss);
    color: #fff;
    text-align: center;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 179, 226, 0.05) 0 1px,
        transparent 1px 9px);
}

.cta-inner[b-53supuvrq0] {
    max-width: 44rem;
    display: grid;
    justify-items: center;
}

.cta h2[b-53supuvrq0] {
    color: #fff;
}

.cta p[b-53supuvrq0] {
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
}

.cta .btn[b-53supuvrq0] {
    margin-top: 2rem;
}

/* Wraps rather than shrinks: on a narrow screen two full-width buttons stacked read better than
   two cramped ones side by side. */
.cta-actions[b-53supuvrq0] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ------------------------------------------------------ Teams & season */
.season[b-53supuvrq0] {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.season-note[b-53supuvrq0] {
    margin-top: 1.1rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
}

.season-board[b-53supuvrq0] {
    margin-top: 1.5rem;
    border: 1px solid rgba(0, 179, 226, 0.3);
    background: rgba(0, 4, 44, 0.5);
}

.season-board-head[b-53supuvrq0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid rgba(0, 179, 226, 0.22);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--cyan);
}

.season-board table[b-53supuvrq0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.season-board td[b-53supuvrq0] {
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

.season-board tr:last-child td[b-53supuvrq0] {
    border-bottom: 0;
}

/* "5 of 7" is the drop rule made visible: how many results the season counted. */
.season-counted[b-53supuvrq0] {
    text-align: right;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 900px) {
    .season[b-53supuvrq0] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ------------------------------------------- Light paper, deep-water parts */
/* The anatomy grid, the spec lists and the small readout panels were all drawn for
   .section-deep, where the type is white on navy. Race Day and Reports reuse the same
   components on paper, so this flips only the colours and leaves every measurement alone. */
.anatomy-light .anatomy-head[b-53supuvrq0] {
    color: var(--cyan-dark);
    border-bottom-color: var(--line);
}

.anatomy-light .spec li[b-53supuvrq0] {
    border-bottom-color: var(--line);
}

.anatomy-light .spec span[b-53supuvrq0] {
    color: var(--ink);
}

.anatomy-light .spec em[b-53supuvrq0] {
    color: var(--ink-soft);
    opacity: 0.75;
}

.anatomy-light .anatomy-note[b-53supuvrq0] {
    color: var(--ink-soft);
}

.anatomy-light .anatomy-fine[b-53supuvrq0] {
    color: var(--ink-soft);
    opacity: 0.75;
    font-size: 0.76rem;
}

.anatomy-light .panel-flag[b-53supuvrq0] {
    color: var(--ink-soft);
    opacity: 0.7;
}

/* .lede is uncoloured so it can inherit .section-deep's white; on paper it needs the
   softer ink the rest of the light sections set their body copy in. */
.section:not(.section-deep) > .container > .lede[b-53supuvrq0] {
    color: var(--ink-soft);
}

/* -------------------------------------------------------- Flight schedule */
.flight-sheet[b-53supuvrq0] {
    margin-top: 1.5rem;
    border: 1px solid var(--line);
    background: #fff;
}

.flight-sheet-head[b-53supuvrq0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--cyan-dark);
}

.flight-sheet table[b-53supuvrq0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.flight-sheet th[b-53supuvrq0] {
    padding: 0.45rem 0.5rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}

.flight-sheet td[b-53supuvrq0] {
    padding: 0.5rem;
    border-bottom: 1px solid var(--paper-dim);
    color: var(--ink);
}

.flight-sheet tr:last-child td[b-53supuvrq0] {
    border-bottom: 0;
}

.flight-sheet .board-rank[b-53supuvrq0] {
    color: var(--cyan-dark) !important;
}

/* The boat range is the wide column; the two clock times sit hard right against each other. */
.flight-sheet th:nth-child(3)[b-53supuvrq0], .flight-sheet th:nth-child(4)[b-53supuvrq0],
.flight-sheet td:nth-child(3)[b-53supuvrq0], .flight-sheet td:nth-child(4)[b-53supuvrq0] {
    text-align: right;
}

/* -------------------------------------------------------- Delivery counts */
.delivery[b-53supuvrq0] {
    margin-top: 1.25rem;
    border: 1px solid rgba(0, 120, 158, 0.28);
    font-size: 0.82rem;
    background: #fff;
}

.delivery-head[b-53supuvrq0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid rgba(0, 120, 158, 0.2);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--cyan-dark);
}

.delivery > div:not(.delivery-head)[b-53supuvrq0] {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid var(--paper-dim);
}

.delivery > div:last-child[b-53supuvrq0] {
    border-bottom: 0;
}

.delivery span[b-53supuvrq0] {
    color: var(--ink-soft);
}

.delivery em[b-53supuvrq0] {
    font-style: normal;
    color: var(--cyan-dark);
    font-weight: 600;
}

/* ------------------------------------------------------------ DNR report */
.report[b-53supuvrq0] {
    margin-top: 3rem;
    display: grid;
    /* The sheet leads, because the argument for it is what the form actually looks like. */
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
}

.report-sheet[b-53supuvrq0] {
    border: 1px solid var(--line);
    background: #fff;
    /* A grid item defaults to min-width: auto, which the seven-column table would win against
       — the scroll container below only works if the item is allowed to be narrower. */
    min-width: 0;
}

.report-head[b-53supuvrq0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--cyan-dark);
}

/* The permit header, laid out the way the form prints it: four labelled boxes across the
   top, label above value, so a blank one reads as a blank to be written in. */
.report-permit[b-53supuvrq0] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 1rem;
    padding: 0.85rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
}

    .report-permit > div[b-53supuvrq0] {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        min-width: 0;
    }

    .report-permit span[b-53supuvrq0] {
        color: var(--ink-soft);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 0.58rem;
    }

    .report-permit em[b-53supuvrq0] {
        font-style: normal;
        color: var(--ink);
        overflow-wrap: anywhere;
    }

@media (max-width: 620px) {
    .report-permit[b-53supuvrq0] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Seven columns is more than a narrow viewport holds, and squeezing them would make the
   inches column — the whole point of the row — the first thing to wrap. */
.report-scroll[b-53supuvrq0] {
    overflow-x: auto;
}

.report-sheet table[b-53supuvrq0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.76rem;
    white-space: nowrap;
}

.report-sheet th[b-53supuvrq0] {
    padding: 0.45rem 0.5rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}

.report-sheet td[b-53supuvrq0] {
    padding: 0.5rem;
    border-bottom: 1px solid var(--paper-dim);
    color: var(--ink);
}

.report-sheet th:nth-child(n + 3)[b-53supuvrq0], .report-sheet td:nth-child(n + 3)[b-53supuvrq0] {
    text-align: right;
}

.report-largest[b-53supuvrq0] {
    padding: 0.75rem 0.85rem;
    border-top: 1px solid var(--line);
    background: var(--paper);
    font-size: 0.76rem;
}

    .report-largest > span[b-53supuvrq0] {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.62rem;
        letter-spacing: 0.16em;
        color: var(--cyan-dark);
    }

    .report-largest > div[b-53supuvrq0] {
        display: flex;
        justify-content: space-between;
        padding: 0.3rem 0;
    }

    .report-largest > div span[b-53supuvrq0] {
        color: var(--ink-soft);
    }

    .report-largest em[b-53supuvrq0] {
        font-style: normal;
        color: var(--ink);
        font-weight: 600;
    }

.report-copy p[b-53supuvrq0] {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.report-copy .spec[b-53supuvrq0] {
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .report[b-53supuvrq0] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.lost[b-k0ug3o8rn8] {
    color: #fff;
    background-color: var(--abyss);
    background-image:
        repeating-linear-gradient(-45deg, rgba(0, 179, 226, 0.05) 0 1px, transparent 1px 9px),
        radial-gradient(120% 90% at 70% 20%, rgba(0, 179, 226, 0.16) 0%, transparent 55%),
        linear-gradient(165deg, var(--navy) 0%, var(--abyss) 100%);
}

.lost-inner[b-k0ug3o8rn8] {
    min-height: 60vh;
    padding: 6rem 1.5rem;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 1rem;
}

.sounding[b-k0ug3o8rn8] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--cyan);
}

.lost h1[b-k0ug3o8rn8] {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: #fff;
}

.lost p[b-k0ug3o8rn8] {
    color: rgba(255, 255, 255, 0.72);
    max-width: 28rem;
}

.lost .btn[b-k0ug3o8rn8] {
    margin-top: 1rem;
}
