
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
    --header-height: 112px;
    --primary-color: #006838;
    --primary-hover: #00522c;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --bg-color: #f0f0f0;
    --border-color: #e5e5e5;
  /* Accent Colors */
    --yellow-accent: #F6D551;
    --purple-accent: #F1B2FA;
    --teal-accent: #96F8E7;
    --orange-accent: #F6A374;
    --green-accent: #B6F2C3;
    --yellow-alt-accent: #DEFF8A;
    --purple-alt-accent: #f3e5f5;
    --font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    background-color: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    display: none;
}

.sticky-nav .container {
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-nav.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.sticky-nav .sticky-logo {
    position: relative;
    top: -10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-color);
}

.logo-icon {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    display: inline-block;
    vertical-align: middle;
    color: var(--primary-color);
}

.logo-icon {
    fill: currentColor;
}

/* Clickable logo link styles */
.logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-link:focus {
    outline: none;
}

.logo-link:focus-visible {
    box-shadow: 0 0 0 6px rgba(0,104,56,0.12);
    border-radius: 14px;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    z-index: 1200;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-color);
    color: var(--text-color);
    width: 100%;
    max-width: 680px;
    border-radius: 20px;
    padding: 48px 40px 36px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
}

.modal-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.modal-close-x:hover {
    color: var(--text-color);
}

/* Icon and decorative dots */
.modal-icon-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon {
    display: inline-block;
}

.modal-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.modal-dot-yellow {
    width: 16px;
    height: 16px;
    background-color: #FFC857;
    top: 8px;
    right: 32%;
}

.modal-dot-blue {
    width: 12px;
    height: 12px;
    background-color: #5B9FD8;
    bottom: 20px;
    left: 18%;
}

/* Status badge */
.modal-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding: 4px 0;
}

