:root {
    --bg: #f4f6f3;
    --panel: #ffffff;
    --sidebar: #0f1713;
    --sidebar-soft: #1b2620;

    --green: #1f6f46;
    --green-dark: #154a31;
    --green-soft: #eaf2ed;

    --hunter-green: #173f2c;

    --practice-bg: #edf4ef;
    --practice-border: #d3e3d8;
    --practice-badge: #d9e8de;

    --text: #172019;
    --muted: #6f7a72;
    --border: #e2e7e3;

    --snack-bg: #fff4dc;
    --snack-text: #75500d;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
}


/* =========================================================
   LAYOUT
========================================================= */

.layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px 1fr;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {
    background: var(--sidebar);
    color: white;
    min-height: 100vh;
    padding: 30px 22px;
    position: sticky;
    top: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--green);
    font-size: 1.35rem;
}

.tagline {
    color: #99aa9f;
    font-size: 0.78rem;
    margin: 10px 0 38px 52px;
    letter-spacing: 0.04em;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav a {
    text-decoration: none;
    color: #cbd5ce;
    padding: 13px 15px;
    border-radius: 10px;
    transition: 0.2s ease;
}

.nav a:hover {
    background: var(--sidebar-soft);
    color: white;
}

.nav a.active {
    background: var(--green);
    color: white;
    font-weight: 700;
}


/* =========================================================
   MAIN
========================================================= */

main {
    padding: 34px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.page-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--green);
}

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


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 260px;
    border-radius: 22px;
    padding: 42px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 12, 0.94),
            rgba(17, 64, 41, 0.78),
            rgba(17, 64, 41, 0.35)
        ),
        linear-gradient(
            145deg,
            #173c2b,
            #255e42
        );
}

.hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -100px;
    top: -130px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    color: white;
}

.hero small {
    display: block;
    color: #b6d1c0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero p {
    margin: 0;
    color: #d9e8de;
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.6;
}


/* =========================================================
   SHARED CARDS
========================================================= */

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(20, 35, 25, 0.05);
}

.card-half {
    grid-column: span 6;
}

.card-wide {
    grid-column: span 8;
}

.card-small {
    grid-column: span 4;
}

.card-full {
    grid-column: 1 / -1;
}

.card h2 {
    margin: 6px 0 12px;
    font-size: 1.3rem;
}

.eyebrow {
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.big {
    font-size: 1.7rem;
    font-weight: 900;
    margin: 8px 0;
}

.muted {
    color: var(--muted);
    line-height: 1.55;
}


/* =========================================================
   HOME PAGE
========================================================= */

.event-row {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
}

.event-date {
    min-width: 76px;
    text-align: center;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.event-date .month {
    background: var(--green);
    color: white;
    padding: 6px;
    font-size: 0.72rem;
    font-weight: 900;
}

.event-date .day {
    padding: 10px 6px;
    font-size: 1.7rem;
    font-weight: 900;
}

.event-details strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.mission {
    background: linear-gradient(135deg, #ffffff, #f3f7f4);
    border-left: 5px solid var(--green);
}

.mission-word {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 800;
    font-size: 0.82rem;
}

.roles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.role {
    background: #f2f5f3;
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
}

.role-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.role strong {
    display: block;
    font-size: 0.88rem;
}

.role span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.74rem;
}

.challenge-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 12px;
}

.challenge-number span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--muted);
    margin-top: 6px;
}

.token-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.token {
    width: 28px;
    height: 28px;
    border: 6px solid #7b837d;
    border-radius: 50%;
}

.challenge-reward {
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
}

