.join-page {
    --league-accent-rgb: 74, 222, 128;
    --league-secondary-rgb: 45, 212, 191;
    background:
        radial-gradient(circle at 74% 0%, rgba(var(--league-accent-rgb), 0.1), transparent 28%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), #000000 36%),
        #000000;
}

.join-container {
    max-width: 430px;
    padding: 0 12px 14px;
}

.join-top-header {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "brand";
    align-items: center;
    padding: 32px 0 10px;
    border-bottom: 0 !important;
    column-gap: 10px;
    row-gap: 0;
}

.join-top-header .brand-block,
.join-top-header .brand-copy {
    align-items: center;
    justify-self: center;
    transform: none;
    width: auto;
}

.join-top-header .prophet-logo {
    gap: 5px;
    justify-content: center;
}

.join-top-header .prophet-logo-mark {
    flex-basis: 57px;
    height: 61px;
    width: 57px;
}

.join-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 0;
    align-items: start;
}

.join-shell.has-identity {
    grid-template-columns: minmax(0, 1fr);
}

.join-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "identity"
        "funding"
        "leagues"
        "posture"
        "terms";
    row-gap: 4px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.join-panel {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px 10px;
    min-width: 0;
    padding: 8px 0;
}

.join-identity-panel {
    grid-area: identity;
    padding-top: 0;
}

.join-funding-panel {
    grid-area: funding;
}

.join-leagues-panel {
    grid-area: leagues;
    grid-template-columns: 32px minmax(0, 1fr);
    padding-left: 0;
    border-left: 0;
}

.join-leagues-panel .join-panel-heading {
    grid-column: 1;
}

.join-leagues-panel .join-league-grid {
    grid-column: 2;
}

.join-posture-panel {
    grid-area: posture;
}

.join-terms-panel {
    grid-area: terms;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    padding-left: 0;
    border-left: 0;
    padding-bottom: 0;
}

.join-terms-panel .join-panel-heading {
    grid-column: 1;
}

.join-terms-panel .join-terms-check,
.join-terms-panel .join-submit-button {
    grid-column: 2;
}

.join-panel-heading {
    display: grid;
    grid-template-columns: 28px;
    gap: 0;
    align-items: start;
    grid-row: 1 / span 3;
}

.join-panel-heading > div {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.join-panel-index {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 2px solid rgba(var(--league-accent-rgb), 0.54);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 38%, rgba(var(--league-accent-rgb), 0.14), transparent 58%),
        rgba(0, 0, 0, 0.28);
    color: rgb(var(--league-accent-rgb));
    font-family: var(--analysis-font-family);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    box-shadow:
        0 0 0 1px rgba(var(--league-accent-rgb), 0.1),
        0 0 18px rgba(var(--league-accent-rgb), 0.12);
}

.join-panel h1,
.join-panel h2 {
    margin: 0;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.01em;
    line-height: 1.18;
}

.join-panel h1 {
    font-size: 1.02rem;
}

.join-panel p {
    max-width: 360px;
    margin: 4px 0 0;
    color: rgba(226, 232, 240, 0.6);
    font-size: 0.66rem;
    line-height: 1.35;
}

.join-social-grid,
.join-payment-grid,
.join-league-grid,
.join-posture-grid,
.join-identity-grid {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.join-social-grid,
.join-identity-grid,
.join-payment-grid,
.join-league-grid,
.join-posture-grid,
.join-bankroll-field,
.join-terms-check {
    grid-column: 2;
}

.join-social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.join-alert,
.join-result {
    grid-column: 1 / -1;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
    padding: 10px 12px;
    font-size: 0.68rem;
    line-height: 1.35;
}

.join-alert {
    border-color: rgba(248, 113, 113, 0.34);
    background:
        linear-gradient(180deg, rgba(248, 113, 113, 0.12), rgba(127, 29, 29, 0.08)),
        #09090b;
    color: rgba(254, 202, 202, 0.9);
}

.join-result {
    border-color: rgba(var(--league-accent-rgb), 0.42);
    background:
        linear-gradient(180deg, rgba(var(--league-accent-rgb), 0.15), rgba(var(--league-accent-rgb), 0.045)),
        #05080c;
    color: rgba(226, 232, 240, 0.7);
}

.join-result strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.1;
}

