:root {
    --ink: #161616;
    --muted: #6c6c6c;
    --line: #e6e6e6;
    --accent: #ff6b2c;
    --accent2: #ff8b56;
    --accent-text: #c9470e;
    --warm: #fff3ed;
    --soft: #f8f8f8;
    --green: #18a969;
    --shadow: 0 18px 55px rgba(0, 0, 0, .09);
    --radius: 20px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

button {
    font: inherit
}

.wrap {
    width: min(1200px, calc(100% - 36px));
    margin: auto
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto
}

.skip:focus {
    left: 12px;
    top: 12px;
    z-index: 1000;
    background: #111;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.header-row {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    flex: 0 0 auto
}

.logo {
    width: 178px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto
}

.nav-item {
    position: relative
}

.nav-link,
.nav-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 28px 11px;
    font-size: 13px;
    font-weight: 800;
    border: 0;
    background: transparent;
    cursor: pointer
}

.nav-link:hover,
.nav-button:hover,
.nav-item.active>.nav-link,
.nav-item.active>.nav-button {
    color: var(--accent-text)
}

.chev {
    font-size: 10px
}

.nav-logout-form {
    display: flex;
    margin: 0
}

.nav-logout-btn {
    font: inherit;
    color: inherit
}

.account-link {
    white-space: nowrap
}

.dropdown {
    position: absolute;
    left: 0;
    top: calc(100% - 7px);
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    border-radius: 14px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease
}

.dropdown.wide {
    width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px
}

.nav-item:hover>.dropdown,
.nav-item:focus-within>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
}

.dropdown a {
    display: block;
    padding: 9px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #3f3f3f
}

.dropdown a:hover {
    background: var(--warm);
    color: var(--accent)
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 9px;
    width: 42px;
    height: 42px;
    font-size: 23px
}

.utility-strip {
    background: #111;
    color: #fff
}

.utility-strip .wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
    white-space: nowrap
}

.utility-strip a {
    color: #ddd
}

.utility-strip a:hover {
    color: #fff
}

.hero {
    padding: 62px 0 44px;
    background: linear-gradient(180deg, #fff 0, #fff 57%, #fafafa 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 54px;
    align-items: center
}

.eyebrow {
    color: var(--accent-text);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase
}

.hero h1,
.page-hero h1 {
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
    margin: 12px 0 20px
}

.hero .lead,
.page-hero .lead {
    font-size: 19px;
    color: #555;
    max-width: 700px
}

.rebuild-note {
    background: var(--warm);
    border-left: 4px solid var(--accent);
    padding: 17px 19px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    color: #444
}

.rebuild-note strong {
    color: #111
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 900;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease
}

/* Colour variants: .btn.primary/.btn.secondary are the original two and stay as
   they were. .v1-.v5 are the same reusable set under short numbered names, for
   picking a button colour without needing a semantic label - v1/v3 are just
   aliases of primary/secondary, v2/v4/v5 add dark, danger and ghost/outline. */
.btn.primary,
.btn.v1 {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent2))
}
.btn.v1:hover {
    filter: brightness(1.05)
}
.btn.v1:active {
    filter: brightness(.94)
}
.btn.v1:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 44, .24)
}

.btn.secondary,
.btn.v3 {
    background: #fff;
    color: #222;
    border: 1px solid #bbb
}

.btn.v2 {
    color: #fff;
    background: linear-gradient(135deg, #262626, #101010);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28)
}

.btn.v4 {
    color: #fff;
    background: linear-gradient(135deg, #e13c3c, #c22323);
    box-shadow: 0 8px 22px rgba(210, 40, 40, .25)
}

.btn.v5 {
    color: var(--accent-text);
    background: transparent;
    border: 1.5px solid var(--accent);
}
.btn.v5:hover {
    background: var(--warm);
}

.btn:hover {
    transform: translateY(-1px)
}

.hero-collage {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    grid-template-rows: 220px 220px;
    gap: 10px
}

.hero-collage picture:first-child {
    grid-row: 1/3
}

.hero-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.page-hero {
    padding: 24px 0 38px;
    background: linear-gradient(140deg, #fff 58%, #fff2eb)
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 44px;
    align-items: center
}

.page-image {
    position: relative
}

.page-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: #fff;
    backdrop-filter: blur(5px);
    border-radius: 13px;
    padding: 12px 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    max-width: 300px
}

.badge b {
    display: block
}

.badge span {
    display: block;
    color: #666;
    font-size: 13px
}

.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 19px 0
}

.trust-item {
    display: flex;
    gap: 10px;
    align-items: center
}

.ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--warm);
    color: var(--accent);
    font-weight: 900
}

.trust-item b {
    display: block;
    font-size: 14px
}

.trust-item span {
    display: block;
    color: #777;
    font-size: 12px
}

.section {
    padding: 70px 0
}

.section.soft {
    background: var(--soft)
}

.section-head {
    max-width: 800px;
    margin-bottom: 30px
}

.section h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 8px 0 12px
}

.section h3 {
    line-height: 1.2
}

.section p {
    color: #626262
}

.service-cards,
.topic-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-card,
.topic,
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04)
}

.service-card .kicker,
.topic .kicker {
    font-size: 12px;
    font-weight: 900;
    color: var(--accent-text);
    letter-spacing: .08em
}

.service-card h3,
.topic h3,
.info-card h3 {
    font-size: 22px;
    margin: 8px 0
}

.service-card a,
.topic a {
    color: var(--accent-text);
    font-weight: 900
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch
}

.feature-copy {
    border-radius: 20px;
    background: #151515;
    color: #fff;
    padding: 38px
}

.feature-copy p {
    color: #d2d2d2
}

.feature-photo img {
    height: 100%;
    min-height: 410px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px
}

.bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.bullets li {
    position: relative;
    padding: 8px 0 8px 28px
}

.bullets li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900
}

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

.category-link {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    font-weight: 800
}

.category-link small {
    display: block;
    color: #666;
    font-weight: 500;
    margin-top: 3px
}