.announcement {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.announcement:last-child {
    border-bottom: 0;
}

.announcement strong {
    display: block;
    margin-bottom: 4px;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 11px 15px;
    border-radius: 10px;
    background: var(--green);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
}

.button:hover {
    background: var(--green-dark);
}

.text-link {
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}


/* =========================================================
   SCHEDULE
========================================================= */

.schedule-hero {
    min-height: 220px;
}

.schedule-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.summary-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.summary-number {
    font-size: 2rem;
    font-weight: 900;
}

.summary-label {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
}

.summary-card.alert {
    border-left: 4px solid #c58b27;
}

.schedule-card {
    overflow: hidden;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 22px;
}

.schedule-key {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    font-weight: 800;
}

.key-home {
    color: var(--hunter-green);
}

.key-away {
    color: #6a716c;
}

.key-open {
    color: #9a690f;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-card {
    display: grid;
    grid-template-columns: 105px minmax(180px, 1fr) 180px 220px;
    gap: 20px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

.game-card.practice-row {
    background: var(--practice-bg);
    border: 1px solid var(--practice-border);
    border-left: 5px solid var(--green);
}

.game-date {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: white;
}

.game-month {
    display: block;
    background: var(--green);
    color: white;
    padding: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.game-day {
    display: block;
    padding: 8px 6px 10px;
    font-size: 2rem;
    font-weight: 900;
}

.practice-row .game-month {
    background: #607d6a;
}

.game-info h3 {
    margin: 4px 0;
    font-size: 1.1rem;
}

.game-info .field-label {
    color: var(--muted);
    font-size: 0.86rem;
}

.game-status {
    min-height: 62px;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.game-status.home {
    background: var(--hunter-green);
    color: white;
}

.game-status.away {
    background: white;
    color: #202722;
    border: 2px solid #cfd6d1;
}

.practice-status {
    min-height: 62px;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--practice-badge);
    color: #214a32;
    border: 1px solid #c9dbce;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.practice-focus {
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #d2e0d6;
    color: var(--green-dark);
}

.snack-box {
    border-radius: 14px;
    padding: 14px 16px;
}

.snack-box.covered {
    background: var(--green-soft);
    color: var(--green-dark);
}

.snack-box.open {
    background: var(--snack-bg);
    color: var(--snack-text);
}

.snack-label {
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    margin-bottom: 5px;
}

.snack-box strong {
    display: block;
    margin-bottom: 5px;
}

.signup-button {
    border: 0;
    background: #95620c;
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 800;
    cursor: pointer;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 7, 0.72);
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.modal.show {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 440px;
    background: white;
    border-radius: 20px;
    padding: 28px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--muted);
}

.modal-content label {
    display: block;
    margin: 16px 0 6px;
    font-size: 0.8rem;
    font-weight: 800;
}

.modal-content input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    font: inherit;
}

.signup-submit {
    width: 100%;
    border: 0;
    justify-content: center;
    cursor: pointer;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.72rem;
    margin-top: 12px;
}


/* =========================================================
   PRACTICE PAGE
========================================================= */

.practice-hero {
    min-height: 220px;
}

.practice-week-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.practice-week-card {
    display: grid;
    grid-template-columns: 180px minmax(200px, 1fr) 260px;
    gap: 20px;
    align-items: center;
    padding: 22px;
    border-radius: 16px;
    background: var(--practice-bg);
    border: 1px solid var(--practice-border);
    border-left: 5px solid var(--green);
}

.practice-week-day {
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.practice-week-focus {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #d2e0d6;
    color: var(--green-dark);
}


/* =========================================================
   LINEUP CONTROLS
========================================================= */

.lineup-hero {
    min-height: 220px;
}

.lineup-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
}

.lineup-select {
    min-width: 260px;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    color: var(--text);
    font: inherit;
    font-weight: 700;
}

.lineup-game-details {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
}

.lineup-game-status {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.lineup-game-status.home {
    background: var(--hunter-green);
    color: white;
}

.lineup-game-status.away {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}


/* =========================================================
   QUARTERS
========================================================= */

.quarter-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.quarter-tab {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    padding: 12px;
    color: var(--muted);
    font-weight: 900;
    cursor: pointer;
}

.quarter-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
}


/* =========================================================
   LINEUP BOARD
========================================================= */

.lineup-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 20px;
}


/* =========================================================
   FIELD
========================================================= */

.soccer-field {
    min-height: 720px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(20, 92, 55, 0.95),
            rgba(18, 77, 48, 0.97)
        );

    border: 4px solid rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.16);
}


/* =========================================================
   MIDFIELD LINE
========================================================= */

.soccer-field::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 35%;

    border-top: 2px solid rgba(255, 255, 255, 0.55);
    z-index: 1;
}


/* =========================================================
   CENTER CIRCLE
========================================================= */

.soccer-field::after {
    content: "";
    position: absolute;

    width: 130px;
    height: 130px;

    left: 50%;
    top: 35%;

    transform: translate(-50%, -50%);

    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    z-index: 1;
}


/* =========================================================
   GOALS
   Uses the existing .goal elements
========================================================= */

.goal {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    width: 150px;
    height: 42px;

    z-index: 6;

    border-left: 4px solid #fff;
    border-right: 4px solid #fff;

    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.2) 0,
            rgba(255,255,255,.2) 1px,
            transparent 1px,
            transparent 10px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,.2) 0,
            rgba(255,255,255,.2) 1px,
            transparent 1px,
            transparent 10px
        );
}

.goal-top {
    top: 0;
    border-top: 4px solid white;
    border-bottom: 2px solid rgba(255,255,255,.8);
}

.goal-bottom {
    bottom: 0;
    border-bottom: 4px solid white;
    border-top: 2px solid rgba(255,255,255,.8);
}

.goal-net {
    width: 100%;
    height: 100%;
}


/* =========================================================
   GOALIE / PENALTY BOXES
   Drawn using extra field pseudo-elements
========================================================= */

