:root {
    --background: hsl(0 0% 98%);
    --foreground: hsl(0 0% 20%);
    --card: hsl(0 0% 100%);
    --primary: hsl(120 40% 50%);
    --primary-foreground: hsl(0 0% 100%);
    --secondary: hsl(40 100% 90%);
    --muted: hsl(0 0% 94%);
    --muted-foreground: hsl(0 0% 40%);
    --accent: hsl(180 60% 45%);
    --accent-foreground: hsl(0 0% 100%);
    --border: hsl(0 0% 90%);
    --destructive: hsl(0 84% 60%);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--background);
    color: var(--foreground);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.625;
}

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

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

p {
    margin: 0;
    max-width: 65ch;
}

h1,
h2,
h3 {
    margin: 0;
    text-wrap: balance;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    font-weight: 600;
}

.container {
    width: min(100% - 2rem, 80rem);
    margin-inline: auto;
}

.narrow {
    width: min(100% - 2rem, 48rem);
}

.center {
    text-align: center;
}

.center p {
    margin-inline: auto;
}

.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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

.header-inner {
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    min-width: 0;
    font-size: clamp(0.875rem, 2.3vw, 1.125rem);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover {
    background: var(--muted);
}

.nav-link.is-active {
    background: var(--primary);
    color: var(--primary-foreground);
}

.menu-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
}

.menu-toggle:hover {
    background: var(--muted);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    display: block;
    width: 1.35rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.menu-icon {
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-icon::before {
    top: -7px;
}

.menu-icon::after {
    top: 7px;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100dvh;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(40 100% 90% / 0.3), var(--background));
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    padding-block: 5rem;
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content p {
    margin-block: 1.5rem 2rem;
    color: var(--muted-foreground);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.hero-content .eyebrow {
    margin-block: 0 1rem;
    font-size: 0.875rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    border: 0;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 160ms ease, opacity 160ms ease;
}

.button:hover {
    opacity: 0.92;
}

.button:active {
    transform: scale(0.98);
}

.button-lg {
    min-height: 3rem;
    padding-inline: 2rem;
    font-size: 1.125rem;
}

.button-secondary {
    background: var(--card);
    color: var(--foreground);
}

.button-full {
    width: 100%;
}

.section {
    padding-block: 5rem;
}

.page-intro {
    background: linear-gradient(135deg, hsl(40 100% 90% / 0.3), var(--background));
}

.section-card {
    background: var(--card);
}

.section-heading {
    margin-bottom: 4rem;
    text-align: center;
}

.section-heading p {
    margin: 1rem auto 0;
    color: var(--muted-foreground);
    font-size: 1.05rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.benefit {
    display: flex;
    gap: 1rem;
}

.benefit:nth-child(odd) {
    justify-self: end;
}

.benefit p,
.value-card p,
.copy-block p {
    color: var(--muted-foreground);
}

.benefit h3 {
    margin-bottom: 0.5rem;
}

.icon-box {
    position: relative;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: hsl(120 40% 50% / 0.1);
    color: var(--primary);
    font-weight: 700;
}

.icon-box img {
    width: 1.65rem;
    height: 1.65rem;
}

.spark-icon::before,
.heart-icon::before,
.leaf-icon::before,
.award-icon::before,
.people-icon::before,
.target-icon::before {
    font-size: 1.25rem;
    line-height: 1;
}

.spark-icon::before {
    content: "*";
}

.heart-icon::before {
    content: "H";
}

.leaf-icon::before {
    content: "L";
}

.award-icon::before {
    content: "A";
}

.people-icon::before {
    content: "P";
}

.target-icon::before {
    content: "T";
}

.cta-section {
    padding-block: 5rem;
    background: var(--accent);
    color: var(--accent-foreground);
    text-align: center;
}

.cta-content {
    display: grid;
    justify-items: center;
    gap: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.v2-hero {
    background: linear-gradient(135deg, hsl(40 100% 90% / 0.42), var(--background));
    padding-block: clamp(3rem, 7vw, 6rem);
}

.v2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.v2-hero-copy {
    display: grid;
    gap: 1.35rem;
    max-width: 42rem;
}

.v2-hero-copy p:not(.eyebrow) {
    color: var(--muted-foreground);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.35rem;
}

.v2-outline-button {
    border: 1px solid var(--border);
}

.v2-hero-panel {
    position: relative;
    min-height: clamp(26rem, 60vw, 40rem);
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, hsl(40 100% 90% / 0.42), var(--card));
    box-shadow: 0 24px 60px hsl(0 0% 0% / 0.08);
}

.v2-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, hsl(40 100% 90% / 0.42), transparent 22%, transparent 78%, hsl(40 100% 90% / 0.42)),
        linear-gradient(180deg, hsl(40 100% 90% / 0.32), transparent 24%, transparent 76%, hsl(40 100% 90% / 0.32));
    pointer-events: none;
}

.v2-hero-panel img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    opacity: 0.58;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse at center, hsl(0 0% 0%) 56%, hsl(0 0% 0% / 0.72) 72%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, hsl(0 0% 0%) 56%, hsl(0 0% 0% / 0.72) 72%, transparent 100%);
}

