/* ==========================================
   BINDU PORTAL — Light, luminous, feminine
   Cream surfaces + Portal Teal accents (client direction)
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
    /* --- Brand palette (reference) --- */
    --void-dark: #040c18;
    --night-dark: #071627;
    --deep-dark: #0d2040;
    --dusk: #e8f4f3;
    --horizon: #1e4470;

    /* Portal Teal — primary accent */
    --teal-dim: #2a9090;
    --teal: #4ecdc4;
    --teal-light: #8ae8e4;
    --teal-mist: #c2f5f2;

    /* Sacred Amber — secondary accent */
    --amber-deep: #a06015;
    --amber: #e8a040;
    --gold: #f5c87a;
    --gold-warm: var(--gold);
    --parchment: #fde8b8;

    /* Cream surfaces — feminine light base */
    --cream: #faf7f0;
    --cream-warm: #f5efe6;
    --cream-deep: #ebe4d8;
    --surface: #ffffff;

    --fog: #6b8299;
    --moon: #4a6278;
    --mist: #dde7f2;
    --starlight: #edf2f8;

    /* --- Light theme surfaces (remap legacy void/night/deep) --- */
    --void: var(--cream);
    --night: var(--cream-warm);
    --deep: var(--surface);

    --bg: var(--cream);
    --bg-white: var(--surface);
    --bg-warm: var(--cream-warm);
    --bg-card: var(--surface);

    --ink: #1a3348;
    --ink-soft: #4a6278;
    --ink-muted: #6b8299;

    --pink: var(--teal-dim);
    --pink-soft: rgba(78, 205, 196, 0.14);
    --pink-deep: var(--teal);

    --gold-light: var(--gold);
    --gold-glow: rgba(245, 199, 122, 0.35);
    --amber-glow: rgba(232, 160, 64, 0.2);
    --teal-glow: rgba(78, 205, 196, 0.22);

    --dark: var(--ink);
    --text: var(--ink);
    --text-secondary: var(--ink-soft);
    --text-muted: var(--ink-muted);
    --text-light: #8aa3b8;

    --border: #d4e8e6;
    --border-hover: var(--teal-light);

    --on-teal: #0d2a3a;

    --shadow-xs: 0 1px 2px rgba(26, 51, 72, 0.06);
    --shadow-sm: 0 2px 12px rgba(26, 51, 72, 0.08);
    --shadow-md: 0 6px 24px rgba(26, 51, 72, 0.10);
    --shadow-lg: 0 16px 40px rgba(26, 51, 72, 0.12);
    --shadow-xl: 0 24px 56px rgba(26, 51, 72, 0.14);
    --shadow-gold: 0 4px 20px rgba(232, 160, 64, 0.2);
    --shadow-teal: 0 4px 20px rgba(78, 205, 196, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --font-h: 'Cormorant Garamond', 'Georgia', serif;   /* display / headings */
    --font-b: 'Source Serif 4', 'Georgia', serif;        /* body / long-form */
    --font-ui: 'Montserrat', 'Helvetica Neue', sans-serif; /* nav / buttons / labels */

    --max-w: 1200px;
    --nav-h: 76px;

    /* Spacing scale — brand guide §07 (8px rhythm) */
    --s1: 4px;
    --s2: 8px;
    --s3: 12px;
    --s4: 16px;
    --s5: 24px;
    --s6: 32px;
    --s7: 48px;
    --s8: 64px;
    --s9: 96px;
    --s10: 128px;

    /* Motion should feel like breath */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-bounce: cubic-bezier(0.22, 0.61, 0.36, 1);
    --breath: 4000ms;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-b);
    font-weight: 400;
    color: var(--text);
    background:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(142, 232, 228, 0.45) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 95% 95%, rgba(78, 205, 196, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 5% 80%, rgba(253, 232, 184, 0.35) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    background-attachment: fixed;
    line-height: 1.8;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-h);
    color: var(--dark);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; letter-spacing: 0.015em; }
h2 { font-size: 1.95rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0; }

a { color: var(--teal); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--teal-light); }

img { max-width: 100%; height: auto; display: block; }
svg { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -0.125em; }

::selection { background: var(--teal-mist); color: var(--ink); }

/* ---- The Bindu mark ---- */
.bindu-mark { color: var(--teal-dim); }
.bindu-point { transform-origin: 24px 24px; animation: binduBreath var(--breath) ease-in-out infinite; }
@keyframes binduBreath {
    0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 1px rgba(232,160,64,0.5)); }
    50%      { opacity: 1;    filter: drop-shadow(0 0 5px rgba(232,160,64,0.9)); }
}

/* ---- Bindu wordmark ---- */
.bindu-wordmark { display: inline-flex; align-items: center; gap: var(--s3); text-decoration: none; color: inherit; }
.bindu-wordmark svg.bindu-mark { width: 30px; height: 30px; flex-shrink: 0; }
.bindu-wordmark-text { display: flex; flex-direction: column; line-height: 1.05; }
.bindu-wordmark-line {
    font-family: var(--font-h); font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.22em; font-size: 0.72rem; color: var(--ink);
}
.bindu-wordmark-line--sub { font-size: 0.58rem; letter-spacing: 0.28em; color: var(--ink-soft); margin-top: 2px; }
.bindu-wordmark--landing .bindu-wordmark-line { font-size: 0.78rem; }
.bindu-wordmark--sidebar .bindu-mark { width: 26px; height: 26px; }
.bindu-wordmark--sidebar .bindu-wordmark-line { font-size: 0.62rem; }
.bindu-wordmark--footer { justify-content: center; margin-bottom: var(--s4); }