.field-label-top::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 95px;

    left: 50%;
    top: -54px;

    transform: translateX(-50%);

    border-left: 3px solid rgba(255,255,255,.7);
    border-right: 3px solid rgba(255,255,255,.7);
    border-bottom: 3px solid rgba(255,255,255,.7);

    z-index: -1;
}

.field-label-bottom::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 95px;

    left: 50%;
    bottom: -54px;

    transform: translateX(-50%);

    border-left: 3px solid rgba(255,255,255,.7);
    border-right: 3px solid rgba(255,255,255,.7);
    border-top: 3px solid rgba(255,255,255,.7);

    z-index: -1;
}


/* =========================================================
   FIELD LABELS
========================================================= */

.field-label-top {
    position: absolute;

    top: 58px;
    left: 50%;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;

    z-index: 3;
}

.field-label-bottom {
    position: absolute;

    bottom: 58px;
    left: 50%;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;

    z-index: 3;
}


/* =========================================================
   FIELD PLAYER STYLE
========================================================= */

.field-position {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
    min-width: 130px;
    text-align: center;
}

.position-symbol {
    width: 56px;
    height: 56px;

    margin: 0 auto 6px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: white;
    font-size: 1.65rem;

    box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

.position-role {
    color: rgba(255,255,255,.86);

    font-size: .66rem;
    font-weight: 900;

    letter-spacing: .12em;

    margin-bottom: 4px;
}

.position-name {
    display: inline-block;

    min-width: 100px;

    padding: 8px 12px;

    border-radius: 999px;

    background: rgba(255,255,255,.96);

    color: var(--hunter-green);

    font-weight: 900;

    box-shadow: 0 4px 10px rgba(0,0,0,.14);
}

.position-open {
    opacity: .65;
    font-style: italic;
}


/* =========================================================
   6v6 FORMATION
========================================================= */

/* Hunter high and central */

.hunter-position {
    left: 50%;
    top: 18%;
}


/* Scouts wider toward sidelines */

.scout-left {
    left: 19%;
    top: 48%;
}

.scout-right {
    left: 81%;
    top: 48%;
}


/* Guardians closer to center */

.guardian-left {
    left: 38%;
    top: 69%;
}

.guardian-right {
    left: 62%;
    top: 69%;
}


/* Pack Leader central */

.leader-position {
    left: 50%;
    top: 86%;
}


/* =========================================================
   BENCH
========================================================= */

.bench-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    align-self: start;
}

.bench-panel h2 {
    margin: 5px 0 18px;
}

