:root {
    --bg: #0b1220;
    --bg-elevated: rgba(16, 24, 40, 0.78);
    --bg-panel: #111a2b;
    --bg-panel-strong: #162235;

    --text: #e7eef8;
    --text-soft: #b4c1d3;
    --text-muted: #8d9bb0;

    --line: rgba(151, 167, 189, 0.18);
    --line-strong: rgba(151, 167, 189, 0.28);

    --primary: #36cfc9;
    --primary-strong: #1eb5c1;
    --secondary: #71a7ff;
    --accent: #9ee7df;
    --warm: #ffc680;

    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.22);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1180px;
    --header-height: 82px;

    --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(54, 207, 201, 0.15), transparent 28%),
        radial-gradient(circle at top right, rgba(113, 167, 255, 0.14), transparent 26%),
        linear-gradient(180deg, #0a1120 0%, #0c1423 45%, #0a1120 100%);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
}

.site-main {
    padding-top: calc(var(--header-height) + 1.5rem);
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: var(--primary);
    color: #081019;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    z-index: 2000;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        backdrop-filter 0.25s ease,
        padding 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(9, 15, 27, 0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.7rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(113, 167, 255, 0.95), rgba(54, 207, 201, 0.95));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.25),
        0 10px 25px rgba(34, 167, 201, 0.25);
    position: relative;
    flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.brand-mark::before {
    width: 1.1rem;
    height: 0.18rem;
    top: 0.95rem;
    left: 0.78rem;
    transform: rotate(-45deg);
}

.brand-mark::after {
    width: 1.1rem;
    height: 0.18rem;
    top: 1.46rem;
    left: 0.78rem;
    transform: rotate(-45deg);
}

.brand-text {
    display: grid;
    gap: 0.1rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.brand-tagline {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.7rem 1rem;
    color: var(--text-soft);
    border-radius: 999px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.is-active {
    color: var(--text);
    background: rgba(113, 167, 255, 0.12);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    cursor: pointer;
    padding: 0;
    place-items: center;
}

.nav-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 3px auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #07131a;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 0 14px 30px rgba(54, 207, 201, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 18px 36px rgba(54, 207, 201, 0.28);
}

.button-secondary {
    color: var(--text);
    background: rgba(255,255,255,0.04);
    border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255,255,255,0.07);
    border-color: var(--line-strong);
}

.section {
    padding: 5rem 0;
}

.section-tight {
    padding: 3.5rem 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    color: var(--accent);
    background: rgba(54, 207, 201, 0.08);
    border: 1px solid rgba(54, 207, 201, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
    color: var(--text-soft);
}

.lead {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 70ch;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(54, 207, 201, 0.6), rgba(113, 167, 255, 0.18), transparent);
}

.card-title {
    margin-bottom: 0.75rem;
}