/* ---- Container ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.page-wrapper { min-height: calc(100vh - var(--nav-h)); padding: 44px 0 100px; }

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.navbar-brand {
    font-family: var(--font-h);
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-brand svg { width: 30px; height: 30px; }
.navbar-brand:hover { color: var(--teal-light); }

.navbar-nav { display: flex; align-items: center; gap: 4px; list-style: none; }

.navbar-nav a {
    font-family: var(--font-ui);
    color: var(--ink-soft);
    font-size: 0.74rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease);
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-nav a svg { width: 16px; height: 16px; opacity: 0.65; }
.navbar-nav a:hover { color: var(--teal-light); background: var(--teal-glow); }
.navbar-nav a.active { color: var(--teal); background: var(--teal-glow); }

.navbar-user { display: flex; align-items: center; gap: 14px; margin-left: 12px; padding-left: 18px; border-left: 1px solid var(--border); }
.navbar-user .user-name { font-family: var(--font-ui); font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.navbar-user .user-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-dim), var(--horizon));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-ui); font-size: 0.78rem; color: var(--starlight); font-weight: 600;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; border-radius: var(--radius-sm); transition: background 0.2s; }
.hamburger:hover { background: var(--bg-warm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-soft); margin: 5px 0; transition: 0.3s var(--ease); border-radius: 2px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-ui); font-size: 0.74rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    border: none; border-radius: 0; cursor: pointer;
    transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    text-decoration: none; position: relative; overflow: hidden;
}
.btn svg { width: 15px; height: 15px; }

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dim));
    color: var(--on-teal); box-shadow: var(--shadow-teal);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(78, 205, 196, 0.34); color: var(--on-teal); }
.btn-primary:active { box-shadow: var(--shadow-teal); }

.btn-secondary { background: linear-gradient(135deg, var(--gold), var(--amber)); color: var(--on-teal); box-shadow: var(--shadow-gold); }
.btn-secondary:hover { box-shadow: 0 8px 28px rgba(232, 160, 64, 0.34); color: var(--on-teal); }

.btn-outline { background: transparent; border: 1px solid var(--teal-light); color: var(--teal-dim); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-light); background: var(--teal-glow); }

.btn-ghost { background: transparent; color: var(--text-secondary); padding: 12px 18px; }
.btn-ghost:hover { color: var(--teal-light); background: var(--teal-glow); }

.btn-sm { padding: 9px 20px; font-size: 0.66rem; letter-spacing: 0.16em; }
.btn-lg { padding: 17px 40px; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn-danger { background: #c0392b; color: #fff; box-shadow: 0 4px 14px rgba(192,57,43,0.3); }
.btn-danger:hover { background: #a93226; color: #fff; }

.btn-icon {
    width: 38px; height: 38px; padding: 0; border-radius: 50%; letter-spacing: 0;
    display: inline-flex; align-items: center; justify-content: center;
}

/* ========== CARDS ========== */
.card {
    background: var(--bg-card); border-radius: var(--radius-md);
    border: 1px solid var(--border); overflow: hidden;
    transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); position: relative;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--horizon); }

.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-img-wrapper { overflow: hidden; position: relative; background: var(--night); }
.card-img-wrapper::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70px;
    background: linear-gradient(transparent, rgba(4, 12, 24, 0.5));
}

.card-body { padding: 26px; }
.card-title { font-family: var(--font-h); font-size: 1.35rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.card-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.card-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 0.74rem; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.card-meta svg { width: 13px; height: 13px; }

/* ========== GRID ========== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========== FORMS ========== */
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block; font-family: var(--font-ui); font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--moon);
    margin-bottom: 9px;
}
.form-control {
    width: 100%; padding: 14px 18px;
    font-family: var(--font-b); font-size: 0.95rem; color: var(--ink);
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease); outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-glow); }
.form-control::placeholder { color: var(--text-light); }

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238498b0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
select.form-control option { background: var(--surface); color: var(--ink); }

/* ========== ALERTS ========== */
.alert {
    padding: 16px 22px; border-radius: var(--radius-sm); font-size: 0.9rem;
    margin-bottom: 24px; border-left: 3px solid transparent;
    display: flex; align-items: center; gap: 12px;
    animation: alertSlideIn 0.6s var(--ease);
}
@keyframes alertSlideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.alert svg { width: 18px; height: 18px; flex-shrink: 0; }
.alert-success { background: rgba(78, 205, 196, 0.10); color: var(--teal-light); border-left-color: var(--teal); }
.alert-error { background: rgba(192, 57, 43, 0.12); color: #f1a399; border-left-color: #c0392b; }
.alert-info { background: var(--teal-glow); color: var(--teal-dim); border-left-color: var(--teal); }
.alert-warning { background: var(--gold-glow); color: var(--gold-warm); border-left-color: var(--amber); }

/* ========== BADGES ========== */
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 12px; font-family: var(--font-ui); font-size: 0.62rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em; border-radius: 20px;
}
.badge svg { width: 10px; height: 10px; }

