*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0b0d;
    --bg-elevated: #141719;
    --bg-card: #16191c;
    --yellow: #f6f128;
    --yellow-dim: #ddd924;
    --yellow-glow: rgba(246, 241, 40, 0.08);
    --text: #e5e6e9;
    --text-muted: #9599a5;
    --text-faint: #595c63;
    --white: #fff;
    --border: #2a2d32;
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

nav.scrolled {
    border-bottom-color: var(--border);
}

.nav-logo {
    height: 28px;
    width: auto;
    max-width: 200px;
    opacity: 0.95;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
}

.nav-cta {
    display: inline-block;
    background: var(--yellow);
    color: var(--bg);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--yellow-dim);
    transform: translateY(-1px);
}

/* ── LAYOUT ── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(246, 241, 40, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow-glow);
    border: 1px solid rgba(246, 241, 40, 0.2);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    color: var(--yellow);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--bg);
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--yellow-dim);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    color: var(--white);
}

/* ── PLEDGE SECTION ── */
.pledge {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.pledge-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.pledge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
}

.pledge-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.pledge-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pledge-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 1.25rem 0 0.75rem;
    letter-spacing: -0.02em;
}

.pledge-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.65;
}

/* ── THE OATH ── */
.oath {
    text-align: center;
}

.oath-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.oath h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.oath-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.oath-highlight {
    background: var(--yellow-glow);
    border: 1px solid rgba(246, 241, 40, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 3rem;
}

.oath-highlight p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
}

.oath-highlight strong {
    color: var(--yellow);
}

/* ── WHO IS THIS FOR ── */
.for-who h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.for-who-item {
    display: flex;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.for-who-item:hover {
    border-color: var(--text-faint);
}

.for-who-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    color: var(--yellow);
}

.for-who-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.for-who-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step {
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.step-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--yellow);
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── ABOUT ── */
.about {
    background: var(--bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.about p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── CONTACT ── */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 241, 40, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
}

.contact-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--yellow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-faint);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239599a5' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-card);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-top: 0.35rem;
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-faint);
}

/* ── FOOTER ── */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 22px;
    opacity: 0.7;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-faint);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-faint);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    color: var(--text-faint);
    font-size: 0.78rem;
    line-height: 1.7;
    text-align: center;
}

.footer-legal strong {
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--text);
}

/* ── ANIMATION ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── FAQ ── */
.faq h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 3rem;
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

/* ── DELIVERABLES ── */
.deliverables h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

.deliverables-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 760px;
    margin-bottom: 1rem;
}

.deliverables-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 2rem 0 2.5rem;
}

.deliverables-list li {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.4rem;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.deliverables-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

.deliverables-question {
    margin-top: 3.5rem;
    padding: 2.75rem 2.5rem;
    border: 2px solid var(--yellow);
    border-radius: var(--radius-lg);
    background: var(--yellow-glow);
    text-align: center;
}

.deliverables-question p {
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

/* ── PLEDGE HEADER ── */
.pledge-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pledge-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    line-height: 1.2;
}

/* ── INTRO PARAGRAPHS UNDER H2 ── */
.for-who-intro,
.how-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 820px;
    margin-bottom: 3rem;
}

/* ── CTA BLOCK ── */
.cta-block {
    text-align: center;
    margin-top: 3rem;
}

.cta-block p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 1.25rem;
    max-width: 640px;
}

/* ── FOR-WHO WIDE ITEM (5th item spans both columns) ── */
.for-who-wide {
    grid-column: span 2;
}

/* ── STEP NOTE ── */
.step-note {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border);
    font-size: 0.78rem;
    color: var(--text-faint);
    line-height: 1.6;
    font-style: italic;
}

/* ── CONTACT DIRECT ── */
.contact-direct {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-direct h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.contact-direct p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-direct a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.contact-direct a:hover {
    text-decoration: underline;
}

/* ── SUBPAGE HERO ── */
.subpage-hero {
    padding: 9rem 0 3rem;
    text-align: center;
    position: relative;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 241, 40, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.subpage-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.subpage-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.subpage-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.subpage-hero + section {
    padding-top: 3rem;
}

/* ── PAGE FINAL CTA ── */
.page-cta {
    background: var(--bg);
    padding: 5rem 0 7rem;
    text-align: center;
}

.page-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    line-height: 1.25;
    max-width: 640px;
    margin: 0 auto 1rem;
}

.page-cta p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .nav-right {
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .pledge-grid {
        grid-template-columns: 1fr;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .for-who-wide {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .nav-logo {
        max-width: 150px;
    }

    .nav-link {
        display: none;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 4.5rem 0;
    }

    .hero {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .subpage-hero {
        padding: 7rem 0 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}
