@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --sand-light: #f5f0e8;
  --sand: #e8dcc8;
  --sand-dark: #c4b59a;
  --sunset-warm: #d4956b;
  --sunset-deep: #b8704a;
  --terracotta: #c2775e;
  --charcoal: #2a2a2a;
  --soft-white: #faf8f5;
  --ocean-deep: #1a5276;
  --ocean: #2471a3;
  --ocean-mid: #3498b8;
  --sky: #5dade2;
  --sky-light: #85c1e9;
  --sage-deep: #4a7c6f;
  --sage: #6b9e8a;
  --seafoam: #82c4a8;
  --seafoam-light: #a8d8c0;
  --mint: #c8e6d8;
  --radius: 12px;
  --radius-lg: 20px;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--soft-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grain);
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px); background: rgba(250, 248, 245, 0.85);
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--ocean-deep); text-decoration: none; letter-spacing: -0.02em; }
.nav-links { display: none; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); text-decoration: none; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--ocean); }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(250, 248, 245, 0.97); backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--charcoal); text-decoration: none; opacity: 0; transform: translateY(20px); transition: opacity 0.4s, transform 0.4s; }
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(8) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(9) { transition-delay: 0.4s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(160deg, var(--soft-white) 0%, var(--sand-light) 40%, rgba(133, 193, 233, 0.12) 70%, rgba(168, 216, 192, 0.1) 100%);
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -40%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(36, 113, 163, 0.06) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(107, 158, 138, 0.06) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ocean); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.hero-label::before { content: ''; width: 24px; height: 2px; background: var(--ocean); }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--charcoal); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--ocean-deep); }
.hero-sub { font-size: 1.1rem; line-height: 1.7; color: rgba(42, 42, 42, 0.7); max-width: 560px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.8rem; border-radius: 50px; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 0.9rem; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--ocean-deep); color: white; }
.btn-primary:hover { background: var(--ocean); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26, 82, 118, 0.25); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid rgba(42, 42, 42, 0.2); }
.btn-outline:hover { border-color: var(--sage); color: var(--sage-deep); transform: translateY(-2px); }

/* ── SECTION FRAMEWORK ── */
.section { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ocean); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.section-label::before { content: ''; width: 16px; height: 2px; background: var(--ocean); }
.section-label.green { color: var(--sage-deep); }
.section-label.green::before { background: var(--sage-deep); }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--charcoal); }
.section-desc { margin-top: 0.75rem; font-size: 1rem; color: rgba(42, 42, 42, 0.65); max-width: 600px; font-weight: 300; }

