/*
 * Desarrollado por: Cristian Camilo de la Cruz Garcia
 * LinkedIn: https://www.linkedin.com/in/cruzstark/
 * Instagram: https://www.instagram.com/cruzstark_/
 */

:root {
    --bg: #09090d;
    --bg-soft: #111018;
    --panel: #171522;
    --panel-strong: #20182d;
    --text: #f7f4ff;
    --muted: #b8adc9;
    --line: rgba(255, 255, 255, .12);
    --violet: #b563f0;
    --violet-strong: #9328e6;
    --cyan: #4be3ff;
    --lime: #d7ff5e;
    --pink: #ff4fd8;
    --radius: 8px;
    --shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 82% 8%, rgba(181, 99, 240, .23), transparent 28rem),
        radial-gradient(circle at 8% 32%, rgba(75, 227, 255, .12), transparent 22rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url("../brand/geeksquad-pattern.jpg") center/cover no-repeat;
    opacity: .18;
    pointer-events: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 14px clamp(18px, 4vw, 60px);
    background: rgba(9, 9, 13, .78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    width: 148px;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(181, 99, 240, .2));
}

.brand-section-label {
    padding-left: 12px;
    color: var(--muted);
    border-left: 1px solid var(--line);
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #120b18;
    background: linear-gradient(135deg, var(--lime), var(--cyan) 48%, var(--violet));
    border-radius: 8px;
    font-weight: 900 !important;
    box-shadow: 0 0 26px rgba(181, 99, 240, .45);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-weight: 900;
    line-height: 1;
}

.brand small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .72rem;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 12px;
    color: var(--muted);
    border-radius: 8px;
    font-weight: 700;
    font-size: .92rem;
}

.main-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .07);
}

.main-nav .nav-utility {
    color: #d9cfea;
    border: 1px solid rgba(255, 255, 255, .13);
}

.main-nav .nav-cta {
    color: var(--text);
    background: rgba(181, 99, 240, .22);
    border: 1px solid rgba(181, 99, 240, .45);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
    min-height: calc(100vh - 104px);
    padding: clamp(30px, 5vw, 58px) clamp(18px, 4vw, 60px) 30px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--lime);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: .88;
    font-weight: 900;
    letter-spacing: 0;
}

.hero h1 {
    font-size: clamp(3.2rem, 5.2vw, 4.8rem);
    line-height: .94;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

h3 {
    line-height: 1.08;
}

.hero-text {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.button.primary {
    color: #14091b;
    background: linear-gradient(135deg, var(--lime), var(--cyan) 45%, var(--violet));
    box-shadow: 0 0 34px rgba(181, 99, 240, .32);
}

.button.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
}

.hero-stage {
    position: relative;
    display: grid;
    gap: 16px;
    min-height: 500px;
}

.stage-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: end;
    min-height: 400px;
    background:
        linear-gradient(180deg, rgba(181, 99, 240, .16), rgba(9, 9, 13, .7)),
        var(--panel);
    border: 1px solid rgba(181, 99, 240, .36);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stage-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
}

.stage-card img {
    position: absolute;
    right: 0;
    bottom: -12px;
    width: min(78%, 480px);
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, .58));
}

.stage-card div {
    position: relative;
    z-index: 1;
    padding: 28px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82));
}

.stage-card span,
.stage-card small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

.stage-card strong {
    display: block;
    margin: 4px 0;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: .9;
    font-weight: 900;
}

.orbit-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.mini-talent {
    overflow: hidden;
    position: relative;
    display: block;
    min-height: 118px;
    padding: 0;
    color: var(--text);
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
}

.mini-talent img {
    width: 100%;
    height: 118px;
    object-fit: contain;
    object-position: center bottom;
    background: linear-gradient(180deg, rgba(181, 99, 240, .18), rgba(0, 0, 0, .2));
}

.mini-talent span {
    position: absolute;
    right: 6px;
    bottom: 6px;
    left: 6px;
    padding: 6px;
    background: rgba(0, 0, 0, .62);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 900;
}

.metric-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 clamp(18px, 4vw, 60px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.metric-band article {
    padding: 24px;
    background: rgba(17, 16, 24, .86);
}

.metric-band strong {
    display: block;
    color: var(--cyan);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 900;
}

.metric-band span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 60px);
}

.section-heading {
    max-width: 900px;
    margin-bottom: 34px;
}

.section-heading.wide {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
}

.section-kicker {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 700;
}

.intro-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.intro-grid article,
.blog-grid article,
.internal-card,
.service-stack article,
.panel-form,
.dashboard-preview {
    background: rgba(17, 16, 24, .82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.intro-grid article,
.blog-grid article,
.internal-card,
.service-stack article {
    padding: 24px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 36px;
    margin-bottom: 20px;
    color: #14091b;
    background: var(--lime);
    border-radius: 8px;
    font-weight: 900;
}

.intro-grid h3,
.blog-grid h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.intro-grid p,
.blog-grid p,
.split-copy p,
.feature-list {
    color: var(--muted);
    line-height: 1.65;
}

.catalog-tools {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(150px, .7fr) minmax(150px, .7fr);
    gap: 10px;
    width: min(680px, 100%);
}

label span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    color: var(--text);
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: none;
}

input,
select {
    height: 46px;
    padding: 0 13px;
}

textarea {
    resize: vertical;
    padding: 13px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(75, 227, 255, .7);
    box-shadow: 0 0 0 3px rgba(75, 227, 255, .1);
}

option {
    color: #171522;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.talent-card {
    overflow: hidden;
    display: grid;
    background: rgba(17, 16, 24, .88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 456px;
}

.talent-card:hover {
    border-color: rgba(181, 99, 240, .75);
    transform: translateY(-2px);
    transition: .18s ease;
}

.talent-photo {
    display: grid;
    align-items: end;
    height: 280px;
    background:
        linear-gradient(180deg, rgba(181, 99, 240, .28), rgba(17, 16, 24, .1)),
        radial-gradient(circle at 50% 28%, rgba(75, 227, 255, .18), transparent 54%);
}

.talent-photo img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .45));
}

.talent-body {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px;
}

