:root {
    --moss: #2E4036;
    --moss-tint: #41584B;
    --clay: #CC5833;
    --cream: #F2F0E9;
    --muted: #E8E6DF;
    --charcoal: #1A1A1A;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--cream);
    color: var(--charcoal);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


/* ======================== */
/* SCROLL PROGRESS          */
/* ======================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--clay);
    z-index: 10001;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

/* Global Noise overlay — static tile replaces feTurbulence SVG filter */
.noise-svg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.06;
    background: url('assets/noise-tile.png') repeat;
    background-size: 200px 200px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======================== */
/* NAVBAR                   */
/* ======================== */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 900px;
    padding: 1rem 2rem;
    border-radius: 3rem;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: white;
}

.navbar.scrolled {
    background: rgba(242, 240, 233, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 64, 54, 0.1);
    color: var(--moss);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.btn-nav {
    background: white;
    color: var(--charcoal);
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.navbar.scrolled .btn-nav {
    background: var(--moss);
    color: var(--cream);
}

.btn-nav:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ======================== */
/* HERO                     */
/* ======================== */
.hero {
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    padding-left: 5rem;
    color: var(--cream);
}

.hero-bg,
.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center top;
}

.philosophy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 64, 54, 0.7) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-sans {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.title-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(4.5rem, 9vw, 8rem);
    font-weight: 600;
    color: var(--clay);
    animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 550px;
    color: rgba(242, 240, 233, 0.8);
    margin-bottom: 2rem;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(242, 240, 233, 0.4);
    color: var(--cream);
}

.btn-ghost:hover {
    background: rgba(242, 240, 233, 0.1);
    border-color: rgba(242, 240, 233, 0.7);
}

/* ======================== */
/* STATS BAR                */
/* ======================== */
.stats-bar {
    background: var(--moss);
    padding: 5rem 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--clay);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(242, 240, 233, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.75rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(242, 240, 233, 0.15);
    flex-shrink: 0;
}

/* ======================== */
/* FEATURES                 */
/* ======================== */
.features {
    padding: 8rem 0;
    background: var(--cream);
}

.features-intro {
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--clay);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.features-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--moss);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.features-desc {
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.6);
    max-width: 460px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 2.5rem;
    padding: 2.5rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.feature-card:hover {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--moss);
    margin-bottom: 2rem;
}

/* Micro UI: Shuffler */
.shuffler-container {
    position: relative;
    flex: 1;
}

.shuffle-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--cream);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.shuffle-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.mono-data {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--moss);
}

/* Micro UI: Neural Stream */
.live-dot-container {
    margin-left: auto;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--clay);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.telemetry-terminal {
    background: var(--charcoal);
    color: var(--cream);
    font-family: var(--font-mono);
    padding: 1.5rem;
    border-radius: 1.5rem;
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.6;
}

.telemetry-text {
    display: inline;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background: var(--clay);
    vertical-align: middle;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Micro UI: Regimen cursor tracker */
.regimen-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.day {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    background: var(--cream);
    color: var(--charcoal);
    transition: all 0.3s;
    z-index: 10;
    cursor: pointer;
}

.day.active {
    background: var(--moss);
    color: white;
}

.btn-mock-save {
    background: var(--charcoal);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.btn-mock-save.hovered {
    transform: scale(1.05);
    background: var(--clay);
}

.mock-cursor {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

/* ======================== */
/* HOW IT WORKS             */
/* ======================== */
.how-it-works {
    padding: 8rem 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    border-radius: 0 0 4rem 4rem;
}

.hiw-header {
    margin-bottom: 5rem;
}

.hiw-header .section-label {
    color: var(--clay);
}

.hiw-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.1;
    margin-top: 1rem;
}

.hiw-subtitle {
    font-size: 1rem;
    color: rgba(242, 240, 233, 0.5);
    margin-top: 1.25rem;
    max-width: 480px;
    line-height: 1.6;
}

.hiw-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--clay);
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.hiw-step {
    padding: 0 2.5rem 0 0;
    position: relative;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--clay);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.step-connector {
    position: absolute;
    top: 52px;
    left: calc(2.5rem + 28px);
    right: 0;
    height: 1px;
    background: rgba(242, 240, 233, 0.12);
    overflow: hidden;
}

.step-connector::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-connector.last {
    display: none;
}

.hiw-step.animated .step-connector::after {
    transform: scaleX(1);
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 1.25rem;
    background: rgba(242, 240, 233, 0.06);
    border: 1px solid rgba(242, 240, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s;
}

.step-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--cream);
}

.hiw-step:hover .step-icon-wrap {
    background: rgba(204, 88, 51, 0.15);
    border-color: rgba(204, 88, 51, 0.4);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(242, 240, 233, 0.55);
    max-width: 280px;
}

