:root {
    --bg: #0b0f14;
    --bg-soft: #0f1520;
    --panel: #121826;
    --text: #e6ebf5;
    --muted: #a7b0c0;
    --brand: #16dd00;
    --brand-2: #60a5fa;
    --ring: rgba(22, 221, 0, 0.25);
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --shadow-soft: 0 6px 16px rgba(0, 0, 0, .22);
    --radius: 16px;
    --radius-lg: 22px;
    --maxw: 1200px;
    --stroke: rgba(255, 255, 255, .1);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
    color: var(--text);
    background:linear-gradient(173deg, #17c705 0%, #121810 .9%, #17c705 209%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    width: min(var(--maxw), 92vw);
    margin-inline: auto;
    padding-inline: 12px
}

section {
    padding: clamp(40px, 6vw, 64px) 0
}

.hero {
    position: relative;
    padding: clamp(48px, 7vw, 96px) 0 clamp(24px, 5vw, 48px);
    color: #fff;
    background: linear-gradient(173deg, #17c705 0%, #121810 0.9%, #17c705 209%);
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 420px;
    background: radial-gradient(40% 60% at 50% 10%, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0));
    filter: blur(30px);
    z-index: -1;
}

.breadcrumbs {
    color: rgba(255, 255, 255, .85);
    font-size: 14px
}

.breadcrumbs a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(16px, 3vw, 36px);
    align-items: center;
    margin-top: 16px;
}

h1 {
    margin: 8px 0 12px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -.02em;
}

.lead {
    font-size: clamp(16px, 2vw, 18px);
    color: #ebffe8;
    max-width: 72ch
}

.hero-card {
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block
}

.trust {
    background: #ffffff;
    color: #0b0f14;
}

.trust h2 {
    color: #0b0f14;
    margin-top: 0
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

.logo-tile {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 8px;
    padding: 18px;
    background: #f6fff4;
    border: 1px solid #c9f5c1;
    border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.logo-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    border-color: #16dd00
}

.logo-tile img {
    width: 64px;
    height: 64px;
    object-fit: contain
}

.logo-tile h4 {
    margin: 6px 0 4px;
    font-size: 18px;
    color: #0b0f14
}

.logo-tile p {
    margin: 0;
    color: #334155;
    font-size: 14px
}

#story,
#mission,
#team {
    background: #ffffff;
    color: #0b0f14;
}

#methodology {
    background: linear-gradient(173deg, #17c705 0%, #121810 0.9%, #17c705 209%);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

#newsletter {
    background: linear-gradient(173deg, #17c705 0%, #121810 0.9%, #17c705 209%);
}

.section-head h2 {
    font-size: clamp(24px, 3.2vw, 34px);
    color: #ffff;
}

.section-head p {
    margin: 0;
    max-width: 80ch;
    color: #fff;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px
}

.panel {
    color: #fff;
    padding: 22px;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.value {
    border: 1px solid #e5f6e2;
    border-radius: 14px;
    padding: 18px;
    background: #fafff8;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.value h3 {
    margin: 0 0 6px
}

.value p {
    margin: 0;
    color: #334155
}

.value:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
    border-color: #16dd00
}

.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    border: 1px solid #e5f6e2;
    border-radius: 14px;
    background: #fafff8;
    padding: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .06);
    border-color: #16dd00
}

.core-value {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #eaffdf;
    border: 1px solid #d4f7c7;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.core-value img {
    width: 60%;
    height: 60%;
    object-fit: contain
}

.card-body h3 {
    margin: 0 0 4px;
    color: #0b0f14
}

.role {
    color: #334155;
    font-size: 14px
}

.card--feature {
    grid-column: span 2;
    border: 1px solid #c9f5c1;
    background: linear-gradient(0deg, #ffffff, #ffffff) padding-box, linear-gradient(135deg, #16dd00, #b6ff8a) border-box;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.card--feature::before {
    content: "";
    position: absolute;
    inset: -10% -20% auto -10%;
    height: 120px;
    background: radial-gradient(40% 60% at 20% 20%, rgba(22, 221, 0, .18), transparent 60%);
    filter: blur(18px);
    pointer-events: none;
}

.core-value--amber {
    background: #fff7e6;
    border-color: #ffe3b0;
}

.core-value--mint {
    background: #f2ffea;
    border-color: #d9f9c9;
}

.kv {
    margin: 6px 0 0;
    padding-left: 18px;
    color: #334155
}

.kv li {
    margin: 6px 0
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: .35rem .6rem;
    border-radius: 999px;
    color: #0b0f14;
    background: #eaffdf;
    border: 1px solid #c9f5c1;
}

.badge--outline {
    background: #fff;
    color: #0b0f14;
    border: 1px solid #e2e8f0;
}

.faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

.faq-item {
    border: 1px solid var(--stroke);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, .02)
}

.faq-item summary {
    cursor: pointer;
    padding: 14px 16px;
    list-style: none;
    position: relative;
    font-weight: 600
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 14px;
    font-weight: 700
}

.faq-item[open] summary::after {
    content: "–"
}

.faq-item p {
    padding: 0 16px 14px;
    color: var(--muted);
    margin: 0
}

.newsletter {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    align-items: center;
    background: linear-gradient(173deg, #17c705 0%, #121810 0.9%, #17c705 209%);
    color: #fff;
    border-radius: var(--radius);
}

.field {
    display: flex;
    gap: 10px;
    margin-top: 10px
}

input[type="email"] {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    background: #0b1220;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff
}

input[type="email"]:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 6px var(--ring)
}

.btn {
    border: 0;
    background: #fff;
    color: #0b0f14;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .2)
}

.btn.brand {
    background: linear-gradient(135deg, #ffffff, #eaffdf);
    color: #0b0f14;
}

:focus-visible {
    outline: 2px solid #16dd00;
    outline-offset: 2px
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1100px) {
    .trust-logos {
        grid-template-columns: repeat(3, 1fr)
    }

    .team {
        grid-template-columns: repeat(3, 1fr)
    }

    .hero-grid,
    .grid-2,
    .newsletter {
        grid-template-columns: 1fr
    }

    .card--feature {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .trust-logos {
        grid-template-columns: repeat(2, 1fr)
    }

    .values {
        grid-template-columns: 1fr
    }

    .team {
        grid-template-columns: repeat(2, 1fr)
    }

    .card--feature {
        grid-column: span 1;
    }
}

@media (max-width: 520px) {
    .team {
        grid-template-columns: 1fr
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value {
    background: #fafff8;
    border: 1px solid #e5f6e2;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.value:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    border-color: #16dd00;
}

.value .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #edffe3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9f7cc;
}

.value .icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */

.hero-grid > div {
    flex: 1 1 500px;
}

.hero-card img {
    max-width: 100%;
    height: auto;
}

/* Trust Bar */
.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.logo-tile {
     padding: 1rem;
}

.logo-tile img {
    max-width: 100%;
    height: auto;
}

/* Values Section */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value {
    text-align: center;
}

.value .icon img {
    max-width: 100%;
    height: auto;
}

/* Core Values Section */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
   
    padding: 1rem;
}

.core-value img {
    max-width: 100%;
    height: auto;
}

/* Newsletter Section */
.newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.newsletter-image {
    flex: 1 1 300px;
}

.newsletter-text {
    flex: 2 1 500px;
}

.newsletter-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-grid > div,
    .newsletter-image,
    .newsletter-text {
        flex: 1 1 100%;
    }
    
    .trust-logos,
    .values,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    /* Ensure no horizontal overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}