.badge-open { background: var(--teal-glow); color: var(--teal-light); }
.badge-coming_soon { background: var(--gold-glow); color: var(--gold-warm); }
.badge-closed { background: rgba(192, 57, 43, 0.15); color: #f1a399; }
.badge-draft { background: rgba(132, 152, 176, 0.12); color: var(--fog); }
.badge-private { background: rgba(30, 68, 112, 0.30); color: var(--moon); }
.badge-hidden { background: rgba(132, 152, 176, 0.12); color: var(--fog); }
.badge-archived { background: rgba(132, 152, 176, 0.10); color: var(--text-light); }
.badge-active { background: var(--teal-glow); color: var(--teal-light); }
.badge-completed { background: var(--teal-glow); color: var(--teal-light); }
.badge-locked { background: rgba(132, 152, 176, 0.12); color: var(--fog); }
.badge-unlocked { background: var(--gold-glow); color: var(--gold-warm); }
.badge-pending { background: var(--gold-glow); color: var(--gold-warm); }
.badge-failed { background: rgba(192, 57, 43, 0.15); color: #f1a399; }
.badge-audio { background: var(--teal-glow); color: var(--teal-light); }
.badge-video { background: rgba(30, 68, 112, 0.30); color: var(--moon); }
.badge-reading { background: var(--gold-glow); color: var(--gold-warm); }
.badge-reflection { background: rgba(138, 232, 228, 0.12); color: var(--teal-mist); }
.badge-download { background: var(--gold-glow); color: var(--gold-warm); }
.badge-live_link { background: rgba(30, 68, 112, 0.30); color: var(--moon); }
.badge-journal_prompt { background: var(--teal-glow); color: var(--teal-light); }
.badge-admin { background: var(--gold-glow); color: var(--gold-warm); }
.badge-user { background: rgba(132, 152, 176, 0.12); color: var(--fog); }

/* Access Manager — access + payment statuses */
.badge-expired { background: rgba(132, 152, 176, 0.12); color: var(--fog); }
.badge-revoked { background: rgba(192, 57, 43, 0.15); color: #f1a399; }
.badge-paid { background: var(--teal-glow); color: var(--teal-light); }
.badge-unpaid { background: rgba(192, 57, 43, 0.12); color: #f1a399; }
.badge-free { background: rgba(132, 152, 176, 0.12); color: var(--moon); }
.badge-comped { background: var(--gold-glow); color: var(--gold-warm); }
.badge-refunded { background: rgba(132, 152, 176, 0.12); color: var(--fog); }
.badge-external { background: rgba(30, 68, 112, 0.30); color: var(--moon); }
.badge-none { background: rgba(132, 152, 176, 0.10); color: var(--fog); }

/* Journal entry types */
.badge-prompt { background: var(--gold-glow); color: var(--gold-warm); }
.badge-integration { background: var(--teal-glow); color: var(--teal-light); }
.badge-session { background: rgba(138, 232, 228, 0.12); color: var(--teal-mist); }
.badge-body { background: rgba(30, 68, 112, 0.30); color: var(--moon); }

/* ========== SECTION HEADERS ========== */
.section-header { margin-bottom: 34px; }
.section-header h1, .section-header h2 { margin-bottom: 8px; }
.section-header p { color: var(--text-muted); font-size: 1rem; }

/* ========== DIVIDER ========== */
.divider { border: none; border-top: 1px solid var(--border); margin: 34px 0; }

/* ========== AUTH PAGES ========== */
.auth-wrapper {
    display: flex; align-items: center; justify-content: center; min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 68, 112, 0.40) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(42, 144, 144, 0.12) 0%, transparent 60%),
        var(--void);
    padding: 24px;
}
.auth-card {
    width: 100%; max-width: 460px; background: var(--deep);
    border-radius: var(--radius-xl); padding: 56px 46px;
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
    animation: authFadeIn 0.9s var(--ease);
}
@keyframes authFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.auth-card h1 { font-size: 2.1rem; text-align: center; margin-bottom: 8px; }
.auth-card .subtitle { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 38px; }
.auth-card .auth-footer { text-align: center; margin-top: 28px; font-size: 0.9rem; color: var(--text-muted); }

.auth-logo {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    text-align: center; margin-bottom: 30px; font-family: var(--font-h);
    font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--moon); font-weight: 500;
}
.auth-logo svg { width: 56px; height: 56px; }

.auth-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--text-light); font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ========== DASHBOARD ========== */
.welcome-banner {
    background:
        radial-gradient(ellipse 90% 120% at 85% 10%, rgba(142, 232, 228, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 70% 80% at 10% 90%, rgba(253, 232, 184, 0.4) 0%, transparent 55%),
        linear-gradient(135deg, var(--surface) 0%, var(--cream-warm) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 52px 46px; margin-bottom: 48px;
    position: relative; overflow: hidden;
}
.welcome-banner::before {
    content: ''; position: absolute; top: -50px; right: -30px;
    width: 220px; height: 220px; border-radius: 50%;
    border: 1px solid rgba(78, 205, 196, 0.12);
}
.welcome-banner::after {
    content: ''; position: absolute; bottom: -70px; right: 90px;
    width: 150px; height: 150px; border-radius: 50%;
    border: 1px solid rgba(232, 160, 64, 0.12);
}
.welcome-banner h1 { font-size: 2.3rem; margin-bottom: 10px; position: relative; z-index: 1; }
.welcome-banner p { color: var(--text-secondary); font-size: 1.05rem; position: relative; z-index: 1; }
.welcome-banner .welcome-date {
    font-family: var(--font-ui); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-muted); margin-top: 16px; position: relative; z-index: 1;
}

.dashboard-section { margin-bottom: 54px; }
.dashboard-section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.dashboard-section-header h2 { font-size: 1.5rem; margin-bottom: 0; }

/* ========== OFFERING DETAIL ========== */
.offering-hero { position: relative; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 44px; background: var(--night); }
.offering-hero img { width: 100%; height: 400px; object-fit: cover; }
.offering-hero .overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 50px 46px;
    background: linear-gradient(transparent 0%, rgba(26, 51, 72, 0.75) 100%); color: var(--starlight);
}
.offering-hero .overlay h1 { color: #fff; font-size: 2.6rem; margin-bottom: 6px; }
.offering-hero .overlay .badge { margin-bottom: 12px; }

.offering-grid { display: grid; grid-template-columns: 1fr 380px; gap: 44px; }

.offering-sidebar {
    background: var(--deep); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 38px; position: sticky; top: calc(var(--nav-h) + 24px); align-self: start;
}
.offering-sidebar .price { font-family: var(--font-h); font-size: 2.6rem; color: var(--gold-warm); margin-bottom: 28px; letter-spacing: 0.02em; }
.offering-sidebar .detail-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
}
.offering-sidebar .detail-item:last-of-type { border-bottom: none; margin-bottom: 28px; }
.offering-sidebar .detail-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.offering-sidebar .detail-item .detail-label { color: var(--text-muted); min-width: 80px; font-family: var(--font-ui); font-size: 0.8rem; }