.category-link:hover {
    border-color: var(--accent);
    color: var(--accent-text)
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 17px 0
}

.faq summary {
    font-weight: 900;
    cursor: pointer
}

.faq p {
    margin-bottom: 0
}

.breadcrumb {
    padding: 14px 0;
    font-size: 12px;
    color: #666
}

.breadcrumb a {
    color: #555
}

.breadcrumb span {
    margin: 0 6px
}

.legal-page {
    max-width: 880px
}

.legal-page h1 {
    font-size: 48px;
    line-height: 1.05
}

.legal-page h2 {
    margin-top: 36px
}

.legal-placeholder {
    padding: 22px;
    border: 1px solid #f0c6b4;
    background: #fff8f5;
    border-radius: 14px
}

footer {
    background: #111;
    color: #fff;
    padding: 52px 0 26px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 30px
}

.footer-logo {
    width: 160px;
    filter: brightness(0) invert(1)
}

footer p {
    color: #aaa;
    font-size: 14px
}

footer h2,
footer h3,
footer h4 {
    margin: 0 0 12px
}

footer h2.footer-subhead {
    margin-top: 20px
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none
}

footer li {
    margin: 7px 0
}

footer a {
    color: #d4d4d4;
    font-size: 13px
}

footer a:hover {
    color: #fff
}

.footer-legal {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 18px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #888;
    font-size: 12px
}

@media(max-width:1040px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 10px 18px 18px;
        max-height: calc(100vh - 82px);
        overflow: auto
    }

    .main-nav.open {
        display: block
    }

    .nav-item {
        border-bottom: 1px solid #eee
    }

    .nav-link,
    .nav-button {
        width: 100%;
        justify-content: space-between;
        padding: 14px 6px
    }

    .dropdown,
    .dropdown.wide {
        position: static;
        width: auto;
        min-width: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0 0 8px 12px;
        background: #fafafa;
        grid-template-columns: 1fr
    }

    .nav-item.open>.dropdown {
        display: block
    }

    .mobile-toggle {
        display: block
    }

    .hero-grid,
    .page-grid,
    .feature-split {
        grid-template-columns: 1fr
    }

    .hero-collage {
        order: -1
    }

    .page-image {
        order: -1
    }

    .page-image img {
        height: 420px
    }

    .trust-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-cards,
    .topic-grid,
    .info-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .category-list {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr
    }

    .utility-strip {
        display: none
    }
}

@media(max-width:650px) {
    .wrap {
        width: min(100% - 22px, 1200px)
    }

    .header-row {
        height: 68px
    }

    .logo {
        width: 142px
    }

    .main-nav {
        top: 68px;
        max-height: calc(100vh - 68px)
    }

    .hero,
    .page-hero {
        padding-top: 28px
    }

    .hero h1,
    .page-hero h1 {
        font-size: 44px
    }

    .hero .lead,
    .page-hero .lead {
        font-size: 17px
    }

    .hero-collage {
        grid-template-rows: 160px 160px
    }

    .page-image img {
        height: 350px
    }

    .trust-row,
    .service-cards,
    .topic-grid,
    .info-grid,
    .category-list,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 52px 0
    }

    .feature-copy {
        padding: 28px
    }

    .feature-photo img {
        min-height: 320px
    }

    .footer-legal {
        display: block
    }

    .footer-legal span {
        display: block;
        margin: 6px 0
    }
}

/* Visitor-facing content + legal document readability */
.legal-page {
    max-width: 980px
}

.legal-page h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1.25rem
}

.legal-page h2 {
    font-size: 1.55rem;
    margin-top: 2.25rem;
    margin-bottom: .8rem
}

.legal-page h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem
}

.legal-page p,
.legal-page li {
    line-height: 1.75
}

.legal-page ul,
.legal-page ol {
    padding-left: 1.35rem;
    margin: .8rem 0 1.3rem
}

.legal-page a {
    overflow-wrap: anywhere
}

.legal-page blockquote {
    border-left: 4px solid var(--orange);
    padding-left: 1rem;
    margin-left: 0
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 20px 0
}

.platform-terms h2 {
    margin-top: 2.5rem
}

.platform-terms ol {
    list-style: none;
    padding-left: 1.5rem;
    margin: .8rem 0 1.3rem
}

.platform-terms .clause-num {
    font-weight: 700;
    margin-right: .25rem
}

.legal-table {
    width: 100%;
    border-collapse: collapse
}

.legal-table th,
.legal-table td {
    border: 1px solid #ddd;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top
}

.legal-table th {
    background: #f7f7f7;
    font-weight: 900
}

.rebuild-note {
    font-size: 1.02rem
}

.utility-strip {
    position: relative;
    z-index: 20
}

/* Xpanded live phone-line panels */
.phone-lines {
    padding: 46px 0 52px;
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden
}

.phone-lines:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -180px;
    top: -250px;
    background: radial-gradient(circle, rgba(255,107,44,.27), rgba(255,107,44,0) 68%);
    pointer-events: none
}

.phone-lines .wrap { position: relative }

.phone-lines-head {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    column-gap: 34px;
    align-items: end;
    margin-bottom: 24px
}

.phone-lines-head .live-pill { grid-column: 1 / -1 }
.phone-lines-head h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -.04em;
    margin: 12px 0 0
}
.phone-lines-head p {
    color: #cfcfcf;
    margin: 0;
    max-width: 670px
}

.live-pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #41e38f;
    box-shadow: 0 0 0 5px rgba(65,227,143,.12)
}

