:root {
    --bg: #02060d;
    --bg-soft: #07101d;
    --panel: rgba(9, 18, 33, 0.82);
    --panel-strong: rgba(12, 26, 49, 0.94);
    --line: rgba(94, 177, 255, 0.28);
    --line-strong: rgba(94, 177, 255, 0.55);
    --text: #f4f8ff;
    --muted: #aac1dc;
    --blue: #168dff;
    --cyan: #52ddff;
    --silver: #dce6f5;
    --danger: #ff6f8b;
    --success: #74f5cf;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 141, 255, 0.18), transparent 32rem),
        radial-gradient(circle at 82% 6%, rgba(82, 221, 255, 0.12), transparent 28rem),
        linear-gradient(180deg, #02060d 0%, #06101e 48%, #02060d 100%);
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 18px clamp(22px, 4vw, 72px);
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 13, 0.82);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: max-content;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(22, 141, 255, 0.26);
}

.brand strong {
    display: block;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.brand small {
    display: block;
    color: var(--blue);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 42px);
    flex-wrap: wrap;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    color: var(--muted);
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transition: transform 0.18s ease;
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.account-menu {
    position: relative;
    justify-self: end;
}

.account-menu summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    color: var(--text);
    border: 1px solid rgba(94, 177, 255, 0.34);
    border-radius: 999px;
    background: rgba(8, 19, 35, 0.54);
    box-shadow: inset 0 0 20px rgba(22, 141, 255, 0.06);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    list-style: none;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.account-menu summary::-webkit-details-marker {
    display: none;
}

.account-menu summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.account-menu[open] summary,
.account-menu summary:hover {
    border-color: var(--line-strong);
    background: rgba(11, 30, 55, 0.78);
    box-shadow: 0 0 30px rgba(22, 141, 255, 0.18);
}

.account-menu[open] summary::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

.account-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    gap: 4px;
    min-width: 220px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 13, 25, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42), inset 0 0 34px rgba(22, 141, 255, 0.05);
    backdrop-filter: blur(18px);
}

.account-menu-panel::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 28px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: rgba(5, 13, 25, 0.96);
    transform: rotate(45deg);
}

.account-menu-panel a {
    padding: 12px 14px;
    color: var(--muted);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.18s ease, background 0.18s ease;
}

.account-menu-panel a:hover {
    color: var(--text);
    background: rgba(22, 141, 255, 0.12);
}

.hero {
    position: relative;
    min-height: calc(100vh - 85px);
    overflow: hidden;
    border-bottom: 1px solid rgba(22, 141, 255, 0.35);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 6, 13, 0.96) 0%, rgba(2, 6, 13, 0.82) 38%, rgba(2, 6, 13, 0.2) 100%),
        url("hero-city.svg") center / cover no-repeat;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 13, 0.05), rgba(2, 6, 13, 0.68));
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 430px;
    align-items: center;
    gap: 52px;
    width: min(1220px, calc(100% - 44px));
    min-height: calc(100vh - 164px);
    margin: 0 auto;
    padding: 84px 0 44px;
}

.hero-copy {
    max-width: 820px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #8fcaff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 900px;
    margin-bottom: 22px;
    font-size: clamp(46px, 7.2vw, 104px);
    line-height: 0.93;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-lead {
    max-width: 670px;
    color: #cae0fa;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
}

.button.primary {
    color: #03101f;
    background: linear-gradient(135deg, #5edfff, #168dff);
    box-shadow: 0 18px 40px rgba(22, 141, 255, 0.26);
}

.button.ghost {
    color: var(--text);
    background: rgba(6, 17, 31, 0.58);
}

.hero-panel {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(8, 19, 35, 0.78), rgba(4, 11, 21, 0.72));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.panel-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 28px;
    border-bottom: 1px solid rgba(94, 177, 255, 0.18);
}

.panel-row:last-child {
    border-bottom: 0;
}

.panel-row .icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(82, 221, 255, 0.44);
    border-radius: 16px;
    color: var(--cyan);
    font-weight: 950;
    background: rgba(22, 141, 255, 0.13);
}