/* ========== JOURNEY VIEW ========== */
.journey-header {
    background:
        radial-gradient(ellipse 90% 120% at 80% 0%, rgba(142, 232, 228, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 100%, rgba(253, 232, 184, 0.3) 0%, transparent 55%),
        linear-gradient(135deg, var(--surface) 0%, var(--cream-warm) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 50px 46px; margin-bottom: 40px;
    position: relative; overflow: hidden;
}
.journey-header::before {
    content: ''; position: absolute; top: -40px; right: -30px;
    width: 180px; height: 180px; border-radius: 50%;
    border: 1px solid rgba(78, 205, 196, 0.12);
}

.stage-section { margin-bottom: 34px; }

.stage-header {
    font-family: var(--font-h); font-size: 1.25rem; color: var(--ink);
    padding: 18px 26px;
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-bottom: 2px solid var(--teal-mist);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    display: flex; align-items: center; justify-content: space-between;
}
.stage-label {
    font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.66rem;
    color: var(--teal); font-weight: 600;
}

.practice-list {
    border: 1px solid var(--border); border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md); overflow: hidden;
}
.practice-item {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 26px; background: var(--surface);
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
    text-decoration: none; color: var(--text);
}
.practice-item:last-child { border-bottom: none; }
.practice-item:not(.locked):hover,
.practice-item:not(.locked):focus,
.practice-item:not(.locked):focus-visible,
.practice-item:not(.locked):active {
    background: var(--cream-warm);
    border-left-color: var(--teal);
    color: var(--ink);
    outline: none;
    box-shadow: inset 0 0 0 1px var(--teal-mist);
}
.practice-item:not(.locked):hover .practice-info h4,
.practice-item:not(.locked):focus .practice-info h4,
.practice-item:not(.locked):focus-visible .practice-info h4 {
    color: var(--ink);
}
.practice-item:not(.locked):hover .practice-info span,
.practice-item:not(.locked):focus .practice-info span,
.practice-item:not(.locked):focus-visible .practice-info span {
    color: var(--ink-soft);
}
.practice-item.locked { opacity: 0.4; cursor: default; }

.practice-icon {
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.practice-icon svg { width: 18px; height: 18px; }
.practice-icon.audio { background: var(--teal-glow); color: var(--teal); }
.practice-icon.video { background: var(--teal-glow); color: var(--teal-dim); }
.practice-icon.reading { background: var(--gold-glow); color: var(--amber-deep); }
.practice-icon.reflection { background: rgba(142, 232, 228, 0.35); color: var(--teal-dim); }

.practice-info { flex: 1; }
.practice-info h4 { font-family: var(--font-b); font-size: 0.98rem; font-weight: 600; margin-bottom: 2px; color: var(--ink); }
.practice-info span { font-family: var(--font-ui); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

.practice-status { font-size: 1.1rem; flex-shrink: 0; width: 28px; text-align: center; }
.practice-status .check { color: var(--teal); }
.practice-status .lock { color: var(--text-light); }
.practice-status .dot { color: var(--amber); }

/* Today's practice card */
.today-card {
    background:
        radial-gradient(ellipse 80% 140% at 90% 0%, rgba(253, 232, 184, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 60% 100% at 0% 100%, rgba(142, 232, 228, 0.2) 0%, transparent 55%),
        var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 30px; margin-bottom: 36px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.today-card .today-label {
    font-family: var(--font-ui); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.18em;
    font-weight: 600; color: var(--amber); margin-bottom: 8px;
}

/* ========== PRACTICE VIEW ========== */
.practice-view { max-width: 780px; margin: 0 auto; }

.practice-view .practice-content {
    background: var(--surface); border-radius: var(--radius-md);
    padding: 46px; border: 1px solid var(--border); margin-bottom: 28px;
    line-height: 2.05; font-size: 1.08rem; color: var(--text-secondary); font-family: var(--font-b);
}
.practice-view .practice-content p { margin-bottom: 20px; }
.practice-view audio, .practice-view video { width: 100%; border-radius: var(--radius-sm); margin-bottom: 24px; }

.practice-nav { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); margin-top: 32px; }

/* ========== JOURNAL ========== */
.journal-entry {
    background: var(--deep); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 30px; margin-bottom: 16px; transition: all 0.25s var(--ease);
}
.journal-entry:hover { box-shadow: var(--shadow-sm); border-color: var(--horizon); }
.journal-entry h3 { font-size: 1.3rem; margin-bottom: 6px; }
.journal-entry .journal-meta { font-family: var(--font-ui); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.journal-entry .journal-excerpt { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.85; }

.journal-month-label {
    font-family: var(--font-ui); font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.14em; color: var(--text-muted); font-weight: 600;
    margin: 30px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}

/* ========== ADMIN LAYOUT (Guide Dashboard) ========== */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 264px; background: var(--surface); color: var(--text);
    padding: 0; flex-shrink: 0; position: fixed; top: 0; left: 0; bottom: 0;
    overflow-y: auto; display: flex; flex-direction: column;
    border-right: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.admin-sidebar .sidebar-brand {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-h); font-size: 1.15rem; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 26px 24px; color: var(--ink); border-bottom: 1px solid var(--border);
}
.admin-sidebar .sidebar-brand svg { width: 28px; height: 28px; }

.admin-sidebar nav { flex: 1; padding: 16px 0; }
.admin-sidebar nav a {
    display: flex; align-items: center; gap: 13px;
    padding: 13px 24px; color: var(--ink-soft);
    font-family: var(--font-ui); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em;
    transition: all 0.2s var(--ease); border-left: 2px solid transparent;
}
.admin-sidebar nav a svg { width: 18px; height: 18px; opacity: 0.55; }
.admin-sidebar nav a:hover { background: var(--teal-glow); color: var(--teal-dim); }
.admin-sidebar nav a:hover svg { opacity: 0.9; }
.admin-sidebar nav a.active { background: var(--teal-glow); color: var(--teal-dim); border-left-color: var(--teal); }
.admin-sidebar nav a.active svg { opacity: 1; color: var(--teal); }

.admin-sidebar .sidebar-footer {
    padding: 16px 24px; border-top: 1px solid var(--border);
    font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.06em;
}
.admin-sidebar .sidebar-footer a { color: var(--text-light); display: flex; align-items: center; gap: 10px; padding: 7px 0; text-transform: uppercase; }
.admin-sidebar .sidebar-footer a svg { width: 17px; height: 17px; flex-shrink: 0; }
.admin-sidebar .sidebar-footer a:hover { color: var(--moon); }

.admin-main { flex: 1; margin-left: 264px; padding: 38px 46px; min-height: 100vh; }

.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.admin-header h1 { font-size: 1.8rem; display: flex; align-items: center; gap: 12px; }
.admin-header h1 svg { width: 28px; height: 28px; color: var(--teal); }

.admin-main h2 svg { width: 22px; height: 22px; vertical-align: middle; color: var(--teal); }
.admin-main h3 svg { width: 18px; height: 18px; vertical-align: middle; color: var(--teal); }

/* Admin Table */
.table-wrapper { background: var(--deep); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.table { width: 100%; border-collapse: collapse; }
.table th {
    text-align: left; padding: 15px 22px; font-family: var(--font-ui); font-size: 0.66rem;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted);
    font-weight: 600; border-bottom: 1px solid var(--border); background: var(--night);
}
.table td { padding: 16px 22px; font-size: 0.92rem; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text-secondary); }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--cream-warm); }
.table .actions { display: flex; gap: 8px; align-items: center; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 38px; }
.stat-card {
    background: var(--deep); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 28px; transition: all 0.25s var(--ease);
}
.stat-card:hover { box-shadow: var(--shadow-sm); border-color: var(--horizon); }
.stat-card .stat-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.stat-card .stat-icon svg { width: 20px; height: 20px; }
.stat-card .stat-icon.users { background: rgba(30, 68, 112, 0.4); color: var(--moon); }
.stat-card .stat-icon.offerings { background: var(--teal-glow); color: var(--teal); }
.stat-card .stat-icon.enrollments { background: rgba(138, 232, 228, 0.12); color: var(--teal-mist); }
.stat-card .stat-icon.revenue { background: var(--gold-glow); color: var(--gold-warm); }
.stat-card .stat-value { font-family: var(--font-h); font-size: 2.4rem; color: var(--ink); margin-bottom: 4px; }
.stat-card .stat-label { font-family: var(--font-ui); font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* ========== PROGRESS BAR ========== */
.progress-bar { height: 6px; background: var(--cream-deep); border-radius: 3px; overflow: hidden; }
.progress-bar .progress-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, var(--teal-dim), var(--teal));
    transition: width 1s var(--ease);
}
.progress-bar.lg { height: 8px; border-radius: 4px; }
.progress-bar.lg .progress-fill { border-radius: 4px; }

