/* Reset & base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #020617 100%);
    color: #e5e7eb;
    -webkit-font-smoothing: antialiased;
}

/* Layout */
.page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 20px 40px;
}

/* Colors & tokens */
:root {
    --bg-main: #020617;
    --bg-elevated: #020617;
    --bg-card: rgba(15, 23, 42, 0.9);
    --bg-card-alt: rgba(17, 24, 39, 0.9);

    --border-subtle: rgba(148, 163, 184, 0.15);
    --border-strong: rgba(148, 163, 184, 0.5);

    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --text-soft: #6b7280;
    --text-accent: #fbbf24;

    --primary: #0ea5e9;
    --primary-soft: rgba(14, 165, 233, 0.08);
    --primary-strong: #0284c7;

    --accent: #fbbf24;
    --accent-soft: rgba(251, 191, 36, 0.08);

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;

    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    margin-bottom: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
                linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 40%;
    border: 1px solid rgba(148, 163, 184, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 1));
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: #f9fafb;
    text-transform: uppercase;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f9fafb;
}

.brand-tagline {
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-size: 0.86rem;
    text-decoration: none;
    color: var(--text-muted);
    padding: 7px 12px;
    border-radius: 999px;
    transition: all 0.18s ease;
}

.nav-link:hover {
    color: #f9fafb;
    background: rgba(31, 41, 55, 0.9);
}

.nav-cta {
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding-inline: 16px;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    padding: 28px 24px 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.18), transparent 55%),
        linear-gradient(to bottom right, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 30% -120px -40%;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.9));
    opacity: 0.9;
    pointer-events: none;
}

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

.hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(1.8rem, 2.3vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 600;
    color: #f9fafb;
}

.hero-text {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 36rem;
    margin-bottom: 20px;
}

/* Hero highlights */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.highlight-item {
    border-radius: 16px;
    padding: 12px 13px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.highlight-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.highlight-value {
    font-size: 0.92rem;
    font-weight: 500;
    color: #e5e7eb;
}

/* Hero image */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.hero-image-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 1));
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.85);
    max-width: 360px;
    margin-left: auto;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-caption {
    font-size: 0.78rem;
    color: var(--text-soft);
    max-width: 15rem;
    line-height: 1.4;
    margin-left: 6px;
}

/* Sections */
.section {
    margin-top: 40px;
    margin-bottom: 16px;
}

.section-alt {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.96));
    padding: 28px 22px 30px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
}

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
}

/* Cards */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px 16px;
    border-radius: 18px;
    text-decoration: none;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.7);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.card-outline {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 1));
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-pill {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.55);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e0f2fe;
    background: rgba(8, 47, 73, 0.6);
}

.card-pill-soft {
    border-color: rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    background: rgba(31, 41, 55, 0.9);
}

.card h3 {
    font-size: 1.02rem;
    font-weight: 600;
    color: #f9fafb;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.card-link {
    margin-top: 6px;
    font-size: 0.86rem;
    color: var(--primary);
    font-weight: 500;
}

/* Info grid */
.info-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.info-item {
    padding: 13px 13px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.info-label {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.94rem;
    color: #f9fafb;
    font-weight: 500;
}

/* Address */
.address-card {
    margin-top: 16px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.address-pin {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle at top, rgba(251, 191, 36, 0.95), rgba(180, 83, 9, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #111827;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
}

.address-line {
    font-size: 0.92rem;
    color: #e5e7eb;
}

.address-street {
    font-weight: 600;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.button-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-strong));
    color: #0b1120;
    border-color: rgba(8, 47, 73, 1);
    box-shadow: 0 14px 35px rgba(56, 189, 248, 0.35);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(56, 189, 248, 0.45);
}

.button-ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.5);
    color: var(--text-muted);
}

.button-ghost:hover {
    background: rgba(31, 41, 55, 0.85);
    color: #f9fafb;
}

/* Contact */
.contact-block {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.contact-note {
    font-size: 0.86rem;
    color: var(--text-soft);
    max-width: 32rem;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    padding-top: 14px;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    font-size: 0.78rem;
    color: var(--text-soft);
    text-align: left;
}

/* Responsive */
@media (max-width: 880px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 24px 18px 22px;
        border-radius: 24px;
    }

    .hero-image-frame {
        max-width: 100%;
        margin-left: 0;
    }

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

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

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

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

@media (max-width: 640px) {
    .card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

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

    .site-header {
        padding-inline: 16px;
    }

    .hero {
        padding-inline: 16px;
    }

    .section-alt {
        padding-inline: 18px;
    }
}