.join-social-button,
.join-payment-button,
.join-league-option {
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.join-social-button:hover,
.join-social-button:focus-visible,
.join-payment-button:hover,
.join-payment-button:focus-visible,
.join-league-option:hover,
.join-league-option:focus-within {
    border-color: rgba(var(--league-accent-rgb), 0.42);
    color: #ffffff;
    outline: none;
}

.join-social-button.is-selected,
.join-payment-button.is-selected,
.join-league-option.is-selected {
    border-color: rgba(var(--league-accent-rgb), 0.56);
    background:
        linear-gradient(180deg, rgba(var(--league-accent-rgb), 0.13), rgba(var(--league-accent-rgb), 0.04)),
        rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(var(--league-accent-rgb), 0.14);
    color: #ffffff;
}

.join-social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 38px;
    padding: 0 9px;
    font: inherit;
    font-size: 0.64rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.join-social-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.join-social-logo svg {
    width: 21px;
    height: 21px;
}

.join-social-logo-x svg {
    width: 18px;
    height: 18px;
}

.join-social-logo-apple,
.join-social-logo-x {
    color: #ffffff;
}

.join-payment-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 24px;
    flex: 0 0 58px;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    line-height: 1;
}

.join-payment-logo svg {
    display: block;
    width: 58px;
    height: 24px;
}

.join-payment-logo-apple-pay {
    color: #ffffff;
}

.join-identity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.join-field {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.join-field > span:first-child,
.join-control-label,
.join-terms-check span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.56rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.join-field input {
    width: 100%;
    min-height: 36px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.62);
    color: #ffffff;
    font: inherit;
    font-size: 0.78rem;
    line-height: 1.2;
    outline: none;
    padding: 0 12px;
}

.join-field input:focus {
    border-color: rgba(var(--league-accent-rgb), 0.56);
    box-shadow: 0 0 0 3px rgba(var(--league-accent-rgb), 0.08);
}

.join-payment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.join-payment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 42px;
    padding: 7px 4px;
    font: inherit;
    text-align: left;
}

.join-payment-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.join-payment-copy span,
.join-league-option strong {
    overflow: hidden;
    font-size: 0.64rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.07em;
    line-height: 1.1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.join-payment-copy small {
    overflow: hidden;
    color: rgba(226, 232, 240, 0.5);
    font-size: 0.58rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.join-bankroll-input {
    position: relative;
    display: flex;
    align-items: center;
}

.join-bankroll-prefix {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.52);
    font-family: var(--metric-font-family);
    font-size: 0.78rem;
    line-height: 1;
    pointer-events: none;
}

.join-bankroll-input input {
    width: 100%;
    min-height: 38px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(24, 31, 43, 0.92), rgba(3, 7, 18, 0.98)),
        #020202;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    padding: 0 86px 0 32px;
}

.join-bankroll-input input:focus {
    border-color: rgba(var(--league-accent-rgb), 0.54);
    box-shadow: none;
    color: #ffffff;
}

.join-bankroll-stepper {
    position: absolute;
    right: 6px;
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.join-bankroll-step-button {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(15, 23, 42, 0.86);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.join-bankroll-step-button:hover,
.join-bankroll-step-button:focus-visible {
    border-color: rgba(var(--league-accent-rgb), 0.48);
    background:
        linear-gradient(180deg, rgba(var(--league-accent-rgb), 0.16), rgba(var(--league-accent-rgb), 0.055)),
        rgba(15, 23, 42, 0.9);
    color: #ffffff;
    outline: none;
}

.join-league-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: stretch;
    column-gap: 2px;
    row-gap: 18px;
    overflow: visible;
    margin-top: 2px;
    padding: 4px;
    border: 1px solid rgba(var(--league-accent-rgb), 0.2);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(var(--league-accent-rgb), 0.08), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 -1px 0 rgba(var(--league-accent-rgb), 0.1);
}

.join-league-option {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-content: center;
    gap: 14px;
    isolation: isolate;
    min-height: 94px;
    overflow: visible;
    padding: 12px 8px;
    border: none;
    border-radius: 10px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.026);
}

.join-league-option::after {
    display: none;
}

.join-league-option.is-selected {
    border-color: transparent;
    background:
        radial-gradient(circle at top, rgba(var(--league-option-accent-rgb), 0.2), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(var(--league-option-accent-rgb), 0.075));
    box-shadow:
        inset 0 0 0 1px rgba(var(--league-option-accent-rgb), 0.42),
        0 0 22px rgba(var(--league-option-accent-rgb), 0.16),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.join-league-option.is-selected::before {
    display: none;
}

.join-league-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.join-league-emoji {
    display: inline;
    width: auto;
    height: auto;
    flex: 0 0 auto;
    border-radius: 0;
    background: transparent;
    font-size: 1.15rem;
    line-height: 1;
    box-shadow: none;
}

.join-league-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    align-self: end;
}

