﻿:root {
    --bg: #07111f;
    --bg-alt: #0d1b31;
    --surface: rgba(10, 20, 37, 0.76);
    --surface-strong: rgba(15, 28, 49, 0.94);
    --surface-light: rgba(248, 242, 233, 0.08);
    --text: #f3f7ff;
    --muted: #acb8d0;
    --accent: #ff8f6b;
    --accent-soft: #ffd0bb;
    --accent-2: #61e9c9;
    --accent-3: #f5c973;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(97, 233, 201, 0.16), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(255, 143, 107, 0.14), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #0a1730 52%, #07111f 100%);
    color: var(--text);
    font-family: "Sora", "Segoe UI", sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.background-glow {
    position: fixed;
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
}

.background-glow-left {
    top: 3rem;
    left: -10rem;
    background: rgba(97, 233, 201, 0.25);
}

.background-glow-right {
    top: 18rem;
    right: -10rem;
    background: rgba(255, 143, 107, 0.2);
}

.site-header,
.section,
.site-footer,
.signal-bar {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.topbar {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 1.25rem auto 0;
    padding: 0.95rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.topbar p {
    margin: 0;
}

.topbar-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-shell {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.68);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 1rem;
    z-index: 10;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--bg);
    background:
        linear-gradient(135deg, var(--accent-3), var(--accent)),
        var(--accent);
    box-shadow: 0 12px 28px rgba(255, 143, 107, 0.28);
}

.brand-text {
    display: grid;
}

.brand-text strong {
    font-size: 1rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--muted);
    transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    width: 1.2rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.section {
    padding: 5.5rem 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 2.5rem;
    padding-top: 4rem;
}

.eyebrow,
.kicker,
.workflow-step {
    margin: 0 0 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--accent-2);
}

.hero h1,
.section-heading h2,
.hero-panel-main h2,
.contact-copy h2 {
    margin: 0;
    line-height: 1.05;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    max-width: 12ch;
}

.hero h1 span {
    color: var(--accent-soft);
}

.hero-text,
.section-heading p,
.about-card p,
.workflow-card p,
.service-card p,
.proof-card p,
.contact-copy p,
.form-note,
.site-footer p {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

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

.button-primary {
    color: var(--bg);
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    box-shadow: 0 18px 32px rgba(255, 143, 107, 0.24);
}

.button-secondary {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card,
.hero-panel,
.about-card,
.service-card,
.workflow-card,
.proof-card,
.contact-form {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1.25rem;
}

.stat-card strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--accent-soft);
}

.stat-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-orbit {
    position: relative;
    min-height: 35rem;
}

.hero-panel {
    position: absolute;
}

.hero-panel-main {
    inset: 1rem 3rem 8rem 0;
    padding: 2rem;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        var(--surface-strong);
}

.hero-panel-main > p,
.hero-panel-accent > p {
    margin: 0 0 1rem;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.hero-panel-main h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    max-width: 11ch;
    margin-bottom: 1.5rem;
}

.chip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip-list li {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.9rem;
}

.hero-panel-accent {
    right: 0;
    bottom: 3rem;
    width: min(19rem, 70%);
    padding: 1.4rem 1.6rem;
    background: linear-gradient(135deg, rgba(97, 233, 201, 0.18), rgba(255, 143, 107, 0.16));
}

.hero-panel-accent ol {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text);
}

.hero-panel-accent li + li {
    margin-top: 0.6rem;
}

.hero-badge {
    position: absolute;
    left: 2rem;
    bottom: 0;
    padding: 1rem 1.15rem;
    max-width: 16rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

.hero-badge span {
    display: block;
    color: var(--accent-2);
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}

.signal-bar {
    overflow: hidden;
    padding: 1rem 0 0;
}

.signal-bar-track {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.signal-bar-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading.narrow {
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.contact-copy h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 11ch;
}

.section-heading.narrow h2 {
    max-width: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.25rem;
}

.about-card {
    padding: 1.6rem;
    min-height: 15rem;
}

.feature-quote {
    grid-row: span 2;
    background:
        radial-gradient(circle at top right, rgba(245, 201, 115, 0.18), transparent 35%),
        var(--surface-strong);
}

.feature-quote h3,
.about-card h3,
.service-card h3,
.workflow-card h3,
.proof-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    position: relative;
    padding: 1.6rem;
    min-height: 16rem;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -25% -40% auto;
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 143, 107, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.service-card:hover::after,
.service-card:focus-within::after {
    opacity: 1;
}

.service-index {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--accent-2);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.workflow-card,
.proof-card {
    padding: 1.6rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1.25rem;
}

.highlight {
    grid-row: span 2;
    background:
        linear-gradient(145deg, rgba(255, 143, 107, 0.14), rgba(97, 233, 201, 0.08)),
        var(--surface-strong);
}

.contact-section {
    padding-bottom: 6.5rem;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(10, 20, 37, 0.68);
    box-shadow: var(--shadow);
}

.contact-copy {
    padding: 1rem 0.4rem 1rem 0;
}

.contact-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.contact-list a {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.contact-form {
    padding: 1.6rem;
}

.contact-form label {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.contact-form span {
    color: var(--accent-soft);
    font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(243, 247, 255, 0.45);
}

.submit-button {
    width: 100%;
    margin-top: 0.5rem;
}

.form-note {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.site-footer {
    padding: 0 0 3rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-end;
}

.site-footer strong {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
}

body.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

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

@media (max-width: 980px) {
    .topbar,
    .nav-shell {
        border-radius: 28px;
    }

    .hero,
    .contact-shell,
    .about-layout,
    .services-grid,
    .workflow-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-orbit {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .hero-panel,
    .hero-badge {
        position: static;
        width: auto;
        max-width: none;
    }

    .feature-quote,
    .highlight {
        grid-row: auto;
    }
}

@media (max-width: 760px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: rgba(7, 17, 31, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity 180ms ease,
            transform 180ms ease,
            visibility 180ms ease;
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

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

@media (max-width: 560px) {
    .site-header,
    .section,
    .site-footer,
    .signal-bar,
    .topbar {
        width: min(calc(100% - 1.2rem), var(--max-width));
    }

    .nav-shell {
        padding: 0.85rem 1rem;
    }

    .brand-text small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }

    .section {
        padding: 4rem 0;
    }
}