/* ========== EMPTY STATE ========== */
.empty-state { text-align: center; padding: 76px 24px; }
.empty-state .empty-icon {
    width: 76px; height: 76px; margin: 0 auto 22px;
    border-radius: 50%; background: var(--night); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}
.empty-state .empty-icon svg { width: 32px; height: 32px; color: var(--teal); opacity: 0.7; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-secondary); }
.empty-state p { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ========== FOOTER ========== */
.footer {
    text-align: center; padding: 38px 0; font-family: var(--font-ui); font-size: 0.7rem;
    color: var(--text-light); border-top: 1px solid var(--border); margin-top: 80px;
    letter-spacing: 0.1em; text-transform: uppercase;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold-warm); }
.text-teal { color: var(--teal); }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.74rem; }
.fw-600 { font-weight: 600; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ========== ANIMATIONS — breath, not bounce ========== */
.fade-in { animation: fadeIn 0.9s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.slide-up { animation: slideUp 1.1s var(--ease); }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .offering-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .navbar-nav {
        display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
        flex-direction: column; background: var(--night);
        border-bottom: 1px solid var(--border); padding: 12px;
        box-shadow: var(--shadow-md); border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .navbar-nav.open { display: flex; }
    .navbar-nav a { padding: 14px 16px; width: 100%; }
    .navbar-user { border-left: none; margin-left: 0; padding-left: 0; padding-top: 12px; border-top: 1px solid var(--border); width: 100%; justify-content: space-between; }
    .hamburger { display: block; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s var(--ease); z-index: 200; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; padding: 24px 16px; }
    .welcome-banner, .journey-header { padding: 30px; }
    .welcome-banner h1 { font-size: 1.7rem; }
    .auth-card { padding: 40px 28px; }
    .container { padding: 0 16px; }
    .today-card { flex-direction: column; align-items: flex-start; }
    .offering-hero img { height: 260px; }
    .practice-view .practice-content { padding: 30px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    h1 { font-size: 1.7rem; }
}

/* ========== GUIDED JOURNEY / STEPPER ========== */
.guided-stepper {
    margin-bottom: var(--s6);
    padding: var(--s5);
    background: var(--deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.guided-stepper-meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: var(--s4); flex-wrap: wrap; gap: var(--s2);
}
.guided-step-label {
    font-family: var(--font-ui); font-size: 0.66rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--teal);
}
.guided-step-context {
    font-family: var(--font-ui); font-size: 0.62rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--fog);
}
.guided-stepper-track {
    display: flex; flex-wrap: wrap; gap: var(--s2);
}
.guided-step {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 var(--s2);
    border: 1px solid var(--border); background: var(--cream-warm);
    text-decoration: none; color: var(--ink-soft);
    font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.08em;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.guided-step:hover { border-color: var(--teal); color: var(--teal-dim); }
.guided-step--current { border-color: var(--amber); background: var(--gold-glow); color: var(--amber-deep); }
.guided-step--done { border-color: var(--teal); background: var(--teal-glow); color: var(--teal-dim); }

.guided-hero-subtitle { font-size: 1.05rem; line-height: 1.8; margin-bottom: var(--s4); font-style: italic; }

.guided-journey-list { padding: var(--s5); background: var(--deep); border: 1px solid var(--border); border-radius: var(--radius-md); }
.guided-step-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.guided-step-list-item {
    display: flex; align-items: center; gap: var(--s4);
    padding: var(--s3) var(--s4); border: 1px solid transparent;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.guided-step-list-item:hover { border-color: var(--teal-light); background: var(--teal-glow); }
.guided-step-list-item--done .guided-step-list-title { color: var(--teal-dim); }
.guided-step-list-num {
    font-family: var(--font-ui); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.12em; color: var(--amber); min-width: 2.2em;
}
.guided-step-list-link { flex: 1; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 2px; }
.guided-step-list-title { font-family: var(--font-h); font-size: 1.05rem; }
.guided-step-list-check { color: var(--teal); }
.guided-step-list-check svg { width: 18px; height: 18px; }

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .bindu-point { animation: none !important; }
    .fade-in, .slide-up { opacity: 1 !important; transform: none !important; }
}

/* =============================================
   LANDING PAGE
   ============================================= */

/* ---- Landing Nav ---- */
.landing-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.5s var(--ease);
}
.landing-nav.scrolled { background: rgba(255, 255, 255, 0.96); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.landing-nav .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.landing-nav-brand {
    font-family: var(--font-h); font-size: 1.3rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink); font-weight: 600;
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.landing-nav-brand svg { width: 28px; height: 28px; }
.landing-nav-brand:hover { color: var(--teal-light); }

.landing-nav-links { display: flex; align-items: center; gap: 6px; }
.landing-nav-links a:not(.btn) {
    font-family: var(--font-ui); color: var(--ink-soft); font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    padding: 8px 16px; border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease); text-decoration: none;
}
.landing-nav-links a:not(.btn):hover { color: var(--teal-light); background: var(--teal-glow); }
.landing-nav-links .btn { margin-left: 4px; }

.landing-hamburger { display: none; }

/* ---- Landing Eyebrow ---- */
.landing-eyebrow {
    display: inline-block; font-family: var(--font-ui);
    font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.22em; color: var(--teal); margin-bottom: 20px;
}

/* ---- Hero ---- */
.landing-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 120px 0 80px;
}

.landing-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 75% 55% at 50% 15%, rgba(142, 232, 228, 0.55) 0%, transparent 62%),
        radial-gradient(ellipse 50% 40% at 15% 85%, rgba(253, 232, 184, 0.45) 0%, transparent 58%),
        radial-gradient(circle 10px at 50% 42%, rgba(232, 160, 64, 0.85) 0%, rgba(232, 160, 64, 0) 70%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 55%, var(--teal-mist) 100%);
}

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