.talent-body span {
    color: var(--cyan);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.talent-body h3 {
    margin: 4px 0 0;
    font-size: 1.8rem;
    font-weight: 900;
}

.talent-body p {
    margin: 0;
    min-height: 42px;
    color: var(--muted);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chips span {
    padding: 6px 8px;
    color: var(--text);
    background: rgba(181, 99, 240, .16);
    border: 1px solid rgba(181, 99, 240, .28);
    border-radius: 6px;
    font-size: .72rem;
}

.text-action {
    justify-self: start;
    padding: 0;
    color: var(--lime);
    background: transparent;
    border: 0;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
}

.empty-state {
    margin-top: 20px;
    padding: 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr);
    gap: clamp(26px, 5vw, 70px);
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: minmax(340px, 1fr) minmax(0, .85fr);
}

.reverse .split-copy {
    order: 2;
}

.split-copy h2 {
    max-width: 760px;
}

.workflow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.workflow span {
    padding: 9px 11px;
    color: var(--text);
    background: rgba(75, 227, 255, .1);
    border: 1px solid rgba(75, 227, 255, .22);
    border-radius: 8px;
    font-weight: 800;
}

.internal-card h3,
.service-stack h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.internal-card p,
.service-stack p,
.access-actions p {
    color: var(--muted);
    line-height: 1.65;
}

.internal-steps {
    display: grid;
    gap: 8px;
    margin: 22px 0;
}

.internal-steps span {
    padding: 11px 12px;
    color: var(--text);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
}

.service-stack {
    display: grid;
    gap: 12px;
}

.service-stack strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 34px;
    margin-bottom: 14px;
    color: #14091b;
    background: var(--cyan);
    border-radius: 8px;
    font-weight: 900;
}

.panel-form {
    padding: clamp(20px, 4vw, 32px);
}

.panel-form h3 {
    margin-bottom: 22px;
    font-size: 1.6rem;
}

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

.form-grid.single {
    grid-template-columns: 1fr;
}

.form-grid label {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    margin-top: 7px;
}

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

.full-button {
    width: 100%;
    margin-top: 16px;
}

.inline-form-button {
    min-height: 46px;
    margin-top: 7px;
}

.form-message {
    min-height: 22px;
    margin: 12px 0 0;
    color: var(--lime);
    font-weight: 800;
}

.form-message.error {
    color: #ff8fbd;
}

.db-help-box {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    padding: 14px;
    color: var(--muted);
    background: rgba(255, 143, 189, .08);
    border: 1px solid rgba(255, 143, 189, .32);
    border-radius: 8px;
    font-weight: 800;
}

.db-help-box strong {
    color: #ff8fbd;
}

.quote-form-head,
.quote-detail-title,
.quote-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.quote-form-head {
    margin-bottom: 22px;
}

.quote-form-head h3 {
    margin-bottom: 0;
}

.quote-form-head span,
.quote-detail-title span {
    color: var(--lime);
    font-weight: 900;
}

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

.quote-detail-box {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.quote-detail-title h4 {
    margin: 0;
    font-size: 1.12rem;
}

.quote-line-grid {
    grid-template-columns: minmax(180px, 1.2fr) minmax(220px, 1.5fr) repeat(3, minmax(130px, .7fr)) minmax(100px, .5fr);
    align-items: end;
}

.quote-detail-box .button {
    width: fit-content;
}

.quote-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.quote-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.quote-table th,
.quote-table td {
    padding: 13px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.quote-table th {
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
}

.quote-table td {
    color: var(--text);
    font-weight: 800;
}

.quote-table tr:last-child td {
    border-bottom: 0;
}

.quote-empty td {
    color: var(--muted);
    text-align: center;
}

.quote-remove {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 143, 189, .12);
    border: 1px solid rgba(255, 143, 189, .32);
    border-radius: 8px;
    color: #ff8fbd;
    font-weight: 900;
    cursor: pointer;
}

.quote-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.quote-summary div {
    padding: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.quote-summary span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.quote-summary strong {
    color: var(--cyan);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.quote-grand-total strong {
    color: var(--lime);
}

.quote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.quote-actions[hidden] {
    display: none;
}

.quote-history {
    margin-top: 18px;
}

.quote-history .quote-form-head {
    margin-bottom: 12px;
}

.quote-report-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(170px, .8fr) repeat(2, minmax(140px, .7fr)) minmax(100px, .45fr);
    gap: 12px;
    margin-bottom: 16px;
}

.quote-report-filters label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
}

.quote-report-filters input,
.quote-report-filters select {
    margin-top: 7px;
}

.quote-report-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.quote-report-summary article {
    padding: 14px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.quote-report-summary span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.quote-report-summary strong {
    color: var(--cyan);
    font-size: 1.28rem;
    font-weight: 900;
}

.quote-status-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 30px;
    margin-bottom: 12px;
}

.quote-history-empty {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.quote-history-table {
    min-width: 1060px;
}

.quote-report-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 900;
}

.quote-report-pagination .button {
    width: auto;
    min-height: 38px;
    padding-inline: 14px;
}

.quote-report-pagination .button:disabled {
    opacity: .48;
    cursor: not-allowed;
}

.campaign-report-head {
    align-items: flex-start;
    gap: 24px;
}

.campaign-report-head > div {
    max-width: 760px;
}

.campaign-report-head .eyebrow {
    margin-bottom: 6px;
}

.campaign-report-head h3 {
    margin-bottom: 8px;
}

.campaign-report-head p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.campaign-report-head .button {
    width: auto;
    flex: 0 0 auto;
}

.campaign-report-filters {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) minmax(180px, .7fr) minmax(100px, .35fr);
    gap: 12px;
    margin: 20px 0 16px;
}

.campaign-report-filters label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
}

.campaign-report-filters input,
.campaign-report-filters select {
    margin-top: 7px;
}

.campaign-report-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.campaign-report-summary article {
    padding: 15px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.campaign-report-summary span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.campaign-report-summary strong {
    color: var(--cyan);
    font-size: 1.35rem;
    font-weight: 900;
}

.campaign-report-summary article:nth-child(2) strong {
    color: var(--lime);
}

.campaign-report-table {
    min-width: 1220px;
}

.campaign-report-table td:first-child strong {
    display: block;
    min-width: 160px;
}

.campaign-talent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 180px;
}

.campaign-talent-list span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 8px;
    color: var(--text);
    background: rgba(181, 99, 240, .18);
    border: 1px solid rgba(181, 99, 240, .34);
    border-radius: 7px;
    font-size: .74rem;
    font-weight: 800;
}

.campaign-talent-list .campaign-talent-empty {
    color: var(--muted);
    background: rgba(255, 255, 255, .05);
    border-color: var(--line);
}

.campaign-report-table td:last-child {
    white-space: nowrap;
}

.quote-print-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    color: #14091b;
    background: var(--lime);
    border: 0;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.quote-print-link + .quote-print-link {
    margin-left: 8px;
}

.quote-print-link.muted {
    color: var(--muted);
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
}

.inline-action-form {
    display: inline-flex;
    margin-left: 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    color: #14091b;
    background: var(--cyan);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 900;
    white-space: nowrap;
}

.status-select {
    width: auto;
    min-width: 138px;
    height: 34px;
    padding: 0 30px 0 10px;
    color: #17111e !important;
    -webkit-text-fill-color: #17111e;
    background-color: var(--cyan);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 900;
    cursor: pointer;
}