.bench-players {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bench-player {
    padding: 12px 14px;
    border-radius: 10px;
    background: #eef3ef;
    color: var(--green-dark);
    font-weight: 800;
}


/* =========================================================
   EMPTY LINEUP
========================================================= */

.lineup-empty {
    text-align: center;
    padding: 50px 20px;
}

.lineup-empty-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        min-height: auto;
    }

    .tagline {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    main {
        padding: 20px;
    }

    .hero {
        min-height: 220px;
        padding: 28px;
    }

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


@media (max-width: 850px) {

    .schedule-summary {
        grid-template-columns: 1fr;
    }

    .schedule-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .game-card {
        grid-template-columns: 85px 1fr;
    }

    .game-status,
    .practice-status,
    .snack-box,
    .practice-focus {
        grid-column: 2;
    }

    .practice-week-card {
        grid-template-columns: 1fr;
    }

    .lineup-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .lineup-select {
        min-width: 0;
        width: 100%;
    }

    .lineup-game-details {
        justify-content: flex-start;
    }

    .lineup-board {
        grid-template-columns: 1fr;
    }

    .soccer-field {
        min-height: 660px;
    }

    .bench-players {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .bench-player {
        flex: 1 1 120px;
    }
}


@media (max-width: 650px) {

    .soccer-field {
        min-height: 620px;
    }

    .field-position {
        min-width: 100px;
    }

    .position-symbol {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
    }

    .position-name {
        min-width: 78px;
        padding: 7px 9px;
        font-size: 0.78rem;
    }

    .scout-left {
        left: 16%;
    }

    .scout-right {
        left: 84%;
    }

    .guardian-left {
        left: 36%;
    }

    .guardian-right {
        left: 64%;
    }

    .goal {
        width: 110px;
        height: 32px;
    }

    .field-label-top::before,
    .field-label-bottom::before {
        width: 220px;
        height: 80px;
    }
}


@media (max-width: 560px) {

    .sidebar {
        padding: 22px 16px;
    }

    .nav a {
        font-size: 0.82rem;
        padding: 9px 10px;
    }

    main {
        padding: 14px;
    }

    .hero {
        border-radius: 16px;
    }

    .card {
        border-radius: 14px;
        padding: 18px;
    }

    .roles {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 480px) {

    .game-card {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .game-date,
    .game-status,
    .practice-status,
    .snack-box,
    .practice-focus {
        grid-column: 1;
    }

    .game-date {
        width: 90px;
    }

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

/* =========================================================
   THE PACK PAGE
========================================================= */

.pack-hero {
    min-height: 260px;
}


/* VALUES */

.pack-values-section {
    margin-bottom: 28px;
}

.pack-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.pack-value {
    padding: 20px;
    border-radius: 14px;
    background: #f1f5f2;
    border-top: 4px solid var(--green);
}

.pack-value strong {
    display: block;
    color: var(--green-dark);
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.pack-value span {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}


/* SECTIONS */

.pack-section {
    margin: 34px 0;
}

.pack-section-title {
    margin: 6px 0 18px;
}


/* ROLE CARDS */

.pack-role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pack-role-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    overflow: hidden;
}

.pack-role-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    right: -60px;
    bottom: -60px;
    background: var(--green-soft);
}

.pack-role-symbol {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--green-soft);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.pack-role-name {
    font-size: 1.3rem;
    font-weight: 900;
}

.pack-role-job {
    margin-top: 3px;
    color: var(--green);
    font-weight: 800;
    font-size: 0.82rem;
}

.pack-role-card p {
    position: relative;
    z-index: 2;
    color: var(--muted);
    line-height: 1.6;
    max-width: 450px;
}

.pack-role-cue {
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-top: 5px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--hunter-green);
    color: white;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}


/* LANGUAGE */

.pack-language-section {
    margin: 34px 0;
}

.pack-language-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.pack-language-card {
    padding: 22px 16px;
    border-radius: 14px;
    background: #f4f7f5;
    text-align: center;
}

.pack-language-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pack-language-card strong {
    display: block;
    margin-bottom: 6px;
}

.pack-language-card span {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.45;
}


/* GAME MOMENTS */

.pack-moments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pack-moment {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.pack-moment-number {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--green);
    color: white;
    font-weight: 900;
    font-size: 0.8rem;
}

.pack-moment strong {
    font-size: 1rem;
}

.pack-moment p {
    margin: 5px 0 0;
    color: var(--muted);
    line-height: 1.5;
}


/* PROMISE */

.pack-promise {
    margin-top: 34px;
    padding: 44px 28px;
    border-radius: 22px;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #10291d,
            #1d5b3b
        );
    color: white;
}

.pack-promise-wolf {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.pack-promise .eyebrow {
    color: #a9ceb7;
}

.pack-promise h2 {
    margin: 8px 0;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.pack-promise p {
    margin: 0 auto;
    max-width: 520px;
    color: #d3e5d9;
    line-height: 1.6;
}


/* PACK PAGE RESPONSIVE */

@media (max-width: 850px) {

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

    .pack-role-grid {
        grid-template-columns: 1fr;
    }

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

}


@media (max-width: 560px) {

    .pack-values,
    .pack-language-grid,
    .pack-moments {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   PARENTS PAGE
========================================================= */

.parents-hero {
    min-height: 240px;
}


.parent-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.parent-check-item {
    padding: 13px 14px;
    border-radius: 12px;
    background: #f2f5f3;
    font-weight: 800;
    font-size: 0.85rem;
}


.parent-game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
}

.parent-game-date {
    font-size: 1.1rem;
    font-weight: 900;
}

.parent-game-field {
    color: var(--muted);
    margin-top: 5px;
}

.parent-jersey {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f3f6f4;
    color: var(--muted);
}

.parent-jersey strong {
    color: var(--text);
}


.parent-status-good,
.parent-status-needed {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
    padding: 16px;
    border-radius: 14px;
}

.parent-status-good {
    background: var(--green-soft);
    color: var(--green-dark);
}

.parent-status-needed {
    background: var(--snack-bg);
    color: var(--snack-text);
}


.parent-practice {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
}

.parent-practice-focus {
    margin-top: 8px;
    padding: 11px 13px;
    border-radius: 10px;
    background: var(--practice-bg);
    color: var(--green-dark);
}


.parent-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.parent-value-card {
    padding: 18px;
    border-radius: 14px;
    background: #f2f5f3;
    border-top: 4px solid var(--green);
}

.parent-value-card strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 7px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.parent-value-card span {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
}


.parent-reminders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.parent-reminder {
    padding: 18px;
    border-radius: 14px;
    background: #f7f9f7;
    border: 1px solid var(--border);
}

.parent-reminder strong {
    display: block;
    margin-bottom: 8px;
}

.parent-reminder span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}


@media (max-width: 850px) {

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

    .parent-reminders {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 560px) {

    .parent-checklist,
    .parent-values {
        grid-template-columns: 1fr;
    }

    .parent-game {
        align-items: flex-start;
        flex-direction: column;
    }

}