.phone-show-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}
.phone-show {
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.12)
}
.phone-show.daytime {
    background: linear-gradient(145deg, #ff6b2c, #ff8b56);
    color: #fff
}
.phone-show.nightshow {
    background: linear-gradient(145deg, #1d1d1d, #080808);
    box-shadow: inset 0 0 0 1px rgba(255,107,44,.18)
}
.show-kicker {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    opacity: .82;
    margin-bottom: 14px
}
.phone-primary {
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: 19px;
    margin-bottom: 15px
}
.phone-primary span,
.phone-options span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .74
}
.phone-primary a {
    display: block;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 950;
    margin: 5px 0 7px
}
.phone-primary small,
.phone-options small {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    opacity: .86
}
.phone-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px
}
.phone-options > div {
    min-width: 0;
    border-radius: 12px;
    padding: 13px;
    background: rgba(255,255,255,.09)
}
.daytime .phone-options > div { background: rgba(0,0,0,.1) }
.phone-options strong,
.phone-options a {
    display: block;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 950;
    margin: 4px 0 6px;
    overflow-wrap: anywhere
}
.phone-options .vip {
    border: 1px solid rgba(255,107,44,.44)
}
.phone-lines-note {
    color: #a9a9a9;
    font-size: 12px;
    margin: 16px 0 0
}

@media(max-width:800px) {
    .phone-lines-head { grid-template-columns: 1fr; gap: 12px }
    .phone-show-grid { grid-template-columns: 1fr }
}
@media(max-width:500px) {
    .phone-lines { padding: 34px 0 38px }
    .phone-show { padding: 19px }
    .phone-options { grid-template-columns: 1fr 1fr }
    .phone-primary a { font-size: 31px }
    .phone-options strong, .phone-options a { font-size: 19px }
}

/* TV pages: integrate live calling into the second hero card */
.page-grid > .tv-hero-phone {
    align-self: stretch;
}
.tv-hero-card {
    display: grid;
    gap: 14px;
    align-self: stretch;
}
.tv-hero-visual {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #171717;
}
.tv-hero-visual img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.tv-hero-visual .badge {
    max-width: 260px;
}

.video-play-image-holder {
    cursor: pointer;
}
.video-play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 12, 13, .55);
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}
.video-play-button[hidden] {
    display: none;
}
.video-play-button:hover,
.video-play-button:focus-visible {
    background: rgba(255, 107, 44, .85);
    transform: scale(1.06);
}
.video-play-button svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    fill: currentColor;
}
.video-play-button.verify-age {
    width: 210px;
    height: 54px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.video-play-button.verify-age:hover,
.video-play-button.verify-age:focus-visible {
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    transform: scale(1.04);
}
.tv-hero-visual .video-js {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.tv-hero-phone {
    padding: 22px;
    border-radius: 22px;
    background: #111;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 0;
}
.tv-hero-phone:before {
    width: 300px;
    height: 300px;
    right: -150px;
    top: -175px;
}
.tv-hero-phone .phone-lines-head {
    display: block;
    margin-bottom: 15px;
}
.tv-hero-phone .phone-lines-head .live-pill {
    margin-bottom: 8px;
}
.tv-hero-phone .phone-lines-head h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin: 5px 0 7px;
}
.tv-hero-phone .phone-lines-head p {
    font-size: 13px;
    line-height: 1.45;
}
.tv-hero-phone .phone-show-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}
.tv-hero-phone .phone-show {
    padding: 15px 16px;
    border-radius: 16px;
}
.tv-hero-phone .show-kicker {
    margin-bottom: 7px;
    font-size: 10px;
}
.tv-hero-phone .phone-primary {
    padding-bottom: 10px;
    margin-bottom: 9px;
}
.tv-hero-phone .phone-primary a {
    font-size: clamp(25px, 2.8vw, 34px);
    margin: 2px 0 4px;
}
.tv-hero-phone .phone-primary small,
.tv-hero-phone .phone-options small {
    font-size: 10px;
    line-height: 1.25;
}
.tv-hero-phone .phone-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}
.tv-hero-phone .phone-options > div {
    padding: 8px 9px;
    border-radius: 9px;
}
.tv-hero-phone .phone-options span {
    font-size: 9px;
}
.tv-hero-phone .phone-options strong,
.tv-hero-phone .phone-options a {
    font-size: 16px;
    margin: 2px 0 3px;
}
.tv-hero-phone .phone-lines-note {
    font-size: 10px;
    line-height: 1.35;
    margin: 10px 1px 0;
}
@media(max-width:800px) {
    .tv-hero-phone { padding: 20px; }
    .tv-hero-phone .phone-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media(max-width:800px) {
    .tv-hero-card { gap: 12px; }
    .tv-hero-visual img { height: 260px; }
}
@media(max-width:500px) {
    .tv-hero-visual img { height: 220px; }
}


/* Refined TV landing-page hero: compact, top-aligned and image-first */
.tv-page-hero {
    padding: 28px 0 34px;
    background: linear-gradient(135deg, #fff 0%, #fff 72%, #fff6f1 100%);
}
.tv-page-hero .page-grid {
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    gap: clamp(30px, 4vw, 58px);
    align-items: start;
}
.tv-page-hero .page-grid > div:first-child {
    padding-top: clamp(18px, 3vw, 46px);
    max-width: 650px;
}
.tv-page-hero h1 {
    font-size: clamp(52px, 5.25vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
    margin: 14px 0 22px;
}
.tv-page-hero .lead {
    max-width: 640px;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.55;
}
.tv-page-hero .rebuild-note {
    max-width: 620px;
}

.tv-hero-card {
    gap: 12px;
    align-self: start;
}
.tv-hero-visual {
    min-height: 0;
    height: clamp(300px, 25vw, 390px);
    isolation: isolate;
    background: #1b1718;
}
.tv-hero-visual::before {
    content: "";
    position: absolute;
    inset: -24px;
    background-image: var(--tv-image);
    background-size: cover;
    background-position: center;
    filter: blur(28px) saturate(.85);
    opacity: .42;
    transform: scale(1.08);
    z-index: -2;
}
.tv-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,12,13,.18), rgba(15,12,13,.03));
    z-index: -1;
}
.tv-hero-visual picture {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.tv-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,.18));
}
.tv-hero-visual .badge {
    left: 16px;
    bottom: 16px;
    max-width: min(290px, calc(100% - 32px));
    padding: 11px 13px;
}