.status-select:focus {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .14);
}

.status-select option {
    color: #f7f4ff;
    background: #201d2b;
    font-weight: 800;
}

.status-select:disabled {
    opacity: .72;
    cursor: wait;
}

.status-ajuste {
    color: #291b00 !important;
    -webkit-text-fill-color: #291b00;
    background: #ffd574;
}

.status-enviada {
    color: #24102f !important;
    -webkit-text-fill-color: #24102f;
    background: #d0a1ff;
}

.status-aprobada {
    color: #06261e !important;
    -webkit-text-fill-color: #06261e;
    background: #78e7c0;
}

.status-en-ejecucion {
    color: #082713 !important;
    -webkit-text-fill-color: #082713;
    background: #8ee9ad;
}

.status-campana-finalizada {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    background: #177a46;
}

.status-sin-respuesta {
    color: #35100c !important;
    -webkit-text-fill-color: #35100c;
    background: #ff9a90;
}

.payment-account-layout {
    align-items: start;
}

.payment-mini-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.payment-pending-amount-review {
    margin-bottom: 16px;
    padding: 16px;
    color: #102016;
    background: #9aefb6;
    border: 1px solid #c7ffd9;
    border-radius: 8px;
}

.payment-pending-amount-review span,
.payment-pending-amount-review strong,
.payment-pending-amount-review small {
    display: block;
}