/* ── DIVIDERS ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(42, 42, 42, 0.08), transparent); max-width: 1200px; margin: 0 auto; }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card { background: white; border-radius: var(--radius); padding: 1.75rem; border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); border-color: rgba(36, 113, 163, 0.15); }
.card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.2rem; font-weight: 700; color: white; }
.card-icon.blue { background: linear-gradient(135deg, var(--ocean-deep), var(--ocean)); }
.card-icon.green { background: linear-gradient(135deg, var(--sage-deep), var(--sage)); }
.card-icon.warm { background: linear-gradient(135deg, var(--sunset-deep), var(--sunset-warm)); }
.card-icon.sky { background: linear-gradient(135deg, var(--ocean-mid), var(--sky)); }
.card-icon.teal { background: linear-gradient(135deg, var(--sage-deep), var(--ocean-mid)); }
.card-icon.terra { background: linear-gradient(135deg, var(--terracotta), var(--sunset-warm)); }
.card h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--charcoal); }
.card p { font-size: 0.88rem; color: rgba(42, 42, 42, 0.65); line-height: 1.6; margin-bottom: 1rem; }
.card-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.card-link { font-size: 0.78rem; font-weight: 500; color: var(--ocean); text-decoration: none; padding: 0.3rem 0.7rem; border-radius: 6px; background: rgba(36, 113, 163, 0.06); transition: background 0.2s, color 0.2s; }
.card-link:hover { background: rgba(36, 113, 163, 0.12); color: var(--ocean-deep); }
.card-link.green { color: var(--sage-deep); background: rgba(107, 158, 138, 0.08); }
.card-link.green:hover { background: rgba(107, 158, 138, 0.15); }

/* ── TABS ── */
.tabs { display: flex; gap: 0.25rem; margin-bottom: 2rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.25rem; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn { padding: 0.55rem 1.1rem; border-radius: 8px; border: 1.5px solid rgba(0,0,0,0.08); background: transparent; font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; font-weight: 500; color: rgba(42, 42, 42, 0.6); cursor: pointer; transition: all 0.25s; white-space: nowrap; flex-shrink: 0; }
.tab-btn:hover { border-color: var(--ocean-mid); color: var(--ocean); }
.tab-btn.active { background: var(--ocean-deep); border-color: var(--ocean-deep); color: white; }
.tab-btn.active-green { background: var(--sage-deep); border-color: var(--sage-deep); color: white; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── SPORTS TEAM CARDS ── */
.team-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: white; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.05); margin-bottom: 0.75rem; transition: transform 0.2s, box-shadow 0.2s; }
.team-card:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.team-badge { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.75rem; color: white; flex-shrink: 0; letter-spacing: 0.05em; }
.team-info h4 { font-family: 'DM Serif Display', serif; font-size: 1rem; margin-bottom: 0.25rem; }
.team-info p { font-size: 0.82rem; color: rgba(42, 42, 42, 0.6); margin-bottom: 0.5rem; }
.team-links { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* ── QUOTES ── */
.quotes-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.quote-card { background: white; border-radius: var(--radius); padding: 1.75rem; border: 1px solid rgba(0,0,0,0.05); border-left: 3px solid var(--ocean-mid); transition: transform 0.2s; }
.quote-card:hover { transform: translateY(-2px); }
.quote-card blockquote { font-family: 'DM Serif Display', serif; font-size: 1.05rem; line-height: 1.5; color: var(--charcoal); margin-bottom: 0.75rem; }
.quote-card cite { font-style: normal; font-size: 0.82rem; font-weight: 500; color: var(--ocean); }

/* ── MENTORS ── */
.mentors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.mentor-card { background: white; border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.mentor-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.mentor-avatar { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 0.75rem; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: white; }
.mentor-card h4 { font-family: 'DM Serif Display', serif; font-size: 0.95rem; margin-bottom: 0.25rem; }
.mentor-card p { font-size: 0.78rem; color: rgba(42, 42, 42, 0.6); }

/* ── GEAR ── */
.gear-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gear-card { display: flex; gap: 1rem; background: white; border-radius: var(--radius); padding: 1.25rem; border: 1px solid rgba(0,0,0,0.05); transition: transform 0.2s; }
.gear-card:hover { transform: translateY(-2px); }
.gear-placeholder { width: 64px; height: 64px; border-radius: 10px; background: linear-gradient(135deg, var(--sand-light), var(--mint)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.7rem; color: var(--sage-deep); }
.gear-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.gear-info p { font-size: 0.82rem; color: rgba(42, 42, 42, 0.6); margin-bottom: 0.5rem; }

/* ── FORMS ── */
.submit-form { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(0,0,0,0.05); margin-top: 2rem; }
.submit-form h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 0.4rem; color: rgba(42, 42, 42, 0.7); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 8px; font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; background: var(--soft-white); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--ocean); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--ocean-deep); color: white; border: none; padding: 0.75rem 2rem; border-radius: 50px; font-family: 'Space Grotesk', sans-serif; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.form-submit:hover { background: var(--ocean); transform: translateY(-1px); }

/* ── INSURANCE CALC ── */
.calc-container { background: white; border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(0,0,0,0.05); margin-top: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.calc-container h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
.calc-subtitle { font-size: 0.88rem; color: rgba(42, 42, 42, 0.6); margin-bottom: 1.5rem; }
.calc-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.calc-field label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 0.4rem; color: rgba(42, 42, 42, 0.7); }
.calc-field select, .calc-field input { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 8px; font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; background: var(--soft-white); transition: border-color 0.2s; }
.calc-field select:focus, .calc-field input:focus { outline: none; border-color: var(--sage); }
.calc-result { display: none; background: linear-gradient(135deg, rgba(107, 158, 138, 0.08), rgba(36, 113, 163, 0.06)); border-radius: var(--radius); padding: 1.5rem; text-align: center; margin-top: 1rem; border: 1px solid rgba(107, 158, 138, 0.15); }
.calc-result.visible { display: block; animation: fadeUp 0.4s ease; }
.calc-result .savings-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--sage-deep); margin-bottom: 0.5rem; }
.calc-result .savings-amount { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--sage-deep); margin-bottom: 0.25rem; }
.calc-result .savings-note { font-size: 0.82rem; color: rgba(42, 42, 42, 0.6); }

