/* ===== ROOT & RESET ===== */
:root {
    --green-deep:    #1A3C34;
    --green-primary: #2D6A4F;
    --green-mid:     #3D7A62;
    --green-soft:    #6AAF94;
    --green-pale:    #EBF5EF;
    --green-xpale:   #F4FAF7;
    --gold:          #C6A664;
    --gold-light:    #E0C17A;
    --gold-pale:     #FBF5E6;
    --cream:         #FDF9F3;
    --cream-dark:    #F0E8D8;
    --white:         #FFFFFF;
    --text-dark:     #1E2A25;
    --text-mid:      #4A5A52;
    --text-light:    #8A9E94;
    --border:        #D9EBE2;
    --border-warm:   #EAE0D1;

    --font-serif: 'Playfair Display', serif;
    --font-sans:  'Montserrat', sans-serif;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  28px;
    --radius-xl:  40px;
    --shadow-xs:  0 1px 4px rgba(26,60,52,0.06);
    --shadow-sm:  0 2px 12px rgba(26,60,52,0.07);
    --shadow-md:  0 6px 28px rgba(26,60,52,0.10);
    --shadow-lg:  0 14px 50px rgba(26,60,52,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--text-dark); line-height: 1.8; overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); line-height: 1.22; color: var(--green-deep); }
p { color: var(--text-mid); font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container   { width: 90%; max-width: 1180px; margin: 0 auto; }
.text-center { text-align: center; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.bg-white    { background: var(--white); }
.bg-pale     { background: var(--green-xpale); }
.bg-cream    { background: var(--cream); }
.bg-green    { background: var(--green-primary); }
.bg-deep     { background: var(--green-deep); }

.eyebrow {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--green-primary);
    background: var(--green-pale);
    padding: 5px 14px; border-radius: 50px;
    margin-bottom: 16px;
}
.eyebrow-gold { color: var(--gold); background: var(--gold-pale); }
.eyebrow-white { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.12); }

.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.section-sub   { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; margin: 0 auto 52px; line-height: 1.9; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; border-radius: 50px;
    font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem;
    letter-spacing: 0.04em; cursor: pointer; border: none;
    transition: all 0.22s ease; text-decoration: none; line-height: 1;
}
.btn-gold  { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-green { background: var(--green-primary); color: var(--white); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-primary); border: 1.5px solid var(--green-primary); }
.btn-outline:hover { background: var(--green-primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-sm { padding: 9px 22px; font-size: 0.82rem; }
.btn-lg { padding: 16px 38px; font-size: 0.97rem; }

/* ===== NAV ===== */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.site-nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-xs); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 92%; max-width: 1200px; margin: 0 auto; height: 68px;
}
.nav-logo {
    font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
    color: var(--green-deep); letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
    font-size: 0.85rem; font-weight: 500; color: var(--text-mid);
    padding: 7px 12px; border-radius: 8px;
    transition: all 0.18s ease;
}
.nav-link:hover { color: var(--green-primary); background: var(--green-xpale); }
.nav-cta {
    font-size: 0.85rem; font-weight: 600; color: var(--white);
    background: var(--green-primary); padding: 9px 20px;
    border-radius: 50px; margin-left: 8px; transition: all 0.22s ease;
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--green-deep); border-radius: 2px; transition: all 0.25s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO (LANDING) ===== */
.hero-landing {
    padding-top: 68px;
    background: var(--white);
    display: grid; grid-template-columns: 1fr 420px;
    align-items: center; gap: 0; min-height: 78vh; overflow: hidden;
}
.hero-text {
    padding: 60px 5% 60px 8%;
}
.hero-text h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    color: var(--green-deep); margin-bottom: 22px; line-height: 1.1;
}
.hero-text h1 em { color: var(--green-primary); font-style: italic; }
.hero-tagline {
    font-size: 1.05rem; color: var(--text-mid); max-width: 460px;
    margin-bottom: 36px; font-weight: 300; line-height: 1.9;
}
.hero-tagline strong { color: var(--green-deep); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-col {
    height: 78vh; position: relative; overflow: hidden;
}
.hero-image-col img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 15%;
    border-radius: 0 0 0 var(--radius-xl);
}
.hero-image-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
    padding: 12px 18px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); max-width: 200px;
}
.hero-image-badge p { font-size: 0.78rem; font-weight: 600; color: var(--green-deep); margin: 0; line-height: 1.4; }
.hero-image-badge span { font-size: 0.7rem; color: var(--text-light); font-weight: 400; }

/* ===== BRAND STATEMENT ===== */
.brand-statement {
    background: var(--green-deep);
    padding: 64px 5%;
    text-align: center;
}
.brand-statement p {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: rgba(255,255,255,0.92); font-weight: 400;
    font-style: italic; line-height: 1.7;
    max-width: 820px; margin: 0 auto;
}
.brand-statement strong { color: var(--gold); font-style: normal; }

