@import url('https://fonts.googleapis.com/css2?family=Platypi:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500&display=swap');

:root {
  --joy-purple: #9B6EC6;
  --joy-purple-light: #E0CCF0;
  --text-dark: #1a1a1a;
  --text-body: #555;
  --text-muted: #999;
  --max-width: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #2a2a2a;
  overflow-x: hidden;
}

/* ========== NAV ========== */
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .logo {
  font-family: 'Platypi', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
}
.nav .nav-links {
  display: flex;
  gap: 32px;
}
.nav .nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav .nav-links a:hover { color: var(--text-dark); }
.nav .nav-links a.active { color: var(--text-dark); font-weight: 500; }

/* ========== CONTAINER ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ========== HERO (shared) ========== */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 48px 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(155, 110, 198, 0.06) 0%,
    rgba(224, 204, 240, 0.04) 40%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.hero h1 {
  font-family: 'Platypi', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 620px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}
.hero h1 em {
  font-style: italic;
  color: var(--joy-purple);
}
.hero .sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.hero .scroll-cue {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: gentle-bob 2.5s ease-in-out infinite;
}
.hero .scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: #2a2a2a;
  opacity: 0.7;
}
@keyframes gentle-bob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* ========== DIVIDERS ========== */
.scene-divider {
  max-width: calc(var(--max-width) - 200px);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8e4de, transparent);
}

/* ========== PROSE SECTIONS (Why, We) ========== */
.prose-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 48px;
}
.prose-section .prose-inner {
  max-width: 620px;
  margin: 0 auto;
}
.prose-section h3 {
  font-family: 'Platypi', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-top: 56px;
  line-height: 1.3;
}
.prose-section h3:first-child {
  margin-top: 0;
}
.prose-section p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 20px;
}
.prose-section p:last-child {
  margin-bottom: 0;
}

/* ========== TEAM BIOS (We page) ========== */
.bio-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.bio-card h3 {
  font-family: 'Platypi', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.bio-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

.closing-statement {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 48px 80px;
  text-align: center;
}
.closing-statement .inner {
  max-width: 620px;
  margin: 0 auto;
}
.closing-statement p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
}

/* ========== TODAY PAGE — B&W style ========== */
.today-scene {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 48px;
}
.today-scene .today-inner {
  max-width: 560px;
  margin: 0 auto;
}
.today-scene p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 20px;
}
.today-scene p.quote {
  font-style: italic;
  color: var(--text-muted);
}
.today-scene .today-img {
  max-width: 400px;
  margin: 32px auto;
  display: block;
  opacity: 0.85;
}
.today-transition {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}
.today-transition p {
  font-family: 'Platypi', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.4;
}

/* ========== VISION PAGE SCENES ========== */
.scene {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  align-items: center;
  padding: 64px 48px;
  gap: 32px;
}
.scene.reverse { direction: rtl; }
.scene.reverse > * { direction: ltr; }