.join-league-text {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.join-league-status {
    position: absolute;
    top: -9px;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 18px;
    width: max-content;
    max-width: calc(100% - 12px);
    padding: 0 8px;
    border: 1px solid rgba(74, 222, 128, 0.36);
    border-radius: 999px;
    background: rgba(6, 24, 16, 0.94);
    color: #86efac;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.16);
}

.join-league-status::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.85);
}

.join-league-status.is-live {
    border-color: rgba(74, 222, 128, 0.58);
    background: rgba(5, 36, 20, 0.96);
    color: #bbf7d0;
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.28);
}

.join-league-status.is-in-season {
    border-color: rgba(52, 211, 153, 0.3);
    color: #a7f3d0;
}

.join-league-status.is-offseason {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(17, 24, 39, 0.88);
    color: rgba(226, 232, 240, 0.46);
    box-shadow: none;
}

.join-league-status.is-offseason::before {
    background: rgba(148, 163, 184, 0.48);
    box-shadow: none;
}

.join-league-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    align-self: start;
    line-height: 1;
}

.join-league-roi {
    min-height: 20px;
    padding: 3px 7px 3px 6px;
    font-size: 0.78rem;
}

.join-league-roi::before {
    width: 12px;
    height: 11px;
    flex-basis: 12px;
    background:
        linear-gradient(currentColor, currentColor) 1px 5px / 3px 5px no-repeat,
        linear-gradient(currentColor, currentColor) 5px 5px / 3px 5px no-repeat,
        linear-gradient(currentColor, currentColor) 9px 5px / 3px 5px no-repeat;
}

.join-league-roi.positive::before {
    background:
        linear-gradient(currentColor, currentColor) 1px 7px / 3px 3px no-repeat,
        linear-gradient(currentColor, currentColor) 5px 4px / 3px 6px no-repeat,
        linear-gradient(currentColor, currentColor) 9px 1px / 3px 9px no-repeat;
}

.join-league-roi.negative::before {
    background:
        linear-gradient(currentColor, currentColor) 1px 1px / 3px 9px no-repeat,
        linear-gradient(currentColor, currentColor) 5px 4px / 3px 6px no-repeat,
        linear-gradient(currentColor, currentColor) 9px 7px / 3px 3px no-repeat;
}

.join-posture-grid {
    gap: 8px;
}

.join-control-label {
    display: block;
    align-self: end;
    margin-bottom: 3px;
}

.join-panel > .join-control-label {
    grid-column: 2;
}

.join-posture-menu {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.join-posture-menu .desk-posture-trigger {
    width: 100%;
    height: 38px;
    min-height: 38px;
    padding-inline: 12px;
}

.join-posture-options {
    right: 0;
    width: 100%;
}

.join-posture-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 48px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.58);
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.join-posture-step:hover,
.join-posture-step:focus-within {
    border-color: rgba(var(--league-accent-rgb), 0.3);
    color: rgba(255, 255, 255, 0.88);
}

.join-posture-step.is-selected {
    border-color: rgba(var(--league-accent-rgb), 0.46);
    background:
        linear-gradient(180deg, rgba(var(--league-accent-rgb), 0.18), rgba(var(--league-accent-rgb), 0.055)),
        rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(var(--league-accent-rgb), 0.14);
    color: #ffffff;
}

.join-posture-dot {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(var(--league-accent-rgb), 0.96);
    font-family: var(--metric-font-family);
    font-size: 0.56rem;
    line-height: 1;
}

.join-posture-short {
    display: none;
    overflow: hidden;
    min-width: 0;
    color: inherit;
    font-size: 0.6rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.join-terms-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 7px 10px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.join-terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: rgb(var(--league-accent-rgb));
}

.join-terms-check span {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.065em;
    line-height: 1.25;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: normal;
}

.join-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(var(--league-accent-rgb), 0.58);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(var(--league-accent-rgb), 0.26), rgba(var(--league-accent-rgb), 0.11)),
        #07130e;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 0.68rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.join-submit-button:hover,