/* ── CHECKLIST ── */
.checklist-card { background: white; border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(0,0,0,0.05); margin-top: 1.5rem; }
.checklist-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
.checklist-desc { font-size: 0.88rem; color: rgba(42, 42, 42, 0.6); margin-bottom: 1.5rem; }
.checklist-items { list-style: none; }
.checklist-items li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 0.9rem; color: rgba(42, 42, 42, 0.8); }
.checklist-items li:last-child { border-bottom: none; }
.check-mark { width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--sage); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.check-mark:hover { background: rgba(107, 158, 138, 0.1); }
.check-mark.checked { background: var(--sage-deep); border-color: var(--sage-deep); }
.check-mark.checked::after { content: ''; width: 6px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); margin-top: -2px; }
.download-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.75rem 1.5rem; background: var(--sage-deep); color: white; border: none; border-radius: 50px; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 0.88rem; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.download-btn:hover { background: var(--sage); transform: translateY(-1px); }
.download-btn svg { width: 16px; height: 16px; }

/* ── NEWS ── */
.news-feed { margin-top: 1.5rem; }
.news-item { display: flex; gap: 1rem; padding: 1.25rem; background: white; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.05); margin-bottom: 0.75rem; transition: transform 0.2s, box-shadow 0.2s; }
.news-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.news-date { flex-shrink: 0; width: 50px; text-align: center; }
.news-date .month { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ocean); }
.news-date .day { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--charcoal); }
.news-content h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--charcoal); }
.news-content p { font-size: 0.82rem; color: rgba(42, 42, 42, 0.6); line-height: 1.5; }
.news-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.5rem; border-radius: 4px; margin-top: 0.4rem; }
.news-tag.regulation { background: rgba(36, 113, 163, 0.08); color: var(--ocean); }
.news-tag.market { background: rgba(107, 158, 138, 0.08); color: var(--sage-deep); }
.news-tag.tech { background: rgba(212, 149, 107, 0.12); color: var(--sunset-deep); }

/* ── FULL-WIDTH SECTIONS ── */
.full-section { padding: 5rem 1.5rem; position: relative; }
.full-section-inner { max-width: 1200px; margin: 0 auto; }
.bg-sand { background: var(--sand-light); }
.bg-ocean { background: linear-gradient(160deg, var(--ocean-deep), #1a3c5e); color: white; }
.bg-ocean .section-label { color: var(--sky-light); }
.bg-ocean .section-label::before { background: var(--sky-light); }
.bg-ocean .section-title { color: white; }
.bg-ocean .section-desc { color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
.footer { padding: 3rem 1.5rem; text-align: center; border-top: 1px solid rgba(0,0,0,0.06); }
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--ocean-deep); margin-bottom: 0.5rem; }
.footer p { font-size: 0.82rem; color: rgba(42, 42, 42, 0.5); }

/* ── COLLAPSIBLE SECTIONS ── */
.collapsible-trigger { cursor: pointer; user-select: none; position: relative; }
.collapsible-trigger:hover .section-title { color: var(--ocean); }
.collapse-icon {
  display: inline-block; width: 28px; height: 28px; vertical-align: middle;
  margin-left: 0.5rem; position: relative; top: -2px; border-radius: 50%;
  background: rgba(36, 113, 163, 0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
}
.collapse-icon::before, .collapse-icon::after {
  content: ''; position: absolute; background: var(--ocean); border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
}
.collapse-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.collapse-icon::after { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.collapsible-section.expanded .collapse-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.collapsible-section.expanded .collapse-icon { background: rgba(36, 113, 163, 0.12); }
.bg-sand .collapse-icon, .section-label.green ~ .section-title .collapse-icon { background: rgba(107, 158, 138, 0.08); }
.bg-sand .collapse-icon::before, .bg-sand .collapse-icon::after, .section-label.green ~ .section-title .collapse-icon::before, .section-label.green ~ .section-title .collapse-icon::after { background: var(--sage-deep); }
.bg-sand .collapsible-section.expanded .collapse-icon { background: rgba(107, 158, 138, 0.15); }
.bg-ocean .collapse-icon { background: rgba(255, 255, 255, 0.1); }
.bg-ocean .collapse-icon::before, .bg-ocean .collapse-icon::after { background: var(--sky-light); }
.bg-ocean .collapsible-section.expanded .collapse-icon { background: rgba(255, 255, 255, 0.18); }
.collapsible-content { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease; opacity: 0; }
.collapsible-section.expanded .collapsible-content { max-height: 8000px; opacity: 1; transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s; }

/* ── MEDITATION TIMER ── */
.meditation-timer-container {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(74, 124, 111, 0.12);
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(74, 124, 111, 0.06);
}

.timer-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.timer-subtitle {
  font-size: 0.88rem;
  color: rgba(42, 42, 42, 0.6);
  margin-bottom: 1.75rem;
}

.duration-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.duration-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(74, 124, 111, 0.2);
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-deep);
  cursor: pointer;
  transition: all 0.25s;
}

.duration-btn:hover {
  border-color: var(--sage);
  background: rgba(107, 158, 138, 0.06);
}

.duration-btn.active {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: white;
}

.sound-selector {
  margin-bottom: 1.5rem;
}

.sound-selector label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(42, 42, 42, 0.5);
  margin-bottom: 0.6rem;
}