/* ===== TWO PATHS ===== */
.two-paths { background: var(--white); }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.path-card {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.path-card-header {
    padding: 40px 40px 32px;
}
.path-card-header.motive  { background: linear-gradient(135deg, var(--green-deep), var(--green-primary)); }
.path-card-header.nourish { background: linear-gradient(135deg, #3A5A3A, #5A8A5A); }
.path-card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.path-card-header h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.path-card-header .path-sub { color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.path-card-body { padding: 32px 40px 36px; background: var(--white); }
.path-card-body p { font-size: 1rem; color: var(--text-mid); margin-bottom: 24px; line-height: 1.85; }

/* ===== SECTION CARDS / GRID ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 36px 28px;
    transition: all 0.28s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-soft); }
.feature-card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.feature-card h4 { font-size: 1.15rem; color: var(--green-deep); margin-bottom: 10px; }
.feature-card p  { font-size: 0.94rem; }

/* ===== BLOG PREVIEW ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
    transition: all 0.28s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
    width: 100%; height: 180px;
    background: linear-gradient(135deg, var(--green-pale), var(--green-xpale));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
}
.blog-card-body { padding: 24px; }
.blog-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-primary); margin-bottom: 10px; display: block; }
.blog-card-body h4 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p  { font-size: 0.9rem; color: var(--text-mid); }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-card-meta span { font-size: 0.78rem; color: var(--text-light); }
.blog-card-meta a { font-size: 0.8rem; font-weight: 600; color: var(--green-primary); }

/* ===== SHOP PREVIEW ===== */
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.shop-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
    transition: all 0.28s ease; text-align: center;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shop-card-img {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, var(--cream), var(--green-pale));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.shop-card-body { padding: 20px 22px 24px; }
.shop-card-body h4 { font-size: 1rem; color: var(--green-deep); margin-bottom: 6px; }
.shop-card-body p  { font-size: 0.88rem; margin-bottom: 14px; }
.shop-price { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--gold); margin-bottom: 14px; display: block; }
.coming-soon-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold);
    padding: 4px 12px; border-radius: 50px;
}

/* ===== ABOUT STRIP ===== */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-strip-img img { width: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about-strip-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-strip-text p { margin-bottom: 16px; }
.about-strip-text .stat-row { display: flex; gap: 32px; margin: 28px 0; flex-wrap: wrap; }
.stat { }
.stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--green-primary); display: block; }
.stat-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }

/* ===== NOBLE MOTIVE PAGE ===== */
.page-hero {
    padding-top: 68px;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-primary) 100%);
    padding-bottom: 80px; padding-left: 5%; padding-right: 5%;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 1; padding-top: 60px; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.science-text h2 { font-size: 2rem; margin-bottom: 18px; }
.science-text p  { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.9; }
.science-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.science-pillar {
    background: var(--green-xpale); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 20px;
}
.science-pillar h5 { font-size: 0.95rem; color: var(--green-primary); margin-bottom: 6px; }
.science-pillar p  { font-size: 0.88rem; }