.modal-card h2 {
    font-size: 32px;
    margin: 12px 0 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.modal-message {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-message strong {
    font-weight: 600;
    color: var(--text-color);
}

/* Social section */
.modal-social-section {
    margin: 28px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.modal-social-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.modal-social-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0;
}

.social-linkedin {
    background-color: #0A66C2;
}

.social-linkedin:hover {
    background-color: #084B9E;
    transform: scale(1.08);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-instagram:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.social-tiktok {
    background-color: #000000;
}

.social-tiktok:hover {
    background-color: #222;
    transform: scale(1.08);
}

/* Main CTA button */
.btn-modal-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin: 20px 0 16px;
    transition: background-color 0.2s;
    min-height: auto;
}

.btn-modal-primary:hover {
    background-color: var(--primary-hover);
}

/* Footer text */
.modal-footer-text {
    font-size: 12px;
    color: #999;
    margin: 0;
}

@media (max-width: 480px) {
    .modal-card {
        padding: 40px 24px 28px;
    }
    .modal-card h2 {
        font-size: 24px;
    }
    .modal-social-buttons {
        gap: 12px;
    }
    .social-btn {
        width: 44px;
        height: 44px;
    }
}

.nav {
    display: flex;
    gap: 32px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle-bar {
    width: 18px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta,
.sticky-cta,
.hero-cta-join,
.hero-cta-contrib {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.sticky-cta,
.hero-cta-join {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
}

.nav-cta:hover,
.sticky-cta:hover,
.hero-cta-join:hover {
    background-color: var(--primary-hover);
}

.hero-cta-contrib {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(0, 104, 56, 0.25);
}

.hero-cta-contrib:hover {
    border-color: rgba(0, 104, 56, 0.5);
    color: var(--primary-hover);
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    outline: none;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a:focus {
    outline: none;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
}

.btn-secondary:hover {
    background-color: var(--primary-hover);
}

/* Hero Section */
.hero {
    padding: 60px 0 20px;
    text-align: center;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #DEFF8A;
    border: 1px solid #DEFF8A;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}


.hero-description {
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Form */
.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-page .hero-title {
    font-size: 52px;
}

.waitlist-page .hero-description {
    font-size: 17px;
    margin-bottom: 22px;
}

.waitlist-page .waitlist-form {
    transform: scale(1);
    transform-origin: top center;
}

.waitlist-page {
    background-color: #004E29;
}

.waitlist-page .header {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.waitlist-page .header .logo,
.waitlist-page .sticky-nav .logo {
    color: #f5fff8;
}

.waitlist-page .header .logo-icon,
.waitlist-page .sticky-nav .logo-icon {
    color: #ffffff;
}

.waitlist-page .header .nav a,
.waitlist-page .sticky-nav .nav a {
    color: #f5fff8;
}

.waitlist-page .menu-toggle {
    border-color: rgba(255, 255, 255, 0.24);
}

.waitlist-page .menu-toggle-bar {
    background-color: #f5fff8;
}

.waitlist-page .header .nav a:hover,
.waitlist-page .sticky-nav .nav a:hover {
    color: var(--yellow-alt-accent);
}

.waitlist-page .sticky-nav.is-visible {
    background-color: rgba(0, 78, 41, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

.waitlist-page .hero {
    padding: 28px 0 56px;
}

.waitlist-page .hero > .container {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 48px 40px;
}

.input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px 6px 6px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.waitlist-form .input-group + .input-group {
    margin-top: 10px;
}

.input-icon {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
}

.input-group input::placeholder {
    color: #999;
}

/* Features Section */
.features-section {
    padding: 16px 0;
    margin-top: 50px;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.features-grid {
    --feature-item-width: 240px;
    --feature-item-gap: 30px;
    --feature-count: 7;
    --feature-total-width: calc((var(--feature-item-width) + var(--feature-item-gap)) * var(--feature-count));
    --marquee-distance: var(--feature-total-width);
    display: flex;
    gap: var(--feature-item-gap);
    animation: infiniteScroll 50s linear infinite;
    will-change: transform;
    padding: 0;
    margin: 0;
    width: max-content;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--marquee-distance)));
    }
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
    width: var(--feature-item-width);
}

.feature-icon {
    color: var(--text-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-content h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.grid-section {
    padding: 40px 0 80px;
    margin-top: 40px;
}

.manifesto-section {
    background-color: #00522C;
    padding: 96px 0;
}

.manifesto-card {
    background: #f6f0e6;
    border-radius: 28px;
    padding: 72px 80px;
    text-align: center;
    color: #3d4b45;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.manifesto-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5e7a6f;
    margin-bottom: 16px;
    font-weight: 600;
}

.manifesto-title {
    font-size: 48px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.manifesto-body {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-lede {
    color: #5b6660;
    font-size: 16px;
    line-height: 1.7;
    max-width: none;
    margin: 0 0 6px;
}

.manifesto-accent-inline {
    color: var(--primary-color);
    font-weight: 600;
}

.manifesto-divider {
    width: 1px;
    height: 28px;
    background: #d8d1c6;
    height: 16px;
    margin: 10px auto 12px;
}

.manifesto-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    max-width: none;
    display: grid;
    gap: 6px;
    text-align: center;
}

.manifesto-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    color: #54625d;
    font-size: 14px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

.manifesto-item-text {
    display: inline;
}

.manifesto-list em {
    color: var(--primary-color);
    font-style: italic;
}

.manifesto-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.bullet-yellow {
    background: var(--yellow-accent);
}

.bullet-teal {
    background: var(--teal-accent);
}

.bullet-orange {
    background: var(--orange-accent);
}

.bullet-green {
    background: var(--green-accent);
}

.bullet-purple {
    background: var(--purple-accent);
}

.manifesto-note {
    font-style: italic;
    color: #6b766f;
    font-size: 15px;
    line-height: 1.7;
    max-width: none;
    margin: 0;
}

.manifesto-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    font-size: 14px;
}

.contact-section {
    background: var(--bg-color);
    padding: 96px 0 72px;
}

.grid-section,
.manifesto-section,
.contact-section {
    scroll-margin-top: 80px;
}

.contact-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 56px 64px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.contact-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-header h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: #35433f;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(0, 104, 56, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 104, 56, 0.12);
}

.contact-message {
    grid-column: 1 / -1;
}

.contact-status {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    color: #1b2b25;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-status .status-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8aa59a;
    flex: 0 0 10px;
}

.contact-status.is-sending {
    background: rgba(0, 104, 56, 0.08);
    border-color: rgba(0, 104, 56, 0.2);
    color: #0f3f2d;
}

.contact-status.is-sending .status-icon {
    background: #2f8f5f;
}

.contact-status.is-success {
    background: rgba(182, 242, 195, 0.35);
    border-color: rgba(0, 104, 56, 0.2);
    color: #0f3f2d;
}

.contact-status.is-success .status-icon {
    background: #006838;
}

.contact-status.is-error {
    background: rgba(246, 163, 116, 0.2);
    border-color: rgba(197, 79, 30, 0.3);
    color: #7a2f0b;
}

.contact-status.is-error .status-icon {
    background: #c54f1e;
}

.contact-submit {
    justify-self: start;
    padding: 12px 28px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-health-check {
    padding: 10px 14px;
    font-size: 12px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: #35433f;
}

.contact-health-check:hover {
    border-color: rgba(0, 104, 56, 0.3);
    color: var(--primary-color);
}

.contact-health-check:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.site-footer {
    background: var(--yellow-alt-accent);
    color: #1b2b25;
    padding: 32px 0 0;
}

.footer-top {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand {
    max-width: 320px;
    margin-top: -12px;
}

.footer-logo {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #0f3f2d;
    margin-bottom: 0;
    line-height: 0;
    height: 150px;
    overflow: hidden;
}

.footer-logo-icon {
    width: 188px;
    height: 188px;
    border-radius: 0;
    border: none;
    display: block;
    transform: translateY(-18px);
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: #3b5249;
    margin-top: -36px;
    margin-bottom: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 24px;
    min-width: 0;
    justify-items: end;
}

.footer-col h4 {
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f3f2d;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: #3b5249;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col-compact {
    text-align: right;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-col a:hover {
    color: #0f3f2d;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(15, 63, 45, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #0f3f2d;
    text-decoration: none;
}

.footer-social img {
    width: 16px;
    height: 16px;
    display: block;
}

.footer-bottom {
    padding: 18px 0 28px;
    font-size: 12px;
    color: #3b5249;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    color: #3b5249;
    text-decoration: none;
    font-size: 12px;
}

.footer-legal a:hover {
    color: #0f3f2d;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title .accent {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.see-all {
    display: inline-block;
    margin-top: 24px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    row-gap: 16px;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

/* Border Accents */
.card-yellow { border-top: 4px solid var(--yellow-accent); }
.card-purple { border-top: 4px solid var(--purple-accent); }
.card-teal { border-top: 4px solid var(--teal-accent); }
.card-orange { border-top: 4px solid var(--orange-accent); }
.card-green { border-top: 4px solid var(--green-accent); }
.card-yellow-alt { border-top: 4px solid var(--yellow-alt-accent); }
.card-purple-alt { border-top: 4px solid var(--purple-alt-accent); }

.card-icon {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
    grid-column: 1;
    grid-row: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    transition: all 0.3s ease;
    grid-column: 2;
    grid-row: 1;
}

.card-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
    grid-column: 1 / -1;
    transition: all 0.3s ease;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
    grid-column: 1 / -1;
}

.footer-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

/* Hover Effects */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-card:hover .card-icon {
    background: rgba(255,255,255,0.3);
    color: var(--text-color);
}

.feature-card:hover .card-title,
.feature-card:hover .card-text,
.feature-card:hover .card-footer,
.feature-card:hover .footer-icon {
    color: #1a1a1a; /* Keep text dark for readability on light accent backgrounds */
}

/* Specific Hover Backgrounds */
.card-yellow:hover { background-color: var(--yellow-accent); }
.card-purple:hover { background-color: var(--purple-accent); }
.card-teal:hover { background-color: var(--teal-accent); }
.card-orange:hover { background-color: var(--orange-accent); }
.card-green:hover { background-color: var(--green-accent); }
.card-yellow-alt:hover { background-color: var(--yellow-alt-accent); }
.card-purple-alt:hover { background-color: var(--purple-alt-accent); }

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px;
    }

    .manifesto-card {
        padding: 48px 28px;
    }

    .manifesto-title {
        font-size: 34px;
    }

    .contact-card {
        padding: 40px 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-columns {
        min-width: 0;
        width: 100%;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-col-compact {
        text-align: left;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --header-height: 88px;
    }

    .header .container,
    .sticky-nav .container {
        position: relative;
        gap: 10px;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 24px;
        right: 24px;
        background-color: rgba(240, 240, 240, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        padding: 16px;
        flex-direction: column;
        gap: 14px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
        z-index: 1200;
    }

    .nav.is-open {
        display: flex;
    }

    .waitlist-page .nav {
        background-color: rgba(0, 78, 41, 0.98);
        border-color: rgba(255, 255, 255, 0.16);
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .header-actions {
        display: none;
    }

    .header-actions + .menu-toggle {
        margin-left: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .waitlist-page .hero-title {
        font-size: 32px;
    }

    .waitlist-page .hero-description {
        font-size: 16px;
    }

    .waitlist-page .hero > .container {
        border-radius: 22px;
        padding: 30px 20px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .input-group {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }
    
    .input-group input {
        width: 100%;
        text-align: center;
    }
    
    .btn-secondary {
        width: 100%;
    }

    .nav-cta,
    .sticky-cta,
    .hero-cta-join,
    .hero-cta-contrib {
        width: 100%;
    }

    .header-actions .nav-cta,
    .header-actions .sticky-cta {
        width: auto;
        padding: 10px 14px;
    }
    
    .input-icon {
        display: none;
    }

    /* Responsive header/logo adjustments */
    .header {
        height: var(--header-height);
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }
}
