:root {
    color-scheme: dark;
    --bg: #080a0f;
    --bg-elevated: #0f121a;
    --surface: rgba(17, 20, 29, 0.82);
    --surface-strong: rgba(22, 26, 37, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.045);
    --border: rgba(255, 255, 255, 0.105);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f7fb;
    --text-soft: #b2b8c8;
    --text-muted: #7f879a;
    --accent: #72e7c6;
    --accent-strong: #a3f4dc;
    --accent-dark: #092c25;
    --danger: #ff8b8b;
    --danger-bg: rgba(255, 105, 105, 0.09);
    --focus: rgba(114, 231, 198, 0.5);
    --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.28);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 15px;
    --radius-sm: 11px;
    --max-width: 1180px;
    --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -10%, rgba(54, 83, 92, 0.24), transparent 34rem),
        linear-gradient(145deg, #080a0f 0%, #0c1018 52%, #080a0f 100%);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

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

::selection {
    background: rgba(114, 231, 198, 0.25);
    color: var(--text);
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.page {
    position: relative;
    isolation: isolate;
    overflow-x: hidden;
}

.page::before {
    position: fixed;
    z-index: -3;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    pointer-events: none;
}

.ambient {
    position: fixed;
    z-index: -2;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.13;
    pointer-events: none;
}

.ambient--one {
    top: -11rem;
    right: -8rem;
    background: #58e6bf;
}

.ambient--two {
    bottom: -15rem;
    left: -11rem;
    background: #586fe6;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--text);
    color: #080a0f;
    font-weight: 750;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.site-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.55fr);
    width: min(calc(100% - 40px), var(--max-width));
    margin: clamp(24px, 5vw, 74px) auto 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
}

.profile-panel {
    position: relative;
    border-right: 1px solid var(--border);
    background:
        linear-gradient(155deg, rgba(114, 231, 198, 0.075), transparent 36%),
        rgba(255, 255, 255, 0.018);
}

.profile-panel::after {
    position: absolute;
    right: -1px;
    bottom: 0;
    width: 1px;
    height: 30%;
    background: linear-gradient(transparent, rgba(114, 231, 198, 0.5));
    content: "";
}

.profile-panel__inner {
    position: sticky;
    top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(34px, 5vw, 58px) clamp(24px, 3.8vw, 46px);
    text-align: center;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    padding: 7px 12px;
    border: 1px solid rgba(114, 231, 198, 0.16);
    border-radius: 999px;
    background: rgba(114, 231, 198, 0.055);
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 720;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.availability__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(114, 231, 198, 0.09);
}

.avatar {
    position: relative;
    display: grid;
    width: clamp(142px, 16vw, 188px);
    aspect-ratio: 1;
    margin-bottom: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(114, 231, 198, 0.32), transparent 45%),
        #171c26;
    box-shadow:
        0 0 0 9px rgba(255, 255, 255, 0.027),
        0 18px 42px rgba(0, 0, 0, 0.38);
}

.avatar::after {
    position: absolute;
    right: 7%;
    bottom: 8%;
    width: 19px;
    height: 19px;
    border: 4px solid #11151d;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}

.avatar__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: center 23%;
}

.avatar__fallback {
    color: var(--accent-strong);
    font-size: clamp(2.25rem, 5vw, 3.6rem);
    font-weight: 820;
    letter-spacing: -0.08em;
}