.process-steps { counter-reset: steps; display: flex; flex-direction: column; gap: 24px; }
.process-step {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}
.step-num {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: var(--green-primary); color: var(--white);
    font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.step-content h4 { font-size: 1rem; color: var(--green-deep); margin-bottom: 6px; }
.step-content p  { font-size: 0.93rem; margin: 0; }

/* ===== NOBLE NOURISH PAGE ===== */
.nourish-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.nourish-intro-text h2 { font-size: 2rem; margin-bottom: 18px; }
.nourish-intro-text p  { margin-bottom: 16px; line-height: 1.9; }

/* Allergy Chart */
.allergy-chart { overflow-x: auto; }
.allergy-table {
    width: 100%; border-collapse: collapse; font-size: 0.85rem;
    border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
}
.allergy-table th {
    background: var(--green-deep); color: var(--white);
    padding: 12px 10px; font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.06em; text-transform: uppercase; text-align: center;
}
.allergy-table td { padding: 10px; text-align: center; border-bottom: 1px solid var(--border); }
.allergy-table tr:last-child td { border-bottom: none; }
.allergy-table tr:nth-child(even) td { background: var(--green-xpale); }
.allergy-table td:first-child { font-weight: 600; color: var(--green-deep); text-align: left; padding-left: 16px; }
.pollen-none   { color: var(--text-light); font-size: 0.75rem; }
.pollen-low    { background: #E8F5E9 !important; color: #2E7D32; font-weight: 600; border-radius: 4px; }
.pollen-med    { background: #FFF9C4 !important; color: #F9A825; font-weight: 600; border-radius: 4px; }
.pollen-high   { background: #FFE0B2 !important; color: #E65100; font-weight: 600; border-radius: 4px; }
.pollen-peak   { background: #FFCDD2 !important; color: #B71C1C; font-weight: 700; border-radius: 4px; }

/* Mood Chart */
.mood-chart { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.mood-season { background: var(--white); padding: 24px 20px; }
.mood-season-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.mood-season-icon { font-size: 1.6rem; }
.mood-season-header h4 { font-size: 1rem; color: var(--green-deep); margin: 0; }
.mood-bar-group { display: flex; flex-direction: column; gap: 10px; }
.mood-bar-row {}
.mood-bar-label { font-size: 0.75rem; font-weight: 600; color: var(--text-mid); margin-bottom: 4px; }
.mood-bar-track { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.mood-bar-fill  { height: 100%; border-radius: 4px; transition: width 1s ease; }
.mood-energy  { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.mood-mood    { background: linear-gradient(90deg, var(--green-primary), var(--green-soft)); }
.mood-stress  { background: linear-gradient(90deg, #E57373, #EF9A9A); }
.mood-bar-val { font-size: 0.7rem; color: var(--text-light); margin-top: 2px; text-align: right; }

/* ===== SURVEY (SHARED) ===== */
.survey-wrap { min-height: 100vh; background: var(--green-xpale); padding-top: 68px; }
.survey-progress-bar { height: 3px; background: var(--border); }
.survey-progress-fill { height: 100%; background: linear-gradient(90deg, var(--green-primary), var(--gold)); transition: width 0.5s ease; }
.survey-container { max-width: 760px; margin: 0 auto; padding: 56px 20px 100px; }
.pillar-header { text-align: center; margin-bottom: 48px; }
.pillar-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green-primary); background: var(--green-pale);
    padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.pillar-title { font-size: clamp(2rem,4vw,2.8rem); color: var(--green-deep); margin-bottom: 10px; }
.pillar-desc  { font-size: 1rem; color: var(--text-mid); max-width: 500px; margin: 0 auto; }

.question-block {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 32px 36px;
    margin-bottom: 24px; box-shadow: var(--shadow-xs);
    transition: box-shadow 0.2s ease;
}
.question-block:focus-within { box-shadow: var(--shadow-sm); border-color: var(--green-soft); }

.question-title {
    font-family: var(--font-serif); font-size: 1.12rem; font-weight: 700;
    color: var(--green-deep); margin-bottom: 10px; line-height: 1.45;
}
.question-desc {
    font-size: 0.93rem; color: var(--text-mid); font-style: italic; font-weight: 300;
    margin-bottom: 28px; line-height: 1.8;
    padding-left: 16px; border-left: 2px solid var(--gold);
}
.q-num { font-family: var(--font-serif); color: var(--gold); font-weight: 700; margin-right: 8px; }

/* Scale legend */
.scale-legend {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    flex-wrap: wrap;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 14px 24px;
    margin-bottom: 28px; box-shadow: var(--shadow-xs);
}
.scale-legend-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600; color: var(--text-mid);
}
.scale-legend-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--green-primary); color: var(--white);
    font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.scale-legend-divider { color: var(--border); font-size: 1rem; }
.scale-legend-note {
    font-size: 0.78rem; color: var(--text-light); font-style: italic;
}

/* Refined scale */
.scale-wrap { display: flex; flex-direction: column; gap: 10px; }
.scale-labels { display: flex; justify-content: space-between; }
.scale-label  { font-size: 0.72rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.04em; }
.scale-options { display: flex; gap: 8px; align-items: center; }
.scale-option { flex: 1; }
.scale-option input[type="radio"] { display: none; }
.scale-btn {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: pointer; padding: 12px 4px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    background: var(--green-xpale); transition: all 0.18s ease;
}
.scale-btn:hover { border-color: var(--green-primary); background: var(--green-pale); }
.scale-circle {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--white); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.88rem; color: var(--text-mid);
    transition: all 0.18s ease;
}
.scale-option input:checked + .scale-btn { border-color: var(--green-primary); background: rgba(45,106,79,0.07); }
.scale-option input:checked + .scale-btn .scale-circle { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); }
.scale-tiny { font-size: 0.65rem; color: var(--text-light); text-align: center; }

.survey-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; gap: 16px; }

/* ===== RESULTS ===== */
.results-wrap { min-height: 100vh; background: var(--green-xpale); padding-top: 68px; }
.results-hero {
    background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
    text-align: center; padding: 72px 5% 60px; color: var(--white);
}
.results-eyebrow { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.results-type    { font-size: clamp(2rem,4vw,3rem); color: var(--white); margin-bottom: 14px; }
.results-tagline { font-size: 1.05rem; color: rgba(255,255,255,0.78); font-weight: 300; max-width: 600px; margin: 0 auto; font-style: italic; }
.results-container { max-width: 900px; margin: 0 auto; padding: 52px 20px 100px; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.results-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 36px;
    box-shadow: var(--shadow-xs);
}
.results-card h3 {
    font-size: 1.15rem; color: var(--green-deep);
    margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 2px solid var(--green-xpale);
}
.type-name {
    font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
    color: var(--green-primary); margin-bottom: 14px;
}
.pillar-bars { display: flex; flex-direction: column; gap: 18px; }
.bar-row {}
.bar-label { display: flex; justify-content: space-between; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.bar-pct { color: var(--green-primary); }
.bar-track { height: 10px; background: var(--green-pale); border-radius: 50px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 50px; transition: width 1s ease; }
.bar-well   { background: linear-gradient(90deg, #3D6B5F, #6BA89A); }
.bar-fence  { background: linear-gradient(90deg, #5B8A5C, #8DB88E); }
.bar-crop   { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.bar-hearth { background: linear-gradient(90deg, #A0522D, #C47A4A); }
.bar-body   { background: linear-gradient(90deg, #E57373, #FFAB91); }
.bar-mind   { background: linear-gradient(90deg, #5C6BC0, #9FA8DA); }
.bar-spirit { background: linear-gradient(90deg, var(--green-primary), var(--green-soft)); }
.bar-season { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.blend-card, .storm-box-section { margin-bottom: 24px; }
.blend-card p { font-size: 1rem; line-height: 1.9; }

/* Remedy cards */
.remedy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.remedy-card {
    background: var(--green-xpale); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 22px;
}
.remedy-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.remedy-icon { font-size: 1.6rem; }
.remedy-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--green-deep); }
.remedy-benefit { font-size: 0.78rem; font-weight: 500; color: var(--green-primary); }
.remedy-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }
.remedy-use { font-size: 0.8rem; color: var(--text-light); margin-top: 8px; font-style: italic; }

/* Storm Box */
.storm-desc { font-size: 0.98rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.8; }
.storm-form { display: flex; flex-direction: column; gap: 18px; }
.storm-textarea {
    width: 100%; padding: 18px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font-sans);
    font-size: 0.97rem; font-weight: 300; color: var(--text-dark);
    background: var(--green-xpale); resize: vertical; line-height: 1.8;
    transition: border-color 0.2s ease;
}
.storm-textarea:focus { outline: none; border-color: var(--green-primary); background: var(--white); }
.storm-actions { display: flex; align-items: center; gap: 20px; }
.storm-skip { font-size: 0.88rem; color: var(--text-light); font-weight: 600; cursor: pointer; transition: color 0.2s ease; }
.storm-skip:hover { color: var(--green-primary); }

/* ===== THANK YOU ===== */
.thankyou-wrap {
    min-height: 100vh; background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
    display: flex; align-items: center; justify-content: center; padding: 100px 20px;
}
.thankyou-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 56px 48px; max-width: 600px; width: 100%;
    text-align: center; box-shadow: var(--shadow-lg);
}
.ty-icon { font-size: 2.8rem; margin-bottom: 18px; }
.thankyou-card h1 { font-size: 2rem; margin-bottom: 12px; }
.ty-storm-banner {
    display: flex; align-items: flex-start; gap: 12px;
    background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
    border: 1px solid var(--gold); border-radius: var(--radius-sm);
    padding: 16px 20px; margin-bottom: 18px; text-align: left;
}
.ty-storm-icon { font-size: 1.4rem; flex-shrink: 0; }
.ty-storm-msg { font-family: var(--font-serif); font-size: 0.97rem; font-weight: 600; color: var(--green-deep); line-height: 1.5; margin: 0; font-style: italic; }
.ty-sub    { font-size: 1rem; color: var(--text-mid); margin-bottom: 32px; }
.ty-result { background: var(--green-xpale); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
.ty-label  { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.ty-type   { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; color: var(--green-primary); margin-bottom: 4px; }
.ty-blend  { font-size: 0.95rem; color: var(--text-mid); }
.ty-message { font-size: 0.97rem; color: var(--text-mid); margin-bottom: 32px; line-height: 1.85; }
.ty-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.ty-social p  { font-size: 0.88rem; color: var(--text-light); margin-bottom: 10px; }
.social-row   { display: flex; justify-content: center; gap: 24px; }
.social-row a { font-weight: 600; color: var(--green-primary); font-size: 0.9rem; transition: color 0.2s ease; }
.social-row a:hover { color: var(--gold); }

/* ===== STANDALONE PAGES (blog, shop, about) ===== */
.page-wrap { padding-top: 68px; min-height: 100vh; }

.about-full { display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: center; }
.about-full-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-full-img img { width: 100%; height: 540px; object-fit: cover; object-position: center top; }
.about-full-text h1 { font-size: clamp(2rem,3.5vw,2.8rem); margin-bottom: 22px; }
.about-full-text p  { margin-bottom: 18px; line-height: 1.9; font-size: 1.02rem; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.credential-badge { background: var(--green-pale); color: var(--green-primary); font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 50px; border: 1px solid var(--border); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.value-card .value-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.9rem; }

/* Blog page */
.blog-hero-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.blog-featured { grid-column: span 2; }
.blog-featured .blog-card-img { height: 280px; font-size: 4rem; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
    font-size: 0.82rem; font-weight: 600; padding: 7px 16px;
    border-radius: 50px; border: 1.5px solid var(--border);
    background: var(--white); color: var(--text-mid); cursor: pointer; transition: all 0.18s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); }

/* Shop page */
.shop-hero-bar { background: var(--gold-pale); border-bottom: 1px solid var(--border-warm); padding: 14px 5%; text-align: center; }
.shop-hero-bar p { font-size: 0.9rem; color: var(--text-mid); margin: 0; font-style: italic; }
.shop-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* ===== EXTERNAL LINKS SECTION ===== */
.resource-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.resource-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 24px 22px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: all 0.22s ease;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--green-soft); }
.resource-icon { font-size: 1.8rem; flex-shrink: 0; }
.resource-card h4 { font-size: 0.97rem; color: var(--green-deep); margin-bottom: 6px; }
.resource-card p  { font-size: 0.86rem; margin-bottom: 10px; }
.resource-link { font-size: 0.82rem; font-weight: 600; color: var(--green-primary); display: inline-flex; align-items: center; gap: 4px; }
.resource-link:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer { background: var(--green-deep); padding: 60px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; width: 90%; max-width: 1180px; margin: 0 auto 48px; }
.footer-brand-col {}
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px; display: block; }
.footer-tagline-text { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-col h5 { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.18s ease; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { width: 90%; max-width: 1180px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 0.82rem; font-weight: 600; color: var(--gold); transition: opacity 0.2s ease; }
.footer-social a:hover { opacity: 0.7; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--green-primary); padding: 80px 5%; text-align: center; }
.cta-section h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 40px; font-size: 1.02rem; }
.email-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.email-form input[type="email"] {
    flex: 1; padding: 13px 20px; border-radius: 50px; border: none;
    font-family: var(--font-sans); font-size: 0.95rem; outline: none;
}
.email-form input:focus { box-shadow: 0 0 0 3px rgba(198,166,100,0.3); }

/* ===== DIVIDERS & MISC ===== */
.divider-leaf { text-align: center; padding: 8px 0; color: var(--green-soft); font-size: 1.2rem; }
.highlight { color: var(--green-primary); font-weight: 600; }
.highlight-gold { color: var(--gold); font-weight: 600; }
.text-white { color: var(--white) !important; }
.text-white p, .text-white h2, .text-white h3 { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===== NAV USER ===== */
.nav-user-item { display: flex; align-items: center; }
.nav-user { display: flex; align-items: center; gap: 7px; padding: 4px 10px; border-radius: 50px; background: var(--green-xpale); }
.nav-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--border); }
.nav-avatar-initials {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--green-primary); color: var(--white);
    font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.nav-user-name { font-size: 0.83rem; font-weight: 600; color: var(--green-deep); }
.nav-logout { color: var(--text-light) !important; }
.nav-logout:hover { color: var(--text-dark) !important; background: var(--cream-dark) !important; }

/* ===== LOGIN PAGE ===== */
.auth-wrap { min-height: 100vh; }
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.auth-brand {
    background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-primary) 100%);
    padding: 48px 56px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
}
.auth-brand::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 320px; height: 320px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.auth-logo {
    font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
    color: var(--white); letter-spacing: -0.01em; position: relative; z-index: 1;
}
.auth-brand-body { position: relative; z-index: 1; }
.auth-brand-title {
    font-family: var(--font-serif); font-size: clamp(2rem,3.5vw,3rem);
    color: var(--white); line-height: 1.1; margin-bottom: 20px; font-style: italic;
}
.auth-brand-sub { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
.auth-brand-pillars {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.auth-brand-pillars span {
    font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1); padding: 6px 14px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
}
.auth-brand-footer { font-size: 0.78rem; color: rgba(255,255,255,0.35); position: relative; z-index: 1; }

.auth-panel {
    background: var(--cream); display: flex;
    align-items: center; justify-content: center; padding: 48px 40px;
}
.auth-card {
    width: 100%; max-width: 400px; text-align: center;
}
.auth-card-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.auth-card-title { font-size: 1.7rem; color: var(--green-deep); margin-bottom: 10px; }
.auth-card-sub { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; }

.auth-error {
    background: #FFF0F0; border: 1px solid #FFCDD2; color: #B71C1C;
    padding: 12px 16px; border-radius: var(--radius-sm);
    font-size: 0.88rem; margin-bottom: 20px;
}

.auth-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.btn-oauth {
    display: flex; align-items: center; gap: 12px; justify-content: center;
    padding: 14px 24px; border-radius: var(--radius-sm);
    font-family: var(--font-sans); font-size: 0.93rem; font-weight: 600;
    cursor: pointer; border: none; text-decoration: none;
    transition: all 0.2s ease;
}
.btn-google {
    background: var(--white); color: var(--text-dark);
    border: 1.5px solid var(--border); box-shadow: var(--shadow-xs);
}
.btn-google:hover { border-color: var(--green-soft); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.btn-apple {
    background: #000; color: var(--white);
}
.btn-apple:hover { background: #222; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.oauth-icon { width: 20px; height: 20px; flex-shrink: 0; }

.auth-divider {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; color: var(--text-light); font-size: 0.75rem;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-disclaimer-note {
    background: var(--green-xpale); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px 16px;
    margin-bottom: 24px;
}
.auth-disclaimer-note p { font-size: 0.82rem; color: var(--text-mid); margin: 0; line-height: 1.65; }
.auth-back { font-size: 0.85rem; color: var(--text-light); font-weight: 500; transition: color 0.2s ease; }
.auth-back:hover { color: var(--green-primary); }

/* ===== DISCLAIMER PAGE ===== */
.disclaimer-wrap { min-height: 100vh; background: var(--green-xpale); padding-top: 68px; padding-bottom: 80px; }
.disclaimer-container { max-width: 740px; margin: 0 auto; padding: 56px 20px; }
.disclaimer-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 48px;
    box-shadow: var(--shadow-sm);
}
.disclaimer-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; text-align: center; }
.disclaimer-title { font-size: 2rem; text-align: center; margin-bottom: 10px; }
.disclaimer-sub { text-align: center; color: var(--text-mid); margin-bottom: 36px; font-size: 0.97rem; }
.disclaimer-error {
    background: #FFF0F0; border: 1px solid #FFCDD2; color: #B71C1C;
    padding: 12px 16px; border-radius: var(--radius-sm);
    font-size: 0.88rem; margin-bottom: 24px; text-align: center;
}
.disclaimer-body { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.disclaimer-section {
    padding: 20px 0; border-bottom: 1px solid var(--border);
}
.disclaimer-section:last-child { border-bottom: none; }
.disclaimer-section h3 { font-size: 1rem; color: var(--green-deep); margin-bottom: 10px; }
.disclaimer-section p  { font-size: 0.92rem; line-height: 1.85; }

.disclaimer-form { display: flex; flex-direction: column; gap: 24px; }
.disclaimer-checkbox-label {
    display: flex; gap: 14px; align-items: flex-start; cursor: pointer;
    padding: 20px; background: var(--green-xpale); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); transition: border-color 0.2s ease;
}
.disclaimer-checkbox-label:hover { border-color: var(--green-primary); }
.disclaimer-checkbox {
    width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--green-primary); cursor: pointer;
}
.disclaimer-checkbox-text { font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; }
.disclaimer-submit { width: 100%; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-landing { grid-template-columns: 1fr 360px; }
    .paths-grid { gap: 20px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .science-grid { grid-template-columns: 1fr; }
    .about-full  { grid-template-columns: 1fr 340px; gap: 48px; }
}
@media (max-width: 900px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-brand { padding: 36px 32px 32px; min-height: 240px; }
    .auth-brand-title { font-size: 1.8rem; }
    .auth-panel { padding: 40px 24px; }
    .disclaimer-card { padding: 32px 24px; }
}
@media (max-width: 768px) {
    .hero-landing { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { padding: 48px 5% 32px; }
    .hero-text h1 { font-size: 2.3rem; }
    .hero-image-col { height: 50vw; max-height: 340px; }
    .hero-image-col img { border-radius: 0; }
    .paths-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr 1fr; }
    .resource-links { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .about-strip { grid-template-columns: 1fr; }
    .about-full  { grid-template-columns: 1fr; }
    .about-full-img { display: none; }
    .nourish-intro { grid-template-columns: 1fr; }
    .mood-chart { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .survey-nav { flex-direction: column-reverse; }
    .survey-nav .btn { width: 100%; text-align: center; justify-content: center; }
    .email-form { flex-direction: column; }
    .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: 16px 0; box-shadow: var(--shadow-md); border-top: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-link, .nav-cta { display: block; padding: 12px 24px; border-radius: 0; margin: 0; }
    .nav-hamburger { display: flex; }
    .site-nav { position: fixed; }
    .values-grid { grid-template-columns: 1fr; }
    .blog-hero-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-column: span 1; }
    .ty-actions { flex-direction: column; }
    .ty-actions .btn { width: 100%; justify-content: center; }
    .scale-options { gap: 5px; }
    .scale-circle { width: 28px; height: 28px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr; }
    .mood-chart { grid-template-columns: 1fr; }
    .remedy-grid { grid-template-columns: 1fr; }
    .science-pillars { grid-template-columns: 1fr; }
}

/* ===== RESULTS TEASER PAGE ===== */
.teaser-wrap { background: var(--cream); min-height: 100vh; padding-bottom: 80px; }

.teaser-hero {
    background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 5% 72px;
    position: relative;
    overflow: hidden;
}
.teaser-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(198,166,100,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.teaser-hero-nourish {
    background: linear-gradient(160deg, #1c3a2e 0%, #2a5c40 100%);
}
.teaser-confetti {
    font-size: 1.6rem;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    opacity: 0.85;
    animation: confettiFloat 3s ease-in-out infinite alternate;
}
@keyframes confettiFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(-6px); }
}
.teaser-eyebrow {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(198,166,100,0.4);
    padding: 5px 16px; border-radius: 50px;
    margin-bottom: 20px;
}
.teaser-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}
.teaser-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.82);
    max-width: 560px; margin: 0 auto;
    line-height: 1.75; font-weight: 300;
}

.teaser-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 5%;
}

/* PRIMARY REVEAL CARD */
.teaser-reveal-card {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    margin-top: -36px;
    box-shadow: 0 20px 60px rgba(26,60,52,0.14);
    position: relative;
    z-index: 2;
}
.teaser-reveal-nourish { border-color: var(--green-primary); }
.teaser-reveal-label {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 20px;
}
.teaser-pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--green-xpale);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 14px 32px;
    margin-bottom: 20px;
}
.teaser-pillar-icon { font-size: 2rem; }
.teaser-pillar-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--green-deep);
    font-weight: 700;
}
.teaser-reveal-hint {
    font-size: 0.95rem;
    color: var(--text-mid);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
}

/* LOCKED PREVIEW */
.teaser-locked-section {
    margin-top: 32px;
}
.teaser-locked-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--gold-pale);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 16px;
}
.teaser-lock-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.teaser-locked-header p { font-size: 0.88rem; color: var(--text-mid); margin: 0; line-height: 1.65; }
.teaser-locked-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.teaser-locked-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
}
.teaser-blend-preview { margin-bottom: 0; }
.teaser-locked-label {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 16px;
}
.teaser-blur-content { }
.teaser-blur-line {
    height: 10px;
    background: var(--border);
    border-radius: 50px;
    margin-bottom: 10px;
    filter: blur(3px);
}
.teaser-blur-line.long   { width: 85%; }
.teaser-blur-line.medium { width: 65%; }
.teaser-blur-line.short  { width: 48%; }
.teaser-blur-line.x-short{ width: 36%; }
.blurred-text { filter: blur(5px); user-select: none; }

.teaser-bar-preview { display: flex; flex-direction: column; gap: 10px; }
.teaser-bar-row { display: flex; align-items: center; gap: 8px; }
.teaser-bar-label { font-size: 1rem; flex-shrink: 0; }
.teaser-bar-track {
    flex: 1;
    height: 7px;
    background: var(--border);
    border-radius: 50px;
    overflow: hidden;
}
.teaser-bar-fill {
    height: 100%;
    background: var(--green-soft);
    border-radius: 50px;
    filter: blur(1px);
    opacity: 0.6;
}
.teaser-bar-nourish { background: var(--green-primary); }
.teaser-bar-pct { font-size: 0.75rem; color: var(--text-light); flex-shrink: 0; }
.teaser-remedy-preview { display: flex; flex-direction: column; gap: 12px; }
.teaser-remedy-stub {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.1rem;
}
.teaser-remedy-stub > div { flex: 1; }

/* GATE SECTION */
.teaser-gate {
    margin-top: 40px;
    background: linear-gradient(150deg, var(--green-deep) 0%, var(--green-primary) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.teaser-gate::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(198,166,100,0.15) 0%, transparent 55%);
    pointer-events: none;
}
.teaser-gate-inner { position: relative; z-index: 1; }
.teaser-gate-icon { font-size: 2.4rem; margin-bottom: 16px; }
.teaser-gate-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--white);
    margin-bottom: 14px;
}
.teaser-gate-sub {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.82);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.75;
    font-weight: 300;
}