/* Make the phone area read as the lower half of the same card instead of a tall second page */
.tv-hero-phone {
    padding: 17px 18px 15px;
    border-radius: 20px;
}
.tv-hero-phone .phone-lines-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 14px;
    align-items: center;
    margin-bottom: 12px;
}
.tv-hero-phone .phone-lines-head .live-pill {
    grid-column: 1 / -1;
    margin: 0 0 2px;
}
.tv-hero-phone .phone-lines-head h2 {
    font-size: clamp(27px, 2.4vw, 35px);
    margin: 0;
    white-space: nowrap;
}
.tv-hero-phone .phone-lines-head p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}
.tv-hero-phone .phone-show-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}
.tv-hero-phone .phone-show {
    padding: 13px;
    border-radius: 14px;
}
.tv-hero-phone .show-kicker {
    margin-bottom: 5px;
}
.tv-hero-phone .phone-primary {
    padding-bottom: 8px;
    margin-bottom: 7px;
}
.tv-hero-phone .phone-primary a {
    font-size: clamp(22px, 2vw, 29px);
    white-space: nowrap;
}
.tv-hero-phone .phone-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}
.tv-hero-phone .phone-options > div {
    padding: 7px;
}
.tv-hero-phone .phone-options strong,
.tv-hero-phone .phone-options a {
    font-size: 14px;
}
.tv-hero-phone .phone-lines-note {
    margin-top: 8px;
}

@media(max-width:1180px) {
    .tv-page-hero .page-grid {
        grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
        gap: 28px;
    }
    .tv-page-hero h1 { font-size: clamp(48px, 5.4vw, 66px); }
    .tv-hero-phone .phone-lines-head { grid-template-columns: 1fr; }
    .tv-hero-phone .phone-lines-head h2 { white-space: normal; }
}
@media(max-width:1040px) {
    .tv-page-hero .page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .tv-page-hero .page-grid > div:first-child {
        padding-top: 0;
        max-width: 780px;
    }
    .tv-hero-card { order: -1; }
    .tv-hero-visual { height: clamp(300px, 55vw, 470px); }
}
@media(max-width:700px) {
    .tv-page-hero { padding-top: 16px; }
    .tv-page-hero h1 { font-size: clamp(42px, 12vw, 58px); }
    .tv-hero-visual { height: 330px; }
    .tv-hero-phone .phone-show-grid { grid-template-columns: 1fr; }
    .tv-hero-phone .phone-primary a { font-size: 27px; }
}
@media(max-width:480px) {
    .tv-hero-visual { height: 285px; }
}

/* Lighthouse/WCAG contrast fixes for trust strip */
.trust-item > .ico {
    display: grid;
    place-items: center;
    color: #7a2600;
    background: #fff0e8;
}
.trust-item > div > span {
    color: #555;
}