.avatar--fallback .avatar__image {
    display: none;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 780;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.profile-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.profile-description {
    max-width: 330px;
    margin: 18px 0 28px;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.7;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    width: 100%;
}

.social-link {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 51px;
    padding: 8px 11px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.032);
    color: var(--text-soft);
    font-size: 0.79rem;
    font-weight: 680;
    text-align: left;
    text-decoration: none;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.social-link:hover {
    border-color: rgba(114, 231, 198, 0.28);
    background: rgba(114, 231, 198, 0.07);
    color: var(--text);
    transform: translateY(-2px);
}

.social-link--wide {
    grid-column: 1 / -1;
}

.social-link__icon {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
    font-size: 0.61rem;
    font-weight: 820;
    letter-spacing: -0.02em;
}

.social-link__arrow {
    color: var(--text-muted);
    font-size: 0.86rem;
    transition: transform 180ms ease;
}

.social-link:hover .social-link__arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

.social-status {
    min-height: 1.4em;
    margin: 10px 0 -12px;
    color: var(--text-muted);
    font-size: 0.72rem;
}

.project-panel {
    min-width: 0;
    padding: clamp(34px, 5vw, 66px) clamp(25px, 5.3vw, 68px);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 38px;
}

.section-heading h2,
.admin-header h1,
.message-card h1 {
    margin: 0;
    font-size: clamp(2.05rem, 4.5vw, 3.45rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.section-heading > p:last-child {
    max-width: 570px;
    margin: 15px 0 0;
    color: var(--text-soft);
}

.work-scope {
    margin: -7px 0 34px;
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(114, 231, 198, 0.055), transparent 48%),
        rgba(255, 255, 255, 0.018);
}

.work-scope__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.work-scope__heading .eyebrow {
    margin-bottom: 3px;
}

.work-scope__heading h3 {
    margin: 0;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.work-scope__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.work-scope__card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 72px;
    padding: 12px 13px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(5, 7, 12, 0.34);
    color: #e1e5ed;
    font-size: 0.8rem;
    font-weight: 630;
    line-height: 1.4;
    transition:
        border-color 170ms ease,
        background 170ms ease,
        transform 170ms ease;
}

.work-scope__card:hover {
    border-color: rgba(114, 231, 198, 0.25);
    background: rgba(114, 231, 198, 0.045);
    transform: translateY(-1px);
}

.work-scope__number {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(114, 231, 198, 0.17);
    border-radius: 10px;
    background: rgba(114, 231, 198, 0.07);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.form-alert {
    display: flex;
    gap: 14px;
    margin: -4px 0 28px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 139, 139, 0.26);
    border-radius: var(--radius-md);
    background: var(--danger-bg);
    color: #ffd7d7;
}

.form-alert__icon {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 139, 139, 0.15);
    font-weight: 820;
}

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

.form-alert ul {
    margin: 0;
    padding-left: 19px;
    color: #f8bebe;
    font-size: 0.88rem;
}

.request-form {
    display: grid;
    gap: 30px;
}

.form-section {
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.form-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 21px;
}

.form-section__heading h3 {
    margin: 0 0 3px;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.form-section__heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.step-number {
    display: grid;
    flex: 0 0 38px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(114, 231, 198, 0.15);
    border-radius: 999px;
    background: rgba(114, 231, 198, 0.06);
    color: var(--accent);
    font-size: 0.67rem;
    font-weight: 790;
    letter-spacing: 0.06em;
}

.field {
    min-width: 0;
}

.field-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 8px;
    color: #dce0e9;
    font-size: 0.83rem;
    font-weight: 680;
}

.field-label > span[aria-hidden="true"] {
    margin-left: 2px;
    color: var(--accent);
}

.field-label__optional {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 520;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(5, 7, 12, 0.52);
    color: var(--text);
    outline: none;
    transition:
        border-color 170ms ease,
        box-shadow 170ms ease,
        background 170ms ease;
}

input,
select {
    min-height: 51px;
    padding: 0 15px;
}

textarea {
    display: block;
    min-height: 132px;
    padding: 13px 15px;
    line-height: 1.55;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #656d7f;
    opacity: 1;
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--border-strong);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(114, 231, 198, 0.58);
    background: rgba(6, 9, 14, 0.73);
    box-shadow: 0 0 0 4px rgba(114, 231, 198, 0.075);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: rgba(255, 139, 139, 0.56);
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    padding-right: 48px;
    appearance: none;
    cursor: pointer;
}

.select-wrap__arrow {
    position: absolute;
    top: 50%;
    right: 17px;
    color: var(--accent);
    font-size: 1.15rem;
    pointer-events: none;
    transform: translateY(-58%);
}

.field-hint,
.field-error {
    margin: 7px 2px 0;
    font-size: 0.75rem;
}