.teaser-perks {
    display: flex; flex-direction: column; gap: 10px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 32px;
}
.teaser-perks li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
}
.perk-check {
    color: var(--gold-light);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.teaser-form { max-width: 480px; margin: 0 auto; }

.teaser-disclaimer-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    margin-bottom: 24px;
    text-align: left;
}
.teaser-disclaimer-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.teaser-checkbox {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}
.teaser-disclaimer-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
}
.teaser-disclaimer-text strong { color: var(--gold-light); }

.teaser-oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.teaser-btn-google, .teaser-btn-apple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}
.teaser-btn-google {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.teaser-btn-google:hover:not(:disabled) {
    background: #f7f7f7;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}
.teaser-btn-apple {
    background: #000;
    color: var(--white);
}
.teaser-btn-apple:hover:not(:disabled) {
    background: #1a1a1a;
    transform: translateY(-1px);
}
.teaser-btn-google:disabled,
.teaser-btn-apple:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}
.teaser-no-oauth {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 16px;
}
.teaser-no-oauth p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin: 0; }
.teaser-already {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.teaser-already a {
    color: var(--gold-light);
    text-decoration: underline;
}
.teaser-already a:hover { color: var(--white); }

@media (max-width: 640px) {
    .teaser-hero { padding: 64px 5% 56px; }
    .teaser-reveal-card { padding: 32px 20px; margin-top: -24px; }
    .teaser-pillar-name { font-size: 1.4rem; }
    .teaser-locked-grid { grid-template-columns: 1fr; }
    .teaser-gate { padding: 40px 24px; }
}

/* ===== DASHBOARD ===== */
.dash-wrap { background: var(--cream); min-height: 100vh; }

.dash-header {
    background: linear-gradient(150deg, var(--green-deep) 0%, var(--green-primary) 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.dash-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 75% 40%, rgba(198,166,100,0.13) 0%, transparent 55%);
    pointer-events: none;
}
.dash-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative; z-index: 1;
}
.dash-greeting {
    font-size: 0.85rem; font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.dash-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.1;
}
.dash-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    margin: 0;
}
.dash-header-actions {
    display: flex; gap: 10px; flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem; font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.dash-body {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 64px;
    align-items: start;
}

/* LEFT COLUMN - Profile Cards */
.dash-left { display: flex; flex-direction: column; gap: 20px; }

.dash-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}
.dash-card-header { margin-bottom: 20px; }
.dash-card-eyebrow {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--green-primary);
    background: var(--green-pale);
    padding: 3px 10px; border-radius: 50px;
    margin-bottom: 8px;
}
.dash-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--green-deep);
    margin: 0;
}