.sound-options {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.sound-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(42, 42, 42, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.sound-btn:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
}

.sound-btn.active {
  background: rgba(107, 158, 138, 0.1);
  border-color: var(--sage);
  color: var(--sage-deep);
}

.timer-start-btn {
  width: 100%;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: white;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.timer-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 111, 0.25);
}

.timer-active {
  text-align: center;
  padding: 1rem 0;
}

.timer-ring {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
}

.timer-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.timer-track {
  fill: none;
  stroke: rgba(107, 158, 138, 0.12);
  stroke-width: 6;
}

.timer-progress {
  fill: none;
  stroke: var(--sage);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.timer-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: 0.02em;
}

.timer-sound-label {
  font-size: 0.82rem;
  color: rgba(42, 42, 42, 0.5);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.timer-stop-btn {
  padding: 0.7rem 2rem;
  border-radius: 50px;
  background: transparent;
  border: 1.5px solid rgba(42, 42, 42, 0.15);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(42, 42, 42, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.timer-stop-btn:hover {
  border-color: var(--sunset-warm);
  color: var(--sunset-deep);
}

.timer-complete {
  text-align: center;
  padding: 2rem 0;
}

.complete-message {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
}

.timer-restart-btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background: var(--sage-deep);
  color: white;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.timer-restart-btn:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

/* ── CURATED SESSIONS ── */
.curated-sessions {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(74, 124, 111, 0.1);
}

.curated-sessions h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.curated-subtitle {
  font-size: 0.84rem;
  color: rgba(42, 42, 42, 0.55);
  margin-bottom: 1.25rem;
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.session-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(107, 158, 138, 0.04);
  border: 1px solid rgba(107, 158, 138, 0.1);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.session-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(74, 124, 111, 0.08);
  border-color: var(--sage);
}

.session-duration {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.session-info h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.session-info p {
  font-size: 0.8rem;
  color: rgba(42, 42, 42, 0.6);
  line-height: 1.4;
  margin: 0;
}

/* ── JOURNAL PROMPT OF THE DAY ── */
.journal-prompt-container {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(36, 113, 163, 0.1);
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(36, 113, 163, 0.04);
}

.prompt-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.prompt-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.prompt-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.prompt-date {
  font-size: 0.78rem;
  color: rgba(42, 42, 42, 0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.daily-prompt {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ocean-deep);
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(36, 113, 163, 0.04), rgba(107, 158, 138, 0.04));
  border-radius: var(--radius);
  border-left: 3px solid var(--ocean);
  margin-bottom: 1rem;
}

.prompt-note {
  font-size: 0.84rem;
  color: rgba(42, 42, 42, 0.5);
  margin-bottom: 1rem;
  font-style: italic;
}

.prompt-refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(36, 113, 163, 0.15);
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ocean);
  cursor: pointer;
  transition: all 0.2s;
}

.prompt-refresh-btn:hover {
  border-color: var(--ocean);
  background: rgba(36, 113, 163, 0.04);
}

.prompt-refresh-btn svg {
  transition: transform 0.3s;
}

.prompt-refresh-btn:hover svg {
  transform: rotate(180deg);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .mentors-grid { grid-template-columns: repeat(3, 1fr); }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: repeat(2, 1fr); }
  .session-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 8rem 3rem 6rem; }
  .section { padding: 6rem 3rem; }
  .full-section { padding: 6rem 3rem; }
  .mentors-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .card-grid.pro-grid { grid-template-columns: repeat(4, 1fr); }
}
