/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: hidden; max-width: 100%; background: #0a1628; color: #e8f0ff; font-family: 'Poppins', Arial, sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 30px; color: #fff; font-family: 'Poppins', Arial, sans-serif; font-size: 15px; font-weight: 500; letter-spacing: -0.02em; cursor: pointer; transition: opacity .2s, transform .2s; white-space: nowrap; }
.btn-primary { background: linear-gradient(180deg, #4a7fd4 0%, #2d5fa8 100%); border: 1px solid #3d6fc0; }
.btn-primary:hover { opacity: .85; transform: translateY(-1px); }
.btn-secondary { background: transparent; border: 1px solid rgba(74,127,212,.4); transition: background .2s, transform .2s; }
.btn-secondary:hover { background: rgba(74,127,212,.15); transform: translateY(-1px); }

/* ===== BADGE ===== */
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 10px; border-radius: 100px; background: rgba(74,127,212,.2); font-family: 'Poppins', Arial, sans-serif; font-size: 15px; letter-spacing: -0.02em; color: #e8f0ff; margin-bottom: 20px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4a7fd4; flex-shrink: 0; }
.badge-dot--purple, .badge-dot--glow { background: radial-gradient(circle, #4a7fd4, rgba(74,127,212,.6)); box-shadow: 0 0 7px rgba(74,127,212,.7); }

/* ===== TYPOGRAPHY ===== */
.section-heading { font-family: 'Nohemi', Arial, sans-serif; font-weight: 300; font-size: clamp(28px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.03em; color: #e8f0ff; margin-bottom: 18px; }
.section-heading--center { text-align: center; }
.section-sub { font-family: 'Poppins', Arial, sans-serif; font-size: 16px; font-weight: 300; line-height: 1.6; color: rgba(232,240,255,.7); margin-bottom: 28px; }
.section-sub--center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; display: flex; flex-direction: column; align-items: center; background: #1a0a2e; -webkit-mask: linear-gradient(#000 0% 75%, transparent 100%); mask: linear-gradient(#000 0% 75%, transparent 100%); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-sky-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-moon { display: none; }
.hero-moon img { width: 100%; height: auto; }
.moon-label-left, .moon-label-right { position: absolute; top: 50%; transform: translateY(-50%); color: #e8f0ff; font-family: 'Poppins', Arial, sans-serif; font-size: clamp(14px, 1.4vw, 22px); font-weight: 300; white-space: nowrap; letter-spacing: .04em; text-shadow: 0 0 18px rgba(74,127,212,.4); pointer-events: none; }
.moon-label-left { right: calc(100% + 18px); text-align: right; }
.moon-label-right { left: calc(100% + 18px); text-align: left; margin-left: 20%; }
.hero-gayle { position: absolute; bottom: 30px; left: 48%; transform: translateX(-50%); width: min(70.2%, 676px); min-width: 390px; z-index: 8; }
.hero-gayle img { width: 100%; height: auto; object-fit: contain; }
.hero-mask { position: absolute; inset: 0; z-index: 1; background: #0d1e3a; -webkit-mask: linear-gradient(transparent 80%, #000 100%); mask: linear-gradient(transparent 80%, #000 100%); }
.hero-blur { position: absolute; bottom: 0; left: 0; right: 0; height: 225px; z-index: 10; background-color: #0a1628; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); -webkit-mask: linear-gradient(transparent 0%, #000 84%); mask: linear-gradient(transparent 0%, #000 84%); }
.hero-content { position: relative; z-index: 7; width: 100%; max-width: 1200px; padding: 0 64px 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; }
.hero-top-bar { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.hero-title { font-family: 'Nohemi', Arial, sans-serif; font-weight: 100; font-size: clamp(40px, 7vw, 110px); line-height: .85; letter-spacing: -0.06em; color: #e8f0ff; text-transform: uppercase; text-align: center; white-space: nowrap; margin-bottom: 24px; }
.hero-subtitle { font-family: 'Nohemi', Arial, sans-serif; font-weight: 300; font-size: clamp(14px, 2vw, 22px); letter-spacing: 0.25em; color: #e8f0ff; text-align: center; margin-top: 12px; text-transform: uppercase; }
.hero-tagline { font-family: 'Nohemi', Arial, sans-serif; font-weight: 300; font-size: clamp(11px, 1.2vw, 15px); letter-spacing: 0.08em; color: #ffffff; text-align: center; margin-top: 30px; max-width: 480px; line-height: 1.6; }
.hero-cta-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.hero-btn { font-family: 'Poppins', Arial, sans-serif; font-weight: 500; font-size: 15px; letter-spacing: -0.02em; text-transform: none; text-decoration: none; padding: 14px 28px; border-radius: 30px; transition: opacity .2s, transform .2s; cursor: pointer; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.hero-btn-primary { background: linear-gradient(180deg, #4a7fd4 0%, #2d5fa8 100%); border: 1px solid #3d6fc0; color: #fff; }
.hero-btn-primary:hover { opacity: .85; transform: translateY(-1px); }
.hero-btn-secondary { background: transparent; border: 2px solid #4a7fd4; color: #fff; }
.hero-btn-secondary:hover { opacity: .85; transform: translateY(-1px); }
.hero-mobile-tagline { display: none; }

/* ===== HERO DETAIL ===== */
.hero-detail { background: #0a1628; padding: 24px 32px 0; display: flex; justify-content: center; overflow: hidden; }
.hero-detail-inner { display: flex; flex-direction: row; align-items: flex-end; gap: 38px; width: 100%; max-width: 1200px; background: linear-gradient(180deg, #1e3a6e 0%, #16305a 100%); border-radius: 36px; padding: 9px; min-height: 672px; box-shadow: 40px 30px 50px -1.75px rgba(10,22,40,.4); overflow: visible; }
.hero-detail-visual { flex: 0 0 42%; max-width: 450px; position: relative; display: flex; align-items: flex-end; justify-content: center; height: 680px; padding-left: 10px; align-self: flex-end; }
.hero-detail-portrait-wrap { position: absolute; bottom: 0; left: 32px; z-index: 0; }
.hero-detail-portrait-border { border: 2px solid #4a7fd4; border-radius: 8px; padding: 4px; width: 360px; height: 580px; overflow: hidden; }
.hero-detail-portrait-border img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 4px; }
.hero-detail-overlay-img { position: absolute; bottom: 0; left: 0; width: 340px; z-index: 1; }
.hero-detail-overlay-img img { width: 100%; height: auto; object-fit: contain; }
.hero-detail-text { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 48px 48px 48px 0; align-self: center; }
.hero-detail-heading { font-family: 'Nohemi', Arial, sans-serif; font-weight: 300; font-size: clamp(26px, 3.5vw, 48px); line-height: 1.1; letter-spacing: -0.03em; color: #e8f0ff; margin-bottom: 18px; }
.hero-detail-sub { font-family: 'Poppins', Arial, sans-serif; font-size: 16px; font-weight: 300; line-height: 1.6; color: rgba(232,240,255,.75); margin-bottom: 28px; }
.hero-detail-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== PROCESS ===== */
.process { background: #0a1628; padding: 80px 32px; }
.process-inner { display: flex; gap: 48px; max-width: 1200px; margin: 0 auto; align-items: flex-start; }
.process-image { flex: 0 0 38%; max-width: 480px; border-radius: 16px; overflow: hidden; align-self: flex-start; }
.process-image img { width: 100%; height: auto; object-fit: cover; border-radius: 16px; object-position: center 25%; }
.process-content { flex: 1; display: flex; flex-direction: column; }
.process-cta { margin-bottom: 32px; }
.process-divider { width: 100%; height: 1px; background: rgba(74,127,212,.3); margin-bottom: 32px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; align-items: flex-start; gap: 24px; }
.process-step-num { font-family: 'Nohemi', Arial, sans-serif; font-weight: 700; font-size: clamp(36px, 5vw, 56px); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px #4a7fd4; opacity: 0.7; min-width: 64px; padding-top: 4px; flex-shrink: 0; }
.process-step-body { padding: 8px 0 32px; border-left: 1px solid rgba(74,127,212,.25); padding-left: 24px; flex: 1; }
.process-step-title { font-family: 'Nohemi', Arial, sans-serif; font-weight: 700; font-size: clamp(17px, 2vw, 22px); line-height: 1.3; letter-spacing: -0.01em; color: #e8f0ff; margin-bottom: 10px; }
.process-step-text { font-family: 'Poppins', Arial, sans-serif; font-size: 15px; font-weight: 300; letter-spacing: -0.02em; color: rgba(255,255,255,0.75); line-height: 1.7; }
.process-step-line { display: none; }

/* ===== TIMELINE (Option E) ===== */
.process--timeline { padding: 90px 32px 100px; }
.timeline-inner { max-width: 1200px; margin: 0 auto; }
.timeline-header { text-align: center; margin-bottom: 80px; }
.timeline-header .badge { justify-content: flex-start; }

/* Track: holds the line + 3 points */
.timeline-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

/* Glowing horizontal line */
.timeline-line { position: absolute; top: 52px; left: calc(100% / 6); right: calc(100% / 6); height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(126,179,255,0.25) 10%, #7eb3ff 35%, #a78bfa 65%, rgba(126,179,255,0.25) 90%, transparent 100%); box-shadow: 0 0 12px rgba(126,179,255,0.5), 0 0 28px rgba(126,179,255,0.2); z-index: 0; }

/* Each timeline point */
.timeline-point { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 28px 0; position: relative; z-index: 1; }

/* Icon + node stacked */
.timeline-icon-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 28px; }
.timeline-icon { font-size: 32px; color: #7eb3ff; line-height: 1; filter: drop-shadow(0 0 10px rgba(126,179,255,0.7)); transition: filter 0.3s ease, transform 0.3s ease; }
.timeline-point:hover .timeline-icon { filter: drop-shadow(0 0 18px rgba(167,139,250,0.9)); transform: scale(1.15); }

/* Glowing node dot on the line */
.timeline-node { width: 16px; height: 16px; border-radius: 50%; background: #7eb3ff; box-shadow: 0 0 0 4px rgba(126,179,255,0.2), 0 0 16px rgba(126,179,255,0.7), 0 0 32px rgba(126,179,255,0.3); transition: background 0.3s ease, box-shadow 0.3s ease; }
.timeline-point:hover .timeline-node { background: #a78bfa; box-shadow: 0 0 0 4px rgba(167,139,250,0.25), 0 0 20px rgba(167,139,250,0.8), 0 0 40px rgba(167,139,250,0.35); }

/* Text below node */
.timeline-content { display: flex; flex-direction: column; gap: 12px; }
.timeline-heading { font-family: 'Nohemi', Arial, sans-serif; font-weight: 800; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.2; letter-spacing: -0.02em; color: #e8f0ff; margin: 0; }
.timeline-text { font-family: 'Poppins', Arial, sans-serif; font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.68); line-height: 1.75; margin: 0; }

/* ===== ABOUT ===== */
.about { position: relative; padding: 100px 32px; overflow: hidden; }
.about-bg { position: absolute; inset: 0; z-index: 0; }
.about-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,.75) 0%, rgba(16,30,58,.92) 100%); }
.about-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.about-card { background: linear-gradient(135deg, rgba(26,45,77,.85) 0%, rgba(16,30,58,.95) 100%); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 36px; padding: 52px; display: flex; gap: 52px; align-items: flex-start; border: 1px solid rgba(160, 200, 255, 0.35); box-shadow: 0 0 32px rgba(100, 160, 255, 0.2), 0 0 80px rgba(100, 160, 255, 0.08), inset 0 0 24px rgba(100, 160, 255, 0.06); position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(74,127,212,.18) 0%, transparent 70%); pointer-events: none; }
.about-card::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(167,139,250,.12) 0%, transparent 70%); pointer-events: none; }
.about-portrait-col { flex: 0 0 auto; align-self: flex-start; }
.about-portrait-border { border: 2px solid rgba(126,179,255,.55); border-radius: 16px; padding: 4px; width: 280px; height: 420px; overflow: hidden; box-shadow: 0 0 18px rgba(126,179,255,.3), 0 0 40px rgba(126,179,255,.12); }
.about-portrait-inner { border-radius: 12px; overflow: hidden; width: 100%; height: 100%; }
.about-portrait-inner img { width: 100%; height: 100%; object-fit: cover; }
.about-content-col { flex: 1; display: flex; flex-direction: column; }
.about-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 20px; background: rgba(30,58,110,.8); border: 1px solid rgba(126,179,255,.3); font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 500; letter-spacing: -0.02em; color: #e8f0ff; margin-bottom: 24px; width: fit-content; box-shadow: 0 0 10px rgba(100,160,255,.15); }
.about-heading { font-family: 'Nohemi', Arial, sans-serif; font-weight: 300; font-size: clamp(22px, 3vw, 36px); line-height: 1.15; color: #e8f0ff; margin-bottom: 20px; font-style: normal; }
.about-text p { font-family: 'Poppins', Arial, sans-serif; font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(232,240,255,.8); margin-bottom: 14px; }
.modalities-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.modality-tag { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid rgba(74,127,212,.4); border-radius: 20px; font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 300; color: rgba(232,240,255,.8); }
.about-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ===== MEDITATIONS ===== */
.meditations { background: #0a1628; padding: 80px 32px 60px; display: flex; flex-direction: column; align-items: center; overflow: hidden; }
.meditations-text { display: flex; flex-direction: column; align-items: center; max-width: 700px; text-align: center; margin-bottom: 48px; }
.meditations-visual { width: 100%; max-width: 1200px; height: 500px; overflow: hidden; position: relative; box-shadow: inset 0 -59px 52px rgba(10,22,40,.7); }
.meditations-group-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.meditations-group-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.meditations-cosmic-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,.3) 0%, rgba(16,30,58,.2) 40%, rgba(26,45,77,.35) 100%); mix-blend-mode: multiply; pointer-events: none; }

/* ===== SS FEATURED ===== */
.ss-featured-section { background: #0f1f3d; padding: 90px 24px; position: relative; overflow: hidden; }
.ss-featured-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(74,127,212,.2) 0%, transparent 70%); pointer-events: none; }
.ss-featured-inner { max-width: 1160px; margin: 0 auto; text-align: center; position: relative; }
.ss-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 52px 0 48px; text-align: left; }
.ss-featured-card { background: rgba(30,58,110,.6); border: 1px solid rgba(74,127,212,.25); border-radius: 20px; overflow: hidden; transition: border-color .3s, background .3s, transform .25s; display: flex; flex-direction: column; }
.ss-featured-card:hover { border-color: rgba(74,127,212,.5); background: rgba(30,58,110,.85); transform: translateY(-4px); }
.ss-featured-img-wrap { display: block; aspect-ratio: 4/3; overflow: hidden; background: rgba(74,127,212,.15); }
.ss-featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ss-featured-card:hover .ss-featured-img-wrap img { transform: scale(1.05); }
.ss-featured-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.ss-featured-tag { font-family: 'Poppins', Arial, sans-serif; font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(232,240,255,.5); margin-bottom: 8px; }
.ss-featured-title { font-family: 'Nohemi', Arial, sans-serif; font-size: 19px; font-weight: 400; color: #e8f0ff; margin: 0 0 10px; line-height: 1.35; }
.ss-featured-desc { font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 300; color: rgba(232,240,255,.65); line-height: 1.75; margin: 0 0 20px; flex: 1; }
.ss-featured-btn { display: inline-block; background: linear-gradient(180deg, #4a7fd4 0%, #2d5fa8 100%); color: #fff; font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 500; padding: 10px 22px; border-radius: 100px; text-decoration: none; transition: opacity .2s, transform .2s; align-self: flex-start; }
.ss-featured-btn:hover { opacity: .85; transform: translateY(-1px); }
.ss-featured-cta { margin-top: 8px; }

/* ===== COMMUNITY ===== */
.community { background: #0a1628; padding: 80px 32px; }
.community-text { display: flex; flex-direction: column; align-items: center; max-width: 700px; margin: 0 auto 60px; text-align: center; }
.community-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.community-feature-card { background: #1a2d4d; border: 1px solid rgba(74,127,212,.25); border-radius: 32px; overflow: hidden; display: flex; flex-direction: column; }
.cf-visual { width: 100%; height: 260px; overflow: hidden; position: relative; -webkit-mask: linear-gradient(#000 57%, transparent 100%); mask: linear-gradient(#000 57%, transparent 100%); }
.cf-copy { padding: 24px; }
.cf-heading { font-family: 'Nohemi', Arial, sans-serif; font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: #e8f0ff; margin-bottom: 10px; }
.cf-sub { font-family: 'Poppins', Arial, sans-serif; font-size: 14px; font-weight: 300; color: rgba(232,240,255,.7); line-height: 1.6; }
.cf-notifications { padding: 24px; display: flex; flex-direction: column; gap: 12px; background: radial-gradient(ellipse at 50% -20%, rgba(74,127,212,.15), transparent 70%); }
.notification-item { display: flex; gap: 10px; align-items: flex-start; background: rgba(252,252,252,.53); border: 1px solid #eff1f3; backdrop-filter: blur(4px); border-radius: 16px; padding: 12px 14px; }
.notif-icon { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.notif-body { flex: 1; }
.notif-header { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.notif-title { font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 500; color: #2d2640; }
.notif-time, .notif-text { font-family: 'Poppins', Arial, sans-serif; font-size: 12px; color: rgba(45,38,64,.65); }
.notif-time { flex-shrink: 0; }
.notif-1 { opacity: .6; } .notif-2 { opacity: .8; } .notif-3 { opacity: 1; }
.cf-faces { display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at 50% -20%, rgba(122,159,216,.15), transparent 70%); }
.faces-ring { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.faces-rings-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border: solid rgba(74,127,212,.5); border-radius: 50%; }
.ring-1 { width: 200px; height: 200px; border-width: 7px; opacity: .6; }
.ring-2 { width: 160px; height: 160px; border-width: 6px; opacity: .4; }
.ring-3 { width: 120px; height: 120px; border-width: 5px; opacity: .2; }
.center-face { width: 80px; height: 80px; border-radius: 50%; border: 3px solid rgba(74,127,212,.5); overflow: hidden; z-index: 2; position: relative; }
.center-face img { width: 100%; height: 100%; object-fit: cover; }
.orbit-face { position: absolute; width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(74,127,212,.4); object-fit: cover; }
.face-a { top: 0; left: 50%; transform: translateX(-50%) translateY(-50%); }
.face-b { top: 50%; right: 0; transform: translateY(-50%) translateX(50%); }
.face-c { bottom: 0; left: 50%; transform: translateX(-50%) translateY(50%); }
.face-d { top: 50%; left: 0; transform: translateY(-50%) translateX(-50%); }
.face-e { top: 15%; right: 10%; }
.cf-photos, .cf-phones { display: flex; align-items: flex-end; justify-content: center; padding: 24px 16px 0; background: radial-gradient(ellipse at 50% -20%, rgba(74,127,212,.15), transparent 70%); }
.cf-photos { gap: 10px; }
.cf-phones { gap: 16px; }
.cf-photo { border-radius: 20px; overflow: hidden; flex: 0 0 30%; height: 200px; }
.cf-photo img { width: 100%; height: 100%; object-fit: cover; }
.cf-photo-1 { transform: rotate(-11deg); }
.cf-photo-2 { transform: rotate(-3deg); }
.cf-photo-3 { transform: rotate(8deg); }
.cf-iphone { flex: 0 0 auto; width: 100px; height: 200px; border-radius: 18px; overflow: hidden; border: 2px solid rgba(74,127,212,.3); background: #1e3a6e; }
.cf-iphone-screen { width: 100%; height: 100%; }
.cf-iphone-screen img { width: 100%; height: 100%; object-fit: cover; }
.cf-iphone-left { transform: rotate(-7deg); }
.cf-iphone-right { transform: rotate(12deg); }

/* ===== JOIN ===== */
.join { background: #0a1628; padding: 80px 32px; }
.join-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.join-text { display: flex; flex-direction: column; align-items: center; max-width: 700px; text-align: center; margin-bottom: 48px; }
.join-cards { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.join-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.join-card-group { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.dest-card-btn { display: none; }
.destination-card { width: 280px; height: 360px; border-radius: 32px; overflow: hidden; position: relative; background: #1e3a6e; flex-shrink: 0; }
.dest-card-inner { position: absolute; inset: 0; overflow: hidden; }
.dest-sky { position: absolute; inset: 0; }
.dest-sky img { width: 100%; height: 100%; object-fit: cover; }
.dest-title { position: absolute; top: 48px; left: 50%; transform: translateX(-50%); font-family: 'Nohemi', Arial, sans-serif; font-weight: 700; font-size: clamp(28px, 5vw, 42px); letter-spacing: -0.03em; color: #fff; white-space: nowrap; z-index: 2; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.dest-image { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; z-index: 1; }
.dest-image img { width: 100%; height: auto; object-fit: contain; }
.dest-image--shasta { width: 100%; }
.dest-footer { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; padding: 16px 20px; background: linear-gradient(transparent, rgba(5,5,5,.9) 60%); display: flex; align-items: flex-end; gap: 10px; }
.dest-footer-icon { width: 28px; height: 28px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dest-footer-text { display: flex; flex-direction: column; gap: 2px; }
.dest-name { font-family: 'Inter', Arial, sans-serif; font-size: 13px; font-weight: 500; color: #fff; letter-spacing: -0.02em; }
.dest-sub { font-family: 'Inter', Arial, sans-serif; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.65); }
.dest-overlay-link { position: absolute; inset: 0; z-index: 5; }


/* ===== QUOTE ===== */
.quote-section { background: #0a1628; padding: 160px 32px; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; }
.quote-crystals { position: absolute; inset: 0; pointer-events: none; }
.crystal { position: absolute; object-fit: contain; }
.crystal-1 { width: 200px; top: -18px; left: 24px; transform: perspective(1200px) rotate(-30deg) scale(.8); }
.crystal-2 { width: 160px; bottom: 23px; left: 103px; transform: perspective(1200px) rotate(-105deg) scale(.8); }
.crystal-3 { width: 120px; top: -30px; right: 64px; transform: perspective(1200px) rotate(26deg) scale(.8); }
.crystal-4 { width: 100px; bottom: -19px; right: 152px; transform: perspective(1200px) scale(.8); }
.quote-text-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 20px; max-width: 900px; text-align: center; }
.quote-line { font-family: 'Coconat', Georgia, serif; font-weight: 400; font-size: clamp(22px, 3.5vw, 38px); color: #e8f0ff; line-height: 1.1; }
.quote-pill { width: 90px; height: 50px; border-radius: 100px; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.quote-pill img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FAQ ===== */
.faq { background: #0a1628; padding: 80px 32px 100px; }
.faq-inner { max-width: 1120px; margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.faq-headline { flex: 0 0 340px; display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.faq-heading { font-family: 'Nohemi', Arial, sans-serif; font-weight: 300; font-size: clamp(22px, 2.8vw, 36px); line-height: 1.15; letter-spacing: -0.04em; color: #e8f0ff; }
.faq-heading-accent { color: rgba(232,240,255,.5); }
.faq-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.faq-list { flex: 1; background: #1a2d4d; border-radius: 24px; padding: 24px 8px 8px; }
.faq-item { padding: 20px 25px; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; text-align: left; padding: 0; }
.faq-question span { font-family: 'Nohemi', Arial, sans-serif; font-weight: 500; font-size: 20px; letter-spacing: -0.035em; color: #e8f0ff; }
.faq-icon { width: 32px; height: 32px; border-radius: 1000px; background: #1e3a6e; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s; }
.faq-item.faq-open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding-top: 16px; }
.faq-answer[hidden] { display: none; }
.faq-answer p { font-family: 'Poppins', Arial, sans-serif; font-size: 15px; font-weight: 500; letter-spacing: -0.035em; color: rgba(232,240,255,.7); line-height: 1.6; }
.faq-divider { height: 1px; background: rgba(74,127,212,.25); margin: 0 25px; }

/* ===== CTA ===== */
.cta-section { background: #0a1628; padding: 0 32px 28px; }
.cta-outer { max-width: 1280px; margin: 0 auto; }
.cta-card { background: linear-gradient(180deg, #1e3a6e 0%, #16305a 100%); border-radius: 16px; padding: 24px 28px; display: flex; flex-direction: row; align-items: center; gap: 24px; border: 1px solid rgba(160, 200, 255, 0.35); box-shadow: 0 0 18px rgba(100, 160, 255, 0.18), inset 0 0 12px rgba(100, 160, 255, 0.06); }
.cta-left { flex: 1; display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 8px; }
.cta-right { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cta-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 20px; background: #4a7fd4; font-family: 'Poppins', Arial, sans-serif; font-size: 14px; font-weight: 500; color: #fff; }
.cta-heading { font-family: 'Nohemi', Arial, sans-serif; font-weight: 300; font-size: clamp(16px, 1.6vw, 22px); line-height: 1.2; letter-spacing: -0.03em; color: #e8f0ff; }
.cta-sub { font-family: 'Poppins', Arial, sans-serif; font-size: 14px; font-weight: 300; line-height: 1.5; color: rgba(232,240,255,.75); max-width: 580px; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap { width: 100%; margin-top: 0; }
#contactForm { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm textarea { width: 100%; box-sizing: border-box; background: rgba(30,58,110,0.6); border: 1px solid rgba(74,127,212,0.3); border-radius: 12px; padding: 14px 18px; color: #e8f0ff; font-family: 'Poppins', Arial, sans-serif; font-size: 15px; font-weight: 300; outline: none; transition: border-color .2s; }
#contactForm input::placeholder,
#contactForm textarea::placeholder { color: rgba(232,240,255,0.4); }
#contactForm input:focus,
#contactForm textarea:focus { border-color: rgba(74,127,212,0.7); }
#contactForm textarea { min-height: 130px; resize: vertical; }
.contact-submit { width: 100%; justify-content: center; margin-top: 16px; }
#formStatus { font-family: 'Poppins', Arial, sans-serif; font-size: 14px; min-height: 20px; }
@media (max-width: 600px) { .contact-form-row { grid-template-columns: 1fr; } }

/* ===== IG FLOATING ===== */
.ig-floating { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; background: rgba(74,127,212,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 100; transition: transform .2s; backdrop-filter: blur(8px); }
.ig-floating:hover { transform: scale(1.1); }

/* ===== FOOTER ===== */
.footer { background: #0d1e3a; padding: 60px 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: flex-start; text-align: left; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name { font-family: 'Poppins', Arial, sans-serif; font-size: 22px; font-weight: 600; color: #e8f0ff; letter-spacing: 0.02em; margin: -8px 0 4px; }
.footer-brand-tagline { font-family: 'Poppins', Arial, sans-serif; font-size: 16px; font-style: italic; color: #b0bcd4; margin: 0; line-height: 1.5; }
.footer-col-heading { font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 600; color: #ffffff; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 4px; }
.footer-nav { display: flex; flex-direction: column; flex-wrap: wrap; gap: 10px 20px; align-items: flex-start; }
.footer-nav a { font-family: 'Poppins', Arial, sans-serif; font-size: 15px; font-weight: 300; color: rgba(232,240,255,.6); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: #e8f0ff; }
.footer-credit { font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 300; color: rgba(232,240,255,.4); margin: 0; margin-top: -4px; text-align: right; margin-right: 40px; }
.footer-vibe { font-family: 'Poppins', Arial, sans-serif; font-size: 13px; margin-top: 8px; }

/* ===== NAV ===== */
.site-nav-hamburger { display: flex; flex-direction: column; gap: 6px; background: rgba(10,22,40,.9); border: 1px solid rgba(74,127,212,.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 12px; cursor: pointer; padding: 12px 13px; position: fixed; top: 22px; right: 22px; z-index: 310; transition: background .25s, border-color .25s; }
.site-nav-hamburger:hover { background: rgba(26,45,77,.98); border-color: rgba(74,127,212,.6); }
.site-nav-hamburger span { display: block; width: 22px; height: 2px; background: #e8f0ff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.site-nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.site-nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.site-nav-overlay { display: none; position: fixed; inset: 0; z-index: 290; background: rgba(5,10,20,.6); backdrop-filter: blur(3px); }
.site-nav-overlay.open { display: block; }
.site-nav-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 85vw; z-index: 300; background: rgba(10,22,40,.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-left: 1px solid rgba(74,127,212,.15); display: flex; flex-direction: column; padding: 36px 0 40px; gap: 0; transform: translateX(110%); transition: transform .35s cubic-bezier(.4,0,.2,1); overflow-y: auto; }
.site-nav-drawer.open { transform: translateX(0); }
.site-nav-drawer .drawer-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; background: rgba(74,127,212,.15); border: 1px solid rgba(74,127,212,.25); color: rgba(232,240,255,.7); font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; flex-shrink: 0; }
.site-nav-drawer .drawer-close:hover { background: rgba(74,127,212,.25); color: #e8f0ff; }
.site-nav-drawer .drawer-logo { display: flex; align-items: center; padding: 0 28px 28px; border-bottom: 1px solid rgba(74,127,212,.2); margin-bottom: 16px; }
.site-nav-drawer a { color: rgba(232,240,255,.8); font-family: 'Poppins', Arial, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: .01em; padding: 13px 28px; transition: color .2s, background .2s, padding-left .2s; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.site-nav-drawer a:hover { color: #e8f0ff; background: rgba(74,127,212,.1); padding-left: 34px; }
.site-nav-drawer a.active { color: #e8f0ff; font-weight: 500; }
.site-nav-drawer a.nav-external { color: rgba(232,240,255,.45); font-size: 14px; }
.site-nav-drawer-divider { width: calc(100% - 56px); height: 1px; background: rgba(74,127,212,.2); margin: 10px 28px; }
.site-nav-drawer .drawer-cta { margin: 20px 28px 0; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-detail-inner { flex-direction: column; min-height: auto; padding: 32px; }
  .hero-detail-visual { height: 320px; width: 100%; flex: none; }
  .hero-detail-overlay-img { width: 280px; }
  .hero-detail-portrait-wrap { left: 50%; transform: translateX(-50%); }
  .hero-detail-text { padding: 24px 0 0; }
  .process-inner { flex-direction: column; }
  .process-image { position: static; max-width: 80%; margin-left: auto; margin-right: auto; }
  .about-card { flex-direction: column; }
  .about-portrait-border { width: 200px; height: 300px; margin: 0 auto; }
  .faq-inner { flex-direction: column; gap: 32px; }
  .faq-headline { position: static; flex: none; }
  .faq-btns { flex-direction: row; }
  .community-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ss-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-content { padding: 0 20px; align-items: center; }
  .hero-title { font-size: clamp(22px, 7vw, 55px); white-space: nowrap; word-break: normal; max-width: 100%; text-align: center; }
  .hero-moon { width: min(70%, 320px); bottom: calc(140px + 18vh); }
  .hero-top-bar { flex-direction: column; justify-content: center; align-items: center; gap: 0; width: 100%; }
  .moon-label-left, .moon-label-right { display: none; }
  .hero-mobile-tagline { display: flex; align-items: center; justify-content: space-between; width: 100%; color: #e8f0ff; font-family: 'Poppins', Arial, sans-serif; font-size: 13px; font-weight: 300; letter-spacing: .06em; text-shadow: 0 0 14px rgba(255,255,255,.6); opacity: .85; position: relative; z-index: 7; margin-top: 10px; gap: 0; }
  .hero-mobile-tagline span:first-child { flex: 1; text-align: left; }
  .hero-mobile-tagline-sep { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
  .hero-mobile-tagline span:last-child { flex: 1; text-align: right; }
  .hero-gayle { min-width: 0; width: min(100%, 520px); bottom: 20px; left: 50%; }
  .hero-detail { padding: 20px 16px 40px; }
  .hero-detail-inner { padding: 20px; border-radius: 24px; gap: 0; }
  .hero-detail-visual { height: 380px; width: 100%; }
  .hero-detail-portrait-wrap { left: 50%; transform: translateX(-50%); bottom: 0; }
  .hero-detail-portrait-border { width: 200px; height: 340px; }
  .hero-detail-overlay-img { width: 260px; left: 50%; transform: translateX(-50%); bottom: -10px; }
  .hero-detail-text { padding: 20px 0 0; }
  .hero-detail-btns { flex-direction: column; width: 100%; }
  .hero-detail-btns .btn-primary, .hero-detail-btns .btn-secondary { width: 100%; justify-content: center; }
  .process { padding: 60px 20px; }
  .process-step-num { font-size: 36px; min-width: 48px; }
  .process-step-body { padding-left: 16px; }
  .timeline-track { grid-template-columns: 1fr; gap: 48px; }
  .timeline-line { display: none; }
  .timeline-point { align-items: flex-start; text-align: left; padding: 0; flex-direction: row; gap: 20px; }
  .timeline-icon-wrap { flex-direction: column; align-items: center; gap: 8px; margin-bottom: 0; flex-shrink: 0; }
  .timeline-node { width: 12px; height: 12px; }
  .timeline-icon { font-size: 26px; }
  .timeline-content { flex: 1; padding-top: 4px; }
  .about { padding: 60px 20px; }
  .about-card { padding: 24px; }
  .about-portrait-border { width: 160px; height: 240px; }
  .about-btns { flex-direction: column; }
  .about-btns .btn-primary, .about-btns .btn-secondary { width: 100%; justify-content: center; }
  .meditations { padding: 60px 20px; }
  .meditations-visual { height: 360px; }
  .community { padding: 60px 20px; }
  .community-features { grid-template-columns: 1fr; }
  .cf-visual { height: 220px; }
  .join { padding: 60px 20px; }
  .quote-section { padding: 100px 20px; }
  .crystal-1 { width: 100px; } .crystal-2 { width: 80px; } .crystal-3 { width: 60px; } .crystal-4 { width: 50px; }
  .faq { padding: 60px 20px 80px; }
  .faq-question span { font-size: 16px; }
  .cta-section { padding: 0 20px 28px; }
  .cta-card { padding: 24px 16px; flex-direction: column; }
  .cta-left { align-items: flex-start; text-align: left; }
  .cta-right { width: 100%; }
  .footer { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .footer-nav { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-col--brand { align-items: flex-start; }
  .ss-featured-section { padding: 60px 20px; }
}
@media (max-width: 580px) {
  .ss-featured-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Process section layout */
.process-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-image {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  margin-top: 243px;
}
.process-image img {
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.process-content {
  flex: 1 1 0;
}
@media (max-width: 900px) {
  .process-inner {
    flex-direction: column;
    align-items: center;
  }
  .process-image img {
    max-width: 100%;
  }
}