.panel-row strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

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

.hero-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 54px);
    min-height: 78px;
    padding: 18px;
    border-top: 1px solid rgba(22, 141, 255, 0.35);
    background: rgba(2, 6, 13, 0.72);
    color: var(--silver);
    font-size: clamp(12px, 1.6vw, 20px);
    font-weight: 800;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.hero-strip i {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 18px rgba(22, 141, 255, 0.9);
}

.section {
    width: min(1220px, calc(100% - 44px));
    margin: 0 auto;
    padding: 94px 0;
}

.section-title {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-title.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    max-width: none;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.section-title p:not(.eyebrow) {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 18px;
}

.glass-card,
.metric-card,
.service-card,
.price-card,
.timeline article,
.showcase-card,
.request-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.glass-card {
    min-height: 260px;
    padding: 34px;
}

.glass-card h3 {
    max-width: 660px;
    margin-bottom: 18px;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.02;
}

.glass-card p,
.service-card p,
.price-card p,
.timeline p,
.showcase-card p,
.request-card p {
    color: var(--muted);
    line-height: 1.65;
}

.metric-card {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 260px;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(22, 141, 255, 0.22), transparent 55%),
        var(--panel);
}

.metric-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
}

.metric-card span {
    color: var(--muted);
    line-height: 1.55;
}

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

.service-card {
    min-height: 280px;
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    background: var(--panel-strong);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 32px;
    border: 1px solid rgba(82, 221, 255, 0.38);
    border-radius: 18px;
    color: var(--cyan);
    background: rgba(22, 141, 255, 0.12);
    font-weight: 950;
    font-size: 13px;
}

.service-card h3,
.price-card h3,
.timeline h3,
.showcase-card h3 {
    font-size: 24px;
    line-height: 1.12;
}

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

.price-card {
    position: relative;
    min-height: 450px;
    padding: 32px;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 8%, rgba(22, 141, 255, 0.22), transparent 40%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.price-card.featured {
    border-color: rgba(82, 221, 255, 0.7);
    transform: translateY(-10px);
}

.price-card.featured::before,
.price-card:hover::before {
    opacity: 1;
}

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

.price-tag {
    display: inline-flex;
    margin-bottom: 26px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #9ed7ff;
    font-weight: 900;
}

.price-card ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 24px;
    color: #d7e8fb;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 16px rgba(22, 141, 255, 0.6);
}

.process-section {
    border-top: 1px solid rgba(94, 177, 255, 0.16);
    border-bottom: 1px solid rgba(94, 177, 255, 0.16);
}

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

.timeline article {
    padding: 28px;
}

.timeline span {
    display: block;
    margin-bottom: 54px;
    color: var(--blue);
    font-weight: 950;
    letter-spacing: 0.2em;
}

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

.showcase-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent, rgba(2, 6, 13, 0.82)),
        linear-gradient(135deg, rgba(22, 141, 255, 0.24), rgba(82, 221, 255, 0.04));
}

.showcase-card.medical {
    background:
        linear-gradient(180deg, transparent, rgba(2, 6, 13, 0.86)),
        radial-gradient(circle at 24% 24%, rgba(82, 221, 255, 0.4), transparent 38%),
        #07101d;
}

.showcase-card.food {
    background:
        linear-gradient(180deg, transparent, rgba(2, 6, 13, 0.86)),
        radial-gradient(circle at 80% 20%, rgba(22, 141, 255, 0.42), transparent 42%),
        #07101d;
}

.showcase-card.legal {
    background:
        linear-gradient(180deg, transparent, rgba(2, 6, 13, 0.86)),
        radial-gradient(circle at 42% 10%, rgba(196, 220, 255, 0.34), transparent 40%),
        #07101d;
}

.showcase-card span {
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.request-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    padding: clamp(28px, 5vw, 58px);
    background:
        radial-gradient(circle at top left, rgba(22, 141, 255, 0.22), transparent 34%),
        var(--panel);
}