.dash-pillar-chip {
    display: flex; align-items: center; gap: 12px;
    background: var(--green-xpale);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 16px;
}
.dash-pillar-chip-nourish { background: var(--green-pale); border-color: var(--green-soft); }
.dash-pillar-icon { font-size: 1.6rem; }
.dash-pillar-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }
.dash-pillar-name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--green-deep); font-weight: 700; }

.dash-archetype-row, .dash-blend-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.dash-archetype-label { font-size: 0.72rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.dash-archetype-value { font-family: var(--font-serif); font-size: 0.95rem; color: var(--green-deep); font-weight: 600; text-align: right; }
.dash-blend-name { color: var(--gold); }

.dash-pillar-bars { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.dash-bar-row { display: flex; align-items: center; gap: 8px; }
.dash-bar-icon { font-size: 0.9rem; width: 20px; flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 50px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 50px; transition: width 0.8s ease; }
.dash-bar-nourish { background: var(--green-primary) !important; }
.dash-bar-pct { font-size: 0.72rem; color: var(--text-light); width: 30px; text-align: right; flex-shrink: 0; }

.dash-card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.82rem; font-weight: 600;
    color: var(--green-primary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}
.dash-card-link:hover { text-decoration-color: var(--green-primary); }

.dash-card-empty { text-align: center; padding: 12px 0 4px; }
.dash-card-empty p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* UPGRADE CARD */
.dash-upgrade-card {
    background: linear-gradient(140deg, var(--green-deep) 0%, #1e4a38 100%);
    border-color: transparent;
    text-align: center;
}
.dash-upgrade-icon { font-size: 2rem; margin-bottom: 10px; }
.dash-upgrade-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.dash-upgrade-desc { font-size: 0.83rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 18px; font-weight: 300; }
.dash-upgrade-price { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-light); margin-bottom: 16px; }
.dash-upgrade-price span { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-family: var(--font-sans); }
.btn-full { width: 100%; }
.dash-upgrade-btn { font-size: 0.88rem !important; }
.dash-upgrade-note { font-size: 0.73rem; color: rgba(255,255,255,0.45); margin-top: 10px; }

/* ===== GIDEON PANEL ===== */
.dash-right { position: sticky; top: 88px; }
.gideon-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    max-height: 820px;
    min-height: 540px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gideon-header {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-primary) 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.gideon-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-deep);
    font-family: var(--font-serif);
    font-size: 1.3rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.gideon-header-info { flex: 1; }
.gideon-name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.gideon-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.68); letter-spacing: 0.03em; }
.gideon-counter {
    font-size: 0.72rem; font-weight: 600;
    color: var(--gold-light);
    background: rgba(198,166,100,0.15);
    border: 1px solid rgba(198,166,100,0.3);
    padding: 4px 10px; border-radius: 50px;
    white-space: nowrap; flex-shrink: 0;
}