.landing-hero-content h1 {
    font-size: 4.4rem; font-weight: 500; line-height: 1.1;
    color: var(--ink); margin-bottom: 26px; letter-spacing: 0.015em;
}

.landing-hero-content > p {
    font-size: 1.15rem; line-height: 1.9; color: var(--text-secondary);
    max-width: 560px; margin: 0 auto 44px;
}

.landing-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.landing-hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1;
}
.landing-hero-scroll span { font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scrollPulse var(--breath) ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.25; } }

/* ---- Sections ---- */
.landing-section { padding: 110px 0; }

.landing-section-header { max-width: 600px; margin: 0 auto 60px; text-align: center; }
.landing-section-header h2 { margin-bottom: 14px; font-size: 2.4rem; }
.landing-section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }

/* ---- Philosophy ---- */
.landing-philosophy { background: var(--cream-warm); }

.landing-philosophy-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start;
}

.landing-philosophy-text h2 { margin-bottom: 22px; }
.landing-philosophy-text p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 18px; }

.landing-philosophy-features { display: flex; flex-direction: column; gap: 34px; }

.landing-feature { display: flex; gap: 20px; align-items: flex-start; }
.landing-feature-icon {
    width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
    background: var(--teal-mist); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}
.landing-feature-icon svg { width: 22px; height: 22px; color: var(--teal); }
.landing-feature h4 { font-family: var(--font-h); font-weight: 600; font-size: 1.15rem; margin-bottom: 6px; }
.landing-feature p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ---- Offerings ---- */
.landing-offerings { background: var(--cream); }