.field-hint {
    color: var(--text-muted);
}

.field-error {
    color: var(--danger);
}

.field-error:empty {
    display: none;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-width: 0;
    padding: 0;
    border: 0;
}

.option-card {
    position: relative;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    min-width: 0;
    min-height: 78px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
    transition:
        border-color 170ms ease,
        background 170ms ease,
        transform 170ms ease;
}

.option-card:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-1px);
}

.option-card:has(.option-card__input:checked) {
    border-color: rgba(114, 231, 198, 0.38);
    background: rgba(114, 231, 198, 0.07);
}

.option-card:has(.option-card__input:focus-visible) {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

.option-card__input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.option-card__control {
    display: grid;
    width: 23px;
    height: 23px;
    margin-top: 1px;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.14);
    color: transparent;
    font-size: 0.74rem;
    font-weight: 900;
    transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.option-card__input:checked + .option-card__control {
    border-color: var(--accent);
    background: var(--accent);
    color: #08231d;
}

.option-card__content {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.option-card__name {
    color: #e8ebf2;
    font-size: 0.83rem;
    font-weight: 660;
    line-height: 1.35;
}

.option-card__price {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.option-card__input:checked ~ .option-card__content .option-card__price {
    color: var(--accent);
}

.estimate {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 34px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(114, 231, 198, 0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(114, 231, 198, 0.09), transparent 60%),
        rgba(255, 255, 255, 0.025);
}

.estimate::after {
    position: absolute;
    top: -70px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(114, 231, 198, 0.08);
    content: "";
    filter: blur(35px);
    pointer-events: none;
}

.estimate__details,
.estimate__total {
    position: relative;
    z-index: 1;
}

.estimate__label {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 0.79rem;
    font-weight: 730;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.estimate dl {
    display: grid;
    gap: 4px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.77rem;
}

.estimate dl > div {
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.estimate dd {
    margin: 0;
    color: var(--text-soft);
    font-variant-numeric: tabular-nums;
}

.estimate__total {
    align-self: center;
    text-align: right;
}

.estimate__total span {
    display: block;
    margin-bottom: 2px;
    color: var(--text-muted);
    font-size: 0.73rem;
}

.estimate__total strong {
    color: var(--accent-strong);
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.estimate__note {
    z-index: 1;
    grid-column: 1 / -1;
    margin: -2px 0 0;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    color: var(--text-muted);
    font-size: 0.74rem;
}

.fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
}

.field--wide {
    grid-column: 1 / -1;
}

.field-meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.character-counter {
    margin: 7px 2px 0 auto;
    color: var(--text-muted);
    font-size: 0.7rem;
    white-space: nowrap;
}

.submit-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 57px;
    margin-top: 24px;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: var(--accent);
    color: #071b17;
    box-shadow: 0 13px 32px rgba(70, 205, 169, 0.13);
    cursor: pointer;
    font-weight: 790;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease,
        opacity 180ms ease;
}

.submit-button::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.3), transparent 70%);
    content: "";
    transform: translateX(-105%);
    transition: transform 500ms ease;
}

.submit-button:hover:not(:disabled) {
    background: var(--accent-strong);
    box-shadow: 0 16px 38px rgba(70, 205, 169, 0.2);
    transform: translateY(-2px);
}

.submit-button:hover:not(:disabled)::before {
    transform: translateX(105%);
}

.submit-button:active:not(:disabled) {
    transform: translateY(0);
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.submit-button__arrow {
    font-size: 1.2rem;
    transition: transform 180ms ease;
}

.submit-button:hover:not(:disabled) .submit-button__arrow {
    transform: translateX(3px);
}

.submit-button__spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(7, 27, 23, 0.25);
    border-top-color: #071b17;
    border-radius: 50%;
    animation: spin 700ms linear infinite;
}

.submit-button.is-loading .submit-button__arrow {
    display: none;
}

.submit-button.is-loading .submit-button__spinner {
    display: block;
}

.privacy-note {
    margin: 10px auto 0;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-align: center;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto 34px;
    color: var(--text-muted);
    font-size: 0.73rem;
}

/* Thank-you page */
.page--centered {
    display: grid;
    min-height: 100vh;
    padding: 24px;
    place-items: center;
}

.message-card {
    width: min(100%, 570px);
    padding: clamp(34px, 7vw, 62px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, rgba(114, 231, 198, 0.06), transparent 45%),
        var(--surface);
    box-shadow: var(--shadow-lg);
    text-align: center;
    backdrop-filter: blur(22px);
}

.success-mark {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 27px;
    place-items: center;
    border: 1px solid rgba(114, 231, 198, 0.32);
    border-radius: 50%;
    background: rgba(114, 231, 198, 0.09);
    box-shadow:
        0 0 0 10px rgba(114, 231, 198, 0.035),
        0 18px 36px rgba(0, 0, 0, 0.23);
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
}

.message-card__text {
    max-width: 440px;
    margin: 18px auto 0;
    color: var(--text-soft);
    font-size: 1.03rem;
}

.message-card__divider {
    width: 44px;
    height: 1px;
    margin: 27px auto 20px;
    background: var(--border-strong);
}

.message-card__note {
    margin: 0 auto 28px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.primary-link,
.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 49px;
    border-radius: 13px;
    font-weight: 740;
    text-decoration: none;
    transition:
        border-color 170ms ease,
        background 170ms ease,
        transform 170ms ease;
}

.primary-link {
    padding: 11px 21px;
    background: var(--accent);
    color: #071b17;
}

.primary-link:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
}