.gideon-disclaimer {
    background: var(--gold-pale);
    border-bottom: 1px solid var(--border-warm);
    padding: 9px 16px;
    font-size: 0.73rem;
    color: var(--text-mid);
    line-height: 1.5;
    display: flex; gap: 8px; align-items: flex-start;
    flex-shrink: 0;
}

.gideon-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}
.gideon-messages::-webkit-scrollbar { width: 4px; }
.gideon-messages::-webkit-scrollbar-track { background: transparent; }
.gideon-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 50px; }

.gideon-msg { display: flex; flex-direction: column; gap: 4px; }
.gideon-msg-user { align-items: flex-end; }
.gideon-msg-bot  { align-items: flex-start; }

.gideon-bubble {
    background: var(--green-xpale);
    border: 1px solid var(--border);
    border-radius: 16px 16px 16px 4px;
    padding: 12px 16px;
    font-size: 0.88rem;
    line-height: 1.72;
    color: var(--text-dark);
    max-width: 92%;
}
.gideon-bubble strong { color: var(--green-deep); }
.gideon-bubble em     { color: var(--text-mid); }

.gideon-bubble-user {
    background: var(--green-primary);
    border-radius: 16px 16px 4px 16px;
    padding: 12px 16px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--white);
    max-width: 86%;
}
.gideon-timestamp {
    font-size: 0.68rem;
    color: var(--text-light);
    padding: 0 4px;
}