.landing-offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.landing-offering-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all 0.5s var(--ease); position: relative;
}
.landing-offering-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-light); }

.landing-offering-badge { padding: 26px 28px 0; }

.landing-offering-body { padding: 18px 28px 30px; }
.landing-offering-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.landing-offering-subtitle {
    display: block; font-family: var(--font-h); font-size: 1rem; color: var(--gold-warm); font-style: italic;
    margin-bottom: 16px; font-weight: 400;
}
.landing-offering-body > p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }

.landing-offering-details {
    display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px;
}
.landing-offering-details span {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-ui); font-size: 0.76rem; letter-spacing: 0.04em; color: var(--text-secondary);
}
.landing-offering-details svg { width: 14px; height: 14px; color: var(--teal); }

/* ---- Journey Steps ---- */
.landing-journey { background: var(--surface); }

.landing-journey-stages { max-width: 660px; margin: 0 auto; }

.landing-stage {
    display: flex; gap: 34px; align-items: flex-start;
}
.landing-stage-number {
    font-family: var(--font-h); font-size: 2.8rem; font-weight: 500;
    color: var(--teal-dim); line-height: 1; flex-shrink: 0; width: 64px; text-align: center;
}
.landing-stage-content h3 { font-size: 1.4rem; margin-bottom: 12px; }
.landing-stage-content p { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.85; }

.landing-stage-line {
    width: 1px; height: 52px; background: linear-gradient(var(--horizon), transparent);
    margin: 0 auto; margin-left: 32px;
}

/* ---- Practice Types ---- */
.landing-practices { background: var(--cream-warm); }

.landing-practices-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center;
}

.landing-practices-text h2 { margin-bottom: 18px; }
.landing-practices-text p { color: var(--text-secondary); line-height: 1.85; }

.landing-practices-list { display: flex; flex-direction: column; gap: 20px; }

.landing-practice-type {
    display: flex; gap: 18px; align-items: center;
    padding: 22px 26px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}
