:root {
    --gc-container: 1120px;
    --gc-bg: #f7f8f5;
    --gc-surface: #ffffff;
    --gc-surface-soft: #eef4ef;
    --gc-text: #17211d;
    --gc-muted: #59635f;
    --gc-line: #d9e0d9;
    --gc-accent: #247768;
    --gc-accent-dark: #175449;
    --gc-blue: #315f9d;
    --gc-amber: #b97721;
    --gc-shadow: 0 18px 55px rgba(23, 33, 29, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--gc-bg);
    color: var(--gc-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gc-accent-dark);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--gc-blue);
}

.site-header,
.site-footer {
    width: min(var(--gc-container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gc-line);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: var(--gc-text);
    font-weight: 750;
    text-decoration: none;
}

.site-brand__mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 8px;
    background: var(--gc-accent);
    color: #fff;
}

.site-brand__logo {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
}

.site-brand__logo img {
    max-height: 42px;
    width: auto;
}

.site-nav {
    font-size: 15px;
}

.site-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border-radius: 8px;
    color: var(--gc-muted);
    padding: 6px 10px;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
    background: var(--gc-surface-soft);
    color: var(--gc-accent-dark);
}

.site-main {
    width: 100%;
    padding: 0 0 72px;
}

.home-page,
.content-page {
    width: 100%;
}

.home-page__inner > * {
    width: min(var(--gc-container), calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.content-page {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 56px;
}

.content-page__body > * {
    max-width: 760px;
}

.home-page h1,
.content-page h1 {
    margin: 0 0 20px;
    color: var(--gc-text);
    font-size: 4.75rem;
    line-height: 1.02;
    letter-spacing: 0;
}

.content-page h1 {
    font-size: 3.35rem;
}

.home-page h2,
.content-page h2 {
    margin: 0 0 16px;
    color: var(--gc-text);
    font-size: 2.55rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.home-page h3,
.content-page h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
}

.home-page p,
.content-page p {
    color: var(--gc-muted);
    font-size: 18px;
}

.gc-lead {
    max-width: 720px;
    color: var(--gc-muted);
    font-size: 1.35rem;
    line-height: 1.5;
}

.gc-kicker {
    margin: 0 0 12px;
    color: var(--gc-accent-dark);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wp-block-buttons {
    gap: 12px;
    margin: 30px 0 0;
}

.wp-block-button__link,
.gconnect-shortcode-placeholder__link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gc-accent);
    border-radius: 8px;
    background: var(--gc-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 18px;
    text-decoration: none;
}

.wp-block-button__link:hover,
.gconnect-shortcode-placeholder__link:hover {
    border-color: var(--gc-accent-dark);
    background: var(--gc-accent-dark);
    color: #fff;
}

.is-style-outline > .wp-block-button__link {
    background: transparent;
    color: var(--gc-accent-dark);
}

.is-style-outline > .wp-block-button__link:hover {
    background: var(--gc-surface-soft);
    color: var(--gc-accent-dark);
}

.gc-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(56px, 8vw, 92px) 0 clamp(48px, 7vw, 76px);
}

.gc-hero__content {
    min-width: 0;
}

.gc-hero__visual {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: var(--gc-surface);
    box-shadow: var(--gc-shadow);
    padding: 28px;
}

.gc-hero__visual::before,
.gc-hero__visual::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.72);
}

.gc-hero__visual::before {
    right: 28px;
    bottom: 28px;
    width: 46%;
    height: 52%;
    border: 1px solid rgba(23, 84, 73, 0.2);
    border-radius: 8px;
}

.gc-hero__visual::after {
    right: 74px;
    bottom: 72px;
    width: 38%;
    height: 12px;
    border-radius: 999px;
    box-shadow: 0 34px 0 rgba(255, 255, 255, 0.8), 0 68px 0 rgba(255, 255, 255, 0.72);
}

.gc-visual-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin: 0 0 18px;
    border-radius: 999px;
    background: var(--gc-text);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
}

.gc-signal-list,
.gc-soon-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gc-signal-list li,
.gc-soon-list li {
    min-height: 54px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--gc-text);
    font-weight: 700;
    padding: 14px;
}

.gc-section {
    padding: clamp(42px, 6vw, 72px) 0;
}

.gc-section--tint {
    width: 100%;
    max-width: none;
    background: var(--gc-surface-soft);
    padding-right: max(16px, calc((100vw - var(--gc-container)) / 2));
    padding-left: max(16px, calc((100vw - var(--gc-container)) / 2));
}

.gc-card-grid,
.gc-steps {
    gap: 18px;
    margin-top: 24px;
}

.gc-card,
.gc-step,
.gconnect-shortcode-placeholder {
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: var(--gc-surface);
    padding: clamp(20px, 3vw, 28px);
}

.gc-card {
    box-shadow: 0 12px 32px rgba(23, 33, 29, 0.06);
}

.gc-card p,
.gc-step p,
.gconnect-shortcode-placeholder p {
    margin-bottom: 0;
}

.gc-step {
    border-top: 4px solid var(--gc-blue);
}

.gc-step:nth-child(2) {
    border-top-color: var(--gc-accent);
}

.gc-step:nth-child(3) {
    border-top-color: var(--gc-amber);
}

.gc-soon-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 22px;
}

.gc-soon-list li {
    border-left: 4px solid var(--gc-accent);
}

.gc-cta {
    border-top: 1px solid var(--gc-line);
}

.gconnect-shortcode-placeholder {
    margin: 32px 0;
}

.gconnect-shortcode-placeholder h2 {
    margin-bottom: 10px;
}

.gconnect-shortcode-placeholder__link {
    margin-top: 20px;
}

.site-footer {
    padding: 24px 0 34px;
    border-top: 1px solid var(--gc-line);
    color: var(--gc-muted);
}

.site-footer p {
    margin: 0;
}

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
    }

    .site-nav__list {
        justify-content: flex-start;
    }

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

    .home-page h1,
    .content-page h1 {
        font-size: 3.4rem;
    }

    .home-page h2,
    .content-page h2 {
        font-size: 2.2rem;
    }

    .gc-hero__visual {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .site-header,
    .site-footer,
    .home-page__inner > *,
    .content-page {
        width: min(100% - 24px, var(--gc-container));
    }

    .site-nav a {
        min-height: 34px;
        padding: 5px 8px;
    }

    .home-page h1,
    .content-page h1 {
        font-size: 2.65rem;
    }

    .home-page h2,
    .content-page h2 {
        font-size: 1.85rem;
    }

    .gc-lead {
        font-size: 1.1rem;
    }

    .gc-signal-list {
        grid-template-columns: 1fr;
    }

    .wp-block-button,
    .wp-block-button__link {
        width: 100%;
    }
}