.join-submit-button:focus-visible {
    border-color: rgba(var(--league-accent-rgb), 0.78);
    outline: none;
    transform: translateY(-1px);
}

.join-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.join-submit-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.join-preview {
    position: static;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    width: calc(100% - 42px);
    margin-left: 42px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(18, 26, 38, 0.88), rgba(3, 7, 18, 0.96)),
        #05080c;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 14px 34px rgba(0, 0, 0, 0.28);
}

.join-preview[aria-hidden="true"] {
    display: none;
}

.join-preview-avatar {
    position: relative;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(var(--league-accent-rgb), 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    box-shadow:
        inset 0 0 0 4px rgba(2, 6, 23, 0.92),
        0 18px 34px rgba(0, 0, 0, 0.36);
}

.join-preview-avatar::after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow:
        0 0 0 3px #020617,
        0 0 14px rgba(34, 197, 94, 0.78);
}

.join-preview-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    transform: translateY(1%);
}

.join-preview-copy {
    display: grid;
    grid-template-columns: minmax(88px, 0.38fr) minmax(0, 1fr);
    grid-template-areas:
        "name stats"
        "email stats";
    column-gap: 12px;
    row-gap: 3px;
    align-self: center;
    align-items: center;
    justify-items: stretch;
    min-width: 0;
}

.join-preview-copy strong {
    grid-area: name;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.1;
}

.join-preview-email {
    grid-area: email;
    overflow: hidden;
    overflow-wrap: anywhere;
    justify-self: start;
    color: rgba(226, 232, 240, 0.58);
    font-size: 0.55rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.join-preview-quickstats {
    grid-area: stats;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    margin: 0;
}

.join-preview-quickstats div {
    min-width: 0;
    padding: 7px 8px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 7px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.025);
}

.join-preview-quickstats dt {
    overflow: hidden;
    color: rgba(var(--league-accent-rgb), 0.72);
    font-size: 0.42rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.09em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.join-preview-quickstats dd {
    overflow: hidden;
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.join-result-kicker {
    color: rgba(var(--league-accent-rgb), 0.82);
    font-size: 0.58rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .join-board {
        grid-template-columns: 1fr;
        grid-template-areas:
            "identity"
            "funding"
            "leagues"
            "posture"
            "terms";
    }

    .join-leagues-panel {
        padding-left: 0;
        border-left: 0;
    }

    .join-terms-panel {
        grid-template-columns: 42px minmax(0, 1fr);
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 980px) {
    .join-top-header {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand";
        justify-items: center;
        padding-left: 0;
        row-gap: 0;
    }

    .join-shell,
    .join-shell.has-identity {
        grid-template-columns: 1fr;
    }

    .join-preview {
        position: static;
        order: -1;
    }
}

@media (max-width: 720px) {
    .join-container {
        padding-inline: 12px;
    }

    .join-board {
        padding: 0;
    }

    .join-panel,
    .join-terms-panel {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 8px 8px;
        padding: 7px 0;
    }

    .join-panel-heading,
    .join-leagues-panel .join-panel-heading,
    .join-terms-panel .join-panel-heading {
        grid-column: 1;
    }

    .join-social-grid,
    .join-identity-grid,
    .join-payment-grid,
    .join-league-grid,
    .join-posture-grid,
    .join-bankroll-field,
    .join-terms-check,
    .join-submit-button {
        grid-column: 2;
    }

    .join-panel-heading {
        grid-row: auto;
    }

    .join-social-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .join-payment-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .join-league-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .join-social-button {
        min-height: 34px;
    }

    .join-payment-button {
        min-height: 38px;
    }

    .join-league-option {
        align-items: center;
        min-height: 94px;
        padding: 12px 4px;
    }

    .join-league-primary {
        gap: 5px;
    }

    .join-league-text {
        font-size: 0.78rem;
    }

    .join-field input,
    .join-posture-menu .desk-posture-trigger,
    .join-submit-button {
        min-height: 42px;
    }

    .join-terms-check {
        min-height: 36px;
        padding: 6px 8px;
    }

    .join-posture-scale {
        grid-template-columns: repeat(5, minmax(42px, 1fr));
    }

    .join-posture-step {
        gap: 0;
        padding-inline: 4px;
    }

    .join-posture-short {
        display: none;
    }

    .join-terms-check span {
        white-space: normal;
    }

    .join-preview {
        width: calc(100% - 36px);
        margin-left: 36px;
    }
}