.payment-pending-amount-review span {
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-pending-amount-review strong {
    margin: 7px 0 4px;
    font-size: 1.2rem;
}

.payment-mini-summary article {
    padding: 14px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.payment-mini-summary span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-mini-summary strong {
    color: var(--cyan);
    font-size: 1.12rem;
    font-weight: 900;
}

.payment-mini-summary article:nth-child(2) strong {
    color: var(--lime);
}

.payment-account-list a {
    position: relative;
}

.payment-account-list em {
    display: inline-flex;
    width: fit-content;
    margin-top: 4px;
    padding: 4px 8px;
    color: #14091b;
    background: var(--lime);
    border-radius: 999px;
    font-size: .72rem;
    font-style: normal;
    font-weight: 900;
}

.payment-submitter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    padding: 14px;
    background: rgba(75, 227, 255, .08);
    border: 1px solid rgba(75, 227, 255, .28);
    border-radius: 8px;
}

.payment-submitter-box strong {
    width: 100%;
    color: var(--cyan);
    font-size: .82rem;
    text-transform: uppercase;
}

.payment-submitter-box span {
    padding: 6px 9px;
    color: var(--text);
    background: rgba(255, 255, 255, .07);
    border-radius: 8px;
    font-weight: 800;
}

.payment-review-panel {
    min-height: 420px;
}

.payment-review-grid,
.payment-documents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.payment-review-grid article,
.payment-doc-link {
    display: grid;
    gap: 5px;
    padding: 14px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.payment-review-grid span,
.payment-doc-link span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-review-grid strong,
.payment-doc-link strong {
    color: var(--text);
    font-size: 1rem;
    font-weight: 900;
}

.payment-review-grid small {
    color: var(--cyan);
    font-weight: 800;
}

.payment-doc-link {
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.payment-doc-link:hover {
    background: rgba(181, 99, 240, .18);
    border-color: rgba(181, 99, 240, .54);
    transform: translateY(-1px);
}

.payment-doc-link strong {
    color: var(--lime);
}

.payment-doc-link.missing {
    border-color: rgba(255, 143, 189, .38);
}

.payment-doc-link.missing strong {
    color: #ff8fbd;
}

.payment-status-editor {
    display: grid;
    grid-template-columns: minmax(180px, .6fr) minmax(280px, 1.4fr);
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.payment-status-editor label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
}

.payment-status-editor select,
.payment-status-editor textarea {
    margin-top: 7px;
}

.payment-status-actions {
    display: flex;
    grid-column: 1 / -1;
    gap: 10px;
}

.payment-status-actions .button {
    width: auto;
}

.status-recibida {
    color: #24102f !important;
    background: #d0a1ff !important;
}

.status-en-revision {
    color: #291b00 !important;
    background: #ffd574 !important;
}

.status-requiere-correccion,
.status-rechazada {
    color: #35100c !important;
    background: #ff9a90 !important;
}

.status-correccion-recibida {
    color: #06252c !important;
    background: #7ce7f4 !important;
}

.status-programada-para-pago {
    color: #06252c !important;
    background: #7ce7f4 !important;
}

.status-pagada {
    color: #fff !important;
    background: #177a46 !important;
}

.payment-tracking-page {
    width: min(1180px, calc(100% - 36px));
    min-height: calc(100vh - 155px);
    margin: 0 auto;
    padding: clamp(32px, 6vw, 72px) 0;
}

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

.payment-tracking-header h1 {
    margin: 4px 0 10px;
    font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.payment-tracking-header p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.payment-tracking-status {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    color: #17111e;
    background: var(--cyan);
    border-radius: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.payment-tracking-message {
    margin-bottom: 18px;
    padding: 18px;
    background: rgba(215, 255, 94, .09);
    border: 1px solid rgba(215, 255, 94, .36);
    border-radius: 8px;
}

.payment-tracking-message span {
    color: var(--lime);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-tracking-message p {
    margin: 8px 0 0;
    line-height: 1.55;
}

.payment-correction-confirmation {
    margin-bottom: 18px;
    padding: 18px;
    color: #102016;
    background: #9aefb6;
    border: 1px solid #c7ffd9;
    border-radius: 8px;
}

.payment-correction-confirmation strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.payment-correction-confirmation p {
    margin: 0;
    line-height: 1.5;
}

.payment-correction-panel {
    margin-bottom: 18px;
    padding: clamp(20px, 3vw, 32px);
    border-color: rgba(255, 143, 189, .45);
    background: rgba(15, 15, 24, .94);
}

.payment-correction-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.payment-correction-head h2 {
    margin: 3px 0 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.payment-correction-head p:last-child {
    max-width: 640px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.payment-correction-radicado {
    flex: 0 0 auto;
    padding: 8px 11px;
    color: var(--lime);
    background: rgba(207, 255, 65, .08);
    border: 1px solid rgba(207, 255, 65, .24);
    border-radius: 6px;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-correction-panel form {
    display: grid;
    gap: 0;
}

.payment-correction-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.payment-correction-section:first-of-type {
    padding-top: 0;
}

.payment-correction-section-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.payment-correction-section-head > span {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #11111a;
    background: var(--lime);
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 900;
}

.payment-correction-section-head h3 {
    margin: 1px 0 3px;
    font-size: 1rem;
}

.payment-correction-section-head p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.4;
}

.payment-correction-value {
    display: grid;
    grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1fr);
    gap: 16px;
    align-items: end;
}

.payment-money-input {
    display: flex;
    align-items: center;
    height: 52px;
    margin-top: 7px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.payment-money-input:focus-within {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(72, 222, 255, .1);
}

.payment-money-input b {
    padding-left: 15px;
    color: var(--cyan);
    font-size: 1.15rem;
    font-weight: 900;
}

.payment-money-input input {
    height: 100%;
    margin: 0;
    padding-left: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 1.05rem;
}

.payment-money-input input:focus {
    outline: 0;
    box-shadow: none;
}

.payment-correction-value-reference {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 52px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.payment-correction-value-reference > div {
    padding: 10px 14px;
}

.payment-correction-value-reference > div + div {
    border-left: 1px solid var(--line);
}

.payment-correction-value-reference span,
.payment-correction-value-reference strong {
    display: block;
}

.payment-correction-value-reference span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-correction-value-reference strong {
    color: var(--cyan);
    font-size: .92rem;
}

.payment-correction-files {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.payment-correction-upload {
    display: flex;
    min-width: 0;
    min-height: 142px;
    padding: 16px;
    flex-direction: column;
    cursor: pointer;
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.payment-correction-upload:hover,
.payment-correction-upload:focus-within {
    background: rgba(181, 99, 240, .08);
    border-color: rgba(181, 99, 240, .7);
    transform: translateY(-1px);
}

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

.payment-upload-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.payment-upload-top strong {
    color: var(--text);
    font-size: .88rem;
    line-height: 1.3;
}

.payment-upload-top em {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: .62rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-correction-upload.is-required .payment-upload-top em {
    color: var(--lime);
}

.payment-upload-action {
    align-self: flex-start;
    margin-top: 20px;
    padding: 8px 11px;
    color: var(--text);
    background: rgba(181, 99, 240, .14);
    border: 1px solid rgba(181, 99, 240, .38);
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 800;
}

.payment-correction-upload small {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
    color: var(--muted);
    font-size: .7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-correction-upload.has-file {
    background: rgba(72, 222, 255, .07);
    border-color: rgba(72, 222, 255, .48);
}

.payment-correction-upload.has-file .payment-upload-action {
    color: #071015;
    background: var(--cyan);
    border-color: var(--cyan);
}

.payment-correction-upload.has-file small {
    color: var(--cyan);
}

.payment-correction-note textarea {
    min-height: 96px;
    margin-top: 7px;
}

.payment-correction-check {
    align-items: flex-start;
    margin-top: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.payment-correction-check input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.payment-correction-check span,
.payment-correction-check strong,
.payment-correction-check small {
    display: block;
}

.payment-correction-check span {
    margin: 0;
    color: var(--text);
    font-size: inherit;
    font-weight: inherit;
    text-transform: none;
}

.payment-correction-check strong {
    font-size: .86rem;
    line-height: 1.35;
    text-transform: none;
}

.payment-correction-check small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.35;
    text-transform: none;
}

.payment-correction-submit {
    margin-top: 20px;
    min-height: 50px;
}

.payment-document-history {
    margin: 20px 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.payment-document-history h4 {
    margin: 0;
    font-size: 1rem;
}

.payment-document-version-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.payment-document-version-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, .045);
    border: 1px solid var(--line);
    border-radius: 7px;
    text-decoration: none;
}

.payment-value-version-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid var(--line);
    border-radius: 7px;
}

.payment-value-version-row span,
.payment-value-version-row strong,
.payment-value-version-row small {
    display: block;
}

.payment-value-version-row small {
    margin-top: 4px;
    color: var(--muted);
}

.payment-value-version-row em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.payment-document-version-list span,
.payment-document-version-list strong,
.payment-document-version-list small {
    display: block;
}

.payment-document-version-list small {
    margin-top: 4px;
    color: var(--muted);
}

.payment-document-version-list em {
    color: var(--lime);
    font-style: normal;
    font-weight: 900;
}

.payment-tracking-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.payment-tracking-summary article {
    min-width: 0;
    padding: 16px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.payment-tracking-summary span,
.payment-tracking-documents span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-tracking-summary strong {
    overflow-wrap: anywhere;
    color: var(--text);
    font-size: 1rem;
}

.payment-tracking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 18px;
}

.payment-tracking-timeline h2,
.payment-tracking-documents h2 {
    margin: 0;
    font-size: 1.12rem;
}

.payment-tracking-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.payment-tracking-timeline article:last-child {
    border-bottom: 0;
}

.payment-tracking-timeline i {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(215, 255, 94, .12);
}

.payment-tracking-timeline strong,
.payment-tracking-timeline time {
    display: block;
}

.payment-tracking-timeline time {
    margin-top: 4px;
    color: var(--muted);
    font-size: .78rem;
}

.payment-tracking-timeline p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.payment-tracking-documents > div:not(.quote-form-head) {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.payment-tracking-documents > div:not(.quote-form-head) span {
    margin: 0;
}

.payment-tracking-documents > div:not(.quote-form-head) strong {
    color: var(--lime);
    white-space: nowrap;
}

.payment-tracking-documents > p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}

.payment-tracking-error {
    max-width: 680px;
    margin: 8vh auto 0;
}

.payment-tracking-error h1 {
    margin: 8px 0 12px;
    font-size: clamp(2.2rem, 7vw, 4.6rem);
}

.payment-tracking-error p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.6;
}

.payment-account-form input[type="file"] {
    width: 100%;
    padding: 13px;
    color: var(--muted);
    background: rgba(255, 255, 255, .07);
    border: 1px dashed rgba(181, 99, 240, .5);
    border-radius: 8px;
}

.payment-account-form label.is-required {
    color: var(--lime);
}

.payment-account-form label.is-required input[type="file"] {
    border-color: rgba(215, 255, 94, .76);
    box-shadow: 0 0 0 3px rgba(215, 255, 94, .08);
}

.payment-validation-message {
    margin: 16px 0 12px;
    padding: 14px 16px;
    color: #fff;
    background: rgba(176, 36, 83, .2);
    border: 1px solid #ff8fbd;
    border-radius: 8px;
    line-height: 1.45;
}

.payment-validation-message strong {
    display: block;
    margin-bottom: 6px;
}

.payment-validation-message ul {
    margin: 0;
    padding-left: 20px;
}

.payment-account-form .payment-field-error {
    color: #ffb2cf;
}

.payment-account-form .payment-field-error input,
.payment-account-form .payment-field-error select {
    border-color: #ff8fbd;
    box-shadow: 0 0 0 3px rgba(255, 143, 189, .1);
}

.payment-account-form button[disabled] {
    cursor: wait;
    opacity: .72;
}

.payment-autocomplete-wrap {
    position: relative;
}

.payment-autocomplete-list {
    position: absolute;
    z-index: 12;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    overflow: hidden;
    padding: 6px;
    background: rgba(17, 16, 24, .98);
    border: 1px solid rgba(181, 99, 240, .42);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .42);
}

.payment-autocomplete-list[hidden] {
    display: none;
}

.payment-autocomplete-list button {
    display: grid;
    width: 100%;
    gap: 3px;
    padding: 10px 11px;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.payment-autocomplete-list button:hover {
    background: rgba(181, 99, 240, .22);
}

.payment-autocomplete-list strong {
    color: var(--text);
    font-size: .92rem;
}

.payment-autocomplete-list span,
.payment-autocomplete-empty {
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
}

.payment-autocomplete-empty {
    display: block;
    padding: 10px 11px;
}

.support-file-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
    color: var(--cyan);
    font-weight: 900;
}

.payment-public-page {
    min-height: 100vh;
}

.payment-hero {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: clamp(34px, 6vw, 82px) clamp(18px, 4vw, 60px);
}

.payment-hero-copy h1 {
    margin-bottom: 18px;
    max-width: 760px;
    font-size: clamp(3rem, 5.4vw, 5rem);
    line-height: .95;
}

.payment-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.payment-requirements span {
    padding: 9px 11px;
    color: #14091b;
    background: var(--lime);
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 900;
}

.payment-template-download {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding: 18px;
    background: rgba(75, 227, 255, .07);
    border: 1px solid rgba(75, 227, 255, .3);
    border-radius: 8px;
}

.payment-template-download span,
.payment-template-download strong {
    display: block;
}

.payment-template-download span {
    margin-bottom: 5px;
    color: var(--cyan);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-template-download strong {
    font-size: .98rem;
    line-height: 1.35;
}

.payment-template-download p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.45;
}

.payment-template-download .button {
    white-space: nowrap;
}

.public-payment-card {
    background:
        linear-gradient(135deg, rgba(181, 99, 240, .18), rgba(75, 227, 255, .08)),
        rgba(17, 16, 24, .88);
    border: 1px solid rgba(181, 99, 240, .38);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.talent-editor-layout {
    display: grid;
    grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.talent-list-panel {
    position: sticky;
    top: 92px;
}

.talent-admin-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    max-height: 680px;
    overflow: auto;
}

.talent-admin-list a {
    display: grid;
    gap: 4px;
    padding: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.talent-admin-list a.active,
.talent-admin-list a:hover {
    background: rgba(181, 99, 240, .2);
    border-color: rgba(181, 99, 240, .48);
}

.talent-admin-list span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}

.talent-services-editor {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: hidden;
    color: var(--text);
    background: rgba(17, 16, 24, .92);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-editor-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(181, 99, 240, .18), rgba(75, 227, 255, .06)),
        rgba(255, 255, 255, .035);
    border-bottom: 1px solid var(--line);
}

.service-hero-copy {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-hero-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #150d1f;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    border-radius: 10px;
    font-size: 1.7rem;
    font-weight: 900;
}

.service-hero-copy strong {
    display: block;
    color: var(--text);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.service-hero-copy span:not(.service-hero-icon) {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: .98rem;
}

.service-total-card {
    display: grid;
    gap: 8px;
    min-width: 160px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(38, 43, 82, .08);
}

.service-total-card span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
}

.service-total-card strong {
    color: var(--lime);
    font-size: 1.8rem;
    line-height: 1;
}

.service-editor-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, .025);
    border-bottom: 1px solid var(--line);
}

.default-fee-field {
    display: grid;
    gap: 8px;
    flex: 1 1 360px;
    max-width: 620px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 900;
}

.service-input-suffix {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-input-suffix input {
    margin-top: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.service-input-suffix > span {
    padding: 0 14px;
    color: var(--muted);
    font-weight: 900;
}

.service-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.service-editor-toolbar .button {
    min-height: 48px;
    border-radius: 8px;
    white-space: nowrap;
}

.service-add-button {
    color: #14091b;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    box-shadow: 0 12px 24px rgba(75, 227, 255, .18);
}

.service-editor-list {
    display: grid;
    gap: 16px;
    padding: 18px 22px;
}

.service-editor-card {
    display: grid;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 9px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.service-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.service-title-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.service-title-row span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #160d21;
    background: var(--lime);
    border-radius: 8px;
    font-weight: 900;
}

.service-title-input {
    min-height: 42px;
    margin-top: 0 !important;
    padding: 0;
    color: var(--text);
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 1.05rem;
    font-weight: 900;
}

.service-card-actions {
    display: flex;
    gap: 8px;
}

.service-icon-button {
    display: inline-grid;
    place-items: center;
    min-width: 78px;
    height: 38px;
    padding: 0 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
}

.service-icon-button:hover {
    color: var(--cyan);
    border-color: rgba(75, 227, 255, .45);
}

.service-icon-button.danger {
    color: #ff8fbd;
    border-color: rgba(255, 143, 189, .35);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.service-card-grid label {
    min-width: 0;
    color: var(--muted);
    font-size: .83rem;
    font-weight: 900;
}

.service-card-grid input,
.service-editor-toolbar input {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, .075);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
}

.service-card-grid input[readonly] {
    color: var(--cyan);
    background: rgba(75, 227, 255, .075);
    border-color: rgba(75, 227, 255, .22);
}

.service-total-field {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, .16);
}

.service-total-field input[readonly] {
    color: var(--lime);
    background: rgba(215, 255, 94, .08);
    border-color: rgba(215, 255, 94, .3);
    font-size: 1.1rem;
    font-weight: 900;
}

.service-add-bottom {
    min-height: 58px;
    margin: 10px 22px 22px;
    color: var(--lime);
    background: rgba(181, 99, 240, .08);
    border: 1px dashed rgba(215, 255, 94, .45);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
}

.service-add-bottom:hover {
    background: rgba(215, 255, 94, .1);
    border-color: var(--lime);
}

.check-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.check-line input {
    width: auto;
    margin: 0;
}

.permission-box {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.permission-box strong {
    color: var(--text);
    font-size: 1rem;
}

.permission-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.permission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.quote-print-page {
    min-height: 100vh;
    color: #10111a;
    background: #eef0f5;
    font-family: Arial, Helvetica, sans-serif;
}

.quote-print-page::before,
.quote-print-page::after {
    display: none;
}

.print-actions {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px clamp(18px, 4vw, 48px);
    background: rgba(238, 241, 246, .92);
    border-bottom: 1px solid #d8dde8;
    backdrop-filter: blur(10px);
}

.quote-sheet {
    width: min(920px, calc(100vw - 32px));
    margin: 24px auto 54px;
    padding: clamp(28px, 4vw, 46px);
    background: #fff;
    border: 1px solid #d9deea;
    border-radius: 6px;
    box-shadow: 0 18px 54px rgba(16, 17, 26, .12);
}

.quote-print-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 22px;
    border-bottom: 3px solid #10111a;
    break-inside: avoid;
}

.quote-print-brand {
    display: grid;
    gap: 8px;
}

.quote-print-logo {
    display: block;
    width: min(310px, 52vw);
    height: auto;
}

.quote-print-brand p,
.quote-print-meta p,
.quote-party-grid p,
.quote-print-notes p {
    margin: 0;
    color: #4d5568;
    font-weight: 700;
    line-height: 1.45;
}

.quote-print-brand p {
    font-size: .9rem;
}

.quote-print-meta {
    text-align: right;
    min-width: 210px;
}

.quote-print-meta span,
.quote-party-grid span {
    display: block;
    color: #556078;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.quote-print-meta strong {
    display: block;
    margin: 4px 0 10px;
    color: #10111a;
    font-size: clamp(2rem, 5vw, 3.05rem);
    line-height: 1;
    font-weight: 900;
}

.quote-party-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
    break-inside: avoid;
}

.quote-party-grid article {
    padding: 16px;
    background: #f6f7fb;
    border: 1px solid #dfe4ef;
    border-radius: 6px;
}

.quote-party-grid strong {
    display: block;
    margin: 7px 0 8px;
    color: #10111a;
    font-size: 1.08rem;
    font-weight: 900;
}

.quote-print-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    break-inside: auto;
}

.quote-print-table th,
.quote-print-table td {
    padding: 11px 10px;
    color: #10111a;
    text-align: left;
    border-bottom: 1px solid #dfe4ef;
}

.quote-print-table th {
    background: #10111a;
    color: #fff;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.quote-print-table td {
    font-weight: 800;
}

.quote-print-table tr.quote-talent-break td {
    border-top: 2px solid #10111a;
}

.quote-talent-name {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    color: #10111a;
    background: #eef1f7;
    border: 1px solid #cfd6e5;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 900;
}

.quote-print-table th:nth-child(3),
.quote-print-table th:nth-child(4),
.quote-print-table th:nth-child(5),
.quote-print-table td:nth-child(3),
.quote-print-table td:nth-child(4),
.quote-print-table td:nth-child(5) {
    text-align: right;
}

.quote-print-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
    break-inside: avoid;
}

.quote-print-summary div {
    padding: 14px;
    background: #f6f7fb;
    border: 1px solid #dfe4ef;
    border-radius: 6px;
}

.quote-print-summary span {
    display: block;
    color: #556078;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.quote-print-summary strong {
    display: block;
    margin-top: 8px;
    color: #10111a;
    font-size: 1.45rem;
    font-weight: 900;
}

.quote-print-summary div:last-child {
    background: #10111a;
}

.quote-print-summary div:last-child span,
.quote-print-summary div:last-child strong {
    color: #d6ff3f;
}

.quote-print-notes {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #dfe4ef;
    break-inside: avoid;
}

.quote-print-terms {
    margin-top: 22px;
    padding-top: 16px;
    color: #30384b;
    border-top: 1px solid #dfe4ef;
    break-inside: auto;
}

.quote-print-terms-title {
    margin: 0 0 10px;
    color: #10111a;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.quote-print-terms ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 18px;
}

.quote-print-terms li,
.quote-print-terms p {
    margin: 0;
    color: #4d5568;
    font-size: .74rem;
    font-weight: 700;
    line-height: 1.32;
}

.quote-print-terms p {
    margin-top: 10px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.feature-list {
    padding-left: 18px;
}

.feature-list li + li {
    margin-top: 8px;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    overflow: hidden;
}

.dashboard-preview aside {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 22px;
    background: rgba(0, 0, 0, .28);
    border-right: 1px solid var(--line);
}

.dashboard-preview aside strong {
    margin-bottom: 18px;
}

.dashboard-preview aside span {
    padding: 10px 12px;
    color: var(--muted);
    border-radius: 8px;
    font-weight: 800;
}

.dashboard-preview aside .active {
    color: var(--text);
    background: rgba(181, 99, 240, .24);
}

.dashboard-main {
    padding: 24px;
}

.dash-top,
.campaign-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dash-top h3 {
    margin: 0;
}

.dash-top span,
.campaign-list em {
    color: var(--lime);
    font-size: .82rem;
    font-style: normal;
    font-weight: 900;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.dash-cards article {
    padding: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.dash-cards strong {
    display: block;
    color: var(--cyan);
    font-size: 2rem;
}

.dash-cards span,
.campaign-list span {
    color: var(--muted);
}

.campaign-list {
    display: grid;
    gap: 10px;
}

.campaign-list div {
    padding: 14px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.campaign-list strong {
    font-size: 1rem;
}

.access-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.access-actions p {
    max-width: 420px;
    margin: 0;
    font-size: .92rem;
}

.blog-grid article span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.clients-section {
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.clients-grid article {
    position: relative;
    overflow: hidden;
    min-height: 218px;
    padding: 20px;
    background:
        linear-gradient(145deg, rgba(181, 99, 240, .18), rgba(75, 227, 255, .07)),
        rgba(17, 16, 24, .84);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.clients-grid article::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
}

.clients-grid article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(215, 255, 94, .2), transparent 62%);
}

.clients-grid span,
.clients-grid strong,
.clients-grid small {
    position: relative;
    z-index: 1;
    display: block;
}

.clients-grid span {
    color: var(--lime);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.clients-grid strong {
    display: grid;
    min-height: 82px;
    margin: 18px 0;
    place-items: center;
    color: var(--text);
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 900;
    text-align: center;
}

.clients-grid strong img {
    display: block;
    width: min(148px, 88%);
    max-height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .25));
}

.clients-grid small {
    color: var(--muted);
    line-height: 1.45;
}

.client-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 14px;
    padding: 22px 24px;
    background: rgba(17, 16, 24, .78);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.client-proof strong {
    color: var(--cyan);
    font-size: 1.2rem;
}

.client-proof p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.faq-grid article {
    padding: 24px;
    background: rgba(17, 16, 24, .82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.faq-grid h3 {
    margin-bottom: 12px;
    font-size: 1.18rem;
}

.faq-grid p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr);
    gap: clamp(26px, 5vw, 70px);
    align-items: center;
    margin: 0 clamp(18px, 4vw, 60px) clamp(24px, 4vw, 60px);
    padding: clamp(24px, 5vw, 44px);
    background:
        linear-gradient(135deg, rgba(181, 99, 240, .32), rgba(75, 227, 255, .16)),
        rgba(17, 16, 24, .9);
    border: 1px solid rgba(181, 99, 240, .5);
    border-radius: var(--radius);
}

.contact-copy p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.7;
}

.contact-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-direct span {
    padding: 9px 11px;
    color: var(--text);
    background: rgba(0, 0, 0, .26);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
}

.lead-form {
    position: relative;
    padding: clamp(20px, 4vw, 32px);
    background: rgba(9, 9, 13, .46);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.lead-talent-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: rgba(75, 227, 255, .08);
    border: 1px solid rgba(75, 227, 255, .28);
    border-radius: 8px;
}

.lead-talent-context span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
}

.lead-talent-context strong {
    color: var(--cyan);
}

.privacy-consent {
    align-items: flex-start;
    margin-top: 4px;
    font-size: .78rem;
    line-height: 1.45;
}

.privacy-consent input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.privacy-consent span {
    margin: 0;
    color: var(--muted);
    font-size: inherit;
    font-weight: 700;
    text-transform: none;
}

.privacy-consent a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legacy-contact {
    display: none;
}

.contact-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 clamp(18px, 4vw, 60px) clamp(24px, 4vw, 60px);
    padding: clamp(24px, 5vw, 44px);
    background:
        linear-gradient(135deg, rgba(181, 99, 240, .32), rgba(75, 227, 255, .16)),
        rgba(17, 16, 24, .9);
    border: 1px solid rgba(181, 99, 240, .5);
    border-radius: var(--radius);
}

.contact-band h2 {
    margin-bottom: 10px;
}

.contact-band p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 800;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px clamp(18px, 4vw, 60px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-brand,
.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand strong {
    color: var(--text);
}

.footer-links a,
.site-footer a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
    color: var(--cyan);
}

.talent-profile-page main {
    min-height: calc(100vh - 150px);
}

.talent-profile-hero {
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    gap: clamp(34px, 7vw, 100px);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: clamp(34px, 6vw, 80px) clamp(18px, 6vw, 90px);
}

.talent-profile-image {
    overflow: hidden;
    display: grid;
    align-items: end;
    min-height: min(680px, 72vh);
    background:
        radial-gradient(circle at 50% 24%, rgba(75, 227, 255, .2), transparent 48%),
        linear-gradient(180deg, rgba(181, 99, 240, .25), rgba(17, 16, 24, .35));
    border: 1px solid rgba(181, 99, 240, .42);
    border-radius: 8px;
}

.talent-profile-image img {
    width: 100%;
    max-height: min(680px, 72vh);
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 46px rgba(0, 0, 0, .48));
}

.talent-profile-copy h1 {
    margin: 6px 0 4px;
    font-size: clamp(3.4rem, 8vw, 7.5rem);
}

.talent-profile-handle {
    margin: 0 0 22px;
    color: var(--cyan);
    font-size: 1.12rem;
    font-weight: 900;
}

.talent-profile-lead {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.8vw, 1.28rem);
    line-height: 1.65;
}

.talent-profile-copy .chips {
    margin-top: 20px;
}

.talent-profile-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 28px 0;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.talent-profile-facts article {
    padding: 16px;
    background: rgba(17, 16, 24, .95);
}

.talent-profile-facts span,
.talent-profile-facts strong {
    display: block;
}

.talent-profile-facts span {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.talent-profile-facts strong {
    font-size: .88rem;
    line-height: 1.45;
}

.talent-profile-commercial {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 7vw, 100px);
    align-items: end;
    padding: clamp(55px, 8vw, 100px) clamp(18px, 6vw, 90px);
    background: rgba(17, 16, 24, .76);
    border-top: 1px solid var(--line);
}

.talent-profile-commercial h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 4.6rem);
}