/* WCAG AA: retain orange daytime panel while using high-contrast dark type */
.phone-show.daytime { color: #171717; }
.phone-show.daytime .show-kicker,
.phone-show.daytime .phone-primary span,
.phone-show.daytime .phone-options span,
.phone-show.daytime .phone-primary small,
.phone-show.daytime .phone-options small {
    color: #202020;
    opacity: 1;
}

/* Accent text on dark feature cards needs the lighter brand orange for AA contrast */
.feature-copy .eyebrow { color: #ff9a70; }

/* Preserve the Xpanded logo's intrinsic 226:32 aspect ratio at every responsive width. */
.logo,
.footer-logo {
    height: auto;
    aspect-ratio: 226 / 32;
}


/* Phone Sex Chat SEO content */
.phone-seo-hero .page-grid { align-items: center; }
.phone-seo-hero .lead { max-width: 760px; }
.seo-footer-copy {
    padding: 72px 0 76px;
    background: linear-gradient(145deg,#151515 0%,#1b1b1b 58%,#2b1810 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.seo-footer-copy:before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -260px;
    top: -260px;
    background: radial-gradient(circle,rgba(255,107,44,.20),rgba(255,107,44,0) 70%);
    pointer-events: none;
}
.seo-footer-copy .wrap { position: relative; }
.seo-copy-heading { max-width: 860px; margin-bottom: 18px; }
.seo-copy-heading h2 { font-size: clamp(30px,3.5vw,46px); line-height: 1.05; margin: 6px 0 8px; letter-spacing: -.035em; }
.seo-copy-heading p { color: #c8c8c8; font-size: 16px; margin: 0; }
.seo-footer-copy .eyebrow { color: #ff8d5c; }
.seo-copy-layout { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; align-items: stretch; }
.seo-copy-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 20px 22px; }
.seo-copy-card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.2; }
.seo-copy-card p { color: #d4d4d4; line-height: 1.58; margin: 0 0 10px; font-size: 15px; }
.seo-copy-card p:last-child { margin-bottom: 0; }
.seo-copy-lead { grid-row: auto; }
.seo-copy-wide { grid-column: auto; display: block; }
.seo-copy-wide h3 { margin-top: 0; }
@media(max-width:800px) {
    .seo-footer-copy { padding: 40px 0 44px; }
    .seo-copy-layout { grid-template-columns: 1fr; }
    .seo-copy-lead { grid-row: auto; }
    .seo-copy-wide { grid-column: auto; grid-template-columns: 1fr; gap: 0; }
}
@media(max-width:500px) {
    .seo-copy-card { padding: 18px; }
    .seo-copy-heading h2 { font-size: 32px; }
}

/* Expanded semantic SEO copy for specialist phone chat pages */
.expanded-seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}
.expanded-seo-grid .seo-copy-card {
    height: 100%;
}
@media(max-width:760px) {
    .expanded-seo-grid { grid-template-columns: 1fr; }
}

/* Live Cam SEO conversion pages */
.cam-seo-hero .page-grid{align-items:start}.cam-coming-soon{border-left:4px solid var(--accent);background:#fff7f2;padding:16px 18px;border-radius:12px;margin:18px 0;color:#333}.cam-coming-soon strong{color:var(--accent);display:inline}.cam-seo-copy{padding:52px 0;background:#141414;color:#fff}.cam-seo-copy .seo-footer-head{max-width:920px;margin-bottom:22px}.cam-seo-copy .seo-footer-head h2{font-size:clamp(30px,4vw,48px);line-height:1.08;margin:8px 0 10px}.cam-seo-copy .seo-footer-head p{color:#d3d3d3;margin:0;line-height:1.6}.cam-seo-copy .seo-copy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.cam-seo-copy .seo-copy-card{background:#202020;border:1px solid #343434;border-radius:16px;padding:20px}.cam-seo-copy .seo-copy-card h3{font-size:21px;margin:0 0 8px;color:#fff}.cam-seo-copy .seo-copy-card p{margin:0;color:#d0d0d0;line-height:1.58}.cam-topic-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}.cam-topic-chips span{font-size:12px;font-weight:800;background:#2a2a2a;border:1px solid #404040;border-radius:999px;padding:7px 10px;color:#eee}.cam-story .feature-copy h2{font-size:clamp(30px,4vw,44px)}@media(max-width:760px){.cam-seo-copy{padding:40px 0}.cam-seo-copy .seo-copy-grid{grid-template-columns:1fr}.cam-seo-copy .seo-copy-card{padding:18px}.cam-topic-chips{display:none}}

/* TV SEO and viewing information */
.tv-watch-now{border-left:4px solid var(--accent);background:#fff6f1;padding:16px 18px;border-radius:12px;margin:18px 0;color:#292929;line-height:1.55}.tv-watch-now strong{color:#9c2d00}.tv-seo-copy{padding:48px 0;background:#141414;color:#fff}.tv-seo-copy .seo-footer-head{max-width:900px;margin-bottom:20px}.tv-seo-copy .seo-footer-head h2{font-size:clamp(30px,4vw,46px);line-height:1.08;margin:8px 0 10px}.tv-seo-copy .seo-footer-head p{color:#d2d2d2;margin:0;line-height:1.58}.tv-seo-copy .seo-copy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.tv-seo-copy .seo-copy-card{background:#202020;border:1px solid #343434;border-radius:16px;padding:19px 20px}.tv-seo-copy .seo-copy-card h3{font-size:20px;line-height:1.25;margin:0 0 7px}.tv-seo-copy .seo-copy-card p{margin:0;color:#d1d1d1;line-height:1.56;font-size:15px}@media(max-width:760px){.tv-seo-copy{padding:38px 0}.tv-seo-copy .seo-copy-grid{grid-template-columns:1fr}.tv-seo-copy .seo-copy-card{padding:17px}}

/* Fan Pages SEO cluster */
.fan-seo-copy{padding:48px 0;background:#141414;color:#fff}.fan-seo-copy .seo-footer-head{max-width:900px;margin-bottom:20px}.fan-seo-copy .seo-footer-head h2{font-size:clamp(30px,4vw,46px);line-height:1.08;margin:8px 0 10px}.fan-seo-copy .seo-footer-head p{color:#d2d2d2;margin:0;line-height:1.58}.fan-seo-copy .seo-copy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.fan-seo-copy .seo-copy-card{background:#202020;border:1px solid #343434;border-radius:16px;padding:19px 20px}.fan-seo-copy .seo-copy-card h3{font-size:20px;line-height:1.25;margin:0 0 7px;color:#fff}.fan-seo-copy .seo-copy-card p{margin:0;color:#d1d1d1;line-height:1.56;font-size:15px}@media(max-width:760px){.fan-seo-copy{padding:38px 0}.fan-seo-copy .seo-copy-grid{grid-template-columns:1fr}.fan-seo-copy .seo-copy-card{padding:17px}}

/* Homepage service status + SEO hub */
.home-live-note{margin:20px 0;padding:15px 17px;border-radius:14px;background:#fff6f1;border:1px solid #f0c6b4;color:#333;line-height:1.55}.home-live-note span{display:block;margin-top:4px}.home-status{padding:28px 0 52px;background:#fff}.home-status-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.status-card{border:1px solid var(--line);border-radius:18px;padding:21px;background:#fff;box-shadow:0 8px 28px rgba(0,0,0,.04)}.status-card.live{border-top:4px solid #1c7d4b}.status-card.soon{border-top:4px solid var(--accent)}.status-card h2{font-size:23px;line-height:1.15;margin:10px 0 9px}.status-card p{color:#5c5c5c;line-height:1.55;margin:0 0 9px}.status-card .status-small{font-size:13px;color:#707070}.status-card a{font-weight:900;color:var(--accent)}.status-pill{font-size:10px;font-weight:950;letter-spacing:.12em;border-radius:999px;padding:6px 9px;background:#f1f1f1}.status-card.live .status-pill{background:#e9f7ef;color:#126238}.status-card.soon .status-pill{background:#fff0e9;color:#9c2d00}.home-service-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.home-service-card{border:1px solid var(--line);border-radius:18px;padding:25px;background:#fff}.home-service-card .kicker{font-size:11px;font-weight:950;letter-spacing:.12em;color:var(--accent)}.home-service-card h3{font-size:25px;line-height:1.18;margin:7px 0 10px}.home-service-card p{color:#5c5c5c;line-height:1.62}.home-service-card a{font-weight:900;color:var(--accent)}.home-seo-copy{padding:52px 0;background:#141414;color:#fff}.home-seo-copy .seo-footer-head{max-width:940px;margin-bottom:22px}.home-seo-copy .seo-footer-head h2{font-size:clamp(31px,4vw,48px);line-height:1.08;margin:8px 0 10px}.home-seo-copy .seo-footer-head p{color:#d2d2d2;line-height:1.6}.home-seo-copy .seo-copy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.home-seo-copy .seo-copy-card{background:#202020;border:1px solid #343434;border-radius:16px;padding:20px 21px}.home-seo-copy .seo-copy-card h3{font-size:21px;line-height:1.25;margin:0 0 8px;color:#fff}.home-seo-copy .seo-copy-card p{margin:0 0 10px;color:#d1d1d1;line-height:1.58;font-size:15px}.home-seo-copy .seo-copy-card p:last-child{margin-bottom:0}@media(max-width:980px){.home-status-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:700px){.home-status{padding:22px 0 40px}.home-status-grid,.home-service-grid,.home-seo-copy .seo-copy-grid{grid-template-columns:1fr}.status-card,.home-service-card{padding:18px}.home-seo-copy{padding:40px 0}}


/* 2026 full-frame model photography refresh */
.hero-collage picture,
.page-image picture,
.feature-photo picture,
.tv-hero-visual picture,
.editorial-photo-wide picture {
    display:flex;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:center;
    background:linear-gradient(145deg,#161616,#2a2220);
    overflow:hidden;
    border-radius:inherit;
}
.hero-collage img.xp-photo {
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#171717;
}
.page-image {
    min-height:480px;
    border-radius:22px;
    overflow:hidden;
    background:linear-gradient(145deg,#171717,#2a2220);
    box-shadow:var(--shadow);
}
.page-image img.xp-photo {
    width:100%;
    height:480px;
    object-fit:contain;
    object-position:center;
    border-radius:22px;
    box-shadow:none;
    background:#171717;
}
.feature-photo {
    border-radius:20px;
    overflow:hidden;
    background:linear-gradient(145deg,#171717,#2a2220);
    display:flex;
    align-items:center;
    justify-content:center;
}
.feature-photo img.xp-photo {
    width:100%;
    height:100%;
    min-height:410px;
    max-height:560px;
    object-fit:contain;
    object-position:center;
    background:#171717;
}
.tv-hero-visual img.xp-photo {
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
}
.editorial-visual-section {
    padding:28px 0 34px;
}
.editorial-photo-wide {
    margin:0;
    height:clamp(320px,48vw,560px);
    border-radius:22px;
    overflow:hidden;
    background:linear-gradient(145deg,#151515,#332621);
    box-shadow:var(--shadow);
}
.editorial-photo-wide img {
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
}
@media(max-width:650px){
    .page-image{min-height:350px}
    .page-image img.xp-photo{height:350px}
    .editorial-photo-wide{height:430px}
}


/* 2026 responsive image presentation refresh */
.hero-collage picture,
.page-image picture,
.feature-photo picture,
.tv-hero-visual picture,
.editorial-photo-wide picture {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.page-image,
.feature-photo,
.editorial-photo-wide,
.tv-hero-visual {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}
.page-image,
.feature-photo,
.editorial-photo-wide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-image {
    min-height: 0 !important;
}
.page-image img.xp-photo,
.feature-photo img.xp-photo,
.tv-hero-visual img.xp-photo,
.editorial-photo-wide img {
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    max-height: clamp(360px, 62vw, 620px);
    object-fit: contain !important;
    object-position: center top !important;
    margin-inline: auto;
    background: transparent !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    border-radius: 22px;
}
.hero-collage img.xp-photo {
    background: transparent !important;
    box-shadow: var(--shadow);
}
.editorial-photo-wide {
    height: auto !important;
    min-height: 0 !important;
}
.editorial-photo-wide img {
    max-height: clamp(300px, 50vw, 560px);
}
.page-image .badge,
.tv-hero-visual .badge {
    z-index: 2;
}
@media(max-width:650px){
    .page-image img.xp-photo,
    .feature-photo img.xp-photo,
    .tv-hero-visual img.xp-photo,
    .editorial-photo-wide img {
        max-height: 460px;
    }
}


/* Homepage primary brand spotlight */
.hero-collage.hero-spotlight {
    display:block;
}
.hero-spotlight-frame {
    position:relative;
    padding:16px;
    border-radius:30px;
    background: radial-gradient(circle at top left, rgba(255,255,255,.98), rgba(255,243,238,.96) 46%, rgba(255,229,220,.95));
    box-shadow: 0 28px 60px rgba(0,0,0,.16);
}
.hero-spotlight-frame::before {
    content:"";
    position:absolute;
    inset:-14px 36px auto -14px;
    height:58%;
    border-radius:28px;
    background: linear-gradient(135deg, rgba(179,16,28,.18), rgba(255,107,44,.04));
    z-index:0;
}
.hero-spotlight-frame::after {
    content:"";
    position:absolute;
    right:-12px;
    bottom:-12px;
    width:140px;
    height:140px;
    border-radius:24px;
    background: linear-gradient(135deg, rgba(170,24,24,.14), rgba(255,107,44,.1));
    filter: blur(2px);
    z-index:0;
}
.hero-spotlight-frame picture,
.hero-spotlight-frame img {
    position:relative;
    z-index:1;
}
.hero-spotlight-frame picture {
    display:block;
    border-radius:24px;
    overflow:hidden;
    background:transparent !important;
}
.hero-spotlight-frame img.xp-photo {
    width:100%;
    max-width:100%;
    height:auto !important;
    max-height:720px;
    object-fit:cover !important;
    object-position:center top !important;
    border-radius:24px;
    box-shadow: 0 20px 48px rgba(0,0,0,.22);
}
.hero-spotlight-mark {
    position:absolute;
    left:28px;
    bottom:28px;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:4px;
    max-width:250px;
    padding:16px 18px;
    border-radius:18px;
    color:#fff;
    background:linear-gradient(180deg, rgba(18,18,18,.55), rgba(18,18,18,.85));
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 36px rgba(0,0,0,.24);
}
.hero-spotlight-kicker {
    font-size:11px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:#ffd4c5;
}
.hero-spotlight-mark strong {
    font-size:30px;
    line-height:1;
    letter-spacing:-.04em;
}
.hero-spotlight-mark small {
    font-size:13px;
    line-height:1.45;
    color:#f1e6e2;
}
@media (max-width: 980px) {
    .hero-spotlight-frame img.xp-photo {max-height:640px;}
}
@media (max-width: 700px) {
    .hero-spotlight-frame {padding:12px;border-radius:24px;}
    .hero-spotlight-mark {left:18px; right:18px; bottom:18px; max-width:none;}
    .hero-spotlight-mark strong {font-size:24px;}
}

/* ---- Auth forms (Join / Login / Edit Profile) ---- */
.auth-hero {
    padding: 48px 0 76px;
    background: linear-gradient(140deg, #fff 55%, #fff2eb);
}
.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
}
.auth-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(28px, 4vw, 48px);
}
.auth-card .eyebrow {
    display: block;
    margin-bottom: 10px;
}
.auth-card h1 {
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 0 0 10px;
}
.auth-card .lead {
    color: #555;
    font-size: 16px;
    margin: 0 0 30px;
}
.auth-switch {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
    text-align: center;
}
.auth-switch a {
    color: var(--accent-text);
    font-weight: 800;
}
.auth-switch a:hover {
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #2a2a2a;
}
.form-field label a {
    font-weight: 700;
    color: var(--accent-text);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: var(--soft);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="password"]:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 44, .13);
}
.form-hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}
.password-field {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.password-field input {
    flex: 1;
}
.password-toggle {
    flex: 0 0 auto;
    border: 1.5px solid var(--line);
    background: var(--soft);
    border-radius: 12px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-text);
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
.password-toggle:hover {
    background: var(--warm);
    border-color: var(--accent2);
}

.form-radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.form-radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 160px;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--soft);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.form-radio-group input {
    accent-color: var(--accent);
    width: 17px;
    height: 17px;
}
.form-radio-group label:has(input:checked) {
    border-color: var(--accent);
    background: var(--warm);
    color: var(--accent-text);
}
.form-radio-group label:hover {
    border-color: var(--accent2);
}

.turnstile-field {
    padding: 16px;
    border: 1.5px dashed var(--line);
    border-radius: 12px;
    background: var(--soft);
    display: flex;
    justify-content: center;
}

.form-legal {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 24px 0;
}
.form-legal a {
    color: var(--accent-text);
    text-decoration: underline;
}
.form-alert {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 22px;
}
.form-alert p {
    margin: 0
}
.form-alert p + p {
    margin-top: 4px
}
.form-alert.error {
    background: #fdecec;
    border: 1px solid #f6c6c1;
    color: #7a1a14;
}
.form-alert.success {
    background: #eaf9f1;
    border: 1px solid #b8e9cf;
    color: #0d5e3d;
}
.form-alert.notice {
    background: #fff8e6;
    border: 1px solid #f0dca0;
    border-left: 4px solid #d9a300;
    color: #7a5b00;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 700;
}
.form-alert-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: #d9a300;
}
.btn.block {
    width: 100%;
    padding: 12px 20px;
    font-size: 14.5px;
    border-radius: 999px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.btn.v1.block::after {
    content: "\2192";
    display: inline-block;
    margin-left: 10px;
    transition: transform .2s ease;
}
.btn.v1.block:hover::after {
    transform: translateX(5px);
}
.btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ---- Account page ---- */
.account-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 28px 30px;
    margin-bottom: 26px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #1c1c1c, #302019 68%, #3a2214);
    color: #fff;
    box-shadow: var(--shadow);
}
.account-avatar {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
}
.account-hero-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.01em;
}
.account-hero-email {
    font-size: 13px;
    color: #cfc6c1;
    margin-top: 2px;
}
.account-hero-credits {
    margin-left: auto;
    text-align: right;
}
.account-hero-credits .value {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: #ffb185;
}
.account-hero-credits .label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #cfc6c1;
}
.account-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 0 0 34px;
}
.account-summary > div {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}
.account-summary dt {
    font-size: 11px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.account-summary dd {
    margin: 6px 0 0;
    font-size: 16px;
    font-weight: 800;
}
.account-actions {
    margin-bottom: 44px;
}
.buy-credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.credit-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    background: #fff;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}
.credit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.credit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.credit-card .price {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.02em;
}
.credit-card .credits-amount {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin: 4px 0 16px;
}

/* ---- Stream login-gate prompt ---- */
.stream-login-prompt {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 24px;
    background: rgba(15, 15, 15, .78);
    border-radius: inherit;
    color: #fff;
}
.stream-login-prompt[hidden] {
    display: none;
}
.stream-login-prompt p {
    max-width: 320px;
    margin: 0;
}
@media (max-width: 640px) {
    .account-summary {
        grid-template-columns: 1fr;
    }
}

/* ---- Reusable site popup (window.xpModal.open({icon, title, body, actionText})) ---- */
.xp-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.xp-modal[hidden] {
    display: none;
}
.xp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 10, .6);
    animation: xp-modal-fade .18s ease;
}
.xp-modal-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 38px 32px 32px;
    text-align: center;
    animation: xp-modal-pop .22s ease;
}
.xp-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--soft);
    color: #777;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.xp-modal-close:hover {
    background: var(--warm);
    color: var(--accent-text);
}
.xp-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: 24px;
}
.xp-modal-icon:empty {
    display: none;
}
.xp-modal-title {
    font-size: 22px;
    letter-spacing: -.01em;
    margin: 0 0 10px;
}
.xp-modal-body {
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 26px;
}
.xp-modal-body:empty {
    display: none;
    margin: 0;
}
.xp-modal-action {
    min-width: 160px;
}
@keyframes xp-modal-fade {
    from { opacity: 0 }
    to { opacity: 1 }
}
@keyframes xp-modal-pop {
    from { opacity: 0; transform: translateY(10px) scale(.96) }
    to { opacity: 1; transform: translateY(0) scale(1) }
}