.request-card h2 {
    font-size: clamp(34px, 4.8vw, 64px);
    line-height: 1;
    letter-spacing: -0.035em;
}

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

.public-request-actions {
    display: grid;
    gap: 14px;
}

.public-request-actions article {
    padding: 18px;
    border: 1px solid rgba(94, 177, 255, 0.22);
    border-radius: 14px;
    background: rgba(2, 8, 18, 0.5);
}

.public-request-actions strong,
.public-request-actions span {
    display: block;
}

.public-request-actions strong {
    margin-bottom: 6px;
    font-size: 18px;
}

.public-request-actions span {
    color: var(--muted);
    line-height: 1.55;
}

label {
    display: grid;
    gap: 9px;
    color: #dcecff;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(94, 177, 255, 0.32);
    border-radius: 8px;
    background: rgba(2, 8, 18, 0.68);
    color: var(--text);
    font: inherit;
    font-weight: 750;
    padding: 14px 15px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(82, 221, 255, 0.78);
    box-shadow: 0 0 0 4px rgba(22, 141, 255, 0.14);
    background: rgba(5, 13, 26, 0.9);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.notice {
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 850;
}

.notice p {
    margin: 0;
}

.notice.success {
    color: #caffe9;
    border: 1px solid rgba(116, 245, 207, 0.55);
    background: rgba(23, 126, 103, 0.16);
}

.notice.error {
    color: #ffd9e0;
    border: 1px solid rgba(255, 111, 139, 0.55);
    background: rgba(255, 111, 139, 0.12);
}

.auth-page,
.dashboard-page {
    min-height: calc(100vh - 84px);
    background:
        radial-gradient(circle at 22% 12%, rgba(22, 141, 255, 0.18), transparent 30rem),
        radial-gradient(circle at 82% 28%, rgba(82, 221, 255, 0.08), transparent 28rem);
}

.auth-page {
    display: grid;
    place-items: center;
    padding: 70px 22px;
}

.auth-card {
    width: min(100%, 560px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(22, 141, 255, 0.2), transparent 38%),
        var(--panel);
    box-shadow: var(--shadow);
    padding: clamp(28px, 5vw, 46px);
}

.auth-card h1 {
    margin-bottom: 16px;
    font-size: clamp(40px, 6vw, 66px);
}

.auth-card > p {
    color: var(--muted);
    line-height: 1.62;
}

.auth-link {
    display: inline-flex;
    margin-top: 20px;
    color: #9bd5ff;
    font-weight: 900;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.dashboard-card,
.admin-entry,
.admin-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(22, 141, 255, 0.16), transparent 42%),
        var(--panel);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.dashboard-card {
    min-height: 210px;
    padding: 28px;
}

.dashboard-card span {
    display: block;
    margin-bottom: 22px;
    color: #8fcaff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dashboard-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 28px;
}

.dashboard-card p,
.admin-entry p,
.empty-state {
    color: var(--muted);
    line-height: 1.6;
}

.admin-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
}

.admin-entry h2,
.admin-panel h2 {
    margin: 0;
}

.admin-panel {
    margin-bottom: 22px;
    padding: 28px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
}

.section-heading span {
    color: #9bd5ff;
    font-weight: 900;
}

.table-wrap {
    overflow-x: auto;
}

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

th,
td {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(94, 177, 255, 0.18);
    text-align: left;
    vertical-align: top;
}