.talent-profile-commercial > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.talent-profile-not-found,
.legal-content {
    width: min(920px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(70px, 10vw, 120px) 0;
}

.legal-content h1 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.legal-lead {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.legal-content section {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.legal-content section h2 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.legal-content section p,
.legal-content section li {
    color: var(--muted);
    line-height: 1.75;
}

.legal-content section a {
    color: var(--cyan);
}

.admin-page {
    min-height: 100vh;
}

.admin-page::after {
    opacity: .12;
}

.admin-layout {
    padding: clamp(26px, 5vw, 70px) clamp(18px, 4vw, 60px);
}

.admin-login {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
    min-height: calc(100vh - 190px);
}

.admin-login h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.login-card {
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(181, 99, 240, .16), rgba(75, 227, 255, .08));
    pointer-events: none;
}

.login-card > * {
    position: relative;
}

.internal-panel[hidden],
.admin-login[hidden] {
    display: none;
}

.internal-panel {
    display: grid;
    gap: 22px;
}

.admin-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.admin-toolbar h2 {
    margin-bottom: 0;
}

.admin-userline {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 800;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    background: rgba(17, 16, 24, .82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.admin-tabs button {
    min-height: 42px;
    padding: 0 14px;
    color: var(--muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.admin-tabs button.active,
.admin-tabs button:hover {
    color: var(--text);
    background: rgba(181, 99, 240, .2);
    border-color: rgba(181, 99, 240, .38);
}

.admin-module {
    display: none;
}

.admin-module.active {
    display: grid;
    gap: 18px;
}

.dashboard-preview.compact {
    min-height: 360px;
}

.profile-dialog {
    width: min(960px, calc(100vw - 28px));
    padding: 0;
    color: var(--text);
    background: var(--panel);
    border: 1px solid rgba(181, 99, 240, .58);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.profile-dialog::backdrop {
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(6px);
}

.dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, .46);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.profile-content {
    display: grid;
    grid-template-columns: minmax(240px, .85fr) minmax(0, 1fr);
}

.profile-media {
    display: grid;
    align-items: end;
    min-height: 520px;
    background:
        radial-gradient(circle at 50% 22%, rgba(75, 227, 255, .18), transparent 44%),
        linear-gradient(180deg, rgba(181, 99, 240, .24), rgba(0, 0, 0, .2));
}

.profile-media img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center bottom;
}

.profile-info {
    padding: clamp(24px, 5vw, 46px);
}

.profile-info h3 {
    margin-bottom: 6px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
}

.profile-info .handle {
    color: var(--cyan);
    font-weight: 900;
}

.profile-info p {
    color: var(--muted);
    line-height: 1.7;
}

.profile-meta {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.profile-meta div {
    padding: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.profile-meta span {
    display: block;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-meta strong {
    display: block;
    margin-top: 4px;
}

@media (max-width: 1120px) {
    .hero,
    .payment-hero,
    .split-section,
    .split-section.reverse,
    .talent-profile-hero {
        grid-template-columns: 1fr;
    }

    .reverse .split-copy {
        order: 0;
    }

    .hero-stage {
        min-height: 0;
    }

    .payment-hero {
        min-height: auto;
    }

    .talent-profile-hero {
        min-height: auto;
    }

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

    .section-heading.wide {
        align-items: start;
        flex-direction: column;
    }

    .service-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: rgba(17, 16, 24, .96);
        border: 1px solid var(--line);
        border-radius: var(--radius);
    }

    .main-nav.is-open {
        display: flex;
    }

    .metric-band,
    .intro-grid,
    .blog-grid,
    .clients-grid,
    .faq-grid,
    .dash-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .catalog-tools,
    .form-grid,
    .contact-section,
    .dashboard-preview,
    .profile-content,
    .talent-profile-commercial {
        grid-template-columns: 1fr;
    }

    .talent-profile-image {
        min-height: 520px;
    }

    .talent-profile-copy h1 {
        font-size: clamp(3.6rem, 14vw, 6.5rem);
    }

    .dashboard-preview aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .dashboard-preview aside strong {
        grid-column: 1 / -1;
    }

    .contact-band,
    .contact-section,
    .site-footer,
    .client-proof,
    .admin-login,
    .admin-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-login {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .admin-toolbar {
        display: flex;
    }

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

    .quote-report-filters,
    .quote-report-summary,
    .campaign-report-filters,
    .campaign-report-summary {
        grid-template-columns: 1fr;
    }

    .campaign-report-head {
        align-items: stretch;
        flex-direction: column;
    }

    .campaign-report-head .button {
        width: 100%;
    }

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

    .payment-review-grid,
    .payment-documents {
        grid-template-columns: 1fr;
    }

    .payment-status-editor,
    .payment-tracking-summary,
    .payment-tracking-layout,
    .payment-correction-files,
    .payment-correction-value {
        grid-template-columns: 1fr;
    }

    .payment-correction-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-correction-value-reference {
        min-height: 0;
    }

    .payment-status-actions,
    .payment-tracking-header {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-status-actions .button {
        width: 100%;
    }

    .service-editor-hero,
    .service-editor-toolbar,
    .service-card-head {
        align-items: stretch;
        flex-direction: column;
    }

    .service-total-card {
        width: 100%;
    }

    .service-toolbar-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .quote-print-header,
    .quote-party-grid,
    .quote-print-summary,
    .talent-editor-layout {
        grid-template-columns: 1fr;
    }

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

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

    .service-card-actions {
        align-self: flex-end;
    }

    .quote-print-header {
        display: grid;
    }

    .quote-print-meta {
        text-align: left;
    }

    .talent-list-panel {
        position: static;
    }
}

@media print {
    @page {
        size: A4;
        margin: 10mm;
    }

    .quote-print-page {
        background: #fff;
        font-size: 10.5pt;
    }

    .print-actions {
        display: none;
    }

    .quote-sheet {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .quote-print-header {
        display: flex;
        align-items: center;
        padding-bottom: 12mm;
        break-inside: avoid;
    }

    .quote-print-logo {
        width: 68mm;
    }

    .quote-print-meta strong {
        font-size: 28pt;
    }

    .quote-party-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8mm;
        margin: 8mm 0;
        break-inside: avoid;
    }

    .quote-party-grid article {
        padding: 5mm;
    }

    .quote-print-table {
        margin-top: 6mm;
        break-inside: auto;
    }

    .quote-print-table th,
    .quote-print-table td {
        padding: 3.2mm;
    }

    .quote-print-table th {
        background: #10111a !important;
        color: #fff !important;
    }

    .quote-print-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4mm;
        margin-top: 7mm;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .quote-print-summary div {
        padding: 5mm;
    }

    .quote-print-summary div:last-child {
        background: #10111a !important;
    }

    .quote-print-notes {
        margin-top: 7mm;
        padding-top: 5mm;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .quote-print-terms {
        margin-top: 6mm;
        padding-top: 4mm;
    }

    .quote-print-terms-title {
        font-size: 7pt;
    }

    .quote-talent-name {
        min-height: 0;
        padding: 1.6mm 2.2mm;
        font-size: 7.4pt;
    }

    .quote-print-terms li,
    .quote-print-terms p {
        font-size: 7.4pt;
        line-height: 1.24;
    }

    .quote-print-page * {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

@media (max-width: 560px) {
    .site-header {
        min-height: 68px;
        padding-inline: 14px;
    }

    .main-nav {
        top: 68px;
    }

    .brand small {
        display: none;
    }

    .brand-logo {
        width: 126px;
    }

    .brand-section-label {
        display: none;
    }

    .payment-template-download {
        grid-template-columns: 1fr;
    }

    .payment-template-download .button {
        width: 100%;
    }

    .talent-profile-hero {
        padding-top: 26px;
    }

    .talent-profile-image {
        min-height: 420px;
    }

    .talent-profile-image img {
        max-height: 420px;
    }

    .talent-profile-facts {
        grid-template-columns: 1fr;
    }

    .talent-profile-copy .hero-actions,
    .talent-profile-copy .hero-actions .button {
        width: 100%;
    }

    .lead-talent-context,
    .footer-brand,
    .footer-links {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-correction-panel {
        padding: 18px 14px;
    }

    .payment-correction-head {
        gap: 14px;
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .payment-correction-section {
        padding: 20px 0;
    }

    .payment-correction-value-reference {
        grid-template-columns: 1fr;
    }

    .payment-correction-value-reference > div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .payment-correction-upload {
        min-height: 132px;
    }

    .hero {
        gap: 24px;
        padding: 24px 14px 20px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 11.5vw, 3.15rem);
        line-height: .96;
    }

    .hero-text {
        font-size: .96rem;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .hero-stage,
    .stage-card {
        min-height: 140px;
    }

    .orbit-list {
        display: none;
    }

    h1 {
        font-size: clamp(2.8rem, 15vw, 4rem);
    }

    h2 {
        font-size: 2.15rem;
    }

    .hero-actions,
    .hero-actions .button,
    .contact-band .button,
    .contact-section .button {
        width: 100%;
    }

    .metric-band,
    .intro-grid,
    .blog-grid,
    .clients-grid,
    .faq-grid,
    .talent-grid,
    .dash-cards,
    .orbit-list {
        grid-template-columns: 1fr;
    }

    .stage-card img {
        width: 58%;
    }

    .stage-card::before {
        inset: 10px;
    }

    .stage-card div {
        padding: 16px;
    }

    .stage-card strong {
        font-size: 2.35rem;
    }

    .talent-card {
        min-height: 0;
    }

    .talent-photo,
    .talent-photo img {
        height: 250px;
    }

    .profile-media {
        min-height: 360px;
    }

    .campaign-list div,
    .dash-top,
    .access-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-tabs {
        display: grid;
    }

    .admin-tabs button {
        width: 100%;
    }
}
