:root {
    --bg: #fbf7f4;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-solid: #ffffff;
    --text: #202020;
    --muted: #5f5f68;
    --line: rgba(32, 32, 32, 0.08);
    --accent: #be6426;
    --accent-dark: #994b18;
    --accent-soft: rgba(190, 100, 38, 0.12);
    --shadow: 0 20px 60px rgba(24, 24, 31, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
            radial-gradient(circle at top left, rgba(190, 100, 38, 0.08), transparent 28%),
            linear-gradient(180deg, #fffdfa 0%, var(--bg) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 96px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(251, 247, 244, 0.75);
    border-bottom: 1px solid rgba(32, 32, 32, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), #d28246);
    color: #fff;
    box-shadow: 0 10px 30px rgba(190, 100, 38, 0.28);
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.brand-text {
    font-size: 1.05rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    color: var(--muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #d67c3d);
    box-shadow: 0 12px 30px rgba(190, 100, 38, 0.28);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(32, 32, 32, 0.08);
}

.hero {
    padding-top: 88px;
    padding-bottom: 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
    max-width: 16ch;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.hero-text,
.lead,
.card p,
.timeline-content p,
.faq-answer p,
.contact-copy p,
.panel-card,
.stat-label {
    color: var(--muted);
}

.hero-text {
    font-size: 1.125rem;
    max-width: 62ch;
    margin-top: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.glass {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.panel-card,
.stat-card,
.card,
.checklist-card,
.contact-box,
.faq-item {
    border-radius: var(--radius-xl);
}

.panel-card {
    padding: 24px;
}

.panel-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat-card {
    padding: 22px 18px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.94rem;
}

.section-heading {
    margin-bottom: 34px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.card {
    background: var(--surface-solid);
    border: 1px solid var(--line);
    padding: 28px;
    box-shadow: var(--shadow);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.checklist-card {
    padding: 28px;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

.check-list-spaced {
    gap: 18px;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    align-items: start;
    background: var(--surface-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow);
}

.timeline-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #d67c3d);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(24, 24, 31, 0.04);
    font-weight: 600;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--surface-solid);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-weight: 700;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 22px;
    font-size: 1.3rem;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 24px 22px;
}

.contact-box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    padding: 32px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
}

.contact-link {
    color: var(--muted);
    font-weight: 600;
}

.site-footer {
    padding: 28px 0 42px;
    border-top: 1px solid rgba(32, 32, 32, 0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 0.96rem;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.bg-orb {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
}

.bg-orb-1 {
    width: 260px;
    height: 260px;
    top: 90px;
    right: -40px;
    background: rgba(190, 100, 38, 0.22);
}

.bg-orb-2 {
    width: 220px;
    height: 220px;
    left: -50px;
    bottom: 8%;
    background: rgba(32, 32, 32, 0.1);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.12s;
}

.theme-systems .eyebrow,
.theme-development .eyebrow,
.theme-business .eyebrow {
    background: var(--accent-soft);
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .nav,
    .desktop-cta {
        display: none;
    }

    .section {
        padding: 74px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-number {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .footer-inner {
        flex-direction: column;
    }

    h1 {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .panel-card,
    .card,
    .timeline-item,
    .checklist-card,
    .contact-box,
    .faq-item summary,
    .faq-answer {
        border-radius: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }
}