th {
    color: #9fc9f4;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

td {
    color: #eaf4ff;
    font-weight: 750;
}

.role-pill {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid rgba(82, 221, 255, 0.32);
    border-radius: 999px;
    color: #9bd5ff;
    background: rgba(22, 141, 255, 0.12);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.inline-form {
    margin: 0;
}

.mini-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(94, 177, 255, 0.22);
    border-radius: 8px;
    color: var(--text);
    background: rgba(8, 19, 35, 0.72);
    font-weight: 900;
    cursor: pointer;
}

.mini-action.danger {
    color: #ffe7ec;
    border-color: rgba(255, 111, 139, 0.62);
    background: rgba(255, 111, 139, 0.18);
}

.muted-action {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.request-list {
    display: grid;
    gap: 14px;
}

.request-item {
    padding: 18px;
    border: 1px solid rgba(94, 177, 255, 0.22);
    border-radius: 14px;
    background: rgba(2, 8, 18, 0.46);
}

.request-item strong,
.request-item span,
.request-item small {
    display: block;
}

.request-item strong {
    margin-bottom: 6px;
    font-size: 20px;
}

.request-item span,
.request-item small {
    color: #9fc9f4;
    font-weight: 850;
}

.request-item p {
    margin: 14px 0;
    color: var(--muted);
    line-height: 1.6;
}

.progress-line {
    overflow: hidden;
    width: 100%;
    height: 8px;
    margin: 14px 0 10px;
    border: 1px solid rgba(94, 177, 255, 0.2);
    border-radius: 999px;
    background: rgba(2, 8, 18, 0.72);
}

.progress-line span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #52ddff, #168dff);
    box-shadow: 0 0 18px rgba(22, 141, 255, 0.42);
}

.project-admin-list {
    display: grid;
    gap: 14px;
}

.project-detail {
    overflow: hidden;
    border: 1px solid rgba(94, 177, 255, 0.24);
    border-radius: 16px;
    background: rgba(2, 8, 18, 0.5);
}

.project-detail summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    list-style: none;
    cursor: pointer;
}

.project-detail summary::-webkit-details-marker {
    display: none;
}

.project-detail summary strong,
.project-detail summary small {
    display: block;
}

.project-detail summary strong {
    margin-bottom: 6px;
    font-size: 20px;
}

.project-detail summary small,
.project-meta {
    color: #9fc9f4;
    font-weight: 850;
}

.project-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 38px;
    border: 1px solid rgba(82, 221, 255, 0.34);
    border-radius: 999px;
    color: #dff6ff;
    background: rgba(22, 141, 255, 0.16);
    font-weight: 950;
}

.project-detail-body {
    padding: 0 18px 18px;
}

.project-meta {
    display: grid;
    gap: 6px;
    margin: 14px 0;
}

.project-detail-body p {
    color: var(--muted);
    line-height: 1.62;
}

.project-update-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(94, 177, 255, 0.16);
}

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

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 34px clamp(22px, 4vw, 72px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: rgba(2, 6, 13, 0.9);
}

.site-footer div {
    display: grid;
    gap: 5px;
}

.site-footer strong {
    color: var(--text);
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer a {
    color: #9bd5ff;
    font-weight: 900;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 20px;
    }

    .hero-inner,
    .request-card,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        gap: 24px;
        padding-top: 56px;
    }

    .hero-panel {
        max-width: 620px;
    }

    .service-grid,
    .pricing-grid,
    .timeline,
    .showcase-grid,
    .dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-entry {
        align-items: flex-start;
        flex-direction: column;
    }

    .price-card.featured {
        transform: none;
    }

    .section-title.split {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 14px;
        padding: 14px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        letter-spacing: 0.16em;
    }

    .main-nav a {
        font-size: 12px;
    }

    .account-menu summary {
        min-height: 38px;
        max-width: 160px;
        padding: 0 12px;
        overflow: hidden;
        font-size: 11px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .account-menu-panel {
        right: 0;
        min-width: min(240px, calc(100vw - 28px));
    }

    .hero {
        min-height: auto;
    }

    .hero-inner,
    .section {
        width: min(100% - 28px, 1220px);
    }

    h1 {
        font-size: 45px;
    }

    .hero-strip {
        gap: 12px;
        letter-spacing: 0.16em;
    }

    .panel-row {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .pricing-grid,
    .timeline,
    .showcase-grid,
    .dashboard-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .glass-card,
    .metric-card,
    .service-card,
    .price-card,
    .timeline article,
    .showcase-card {
        min-height: auto;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