/* ======================== */
/* PHILOSOPHY               */
/* ======================== */
.philosophy {
    position: relative;
    padding: 10rem 0;
    color: var(--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    opacity: 0.85;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.phil-text-block {
    max-width: 800px;
}

.phil-text-block.split-2 {
    align-self: flex-end;
    text-align: right;
}

.phil-ask {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--clay);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.phil-question {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: #8da396;
}

/* ======================== */
/* PROTOCOL STACKING        */
/* ======================== */
.protocol {
    background: var(--charcoal);
    position: relative;
    padding-bottom: 100vh;
}

.sticky-container {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.stack-card {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center top;
    will-change: transform, filter, opacity;
}

.card-inner {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: var(--cream);
    border-radius: 3rem;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    will-change: transform;
    transition: opacity 0.3s;
}

.bg-moss {
    background: var(--moss);
}

.bg-cream {
    background: var(--cream);
}

.bg-clay {
    background: var(--clay);
}

.text-cream {
    color: var(--cream);
}

.text-charcoal {
    color: var(--charcoal);
}

.card-content h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1.25rem;
    max-width: 400px;
    opacity: 0.9;
}

.card-artifact {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.artifact-icon {
    width: 100px;
    height: 100px;
}

.spin {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.artifact-icon.scan {
    animation: scanAnim 3s ease-in-out infinite;
}

@keyframes scanAnim {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(15deg); opacity: 1; }
}

.artifact-icon.iconpulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Card artifact backgrounds */
.pattern-bg {
    background: radial-gradient(circle, rgba(46, 64, 54, 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
}

.waveform-bg {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 6px,
        rgba(242, 240, 233, 0.12) 6px,
        rgba(242, 240, 233, 0.12) 7px
    );
}

/* ======================== */
/* MEMBERSHIP               */
/* ======================== */
.membership {
    padding: 10rem 0;
    background: var(--cream);
    position: relative;
    z-index: 10;
}

.membership-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--moss);
}

.membership-subtitle {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.5);
    letter-spacing: 0.04em;
    margin-bottom: 4rem;
}

.plan-tagline {
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.5);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.4;
}

.featured-price .plan-tagline {
    color: rgba(242, 240, 233, 0.55);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 2.5rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.price-card:hover {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: gray;
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    margin-bottom: 3rem;
    flex: 1;
}

.price-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.featured-price {
    background: var(--moss);
    color: var(--cream);
    transform: scale(1.05);
}

.featured-price .price span {
    color: rgba(242, 240, 233, 0.5);
}

/* ======================== */
/* BUTTONS                  */
/* ======================== */
.btn {
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    font-family: var(--font-sans);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
}

.btn-clay {
    background: var(--clay);
    color: white;
}

/* ======================== */
/* FAQ                      */
/* ======================== */
.faq {
    padding: 8rem 0;
    background: var(--charcoal);
}

.faq-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.faq-header .section-label {
    color: var(--clay);
}

.faq-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--cream);
    margin-top: 1rem;
}

.faq-list {
    max-width: 760px;
}

.faq-item {
    border-bottom: 1px solid rgba(242, 240, 233, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(242, 240, 233, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
    transition: color 0.25s;
}

.faq-question:hover {
    color: var(--clay);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--clay);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(242, 240, 233, 0.55);
    max-width: 640px;
}

/* ======================== */
/* CONTACT FORM             */
/* ======================== */
.contact {
    padding: 10rem 0;
    background: var(--cream);
    position: relative;
    z-index: 10;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.6);
    max-width: 380px;
    margin-bottom: 2.5rem;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--moss);
    font-weight: 500;
}

.contact-meta-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
    background: white;
    border: 1.5px solid rgba(26, 26, 26, 0.1);
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    resize: none;
    width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(26, 26, 26, 0.3);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(46, 64, 54, 0.08);
}

.form-field input.error,
.form-field textarea.error {
    border-color: var(--clay);
}

.field-error {
    font-size: 0.8rem;
    color: var(--clay);
    min-height: 1.1em;
    font-family: var(--font-mono);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.form-submit .submit-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-submit:hover .submit-icon {
    transform: translateX(4px);
}

.form-success {
    display: none;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--moss);
    background: rgba(46, 64, 54, 0.08);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.form-success.visible {
    display: block;
}

/* ======================== */
/* FOOTER                   */
/* ======================== */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 6rem 0 2rem;
    border-radius: 4rem 4rem 0 0;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.5rem;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #8da396;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(242, 240, 233, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.6;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links a {
    color: inherit;
    text-decoration: none;
}

/* ======================== */
/* HAMBURGER & MOBILE MENU  */
/* ======================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s;
}

.mobile-menu.open .mobile-link {
    animation: mobileLinkIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.2s; }

.mobile-link:hover { color: var(--clay); }

.mobile-cta {
    opacity: 0;
    transform: translateY(20px);
    margin-top: 1rem;
}

.mobile-menu.open .mobile-cta {
    animation: mobileLinkIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.28s forwards;
}

@keyframes mobileLinkIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ======================== */
/* RESPONSIVE               */
/* ======================== */
@media (max-width: 768px) {
    .navbar {
        top: 1rem;
        width: calc(100% - 2rem);
        padding: 0.75rem 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
        color: white;
    }

    .navbar.scrolled .hamburger {
        color: var(--moss);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem 1rem;
    }

    .stat-divider {
        display: none;
    }

    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 3rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-btn {
        text-align: center;
    }

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

    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step-connector {
        display: none;
    }

    .hiw-step {
        padding: 0;
        border-left: 2px solid rgba(242, 240, 233, 0.1);
        padding-left: 2rem;
    }

    .philosophy-content {
        gap: 3rem;
    }

    .phil-text-block,
    .phil-text-block.split-2 {
        text-align: left;
        align-self: flex-start;
    }

    .card-inner {
        flex-direction: column;
        padding: 2.5rem;
        height: auto;
        min-height: 70vh;
        gap: 2rem;
    }

    .card-content h2 {
        font-size: 2.5rem;
    }

    .card-artifact {
        width: 150px;
        height: 150px;
    }

    .artifact-icon {
        width: 60px;
        height: 60px;
    }

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

    .featured-price {
        transform: none;
    }

    .membership-title {
        font-size: 2.5rem;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ======================== */
/* REDUCED MOTION           */
/* ======================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .title-sans,
    .title-serif,
    .hero-subtitle,
    .hero-ctas {
        opacity: 1;
        transform: none;
    }

    .feature-card,
    .price-card {
        opacity: 1;
        transform: none !important;
        will-change: auto;
    }

    .title-sans,
    .title-serif,
    .hero-subtitle,
    .hero-ctas {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

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

    .card-inner {
        padding: 2rem;
    }
}