/* ---- Phone operator grid (photo cards + status pills) ---- */
.operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.operator-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #171717;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: transform .18s ease, box-shadow .18s ease, opacity .25s ease;
}
.operator-card:hover,
.operator-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.operator-card-enter {
    opacity: 0;
    transform: translateY(6px);
}
.operator-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.operator-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, 0) 75%);
}
.operator-name {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.operator-status-pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(3px);
}
.operator-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.operator-status-pill.is-online { color: var(--green) }
.operator-status-pill.is-busy { color: var(--accent2) }
.operator-status-pill.is-offline { color: #ccc }

.operator-grid-sentinel {
    height: 1px;
}

/* ---- Phone operator detail modal (separate from #xp-modal - that one is
   plain-text only, this needs a photo + description + call options) ---- */
.operator-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.operator-modal[hidden] {
    display: none;
}
.operator-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 10, .6);
    animation: xp-modal-fade .18s ease;
}
.operator-modal-box {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: xp-modal-pop .22s ease;
}
.operator-modal-photo-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 260px;
    background: #171717;
}
.operator-modal-photo-main {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}
.operator-modal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.operator-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease;
}
.operator-modal-nav:hover {
    background: rgba(0, 0, 0, .7);
}
.operator-modal-nav[hidden] {
    display: none;
}
.operator-modal-nav.prev {
    left: 10px;
}
.operator-modal-nav.next {
    right: 10px;
}
.operator-modal-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px;
    min-width: 0;
    overflow-x: auto;
    background: #111;
    flex: 0 0 auto;
}
.operator-modal-thumb {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: .55;
    transition: opacity .15s ease, border-color .15s ease;
}
.operator-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.operator-modal-thumb:hover {
    opacity: .85;
}
.operator-modal-thumb.is-active {
    opacity: 1;
    border-color: var(--accent);
}
.operator-modal-status {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}
.operator-modal-status.is-online { color: var(--green) }
.operator-modal-status.is-busy { color: var(--accent-text) }
.operator-modal-status.is-offline { color: #888 }
.operator-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #777;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
    transition: background .15s ease, color .15s ease;
}
.operator-modal-close:hover {
    background: var(--warm);
    color: var(--accent-text);
}
.operator-modal-body {
    padding: 26px 28px;
}
.operator-modal-name {
    font-size: 24px;
    letter-spacing: -.01em;
    margin: 0 0 6px;
}
.operator-modal-description {
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 12px;
}
/* Tighter than the original phone-lines spacing (built for a full-page
   section, not a compact popup) - scoped to the modal only. */
