:root {
    --bg: #050505;
    --fg: #ffffff;
    --accent: #0070f3;
    --accent-secondary: #7928ca;
    --muted: #a1a1aa;
    --muted-strong: #71717a;
    --card-bg: rgba(20, 20, 20, 0.4);
    --card-border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.02);
    --danger: #ef4444;
    --success: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Gradient Background */
.bg-animate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 0% 0%, #0d1117 0%, #000000 100%);
}

.glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
}

/* Typography */
h1, h2, h3 {
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 1000;
}

nav a {
    align-items: center;
    color: #888;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 500;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

nav a svg {
    display: none;
    height: 18px;
    width: 18px;
}

nav a:hover {
    color: var(--fg);
}

/* Hero */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
}

.badge {
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #fff, #444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto 4rem;
    max-width: 720px;
}

.hero-skills span {
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 999px;
    background: rgba(103, 232, 249, 0.08);
    color: #a5f3fc;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.48rem 0.78rem;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: var(--accent);
    color: #fff;
}

.btn-secondary {
    background: var(--glass);
    color: #fff;
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.22);
}

.btn-danger:hover {
    background: var(--danger);
    color: #fff;
    border-color: var(--danger);
}

.btn svg {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

.brand-icon path {
    fill: currentColor;
}

.brand-icon rect,
.brand-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.brand-icon circle:last-child {
    fill: currentColor;
    stroke: none;
}

.social-icon:focus-visible,
.btn:focus-visible,
.admin-tabs a:focus-visible,
.close-modal:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.45);
    outline-offset: 3px;
}

.social-github:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #050505;
    transform: translateY(-6px);
}

.social-instagram {
    color: #fb7185;
}

.social-instagram:hover {
    background: linear-gradient(135deg, #f97316, #e11d48 48%, #7c3aed);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-6px);
}

.social-discord {
    color: #a5b4fc;
}

.social-discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    color: #fff;
    transform: translateY(-6px);
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 3rem;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    margin-bottom: 1rem;
}

.projects-page {
    padding-top: 10rem;
}

.projects-heading {
    max-width: 820px;
    margin-bottom: 3rem;
}

.projects-heading .badge {
    margin-bottom: 0.75rem;
}

.projects-heading p {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.75;
}

.projects-showcase {
    display: grid;
    gap: 1.5rem;
}

.project-filters {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.filter-tabs {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.35rem;
}

.filter-tabs a {
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.75rem 1rem;
    text-decoration: none;
}

.filter-tabs a.is-active {
    background: #fff;
    color: #050505;
}

.project-search {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    display: flex;
    gap: 0.65rem;
    min-width: min(100%, 360px);
    padding: 0 1rem;
}

.project-search svg {
    color: var(--muted-strong);
    height: 18px;
    width: 18px;
}

.project-search input {
    background: transparent;
    border: 0;
    color: #fff;
    font: inherit;
    outline: none;
    padding: 0.9rem 0;
    width: 100%;
}

.project-feature {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.project-media {
    position: relative;
    display: block;
    width: 100%;
    min-height: 340px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: #101014;
}

.project-media-img {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.project-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.48));
}

.project-feature:hover .project-media-img {
    filter: saturate(1.08);
    transform: scale(1.035);
}

.project-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.tag {
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 999px;
    background: rgba(103, 232, 249, 0.08);
    color: #a5f3fc;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.45rem 0.7rem;
}

.tag-muted {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f4f4f5;
}

.project-feature h3 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.project-feature-copy p {
    color: #c4c4cc;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
}

.project-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.project-feature-actions .btn {
    padding: 0.95rem 1.35rem;
}