.card p:last-child {
    margin-bottom: 0;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3.5rem);
    background:
        radial-gradient(circle at top right, rgba(54, 207, 201, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(113, 167, 255, 0.14), transparent 25%),
        linear-gradient(180deg, rgba(18, 28, 43, 0.96), rgba(13, 21, 35, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -10% -25% auto;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(54, 207, 201, 0.1), transparent 65%);
    pointer-events: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.kicker-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.kicker {
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 0.9rem;
}

.page-header {
    padding: 3rem 0 1rem;
}

.page-title-wrap {
    max-width: 820px;
}

.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 2rem;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-copy {
    max-width: 46ch;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--text-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.form-card {
    max-width: 760px;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
textarea:focus {
    border-color: rgba(54, 207, 201, 0.5);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 4px rgba(54, 207, 201, 0.08);
}

textarea {
    min-height: 180px;
    resize: vertical;
}

@media (max-width: 960px) {
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 22px;
        border: 1px solid var(--line);
        background: rgba(10, 17, 30, 0.96);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-lg);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
    }

    .nav-cta {
        width: 100%;
        margin-top: 0.5rem;
    }

    .nav-toggle {
        display: grid;
    }

    .brand-tagline {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .site-main {
        padding-top: calc(var(--header-height) + 1rem);
    }

    .section {
        padding: 4rem 0;
    }

    .hero-panel {
        padding: 1.6rem;
        border-radius: 24px;
    }

    .button,
    .nav-toggle {
        min-height: 44px;
    }
}

.hero-section {
    padding-top: 2rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-content {
    min-height: 100%;
}

.hero-side-panel {
    display: flex;
}

.hero-side-card {
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(15, 24, 38, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.hero-side-label {
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.1rem;
}

.metric-list li {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}

.metric-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.metric-title {
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.metric-copy {
    color: var(--text-soft);
    font-size: 0.96rem;
}

.feature-card,
.project-card,
.process-card,
.benefit-card {
    height: 100%;
}

.feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(113, 167, 255, 0.22), rgba(54, 207, 201, 0.22));
    border: 1px solid rgba(113, 167, 255, 0.15);
    position: relative;
}

.feature-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 0 20px rgba(54, 207, 201, 0.18);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

.split-content p:last-child {
    margin-bottom: 0;
}

.benefit-stack {
    gap: 1rem;
}

.section-projects {
    position: relative;
}

.project-grid {
    align-items: stretch;
}

.project-meta {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(113, 167, 255, 0.1);
    border: 1px solid rgba(113, 167, 255, 0.14);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-summary {
    margin-bottom: 1rem;
}

.project-points {
    margin: 0 0 1.25rem;
    padding-left: 1.1rem;
    color: var(--text-soft);
    display: grid;
    gap: 0.55rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent);
    font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible {
    color: #c7fbf5;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(54, 207, 201, 0.1);
    border: 1px solid rgba(54, 207, 201, 0.18);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(54, 207, 201, 0.1), transparent 26%),
        radial-gradient(circle at bottom left, rgba(113, 167, 255, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(18, 28, 43, 0.95), rgba(12, 20, 34, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.cta-content {
    max-width: 760px;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p:last-child {
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .hero-layout,
    .split-section,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 1rem;
    }

    .hero-side-card,
    .cta-panel {
        border-radius: 24px;
    }
}

.about-hero {
    max-width: 880px;
}

.about-intro {
    align-items: start;
}

.about-facts {
    gap: 1rem;
}

.fact-card,
.principle-card {
    height: 100%;
}

.about-band {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 1.5rem;
    align-items: stretch;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(54, 207, 201, 0.1), transparent 28%),
        radial-gradient(circle at bottom left, rgba(113, 167, 255, 0.09), transparent 25%),
        linear-gradient(180deg, rgba(17, 26, 43, 0.96), rgba(12, 20, 34, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.about-band-copy p:last-child {
    margin-bottom: 0;
}

.about-band-panel {
    display: flex;
}

.about-band-list {
    width: 100%;
    display: grid;
    gap: 1rem;
}

.about-band-item {
    padding: 1.1rem 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.about-band-item p {
    margin-bottom: 0;
}

.about-band-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
    .about-band {
        grid-template-columns: 1fr;
    }
}



.projects-hero {
    max-width: 920px;
}

.projects-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.intro-card {
    height: 100%;
}

.section-project-showcase {
    padding-top: 2rem;
}

.project-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.project-showcase-main {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(54, 207, 201, 0.11), transparent 28%),
        radial-gradient(circle at bottom left, rgba(113, 167, 255, 0.09), transparent 24%),
        linear-gradient(180deg, rgba(17, 26, 43, 0.96), rgba(11, 19, 32, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.project-showcase-main h2 {
    margin-bottom: 1rem;
}

.project-showcase-main p:last-child {
    margin-bottom: 0;
}

.project-showcase-side {
    display: flex;
}

.project-side-card {
    width: 100%;
    height: 100%;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(54, 207, 201, 0.1);
    border: 1px solid rgba(54, 207, 201, 0.16);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-badge-secondary {
    background: rgba(113, 167, 255, 0.1);
    border-color: rgba(113, 167, 255, 0.16);
    color: var(--secondary);
}

.project-detail-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.7rem;
    color: var(--text-soft);
}

.project-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.detail-card,
.shared-theme-card {
    height: 100%;
}

.projects-intro-grid {
    margin-bottom: 1rem;
}

@media (max-width: 1100px) {
    .project-showcase,
    .projects-intro-grid,
    .project-detail-grid {
        grid-template-columns: 1fr;
    }
}


.alert {
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
}

.alert strong {
    display: block;
    margin-bottom: 0.4rem;
}

.alert-success {
    background: rgba(54, 207, 201, 0.08);
    border-color: rgba(54, 207, 201, 0.22);
    color: var(--text);
}

.alert-error {
    background: rgba(255, 107, 107, 0.08);
    border-color: rgba(255, 107, 107, 0.24);
    color: var(--text);
}

.alert-list {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
}

.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.brand-logo {
    width: 40px;
    height: 40px;
    display: block;
    flex: 0 0 auto;
}