:root {
    --bg: #081311;
    --bg-soft: #0f1f1b;
    --surface: rgba(18, 33, 29, 0.84);
    --surface-strong: rgba(26, 48, 42, 0.96);
    --line: rgba(125, 211, 192, 0.18);
    --text: #f2f8f6;
    --muted: #a9c2bb;
    --accent: #7dd3c0;
    --accent-strong: #53b7a5;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI", "Inter", sans-serif;
    line-height: 1.6;
    background:
        radial-gradient(circle at top, rgba(125, 211, 192, 0.16), transparent 32%),
        linear-gradient(180deg, #071210 0%, #081311 48%, #050807 100%);
}

a {
    color: inherit;
}

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

.page-shell {
    padding: 32px 20px 72px;
}

.page {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 14, 12, 0.78);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

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

.mini-nav a,
.pill-link,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button.primary,
.pill-link.primary {
    background: linear-gradient(135deg, rgba(125, 211, 192, 0.22), rgba(83, 183, 165, 0.28));
    border-color: rgba(125, 211, 192, 0.42);
}

.button.secondary,
.pill-link.secondary {
    background: rgba(255, 255, 255, 0.02);
}

.mini-nav a:hover,
.pill-link:hover,
.button:hover {
    transform: translateY(-1px);
    border-color: rgba(125, 211, 192, 0.42);
}

.hero,
.section-card,
.content-card,
.faq-item,
.case-card,
.stat-card,
.quote-card,
.cta-band {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 30px;
    padding: 42px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(125, 211, 192, 0.1);
    border: 1px solid rgba(125, 211, 192, 0.18);
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.9rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
    font-size: 1.2rem;
}

.lead,
.body-copy,
.section-copy,
.faq-item p,
.list-note,
.meta-strip,
.breadcrumb {
    color: var(--muted);
}

.lead {
    max-width: 64ch;
    font-size: 1.08rem;
}

.hero-actions,
.button-row,
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.stat-grid,
.card-grid,
.case-grid,
.three-up,
.faq-grid {
    display: grid;
    gap: 18px;
}

.stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.stat-card,
.section-card,
.content-card,
.faq-item,
.case-card,
.quote-card {
    padding: 22px;
    border-radius: var(--radius-md);
}

.stat-value {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.section {
    margin-top: 34px;
}

.section-card {
    padding: 32px;
}

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

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

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

.case-card {
    display: grid;
    gap: 14px;
    text-decoration: none;
}

.case-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
}

.card-label {
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.check-list,
.inline-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.inline-list li {
    position: relative;
    padding-left: 24px;
    margin-top: 10px;
    color: var(--muted);
}

.check-list li::before,
.inline-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(125, 211, 192, 0.12);
}

.price-band,
.meta-strip,
.cta-band {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.price-band {
    margin-top: 18px;
    font-weight: 700;
    color: var(--text);
}

.quote-card {
    position: relative;
    overflow: hidden;
}

.quote-card::after {
    content: "";
    position: absolute;
    inset: auto -24px -24px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(125, 211, 192, 0.22), transparent 68%);
}

.media-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.42);
}

.media-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.cta-band {
    justify-content: space-between;
    padding: 26px 28px;
    border-radius: var(--radius-lg);
    margin-top: 34px;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.faq-item p {
    margin: 0;
}

.breadcrumb {
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--accent);
}

.footer-note {
    margin-top: 28px;
    color: var(--muted);
    font-size: 0.94rem;
}

.accent {
    color: var(--accent);
}

.stack {
    display: grid;
    gap: 18px;
}

.compact {
    max-width: 72ch;
}

@media (max-width: 1024px) {
    .hero,
    .card-grid,
    .case-grid,
    .three-up,
    .faq-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 28px;
    }
}

@media (max-width: 720px) {
    .page-shell {
        padding: 16px 14px 56px;
    }

    .topbar {
        border-radius: 22px;
        padding: 14px;
    }

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

    .hero,
    .section-card,
    .cta-band {
        padding: 22px;
    }

    h1 {
        font-size: 2.3rem;
    }
}