.scene-text { max-width: 460px; }
.scene-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #bbb;
  margin-bottom: 14px;
}
.scene-text h2 {
  font-family: 'Platypi', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.scene-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

/* Illustration areas */
.scene-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.illustration-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wash {
  position: absolute;
  border-radius: 50% 40% 50% 40%;
  filter: blur(45px);
  opacity: 0.5;
  z-index: 0;
}
.scene-morning .wash {
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(155,110,198,0.30) 0%, rgba(195,170,225,0.12) 45%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.scene-session .wash {
  width: 300px; height: 280px;
  background: radial-gradient(ellipse, rgba(155,110,198,0.28) 0%, rgba(190,165,225,0.10) 45%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.scene-evening .wash {
  width: 280px; height: 300px;
  background: radial-gradient(ellipse, rgba(215,190,150,0.35) 0%, rgba(230,205,165,0.14) 45%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.illustration-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

/* Between sessions */
.scene-between {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 48px;
  position: relative;
}
.scene-between::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 250px;
  background: radial-gradient(ellipse, rgba(155,110,198,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.scene-between .scene-label,
.scene-between h2,
.scene-between p {
  position: relative;
  z-index: 1;
}
.scene-between h2 {
  font-family: 'Platypi', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.scene-between p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 480px;
}

/* Notification cards carousel */
.notif-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 200px;
  margin: 32px auto 36px;
  z-index: 1;
  overflow: hidden;
}
.notif-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 2px 16px rgba(155,110,198,0.08), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: card-cycle 12s ease-in-out infinite;
  white-space: nowrap;
}
.notif-card .notif-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--joy-purple-light);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.notif-card .notif-icon svg {
  width: 16px; height: 16px;
  stroke: var(--joy-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.notif-card .notif-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.notif-card .notif-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.notif-card .notif-detail {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
}
.notif-card .notif-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 500;
  color: var(--joy-purple);
  background: rgba(155,110,198,0.08);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.notif-card:nth-child(1) { top: 10px; left: 5%; animation-delay: 0s; }
.notif-card:nth-child(2) { top: 75px; right: 2%; left: auto; animation-delay: 2s; }
.notif-card:nth-child(3) { top: 140px; left: 10%; animation-delay: 4s; }
.notif-card:nth-child(4) { top: 30px; right: 8%; left: auto; animation-delay: 6s; }
.notif-card:nth-child(5) { top: 105px; left: 3%; animation-delay: 8s; }
.notif-card:nth-child(6) { top: 160px; right: 5%; left: auto; animation-delay: 10s; }

@keyframes card-cycle {
  0% { opacity: 0; transform: translateY(8px); }
  4% { opacity: 1; transform: translateY(0); }
  14% { opacity: 1; transform: translateY(0); }
  18% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0; }
}

/* The Shift section */
.scene-shift {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 48px;
  text-align: center;
  position: relative;
}
.scene-shift::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(155,110,198,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.scene-shift .scene-label {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #aaa;
}
.scene-shift .shift-text {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}
.scene-shift .shift-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 20px;
}
.scene-shift .shift-text p:last-child { margin-bottom: 0; }
.scene-shift .punchline {
  font-family: 'Platypi', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  font-style: italic;
  margin-top: 32px;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

/* ========== CTA (shared) ========== */
.cta {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 48px 100px;
  text-align: center;
}
.cta h2 {
  font-family: 'Platypi', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-dark);
  max-width: 480px;
  margin: 0 auto 12px;
}
.cta h2 em {
  font-style: italic;
  color: var(--joy-purple);
}
.cta .cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--text-dark);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cta-btn:hover {
  background: #444;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Footer link */
.footer-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 48px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}
.footer-nav a {
  font-size: 13px;
  color: #bbb;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-dark); }

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 900px) {
  .hero { padding: 48px 32px 60px; min-height: 60vh; }
  .hero h1 { font-size: 38px; }
  .nav { padding: 20px 32px; }
  .scene { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; }
  .scene.reverse { direction: ltr; }
  .scene-visual { order: -1; }
  .scene.reverse .scene-visual { order: -1; }
  .scene-text p { max-width: 100%; }
  .illustration-frame { max-width: 280px; }
  .scene-between { padding: 60px 32px; }
  .notif-carousel { height: 180px; }
  .notif-card { padding: 12px 16px; }
  .notif-card .notif-badge { display: none; }
  .scene-shift { padding: 72px 32px; }
  .cta { padding: 48px 32px 80px; }
  .cta h2 { font-size: 30px; }
  .prose-section { padding: 48px 32px; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px 64px; }
  .today-scene { padding: 40px 32px; }
  .footer-nav { padding: 28px 32px; }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .nav .nav-links { gap: 20px; }
  .nav .nav-links a { font-size: 12px; }
  .hero { padding: 40px 24px 48px; min-height: 50vh; }
  .hero h1 { font-size: 32px; max-width: 100%; }
  .hero .sub { font-size: 15px; max-width: 100%; }
  .hero .scroll-cue { margin-top: 32px; }
  .scene { padding: 40px 24px; gap: 32px; }
  .scene-text h2 { font-size: 26px; }
  .scene-text p { font-size: 15px; }
  .illustration-frame { max-width: 240px; }
  .scene-between { padding: 48px 24px; }
  .scene-between h2 { font-size: 26px; }
  .scene-between p { font-size: 15px; }
  .notif-carousel { height: 160px; max-width: 100%; }
  .notif-card { padding: 10px 14px; }
  .notif-card .notif-title { font-size: 12px; }
  .notif-card .notif-detail { font-size: 10px; }
  .scene-shift { padding: 56px 24px; }
  .scene-shift .shift-text p { font-size: 15px; }
  .scene-shift .punchline { font-size: 19px; }
  .scene-divider { margin: 0 24px; }
  .cta { padding: 40px 24px 64px; }
  .cta h2 { font-size: 26px; }
  .cta .cta-sub { font-size: 14px; }
  .cta-btn { padding: 14px 32px; font-size: 13px; }
  .prose-section { padding: 40px 24px; }
  .prose-section h3 { font-size: 21px; margin-top: 40px; }
  .prose-section p { font-size: 15px; }
  .bio-grid { padding: 32px 24px 56px; }
  .bio-card p { font-size: 14px; }
  .today-scene { padding: 32px 24px; }
  .today-scene p { font-size: 15px; }
  .closing-statement { padding: 32px 24px 64px; }
  .closing-statement p { font-size: 15px; }
  .footer-nav { padding: 24px; }
}