.social-results {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.social-results div {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 0.95rem;
}

.social-results span {
    color: var(--muted-strong);
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.social-results strong {
    color: #fff;
    font-size: 1.25rem;
}

.creative-strip {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.creative-strip a {
    aspect-ratio: 1;
    background-color: #111;
    background-position: center;
    background-size: cover;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    display: block;
}

.project-reviews {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.review-card {
    border: 1px solid var(--card-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    padding: 1.25rem;
}

.review-card header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.review-card strong {
    color: #fff;
}

.review-card small,
.review-card time {
    color: var(--muted-strong);
    display: block;
    font-size: 0.78rem;
    margin-top: 0.3rem;
}

.review-card span {
    color: #fde68a;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.review-card-meta {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.review-card .verified-badge {
    align-items: center;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.24);
    border-radius: 999px;
    color: #86efac;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    gap: 0.35rem;
    letter-spacing: 0;
    padding: 0.32rem 0.55rem;
}

.verified-badge svg {
    height: 14px;
    width: 14px;
}

.review-card p {
    color: #d4d4d8;
    line-height: 1.65;
}

.review-page {
    max-width: 860px;
    padding-top: 10rem;
}

.reviews-hero {
    margin-bottom: 1.5rem;
}

.reviews-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.reviews-hero p {
    color: #b5b5bd;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.review-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-bottom: 2rem;
}

.review-stats div {
    border: 1px solid var(--card-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    padding: 1.25rem;
}

.review-stats span {
    color: var(--muted-strong);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.review-stats strong {
    color: #fff;
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.review-form-card {
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    padding: clamp(1.5rem, 5vw, 3rem);
}

.review-modal {
    align-items: center;
    display: none;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    z-index: 2500;
}

.review-modal.is-open {
    display: flex;
}

.review-modal-backdrop {
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(18px);
    inset: 0;
    position: absolute;
}

.review-modal-panel {
    max-height: min(90vh, 820px);
    overflow-y: auto;
    position: relative;
    width: min(720px, 100%);
    z-index: 1;
}

.review-modal-panel .review-form-card {
    background: rgba(12, 12, 16, 0.98);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
}

body.modal-open {
    overflow: hidden;
}

.review-form-card h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.review-form-card h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.review-form-card p {
    color: #b5b5bd;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.review-project-preview {
    border: 1px dashed var(--card-border);
    border-radius: 18px;
    color: var(--muted);
    margin-bottom: 1.25rem;
    padding: 1rem;
}

.review-project-preview.is-visible {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.review-project-preview span,
.review-project-preview small {
    color: var(--muted-strong);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-project-preview strong {
    color: #fff;
    display: block;
    font-size: 1.15rem;
    margin: 0.4rem 0;
}

.public-reviews {
    margin-top: 3rem;
}

.public-review-grid {
    display: grid;
    gap: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    backdrop-filter: blur(30px);
}

.modal-content {
    max-width: 1000px;
    margin: 5vh auto;
    background: #000;
    border: 1px solid var(--card-border);
    border-radius: 40px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.close-modal svg {
    width: 20px;
    height: 20px;
}

.modal-content {
    position: relative;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: #d4d4d8;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    font: inherit;
    padding: 0.95rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.62);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

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

.form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

/* Admin */
.admin-body {
    padding: 3rem 0 5rem;
}

.admin-shell {
    max-width: 1120px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    backdrop-filter: blur(18px);
}

.admin-eyebrow {
    color: #67e8f9;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.admin-header h1 {
    font-size: clamp(2rem, 4vw, 3.75rem);
    margin: 0 0 0.6rem;
}

.admin-header p,
.admin-section-head p,
.project-row-copy p {
    color: var(--muted-strong);
}

.admin-actions,
.row-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-actions .btn,
.row-actions .btn,
.form-actions .btn {
    justify-content: center;
    padding: 0.9rem 1.25rem;
}

.admin-tabs {
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.35rem;
    margin-bottom: 2.25rem;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--muted);
    font-weight: 800;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-tabs a svg {
    width: 18px;
    height: 18px;
}

.admin-tabs a.is-active {
    background: #fff;
    color: #050505;
}

.admin-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-section-head h2 {
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

.admin-project-stats {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1rem;
}

.admin-project-stats div {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1rem;
}

.admin-project-stats span,
.project-row-meta span,
.admin-pill {
    color: var(--muted-strong);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-project-stats strong {
    color: #fff;
    display: block;
    font-size: 1.55rem;
    line-height: 1;
    margin-top: 0.45rem;
}

.admin-project-toolbar {
    align-items: center;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(260px, 1fr) 180px 180px auto;
    margin-bottom: 1rem;
}

.admin-search-field {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    gap: 0.65rem;
    padding: 0 0.95rem;
}

.admin-search-field svg {
    color: var(--muted-strong);
    height: 18px;
    width: 18px;
}

.admin-search-field input,
.admin-project-toolbar select {
    background: transparent;
    border: 0;
    color: #fff;
    font: inherit;
    min-height: 48px;
    outline: 0;
    width: 100%;
}

.admin-project-toolbar select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0 0.95rem;
}

.admin-project-toolbar .btn {
    min-height: 48px;
    justify-content: center;
    white-space: nowrap;
}

.project-list,
.message-list {
    display: grid;
    gap: 1rem;
}

.project-row,
.message-card {
    background: rgba(18, 18, 20, 0.72);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.project-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.1rem;
}

.project-row.is-dragging {
    opacity: 0.55;
}

.drag-handle {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--muted);
    cursor: grab;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 34px;
}

.drag-handle svg {
    height: 18px;
    width: 18px;
}

.project-order-actions {
    margin-top: 1rem;
}

.switch-field {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    display: flex;
    font-weight: 800;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
}

.switch-field input {
    accent-color: var(--success);
    width: auto;
}

.project-row-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex: 1;
}

.project-thumb {
    width: 112px;
    height: 78px;
    flex: 0 0 112px;
    background: #111;
    background-position: center;
    background-size: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-row-copy {
    min-width: 0;
}

.project-row-title {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}

.project-row-copy h3 {
    font-size: 1.05rem;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0;
}

.admin-pill {
    border-radius: 999px;
    padding: 0.32rem 0.55rem;
}

.admin-pill.is-live {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
}

.admin-pill.is-draft {
    background: rgba(251, 191, 36, 0.11);
    color: #fde68a;
}

.project-row-copy p {
    display: -webkit-box;
    font-size: 0.92rem;
    line-height: 1.45;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.project-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.75rem;
}

.project-row-meta span {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    padding: 0.38rem 0.55rem;
}

.project-row[hidden] {
    display: none;
}

.project-filter-empty {
    margin-top: 1rem;
}

.row-actions {
    justify-content: flex-end;
    max-width: 420px;
}

.row-actions form {
    display: inline-flex;
}

.success-banner {
    align-items: center;
    background: rgba(34, 197, 94, 0.11);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 16px;
    color: #86efac;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
}

.success-banner svg {
    width: 20px;
    height: 20px;
}

.message-card {
    padding: 1.35rem;
}

.message-card-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.message-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.message-card a {
    color: #67e8f9;
    font-size: 0.9rem;
    text-decoration: none;
}

.message-card span {
    color: var(--muted-strong);
    font-size: 0.82rem;
    white-space: nowrap;
}

.message-card p {
    color: #d4d4d8;
    line-height: 1.65;
}

.empty-state {
    border: 1px dashed var(--card-border);
    border-radius: 20px;
    color: var(--muted-strong);
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.admin-modal {
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    width: min(920px, calc(100% - 2rem));
}

.admin-modal h2 {
    font-size: 1.65rem;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-align: left;
}

.admin-form-section {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    margin-top: 1rem;
    padding: 1rem;
}

.admin-form-section-head {
    align-items: flex-start;
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.admin-form-section-head > span {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    color: #050505;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.admin-form-section-head h3 {
    font-size: 1.05rem;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.admin-form-section-head p {
    color: var(--muted-strong);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.form-group input[readonly] {
    color: #a5f3fc;
    cursor: not-allowed;
}

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

.project-editor-nav {
    background: rgba(18, 18, 20, 0.72);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    display: grid;
    gap: 0.35rem;
    padding: 0.65rem;
    position: sticky;
    top: 1rem;
}

.project-editor-nav a {
    align-items: center;
    border-radius: 14px;
    color: var(--muted);
    display: flex;
    font-weight: 800;
    gap: 0.6rem;
    padding: 0.85rem;
    text-decoration: none;
}

.project-editor-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.project-editor-nav svg {
    height: 18px;
    width: 18px;
}

.project-editor-form {
    min-width: 0;
}

.project-editor-section {
    scroll-margin-top: 1rem;
}

.project-editor-preview {
    background-color: #111;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    margin-bottom: 1.25rem;
    min-height: 220px;
}

.project-editor-save {
    background: rgba(5, 5, 5, 0.86);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    bottom: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 1rem;
    padding: 1rem;
    position: sticky;
}

.project-editor-save .btn {
    justify-content: center;
}

/* About */
.about-page {
    padding-top: 10rem;
}

.about-hero {
    max-width: 860px;
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p,
.about-story p,
.about-highlight p,
.about-cta p {
    color: #b5b5bd;
    font-size: 1.12rem;
    line-height: 1.8;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.about-story,
.about-snapshot,
.about-highlight,
.about-cta {
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
}

.about-story {
    padding: 2rem;
}

.about-story h2,
.about-highlight h2,
.about-cta h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.about-story p + p {
    margin-top: 1rem;
}

.about-snapshot {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
}

.about-snapshot div {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.22);
    padding: 1rem;
}

.about-snapshot span {
    color: var(--muted-strong);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.about-snapshot strong {
    color: #fff;
    display: block;
    font-size: 1.05rem;
    line-height: 1.25;
}

.about-highlight {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
}

.about-highlight-icon {
    align-items: center;
    background: rgba(103, 232, 249, 0.08);
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 22px;
    color: #a5f3fc;
    display: inline-flex;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.about-highlight-icon svg {
    height: 30px;
    width: 30px;
}

.about-highlight .btn {
    margin-top: 1.5rem;
    padding: 0.95rem 1.35rem;
}

.about-cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.5rem 0;
}

.about-cards .card {
    border-radius: 24px;
}

.about-cards .card-content {
    padding: 2rem;
}

.about-cards svg {
    height: 30px;
    width: 30px;
}

.about-cards h3 {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin: 1rem 0;
}

.about-cards p {
    font-size: 1rem;
}

.about-cta {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 2rem;
}

.about-cta p {
    margin-top: 0.75rem;
}

/* Chat */
.chat-page {
    max-width: 900px;
    padding-top: 10rem;
}

.contact-mail-card {
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    padding: clamp(1.5rem, 5vw, 3rem);
}

.contact-mail-card h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
    background: linear-gradient(to bottom, #fff, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-mail-card p {
    color: #b5b5bd;
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 680px;
}

.contact-mail-card .btn {
    justify-content: center;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
}

/* Login portal */
.login-portal-page {
    padding-top: 10rem;
}

.login-portal-head {
    margin: 0 auto 2rem;
    max-width: 760px;
    text-align: center;
}

.login-portal-head h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.login-portal-head p {
    color: #b5b5bd;
    font-size: 1.1rem;
    line-height: 1.75;
}

.login-choice-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.login-choice-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: clamp(1.35rem, 4vw, 2rem);
}

.login-choice-card.is-active {
    border-color: rgba(103, 232, 249, 0.28);
    background: rgba(103, 232, 249, 0.055);
}

.login-choice-icon {
    align-items: center;
    background: rgba(103, 232, 249, 0.08);
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 20px;
    color: #a5f3fc;
    display: inline-flex;
    height: 58px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 58px;
}

.login-choice-icon svg {
    height: 28px;
    width: 28px;
}

.login-choice-card h2 {
    font-size: 2rem;
    letter-spacing: 0;
    margin-bottom: 0.75rem;
}

.login-choice-card p {
    color: #b5b5bd;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.login-stack {
    display: grid;
    gap: 1rem;
}

.login-stack .btn {
    justify-content: center;
    width: 100%;
}

/* Client dashboard */
.client-dashboard-page {
    padding-top: 10rem;
}

.client-access-card,
.client-panel {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--card-border);
    border-radius: 28px;
}

.client-access-card {
    margin: 0 auto;
    max-width: 720px;
    padding: clamp(1.5rem, 5vw, 3rem);
}

.client-access-card h1,
.client-dashboard-hero h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 0.96;
    margin-bottom: 1rem;
}

.client-access-card p,
.client-dashboard-hero p,
.client-panel p {
    color: #b5b5bd;
    line-height: 1.75;
}

.client-pin-form {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.client-pin-form .btn {
    justify-content: center;
}

.client-dashboard-hero {
    align-items: stretch;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    margin-bottom: 1.5rem;
}

.client-note {
    align-items: flex-start;
    background: rgba(103, 232, 249, 0.08);
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 18px;
    display: flex;
    gap: 0.8rem;
    margin-top: 1.25rem;
    padding: 1rem;
}

.client-note svg {
    color: #a5f3fc;
    flex: 0 0 auto;
    height: 20px;
    margin-top: 0.15rem;
    width: 20px;
}

.client-project-cover {
    background-color: #111;
    background-position: center;
    background-size: cover;
    border: 1px solid var(--card-border);
    border-radius: 28px;
    min-height: 300px;
}

.client-dashboard-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    margin-bottom: 1rem;
}

.client-panel {
    padding: 1.35rem;
}

.client-panel > span {
    color: var(--muted-strong);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.client-panel strong {
    color: #fff;
    display: block;
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.55rem;
}

.client-progress-bar {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    height: 10px;
    margin-top: 0.85rem;
    overflow: hidden;
}

.client-progress-bar span {
    background: linear-gradient(90deg, #67e8f9, #22c55e);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.client-dashboard-layout {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
}

.client-panel-wide .admin-section-head {
    margin-bottom: 1rem;
}

.client-actions-panel {
    display: grid;
    gap: 0.85rem;
}

.client-actions-panel h2 {
    font-size: 1.4rem;
    letter-spacing: 0;
    margin-bottom: 0.25rem;
}

.client-actions-panel .btn {
    justify-content: center;
    width: 100%;
}

.client-creatives {
    margin-top: 1.25rem;
}

.client-review-card {
    margin-top: 1rem;
}

.client-review-panel {
    margin-top: 1rem;
}

.client-chat-panel {
    margin-top: 1rem;
}

.client-review-form {
    display: grid;
    gap: 1rem;
}

.client-review-form .btn,
.client-chat-form .btn {
    justify-content: center;
}

.client-workspace {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.client-step-list {
    display: grid;
    gap: 0.8rem;
    list-style: none;
}

.client-step-list li {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    gap: 0.85rem;
    padding: 0.95rem;
}

.client-step-list span {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    color: #050505;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.client-deliverables {
    display: grid;
    gap: 0.75rem;
}

.client-deliverables a,
.client-deliverables div,
.client-empty-block {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #fff;
    display: flex;
    gap: 0.8rem;
    justify-content: space-between;
    padding: 0.95rem;
    text-decoration: none;
}

.client-deliverables svg,
.client-empty-block svg {
    color: #a5f3fc;
    flex: 0 0 auto;
    height: 20px;
    width: 20px;
}

.client-empty-block {
    color: var(--muted);
    justify-content: flex-start;
}

.chat-shell {
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    padding: 1.25rem;
}

.chat-thread,
.admin-chat-thread,
.client-chat-thread {
    display: grid;
    gap: 0.85rem;
}

.chat-thread {
    margin-bottom: 1.25rem;
}

.chat-bubble,
.admin-chat-line,
.client-chat-line {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    max-width: 78%;
    padding: 0.95rem 1rem;
}

.chat-bubble span,
.admin-chat-line strong,
.client-chat-line strong {
    color: #fff;
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.45rem;
}

.chat-bubble p,
.admin-chat-line p,
.client-chat-line p {
    color: #e4e4e7;
    line-height: 1.6;
}

.chat-bubble small,
.admin-chat-line small,
.client-chat-line small {
    color: var(--muted-strong);
    display: block;
    font-size: 0.75rem;
    margin-top: 0.55rem;
}

.chat-bubble.is-visitor,
.admin-chat-line.is-visitor,
.admin-chat-line.is-client,
.client-chat-line.is-client {
    background: rgba(255, 255, 255, 0.055);
}

.chat-bubble.is-admin,
.admin-chat-line.is-admin,
.client-chat-line.is-admin {
    background: rgba(103, 232, 249, 0.11);
    border-color: rgba(103, 232, 249, 0.22);
    justify-self: end;
}

.chat-form,
.admin-chat-reply,
.client-chat-form {
    display: grid;
    gap: 1rem;
}

.chat-form {
    border-top: 1px solid var(--card-border);
    padding-top: 1.25rem;
}

.chat-form > .btn,
.admin-chat-reply .btn,
.client-chat-form .btn {
    justify-content: center;
}

.admin-chat-thread,
.client-chat-thread {
    margin: 1.25rem 0;
}

.admin-chat-line,
.client-chat-line {
    max-width: 88%;
}

.admin-chat-reply textarea,
.client-chat-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    font: inherit;
    padding: 0.95rem 1rem;
    resize: vertical;
}

.admin-chat-reply-paused {
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    background: rgba(251, 191, 36, 0.08);
    color: #fde68a;
    line-height: 1.6;
    padding: 1rem;
}

.admin-chat-reply-paused a {
    color: #fff;
    font-weight: 800;
}

.warning-banner {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.25);
    color: #fde68a;
}

/* Footer */
footer {
    padding: 10rem 0 5rem;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.copyright {
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.footer-sep {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.footer-admin-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.footer-admin-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 92px;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    nav {
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        bottom: 0.8rem;
        box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
        gap: 0;
        height: 72px;
        justify-content: space-around;
        left: 0.8rem;
        padding: 0 0.35rem;
        right: 0.8rem;
        top: auto;
    }
    nav a {
        align-items: center;
        border-radius: 16px;
        flex: 1;
        flex-direction: column;
        font-size: 0.58rem;
        gap: 0.25rem;
        justify-content: center;
        letter-spacing: 0;
        min-width: 0;
        padding: 0.55rem 0.15rem;
        text-align: center;
    }
    nav a:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    nav a svg {
        display: block;
        height: 19px;
        width: 19px;
    }
    nav a span {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .container { padding: 0 1rem; }
    .btn { padding: 1rem 1.35rem; }
    .hero {
        padding: 8rem 0 5rem;
    }
    .hero-actions {
        display: grid;
        gap: 0.85rem;
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 320px;
    }
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    .social-icon { width: 52px; height: 52px; }
    .projects-page { padding-top: 7rem; }
    .projects-heading { margin-bottom: 2rem; }
    .projects-heading p { font-size: 1rem; }
    .project-filters {
        align-items: stretch;
        flex-direction: column;
    }
    .filter-tabs,
    .project-search {
        width: 100%;
    }
    .filter-tabs a {
        flex: 1;
        text-align: center;
    }
    .project-feature {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0.75rem;
        border-radius: 22px;
    }
    .project-media {
        min-height: 230px;
        border-radius: 17px;
    }
    .project-feature-copy {
        padding: 0 0.35rem 0.5rem;
    }
    .project-feature h3 {
        line-height: 1.02;
    }
    .project-feature-copy p {
        font-size: 0.98rem;
    }
    .social-results,
    .creative-strip {
        grid-template-columns: 1fr;
    }
    .project-feature-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .project-feature-actions .btn {
        justify-content: center;
        width: 100%;
    }
    .admin-body { padding-top: 1rem; }
    .admin-header,
    .admin-section-head,
    .project-row,
    .message-card-head {
        align-items: stretch;
        flex-direction: column;
    }
    .admin-header {
        padding: 1.4rem;
        border-radius: 22px;
    }
    .admin-actions .btn,
    .row-actions .btn {
        flex: 1 1 auto;
    }
    .admin-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
    .admin-tabs a {
        justify-content: center;
        padding: 0.8rem 0.75rem;
    }
    .admin-project-stats,
    .admin-project-toolbar,
    .project-editor-layout,
    .project-editor-save {
        grid-template-columns: 1fr;
    }
    .project-editor-nav {
        position: static;
    }
    .project-row-main {
        align-items: flex-start;
    }
    .project-thumb {
        width: 78px;
        height: 58px;
        flex-basis: 78px;
    }
    .row-actions,
    .form-actions,
    .form-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .row-actions {
        display: grid;
        max-width: none;
    }
    .row-actions form,
    .row-actions button {
        width: 100%;
    }
    .project-row-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }
    .admin-modal {
        max-height: 90vh;
        overflow-y: auto;
        padding: 1.35rem;
    }
    .admin-form-section {
        padding: 0.9rem;
    }
    .about-page {
        padding-top: 7rem;
    }
    .about-layout,
    .about-highlight,
    .about-cards {
        grid-template-columns: 1fr;
    }
    .about-story,
    .about-highlight,
    .about-cta {
        padding: 1.35rem;
        border-radius: 22px;
    }
    .about-highlight-icon {
        height: 54px;
        width: 54px;
    }
    .about-cta {
        align-items: stretch;
        flex-direction: column;
    }
    .about-cta .btn {
        justify-content: center;
    }
    .chat-page {
        padding-top: 7rem;
    }
    .login-portal-page {
        padding-top: 7rem;
    }
    .login-choice-grid {
        grid-template-columns: 1fr;
    }
    .login-choice-card {
        border-radius: 22px;
    }
    .client-dashboard-page {
        padding-top: 7rem;
    }
    .client-dashboard-hero,
    .client-dashboard-grid,
    .client-dashboard-layout,
    .client-workspace {
        grid-template-columns: 1fr;
    }
    .client-project-cover {
        min-height: 220px;
        border-radius: 22px;
    }
    .client-panel,
    .client-access-card {
        border-radius: 22px;
        padding: 1.35rem;
    }
    .review-page {
        padding-top: 7rem;
    }
    .review-form-card h1 {
        font-size: 3rem;
        line-height: 1;
    }
    .review-stats {
        grid-template-columns: 1fr;
    }
    .chat-shell {
        padding: 0.85rem;
        border-radius: 22px;
    }
    .chat-bubble,
    .admin-chat-line,
    .client-chat-line {
        max-width: 92%;
    }
}