.gideon-typing {
    display: flex; align-items: center; gap: 4px;
    padding: 14px 16px;
    min-width: 56px;
}
.gideon-typing span {
    width: 7px; height: 7px;
    background: var(--green-soft);
    border-radius: 50%;
    animation: gideonBounce 1.2s ease-in-out infinite;
}
.gideon-typing span:nth-child(2) { animation-delay: 0.2s; }
.gideon-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes gideonBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%            { transform: translateY(-6px); }
}

.gideon-limit-msg {
    display: flex; gap: 10px; align-items: flex-start;
    background: var(--gold-pale);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 0.83rem;
    line-height: 1.6;
    color: var(--text-mid);
}
.gideon-limit-msg a { color: var(--green-primary); text-decoration: underline; }

.gideon-input-area {
    border-top: 1px solid var(--border);
    padding: 14px 16px;
    flex-shrink: 0;
    background: var(--white);
}
.gideon-form {
    display: flex; gap: 10px; align-items: flex-end;
    margin-bottom: 8px;
}
.gideon-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--cream);
    resize: none;
    transition: border-color 0.2s;
    outline: none;
    min-height: 42px;
    max-height: 120px;
    overflow-y: auto;
}
.gideon-input:focus { border-color: var(--green-primary); background: var(--white); }
.gideon-input::placeholder { color: var(--text-light); }
.gideon-send {
    width: 42px; height: 42px; flex-shrink: 0;
    background: var(--green-primary);
    border: none; border-radius: var(--radius-md);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.gideon-send:hover:not(:disabled) { background: var(--green-deep); transform: translateY(-1px); }
.gideon-send:disabled { opacity: 0.5; cursor: not-allowed; }
.gideon-note {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}
.gideon-locked {
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-mid);
}
.gideon-locked a { color: var(--green-primary); text-decoration: underline; }

/* ===== DASHBOARD RESPONSIVE ===== */
@media (max-width: 900px) {
    .dash-body { grid-template-columns: 1fr; }
    .dash-right { position: static; }
    .gideon-panel { height: 600px; max-height: 600px; }
    .dash-header-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .dash-header { padding: 56px 0 40px; }
    .dash-card { padding: 22px 18px; }
    .gideon-panel { height: 520px; max-height: 520px; }
}

/* ==========================================
   TWO ENVIRONMENTS — MOTIVE & NOURISH
   ========================================== */

/* Environment badges in headers */
.dash-env-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    background: rgba(198,166,100,0.25);
    color: var(--gold);
    border: 1px solid rgba(198,166,100,0.4);
}
.dash-env-badge--nourish {
    background: rgba(74,124,89,0.25);
    color: #a8d5b5;
    border-color: rgba(168,213,181,0.4);
}

