@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("fonts/Raleway-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ... existing code ... */

:root {
    --blue: #0072B5;
    --amethyst: #926AA6;
    --dark: #050b16;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.09);
    --text: #eaf2fb;
    --muted: rgba(234, 242, 251, 0.76);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(0, 114, 181, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(146, 106, 166, 0.18), transparent 28%),
        linear-gradient(180deg, #02050b 0%, #07111f 40%, #04070f 100%);
    color: var(--text);
    font-family: "Raleway", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: white;
    color: #000;
    padding: 12px 16px;
    border-radius: 10px;
    z-index: 9999;
}

.skip-link:focus {
    left: 12px;
}

.page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 20px 44px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.brand-text strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

.brand-text div {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
    outline: none;
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 114, 181, 0.12);
    border: 1px solid rgba(0, 114, 181, 0.26);
    color: #dcecff;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1 {
    margin: 0 0 18px;
    font-family: Anke, "Raleway", sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.9rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: white;
}

.blue { color: var(--blue); }
.amethyst { color: var(--amethyst); }

.lead {
    margin: 0 0 28px;
    max-width: 760px;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.85;
    color: var(--muted);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    border: 1px solid transparent;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #0a84c9);
    color: white;
    box-shadow: 0 16px 30px rgba(0, 114, 181, 0.24);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(146, 106, 166, 0.16), rgba(146, 106, 166, 0.08));
    color: #f3eafd;
    border-color: rgba(146, 106, 166, 0.35);
}

.hero-card {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::before,
.hero-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(4px);
}

.hero-card::before {
    width: 230px;
    height: 230px;
    top: -90px;
    left: -60px;
    background: radial-gradient(circle, rgba(0, 114, 181, 0.22), transparent 66%);
}

.hero-card::after {
    width: 240px;
    height: 240px;
    bottom: -100px;
    right: -70px;
    background: radial-gradient(circle, rgba(146, 106, 166, 0.22), transparent 66%);
}

.hero-card-inner {
    position: relative;
    z-index: 1;
}

.logo-large {
    display: block;
    max-width: min(100%, 330px);
    margin: 0 auto 18px;
}

.microcopy {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.section {
    margin-top: 26px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.section h2 {
    margin: 0;
    color: white;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.section .section-intro {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    max-width: 820px;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 14px;
}

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

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

.card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(7, 17, 31, 0.55);
    border: 1px solid rgba(255,255,255,0.08);
}

.card h3 {
    margin: 0 0 8px;
    color: white;
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.card .tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 114, 181, 0.14);
    border: 1px solid rgba(0, 114, 181, 0.22);
    color: #dfeeff;
    font-size: 0.82rem;
    font-weight: 700;
}

.project {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    color: #dfeeff;
    background: rgba(0, 114, 181, 0.14);
    border: 1px solid rgba(0, 114, 181, 0.22);
}

.quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.quote cite {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(234, 242, 251, 0.72);
    font-size: 0.95rem;
}

.footer a {
    color: #dfeeff;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.section-title-accent {
    color: var(--amethyst);
}

.contact-form {
    margin-top: 20px;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.field span {
    font-weight: 700;
    color: white;
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 17, 31, 0.72);
    color: white;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(0, 114, 181, 0.85);
    box-shadow: 0 0 0 3px rgba(0, 114, 181, 0.18);
}

.field textarea {
    resize: vertical;
    min-height: 160px;
}

.form-status {
    min-height: 1.4em;
    margin: 0;
    color: var(--muted);
}

.form-status.success {
    color: #dfeeff;
}

.form-status.error {
    color: #f3eafd;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 960px) {
    .hero,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .nav {
        justify-content: flex-start;
    }

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

@media (max-width: 540px) {
    .page { padding-inline: 14px; }
    .section,
    .hero-card { padding: 18px; border-radius: 20px; }
    .brand-logo { width: 52px; height: 52px; }
    h1 { font-size: 2.55rem; }
    .btn { width: 100%; }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ... existing code ... */

.cta-row-contact {
    margin-top: 18px;
    margin-bottom: 0;
}

/* ... existing code ... */