.secondary-link {
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-soft);
    font-size: 0.82rem;
}

.secondary-link:hover {
    border-color: rgba(114, 231, 198, 0.28);
    background: rgba(114, 231, 198, 0.06);
    color: var(--text);
}

/* Admin */
.page--admin {
    min-height: 100vh;
    padding: clamp(22px, 4vw, 58px) 20px;
}

.admin-shell {
    width: min(100%, 1480px);
    margin: 0 auto;
}

.admin-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
}

.admin-header__subtitle {
    margin: 12px 0 0;
    color: var(--text-soft);
}

.admin-header__actions {
    display: flex;
    align-items: center;
    gap: 11px;
}

.request-count {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    min-height: 43px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--text-muted);
    font-size: 0.77rem;
}

.request-count strong {
    color: var(--accent);
    font-size: 1rem;
}

.table-shell {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.requests-table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
    font-size: 0.81rem;
}

.requests-table th,
.requests-table td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.requests-table th {
    position: sticky;
    z-index: 1;
    top: 0;
    background: #131720;
    color: var(--text-muted);
    font-size: 0.67rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.requests-table tbody tr {
    transition: background 160ms ease;
}

.requests-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.027);
}

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

.request-id,
.request-date,
.price-value {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.request-id {
    color: var(--text-muted);
}

.request-date {
    color: var(--text-soft);
}

.request-name {
    display: block;
    min-width: 105px;
    color: var(--text);
}

.contact-stack {
    display: grid;
    gap: 5px;
    min-width: 135px;
}

.contact-stack a {
    color: var(--text-soft);
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.contact-stack a:hover {
    color: var(--accent);
}

.service-badge,
.option-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    line-height: 1.25;
}

.service-badge {
    min-width: 100px;
    padding: 6px 9px;
    background: rgba(114, 231, 198, 0.08);
    color: var(--accent-strong);
    font-size: 0.72rem;
}

.option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 115px;
}

.option-tag {
    padding: 5px 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-soft);
    font-size: 0.68rem;
}

.price-value {
    color: var(--accent-strong);
}

.request-comment {
    max-width: 280px;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.muted-value {
    color: var(--text-muted);
    font-size: 0.76rem;
}

.empty-state {
    display: grid;
    width: min(100%, 600px);
    margin: clamp(50px, 10vw, 110px) auto;
    padding: clamp(34px, 6vw, 56px);
    place-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    text-align: center;
    backdrop-filter: blur(18px);
}

.empty-state__icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-soft);
    color: var(--accent);
    font-size: 1.45rem;
}

