* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #222;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

.navbar-logo {
  font-size: 1.9rem;
  font-weight: 800;
  font-style: italic;
  color: #8593a2;
  min-width: 100px;
  letter-spacing: -0.5px;
}

/* NAVBAR DARK MODE */
.navbar.dark {
  background: #0d2137;
  border-bottom-color: #2e2e2e;
  transition: background 0.3s, border-color 0.3s;
}

.navbar.dark .tab { color: #888; }
.navbar.dark .tab:hover { color: #f0f0f0; border-bottom-color: #555; }
.navbar.dark .tab.active { color: #f0f0f0; border-bottom-color: #f0f0f0; }
.navbar.dark .badge { background: #FF385C; }
.navbar.dark .share-journey { color: #f0f0f0; }
.navbar.dark .share-journey:hover { background: #2a2a2a; }
.navbar.dark .globe-btn:hover { background: #2a2a2a; }
.navbar.dark .menu-btn { border-color: #444; }
.navbar.dark .hamburger { color: #f0f0f0; }
.navbar.dark .avatar { background: #555; }

/* TABS */
.navbar-tabs {
  display: flex;
  align-items: flex-end;
}

.tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #717171;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  gap: 5px;
  transition: color 0.15s, border-color 0.15s;
}

.tab:hover {
  color: #222;
  border-bottom-color: #d1d1d1;
}

.tab.active {
  color: #222;
  font-weight: 600;
  border-bottom-color: #222;
}

.tab-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.tab-label {
  font-size: 0.8rem;
  white-space: nowrap;
}

.badge {
  position: absolute;
  top: 4px;
  right: 8px;
  background: #0d2135;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.4px;
}

/* NAVBAR ACTIONS */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 100px;
  justify-content: flex-end;
}

.share-journey {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 24px;
  white-space: nowrap;
  transition: background 0.15s;
}

.share-journey:hover {
  background: #f7f7f7;
}

.globe-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
}

.globe-btn:hover {
  background: #f7f7f7;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 24px;
  padding: 0.4rem 0.6rem 0.4rem 0.8rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.menu-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.hamburger {
  font-size: 0.85rem;
  color: #222;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #717171;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2.5rem;
  background: linear-gradient(160deg, #fff 0%, #f7f7f7 60%);
}

.hero-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 1.1rem 2.5rem;
  font-size: 2rem;
  color: #444;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.hero-sub {
  max-width: 640px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #6b6b6b;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero-cta-btn {
  background: #0d2135;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1.1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.hero-cta-meta {
  font-size: 1rem;
  color: #6b6b6b;
}

/* REVELATION SECTION */
.revelation-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.revelation-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.revelation-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
  padding: 3rem;
}

.revelation-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #e8e8e8;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* MEETING SECTION */
.meeting-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.meeting-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.meeting-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
  padding: 3rem;
}

.meeting-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #e8e8e8;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* CARD STACK */
.cards-stack {
  position: relative;
  background: #0d2137;
  padding: 3rem 12% 6rem;
}

.card {
  position: sticky;
  top: 0;
  height: 80vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* MIRROR SECTION */
.mirror-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.mirror-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.mirror-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
  padding: 3rem;
}

.mirror-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #e8e8e8;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* BODY SECTION */
.body-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 5rem;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

.body-image {
  width: 50%;
  max-width: 560px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.body-quote {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  max-width: 420px;
}

/* OUTCOMES SECTION */
.outcomes-section {
  background: #ede9e3;
  padding: 6rem 8%;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.outcome-number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #4d9090;
  margin-bottom: 1.25rem;
}

.outcome-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1e2a2a;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.outcome-body {
  font-size: 0.975rem;
  color: #5a5a5a;
  line-height: 1.75;
}

/* WHO IT'S FOR SECTION */
.who-section {
  background: #ede9e3;
  padding: 6rem 8% 7rem;
  border-top: 1px solid #ddd9d2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.who-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4d9090;
  margin-bottom: 1.75rem;
  width: 100%;
  max-width: 760px;
}

.who-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  font-weight: 400;
  color: #1e2a2a;
  line-height: 1.2;
  max-width: 760px;
  width: 100%;
  margin-bottom: 3rem;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
  width: 100%;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1rem;
  color: #1e2a2a;
  line-height: 1.6;
}

.who-list li::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #4d9090;
  margin-top: 0.65em;
  flex-shrink: 0;
}

/* HOW IT WORKS SECTION */
.how-section {
  background: #0d2137;
  padding: 6rem 8% 7rem;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4d9090;
  margin-bottom: 1.25rem;
}

.how-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #f0f0f0;
  line-height: 1.15;
  margin-bottom: 4rem;
}

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

.how-item-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #e8e8e8;
  margin-bottom: 0.875rem;
}

.how-item-body {
  font-size: 0.975rem;
  color: #8a9bb0;
  line-height: 1.75;
}

.how-cta {
  background: #3d8f8f;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.how-cta:hover {
  background: #347d7d;
}

/* FOOTER */
.site-footer {
  background: #ede9e3;
  border-top: 1px solid #1e2a2a;
  padding: 2.5rem 8% 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 340px;
}

.footer-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: #0d2137;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #4a5560;
}

.footer-links-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a5560;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #1e2a2a;
  text-decoration: none;
}

.footer-links a:hover {
  color: #4d9090;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(30, 42, 42, 0.15);
  font-size: 0.8rem;
  color: #6b7280;
}

/* FLOATING CARDS */
.floating-cards {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 5;
}

.floating-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(22, 22, 22, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.floating-card--main {
  padding: 1rem 1.5rem;
  min-width: 230px;
}

.floating-card--sub {
  padding: 0.65rem 1.25rem;
  min-width: 230px;
  opacity: 0.82;
}

.floating-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 56, 92, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.floating-card-icon--sm {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
}

.floating-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.floating-card-label {
  font-size: 0.7rem;
  color: #777;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-card-value {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 700;
}

.floating-card-sub-value {
  font-size: 0.85rem;
  color: #bbb;
  font-weight: 500;
}

/* MOBILE DRAWER */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 201;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  font-style: italic;
  color: #8593a2;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #717171;
  cursor: pointer;
  padding: 0.25rem;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.drawer-link {
  display: block;
  padding: 0.75rem 0.5rem;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s;
}

.drawer-link:hover {
  background: #f7f7f7;
}

.drawer-link.active {
  color: #4d9090;
  font-weight: 700;
}

.drawer-cta {
  display: block;
  text-align: center;
  background: #0d2137;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 24px;
  margin-top: auto;
}

.drawer-cta:hover {
  background: #16324d;
}

.drawer-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
}