.landing-practice-type:hover { box-shadow: var(--shadow-sm); border-color: var(--horizon); transform: translateX(4px); }
.landing-practice-type h4 { font-family: var(--font-h); font-weight: 600; font-size: 1.15rem; margin-bottom: 3px; }
.landing-practice-type p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---- Testimonial / Featured quote ---- */
.landing-testimonial { background: var(--cream-warm); padding: 90px 0; }

.landing-testimonial-card {
    text-align: center; max-width: 700px; margin: 0 auto;
    padding: 56px 48px; position: relative;
}
.landing-quote-icon { width: 44px; height: 44px; color: var(--amber); margin-bottom: 26px; }

.landing-testimonial-card blockquote {
    font-family: var(--font-h); font-size: 1.7rem; line-height: 1.6;
    color: var(--ink); font-style: italic; font-weight: 400; margin-bottom: 26px;
}
.landing-testimonial-card cite {
    font-family: var(--font-ui); font-style: normal; font-size: 0.74rem; font-weight: 500;
    text-transform: uppercase; color: var(--teal); letter-spacing: 0.14em;
}

/* ---- About ---- */
.landing-about { background: var(--cream); }

.landing-about-grid {
    display: grid; grid-template-columns: 380px 1fr; gap: 76px; align-items: center;
}
.landing-about-placeholder {
    width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-xl);
    background: radial-gradient(ellipse 90% 90% at 50% 40%, rgba(142, 232, 228, 0.35) 0%, var(--cream-warm) 70%);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}
.landing-about-placeholder svg { width: 72px; height: 72px; color: var(--teal); opacity: 0.5; }

.landing-about-text h2 { margin-bottom: 22px; }
.landing-about-text p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }

/* ---- CTA ---- */
.landing-cta { background: var(--teal-mist); padding: 70px 0 110px; }

.landing-cta-card {
    text-align: center; max-width: 700px; margin: 0 auto;
    background:
        radial-gradient(ellipse 80% 120% at 50% 0%, rgba(142, 232, 228, 0.4) 0%, transparent 60%),
        linear-gradient(160deg, var(--surface) 0%, var(--cream-warm) 70%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 70px 48px;
    position: relative; overflow: hidden;
}
.landing-cta-card::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    border: 1px solid rgba(78, 205, 196, 0.12);
}
.landing-cta-card::after {
    content: ''; position: absolute; bottom: -40px; left: 40px;
    width: 130px; height: 130px; border-radius: 50%;
    border: 1px solid rgba(232, 160, 64, 0.12);
}
.landing-cta-card h2 { position: relative; z-index: 1; margin-bottom: 16px; font-size: 2.4rem; }
.landing-cta-card p {
    position: relative; z-index: 1;
    font-size: 1.05rem; color: var(--text-secondary); line-height: 1.85;
    max-width: 500px; margin: 0 auto 36px;
}
.landing-cta-card .landing-hero-actions { position: relative; z-index: 1; }

/* ---- Landing Footer ---- */
.landing-footer {
    background: var(--void); padding: 46px 0; text-align: center;
    border-top: 1px solid var(--border);
}
.landing-footer-brand {
    font-family: var(--font-h); font-size: 1.1rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink); margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.landing-footer-brand svg { width: 22px; height: 22px; }
.landing-footer p { font-family: var(--font-ui); font-size: 0.68rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- Landing Responsive ---- */
@media (max-width: 1024px) {
    .landing-philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
    .landing-offerings-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-practices-grid { grid-template-columns: 1fr; gap: 48px; }
    .landing-about-grid { grid-template-columns: 1fr; gap: 48px; }
    .landing-about-placeholder { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .landing-nav-links {
        display: none; position: absolute; top: 76px; left: 0; right: 0;
        flex-direction: column; background: var(--night);
        border-bottom: 1px solid var(--border); padding: 16px;
        box-shadow: var(--shadow-md); gap: 4px;
    }
    .landing-nav-links.open { display: flex; }
    .landing-nav-links a:not(.btn) { padding: 12px 16px; width: 100%; }
    .landing-nav-links .btn { width: 100%; margin-left: 0; margin-top: 4px; }
    .landing-hamburger { display: block; }

    .landing-hero { min-height: auto; padding: 140px 0 80px; }
    .landing-hero-content h1 { font-size: 2.8rem; }
    .landing-hero-content > p { font-size: 1.05rem; }
    .landing-hero-scroll { display: none; }

    .landing-section { padding: 70px 0; }
    .landing-section-header h2 { font-size: 1.9rem; }

    .landing-offerings-grid { grid-template-columns: 1fr; }

    .landing-stage { gap: 22px; }
    .landing-stage-number { font-size: 2rem; width: 46px; }
    .landing-stage-line { margin-left: 23px; height: 36px; }

    .landing-testimonial-card { padding: 32px 24px; }
    .landing-testimonial-card blockquote { font-size: 1.3rem; }

    .landing-cta-card { padding: 48px 28px; }
    .landing-cta-card h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .landing-hero-content h1 { font-size: 2.3rem; }
    .landing-hero-actions { flex-direction: column; }
    .landing-hero-actions .btn { width: 100%; }
}