.empty-state h2 {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    letter-spacing: -0.035em;
}

.empty-state > p:not(.eyebrow) {
    margin: 11px 0 24px;
    color: var(--text-soft);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .site-shell {
        grid-template-columns: minmax(255px, 0.8fr) minmax(0, 1.35fr);
        width: min(calc(100% - 28px), var(--max-width));
    }

    .profile-panel__inner {
        padding-inline: 24px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-link--wide {
        grid-column: auto;
    }

    .project-panel {
        padding-inline: 30px;
    }

    .options-grid,
    .fields-grid {
        grid-template-columns: 1fr;
    }

    .field--wide {
        grid-column: auto;
    }

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

    .estimate__total {
        text-align: left;
    }
}

@media (max-width: 760px) {
    .site-shell {
        display: block;
        margin-top: 14px;
        border-radius: 24px;
    }

    .profile-panel {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .profile-panel::after {
        right: auto;
        bottom: -1px;
        left: 0;
        width: 34%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(114, 231, 198, 0.5));
    }

    .profile-panel__inner {
        position: relative;
        top: auto;
        padding: 35px 26px;
    }

    .availability {
        margin-bottom: 24px;
    }

    .avatar {
        width: 148px;
        margin-bottom: 24px;
    }

    .profile-description {
        margin-bottom: 24px;
    }

    .social-links {
        grid-template-columns: 1fr 1fr;
        max-width: 500px;
    }

    .social-link--wide {
        grid-column: 1 / -1;
    }

    .project-panel {
        padding: 38px 25px 42px;
    }

    .section-heading {
        margin-bottom: 31px;
    }

    .page--admin {
        padding: 20px 14px 36px;
    }

    .admin-header {
        display: grid;
        align-items: start;
    }

    .admin-header__actions {
        justify-content: space-between;
    }

    .table-shell {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .requests-table,
    .requests-table tbody,
    .requests-table tr,
    .requests-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .requests-table thead {
        display: none;
    }

    .requests-table tbody {
        display: grid;
        gap: 14px;
    }

    .requests-table tbody tr {
        overflow: hidden;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: var(--surface);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
    }

    .requests-table tbody tr:hover {
        background: var(--surface);
    }

    .requests-table td {
        display: grid;
        grid-template-columns: minmax(82px, 0.35fr) minmax(0, 1fr);
        gap: 16px;
        padding: 13px 15px;
        border-bottom: 1px solid var(--border);
    }

    .requests-table td::before {
        color: var(--text-muted);
        content: attr(data-label);
        font-size: 0.65rem;
        font-weight: 760;
        letter-spacing: 0.075em;
        text-transform: uppercase;
    }

    .requests-table tbody tr:last-child td:not(:last-child),
    .requests-table tbody tr td:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }

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

    .request-comment {
        max-width: none;
    }
}

@media (max-width: 520px) {
    body {
        font-size: 15px;
    }

    .page::before {
        background-size: 34px 34px;
    }

    .site-shell {
        width: calc(100% - 20px);
        border-radius: 20px;
    }

    .profile-panel__inner {
        padding-inline: 19px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-link--wide {
        grid-column: auto;
    }

    .project-panel {
        padding: 34px 18px 37px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .work-scope {
        padding: 17px;
    }

    .work-scope__heading {
        display: block;
    }

    .work-scope__heading .eyebrow {
        margin-bottom: 7px;
    }

    .work-scope__grid {
        grid-template-columns: 1fr;
    }

    .work-scope__card {
        min-height: 65px;
    }

    .form-section {
        padding-top: 26px;
    }

    .option-card {
        min-height: 74px;
    }

    .estimate {
        padding: 18px;
    }

    .estimate__total strong {
        font-size: 1.75rem;
    }

    .site-footer {
        flex-wrap: wrap;
        width: calc(100% - 28px);
        margin-bottom: 25px;
    }

    .page--centered {
        padding: 14px;
    }

    .message-card {
        padding: 37px 23px;
        border-radius: 23px;
    }

    .admin-header__actions {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .secondary-link {
        width: 100%;
    }

    .requests-table td {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