.v2-note-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    width: min(calc(100% - 2rem), 24rem);
    border: 1px solid hsl(0 0% 100% / 0.72);
    border-radius: var(--radius);
    padding: 1rem;
    background: hsl(0 0% 100% / 0.92);
    box-shadow: 0 16px 36px hsl(0 0% 0% / 0.14);
}

.v2-note-card span,
.v2-step span {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: hsl(120 40% 50% / 0.12);
    color: var(--primary);
    font-weight: 700;
}

.v2-note-card p {
    color: var(--foreground);
    font-size: 0.95rem;
}

.v2-goals,
.v2-standards {
    padding-block: 5rem;
    background: var(--card);
}

.v2-section-title {
    display: grid;
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

.v2-section-title .eyebrow {
    margin: 0;
}

.v2-goal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.v2-goal {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    min-height: 17rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--card);
}

.v2-goal p,
.v2-sticky-copy p,
.v2-step p {
    color: var(--muted-foreground);
}

.v2-pathway {
    padding-block: 5rem;
    background: linear-gradient(135deg, hsl(40 100% 90% / 0.34), var(--background));
}

.v2-pathway-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.v2-sticky-copy {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: 1rem;
}

.v2-steps {
    display: grid;
    gap: 1rem;
}

.v2-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: hsl(0 0% 100% / 0.78);
}

.v2-step h3 {
    margin-bottom: 0.35rem;
}

.v2-standards-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

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

.v2-chip-list li {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.7rem 0.9rem;
    background: hsl(120 40% 50% / 0.08);
    color: var(--foreground);
    font-weight: 600;
}

.v2-cta .eyebrow {
    margin: 0;
    color: var(--accent-foreground);
    opacity: 0.9;
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 45px hsl(0 0% 0% / 0.12);
}

.copy-block {
    display: grid;
    gap: 1rem;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted-foreground);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--primary);
}

.mission-layout {
    grid-template-columns: minmax(0, 48rem);
    justify-content: center;
    margin-bottom: 0;
    text-align: center;
}

.mission-layout p {
    margin-inline: auto;
}

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

.value-card,
.form-card {
    border: 1px solid hsl(0 0% 90% / 0.5);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
}

.value-card {
    padding: 1.5rem;
}

.value-card h3 {
    margin-block: 1rem 0.75rem;
}

.form-shell {
    max-width: 42rem;
    margin-inline: auto;
}

.form-card {
    padding: clamp(1.5rem, 4vw, 2rem);
}

.form-card h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field label {
    font-size: 0.95rem;
    font-weight: 500;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    color: var(--foreground);
    font: inherit;
    padding: 0.65rem 0.85rem;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--primary);
    outline: 3px solid hsl(120 40% 50% / 0.18);
}

.field-error {
    color: var(--destructive);
    font-size: 0.9rem;
}

.hidden-field {
    position: absolute;
    left: -10000px;
}

.notice {
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-weight: 500;
}

.notice-success {
    background: hsl(120 40% 50% / 0.12);
    color: hsl(120 45% 25%);
}

.notice-error {
    background: hsl(0 84% 60% / 0.12);
    color: hsl(0 65% 35%);
}

@media (max-width: 760px) {
    .header-inner {
        flex-wrap: wrap;
        padding-block: 0.75rem;
    }

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

    .primary-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid var(--border);
        padding-top: 0.75rem;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .nav-link {
        width: 100%;
    }

    .hero {
        min-height: calc(100dvh - 4rem);
    }

    .benefit-grid,
    .split-layout,
    .value-grid,
    .check-list,
    .v2-hero-grid,
    .v2-section-title,
    .v2-goal-grid,
    .v2-pathway-grid,
    .v2-standards-grid {
        grid-template-columns: 1fr;
    }

    .v2-goal {
        min-height: auto;
    }

    .v2-sticky-copy {
        position: static;
    }

    .v2-actions .button {
        width: 100%;
    }

    .benefit:nth-child(odd) {
        justify-self: auto;
    }

    .section {
        padding-block: 4rem;
    }
}