/* Motive environment */
.dash-header--motive { background: linear-gradient(135deg, #1A3C34 0%, #2D6A4F 100%); }
.dash-wrap--motive .dash-card { border-top: 3px solid var(--gold); }

/* Nourish environment */
.dash-wrap--nourish { background: #F5F2EC; }
.dash-header--nourish { background: linear-gradient(135deg, #2A4A35 0%, #3D5A40 60%, #5C7A50 100%); }
.dash-wrap--nourish .dash-card { border-top: 3px solid #7BAE87; }
.dash-wrap--nourish .dash-motive-card { border-top: 3px solid var(--gold); }

/* Compact cross-profile card */
.dash-card--compact { padding: 20px 24px; }
.dash-card--compact .dash-pillar-chip { margin: 10px 0 6px; }

/* Back to hub link */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Nourish-specific buttons */
.btn-nourish {
    background: #3D5A40;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.btn-nourish:hover { background: #2A4A35; }
.btn-nourish-gold {
    background: #8B7355;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.btn-nourish-gold:hover { background: #7A6348; }
.btn-outline-dark {
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid var(--green-deep);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--green-deep); color: #fff; }

/* Gideon — nourish persona */
.gideon-panel--nourish .gideon-header { background: linear-gradient(135deg, #2A4A35 0%, #3D5A40 100%); }
.gideon-avatar--nourish { background: #5C7A50; color: #fff; }
.gideon-send--nourish { background: #3D5A40; }
.gideon-send--nourish:hover { background: #2A4A35; }

/* ==========================================
   DASHBOARD HUB
   ========================================== */
.hub-wrap { background: var(--cream); min-height: 100vh; }

.hub-header {
    background: linear-gradient(135deg, #1A3C34 0%, #2D6A4F 100%);
    padding: 80px 0 56px;
    color: #fff;
}
.hub-header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.hub-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin: 4px 0 8px;
    font-weight: 700;
    line-height: 1.1;
}
.hub-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
    margin: 0;
}

.hub-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 20px;
}

.hub-env-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 16px rgba(26,60,52,0.08);
    border: 1.5px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
}
.hub-env-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,60,52,0.13); }

.hub-env-card--motive { border-top: 4px solid var(--gold); }
.hub-env-card--motive:hover { border-color: var(--gold); }
.hub-env-card--nourish { border-top: 4px solid #7BAE87; }
.hub-env-card--nourish:hover { border-color: #7BAE87; }

.hub-env-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 16px;
}
.hub-env-badge--nourish { color: #3D5A40; }

.hub-env-icon { font-size: 2.4rem; margin-bottom: 12px; }

.hub-env-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--green-deep);
    margin: 0 0 10px;
    font-weight: 700;
}
.hub-env-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}
.hub-env-status {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hub-env-status--complete {
    background: rgba(45,106,79,0.1);
    color: var(--green-primary);
    font-weight: 600;
}
.hub-env-status--complete.hub-env-status--nourish {
    background: rgba(61,90,64,0.1);
    color: #3D5A40;
}
.hub-env-status--pending {
    background: rgba(0,0,0,0.05);
    color: #999;
    font-style: italic;
    font-weight: 500;
}
.hub-env-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--green-primary);
    margin-top: auto;
}
.hub-env-cta--nourish { color: #3D5A40; }

.hub-combined {
    padding: 0 0 8px;
}
.hub-combined-inner {
    background: rgba(45,106,79,0.07);
    border: 1px solid rgba(45,106,79,0.15);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: var(--green-primary);
    font-weight: 500;
}
.hub-combined-icon { font-size: 1rem; color: var(--gold); }

.hub-actions {
    display: flex;
    gap: 12px;
    padding-bottom: 60px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .hub-body { grid-template-columns: 1fr; }
    .hub-header { padding: 60px 0 40px; }
}

/* ===== HUB: ACCOUNT SETTINGS SECTION ===== */
.hub-account {
    padding-bottom: 48px;
}
.hub-account-inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.hub-account-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}
.hub-account-email {
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
}
.hub-account-provider {
    color: #aaa;
    font-weight: 400;
}
.hub-delete-btn {
    border: 1.5px solid #ddd;
    background: transparent;
    color: #C0392B;
    border-color: rgba(192,57,43,0.3);
    border-radius: 8px;
    padding: 9px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.hub-delete-btn:hover {
    background: #C0392B;
    color: #fff;
    border-color: #C0392B;
}

/* ===== ADMIN-CHAT-ZERO ===== */
.admin-chat-count { font-weight: 600; color: #8B5E3C; }
.admin-chat-zero  { color: #ccc; }

/* ===== SCIENTIST-LED AUTHORITY MARKERS ===== */
.about-scientist-badge {
    display: inline-block;
    background: rgba(198,166,100,0.15);
    color: #9A7B3C;
    border: 1px solid rgba(198,166,100,0.4);
    border-radius: 50px;
    padding: 4px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-degrees {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-primary);
    letter-spacing: 0.03em;
    margin-top: 6px;
    opacity: 0.85;
}

.footer-scientist-credit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    margin: 8px 0 12px;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.footer-degrees {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.75;
    letter-spacing: 0.02em;
}

/* ===== EMAIL / PASSWORD AUTH FORMS ===== */
.auth-tabs {
    display: flex;
    gap: 0;
    border: 1px solid rgba(45,106,79,0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 10px 0;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-primary);
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
}

.auth-tab.active {
    background: var(--green-primary);
    color: #fff;
}

.auth-tab:not(.active):hover {
    background: rgba(45,106,79,0.07);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.auth-field label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.auth-field-hint {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #888;
    font-size: 0.7rem;
}

.auth-field input {
    padding: 10px 13px;
    border: 1.5px solid rgba(45,106,79,0.25);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--green-deep);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.auth-field input:focus {
    border-color: var(--green-primary);
}

.btn-primary-auth {
    width: 100%;
    padding: 12px;
    background: var(--green-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.btn-primary-auth:hover {
    background: var(--green-deep);
}
