:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --text: #0f172a;
    --accent: #2aa198;
    --highlight: #7c83ff;
    --muted: rgba(15, 23, 42, 0.70);
    --muted-2: rgba(15, 23, 42, 0.55);
    --border: rgba(15, 23, 42, 0.12);
    --border-2: rgba(15, 23, 42, 0.18);
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

a { color: inherit; text-decoration: none; }

a:hover { color: var(--text); }

a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(42, 161, 152, 0.70);
    outline-offset: 3px;
    border-radius: 10px;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.muted { color: var(--muted); }

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span { color: var(--accent); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(246, 247, 251, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav a {
    color: rgba(15, 23, 42, 0.82);
    font-weight: 750;
    font-size: 0.95rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover { color: var(--text); background: rgba(42, 161, 152, 0.10); }

.nav .nav-cta {
    color: var(--text);
    background: rgba(42, 161, 152, 0.16);
    border: 1px solid rgba(42, 161, 152, 0.30);
}

.nav .nav-cta:hover { background: rgba(42, 161, 152, 0.22); }

.hero {
    padding: 5.5rem 0 3.5rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -120px 0 auto 0;
    height: 420px;
    background:
        radial-gradient(700px 260px at 25% 35%, rgba(42, 161, 152, 0.18), transparent 60%),
        radial-gradient(700px 260px at 75% 20%, rgba(124, 131, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
}

.hero-copy { padding-top: 0.5rem; }

.eyebrow {
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    margin: 0 0 0.9rem;
}

h1 {
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    line-height: 1.06;
    margin: 0 0 1rem;
    letter-spacing: -0.04em;
}

.lede {
    color: rgba(15, 23, 42, 0.72);
    font-size: 1.05rem;
    max-width: 62ch;
    margin: 0;
}

.highlight {
    background: linear-gradient(to right, var(--accent), var(--highlight));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.actions {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(135deg, rgba(42, 161, 152, 0.98), rgba(124, 131, 255, 0.92));
    color: #ffffff;
    font-weight: 800;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(42, 161, 152, 0.18);
}

.btn-primary:hover { filter: brightness(1.02); transform: translateY(-1px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    color: rgba(15, 23, 42, 0.86);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.70);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-secondary:hover {
    background: rgba(42, 161, 152, 0.10);
    border-color: rgba(42, 161, 152, 0.22);
    transform: translateY(-1px);
}

.trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.trust-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem 1rem;
    background: rgba(255, 255, 255, 0.70);
}

.trust-kicker {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
}

.trust-text {
    display: block;
    font-weight: 650;
    color: rgba(15, 23, 42, 0.92);
}

.hero-panel { position: sticky; top: 90px; }

.panel-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.panel-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.9rem;
}

.panel-list {
    display: grid;
    gap: 0.75rem;
}

.panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(246, 247, 251, 0.90);
    font-weight: 650;
}

.section { padding: 3.75rem 0; }

.section-head {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.2vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: rgba(15, 23, 42, 0.66);
    max-width: 72ch;
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.capability {
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.5rem;
}

.capability h3 {
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.capability p {
    margin: 0;
    color: rgba(15, 23, 42, 0.66);
}

.projects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.82);
    padding: 1.6rem;
    border-radius: 22px;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(42, 161, 152, 0.28);
    background: rgba(255, 255, 255, 0.92);
}

.project-meta { margin-bottom: 0.75rem; }

.project-card h3 {
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
}

.project-card p {
    margin: 0;
    color: rgba(15, 23, 42, 0.66);
}

.card-actions {
    margin-top: auto;
    padding-top: 1.25rem;
}

.subtle { color: rgba(148, 163, 184, 0.95); font-weight: 600; }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(15, 23, 42, 0.60);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.04);
}

.contact {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 1.75rem;
    background:
        radial-gradient(800px 240px at 20% 0%, rgba(42, 161, 152, 0.12), transparent 55%),
        rgba(255, 255, 255, 0.82);
}

.contact p { margin: 0.75rem 0 0; color: rgba(15, 23, 42, 0.66); }

.contact-card {
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(246, 247, 251, 0.92);
    padding: 1.25rem;
}

.contact-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
}

.contact-row a { color: var(--accent); font-weight: 750; }

.contact-row a:hover { text-decoration: underline; }

footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    color: var(--muted-2);
    font-size: 0.95rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-inner p { margin: 0; }

.footer-links a { color: var(--muted); font-weight: 650; }

.footer-links a:hover { color: var(--text); }

.sep { color: rgba(15, 23, 42, 0.22); padding: 0 0.45rem; }

@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-panel { position: relative; top: auto; }
    .trust { grid-template-columns: 1fr; }
    .capabilities { grid-template-columns: 1fr; }
    .projects { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .nav { gap: 0.25rem; }
    .nav a { padding: 0.5rem 0.6rem; }
}