.operator-modal-body .phone-show {
    padding: 16px;
}
.operator-modal-body .show-kicker {
    margin-bottom: 8px;
}
.operator-modal-body .phone-primary {
    padding-bottom: 10px;
    margin-bottom: 10px;
}
/* The pay-by-card box has no .phone-options below its .phone-primary, so
   when it's the last thing in the box, drop the divider/spacing that
   would otherwise assume more content follows - that's the "black space
   at the bottom" the box was left with. */
.operator-modal-body .phone-primary:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.operator-modal-personal {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 12px;
    row-gap: 4px;
    background: var(--warm);
    border: 1px solid rgba(255, 107, 44, .28);
    border-radius: 14px;
    padding: 10px 14px;
    margin: 0 0 14px;
}
.operator-modal-personal-label {
    flex-basis: 100%;
    color: var(--accent-text);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.operator-modal-personal-number {
    color: var(--accent-text);
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -.02em;
    line-height: 1;
}
.operator-modal-personal-hint {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}
.operator-modal-body .operator-modal-calls {
    grid-template-columns: 1fr;
    gap: 12px;
}
/* .phone-show.nightshow relies on .phone-lines' dark section background to
   give it white text by inheritance - the modal is on a white background,
   so it needs its own explicit color here. */
.operator-modal-body .phone-show.nightshow {
    color: #fff;
}
/* .phone-options is a fixed 2-column grid, built for the original
   phone-lines block which always has 2+ options (Mobile, Irish, VIP...).
   The modal's Call now card only ever has one (Mobile), so let it span the
   full width instead of leaving an empty second column. */
.operator-modal-body .phone-options {
    grid-template-columns: 1fr;
}
.phone-show-note {
    font-size: 12px;
    font-weight: 700;
    opacity: .78;
    margin: -6px 0 10px;
}

@media (max-width: 650px) {
    .operator-modal-box {
        grid-template-columns: 1fr;
    }
    .operator-modal-photo-wrap {
        min-height: 0;
    }
    .operator-modal-photo-main {
        flex: none;
        width: 100%;
        height: auto;
    }
    .operator-modal-photo {
        height: auto;
    }
}

/* ---- Phone hero card ("Call. Browse. Connect.") - reuses .phone-lines'
   existing dark background/glow (see class="phone-lines phone-hero" on the
   section), just with a different inner layout. ---- */
.phone-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}
.phone-hero-grid > div:first-child h2 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 16px 0 14px;
}
.phone-hero-grid > div:first-child p {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.5;
    max-width: 520px;
    margin: 0;
}
.phone-hero-card {
    background: linear-gradient(145deg, #ff6b2c, #ff8b56);
    border-radius: 24px;
    padding: 32px;
    color: #1a1004;
}
.phone-hero-badge {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 10px;
}
.phone-hero-primary {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    padding-bottom: 20px;
    margin-bottom: 18px;
}
.phone-hero-primary a {
    display: block;
    color: inherit;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 4px 0 8px;
}
.phone-hero-primary small {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    opacity: .85;
}
.phone-hero-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.phone-hero-options > div {
    background: rgba(255, 255, 255, .22);
    border-radius: 14px;
    padding: 14px 16px;
}
.phone-hero-options span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 4px;
}
.phone-hero-options a {
    display: block;
    color: inherit;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: 4px;
}
.phone-hero-options small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    opacity: .8;
}
.phone-hero-legal {
    color: #9a9a9a;
    font-size: 12px;
    line-height: 1.6;
    margin: 16px 0 0;
}

@media (max-width: 1040px) {
    .phone-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 650px) {
    .phone-hero-options {
        grid-template-columns: 1fr;
    }
}
