/* styles.css */ 

/* ========================================================= 

   PROJECT FLOW — CALM SYSTEM (LOCKED) 

   CALM / HEADSPACE SPACING UPDATE + APPLE MODAL POPUP 

   ========================================================= */ 

 

/* 01) TOKENS */ 

:root { 

  --bg-fallback: #0f0c0a; 

  --overlay-warm: rgba(15, 12, 10, 0.46); 

 

  --text-cream: #f3eee7; 

  --text-parchment: #e7dfd6; 

  --text-soft: #d6ccc1; 

  --text-dim: #c7bdb3; 

 

  --accent: #5b6f86; 

  --accent-soft: rgba(91,111,134,0.22); 

  --accent-border: rgba(91,111,134,0.55); 

 

  --glass: rgba(30,24,20,0.58); 

  --glass-strong: rgba(30,24,20,0.70); 

  --glass-border: rgba(255,255,255,0.06); 

 

  --r-card: 20px; 

  --r-btn: 16px; 

  --r-chip: 999px; 

 

  --t: 200ms ease; 

} 

 

/* 02) BASE + BACKGROUND */ 

html, body { height: 100%; min-height: 100%; } 

html {
  min-height: 100%;
  background: transparent;
  background-color: #0f1115;
}

 

body { 

  margin: 0; 

  min-height: 100vh; 

  overflow-x: hidden; 
  background-color: #0f1115;

 

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 

  color: var(--text-cream); 

} 

 

body::before { 

  content: ""; 

  position: fixed; 

  inset: 0; 

  background:
    linear-gradient(var(--overlay-warm), var(--overlay-warm)),
    url("cozy.jpg") center/cover no-repeat;

  pointer-events: none; 

  z-index: 0; 

} 

 

.screen, .container, .card, header, footer { position: relative; z-index: 1; } 

 

/* 03) FADE OVERLAY */ 

.fade-overlay { 

  position: fixed; 

  inset: 0; 

  background: rgba(10, 8, 7, 0.55); 

  opacity: 0; 

  pointer-events: none; 

  transition: opacity 180ms ease; 

  z-index: 1; 

} 

 

.fade-overlay.on { 

  opacity: 1; 

  pointer-events: auto; 

} 

 

/* 04) TYPOGRAPHY */ 

h1 { 

  font-size: 26px; 

  font-weight: 650; 

  letter-spacing: -0.3px; 

  margin: 0; 

} 

 

h2 { 

  font-size: 18px; 

  font-weight: 600; 

  margin: 0; 

} 

 

p { 

  font-size: 15px; 

  color: var(--text-parchment); 

  margin: 0; 

} 

 

.small { font-size: 13px; color: var(--text-dim); } 

 

.title { font-size: 14px; color: var(--text-cream); font-weight: 600; } 

.subline { font-size: 13px; color: var(--text-dim); margin-top: 6px; } 

 

.home-softline { 

  font-size: 14px; 

  color: var(--text-soft); 

  opacity: 0.92; 

  margin-top: 4px; 

} 

 

/* 05) LAYOUT */ 

.container { 

  width: min(540px, calc(100% - 32px)); 

  margin: 0 auto; 

  padding: 40px 0 44px; 

} 

 

.stack { 

  display: flex; 

  flex-direction: column; 

  gap: 22px; 

} 

 

.stack-tight { 

  display: flex; 

  flex-direction: column; 

  gap: 14px; 

} 

 

.stack-tight h1 { margin-bottom: 8px; } 

 

.center { text-align: center; } 

 

/* 06) NAV */ 

.nav-inner { 

  width: min(720px, calc(100% - 32px)); 

  margin: 0 auto; 

  padding: 18px 0; 

  display: flex; 

  justify-content: space-between; 

  align-items: center; 

} 

 

.brand { 

  display: flex; 

  align-items: center; 

  gap: 10px; 

  background: none; 

  border: none; 

  color: var(--text-cream); 

  cursor: pointer; 

  padding: 0; 

} 

 

.brand img { 

  width: 28px; 

  height: 28px; 

  border-radius: 8px; 

} 

 

.nav-right { display: flex; gap: 12px; align-items: center; } 

 

.subtle-link { 

  background: none; 

  border: none; 

  color: var(--text-soft); 

  font-size: 14px; 

  cursor: pointer; 

  opacity: 0.82; 

  transition: opacity var(--t); 

  text-decoration: none; 

  padding: 6px 4px; 

} 

body[data-screen="pick"] header {
  display: none;
}

 

.subtle-link:hover { opacity: 1; } 

 

.back-link { align-self: flex-start; } 

 

/* 07) CARDS */ 

.card { 

  background: var(--glass); 

  border: 1px solid var(--glass-border); 

  border-radius: var(--r-card); 

  padding: 22px; 

  backdrop-filter: blur(18px); 

  box-shadow: 0 10px 30px rgba(0,0,0,0.25); 

  margin-top: 4px; 

} 

 

.card.strong { background: var(--glass-strong); } 

 

.section-title { 

  font-size: 13px; 

  color: var(--text-soft); 

  margin-bottom: 12px; 

} 

 

/* 08) BUTTONS */ 

.primary-btn { 

  background: var(--accent); 

  border: none; 

  border-radius: var(--r-btn); 

  padding: 14px 18px; 

  color: var(--text-cream); 

  font-size: 15px; 

  cursor: pointer; 

  transition: var(--t); 

  box-shadow: 0 6px 18px rgba(120,160,200,0.35);

} 

 

.primary-btn:hover { background: #6a7f98; } 

#openBtn { margin-top: 8px; }

 

.secondary-btn { 

  background: rgba(255,255,255,0.08); 

  border: 1px solid rgba(255,255,255,0.08); 

  border-radius: var(--r-btn); 

  padding: 14px 18px; 

  color: var(--text-cream); 

  font-size: 15px; 

  cursor: pointer; 

  transition: var(--t); 

} 

 

.secondary-btn:hover { background: rgba(255,255,255,0.12); } 

 

.btn-block { width: 100%; } 

 

/* 09) CHIPS */ 

.chip-group { 

  display: flex; 

  flex-wrap: wrap; 

  gap: 10px; 

  margin-top: 12px; 

} 

 

#moodChips { gap: 10px 8px; }

.chip-section-label {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.chip-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 8px;
}

.chip-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.chip-sm {
  padding: 10px 14px;
  font-size: 13px;
}

.chip-micro-text {
  font-size: 11px;
  color: var(--text-soft);
  opacity: 0.5;
  text-align: center;
  margin-top: 18px;
}

.chip { 

  padding: 12px 16px; 

  line-height: 1.3; 

  border-radius: var(--r-chip); 

  border: 1px solid rgba(255,255,255,0.08); 

  background: rgba(255,255,255,0.07); 

  color: var(--text-cream); 

  font-size: 14px; 

  cursor: pointer; 

  transition: var(--t); 

  max-width: 100%; 

  text-align: left; 

} 

 

.chip:hover { background: rgba(255,255,255,0.10); } 

 

.chip.active { 

  background: var(--accent-soft); 

  border: 1px solid var(--accent-border); 

} 

 

/* Progressive reveal */ 

.reveal { animation: revealIn 240ms ease forwards; } 

 

@keyframes revealIn { 

  from { opacity: 0; transform: translateY(6px); } 

  to { opacity: 1; transform: translateY(0); } 

} 

 

/* 10) PICK SCREEN */ 

.pick-note { display: flex; flex-direction: column; gap: 0; } 

#screen-pick .container.phone-shell {
  width: min(100%, 420px);
  display: grid;
  gap: 12px;
  align-content: start;
  padding-top: 20px;
  padding-bottom: 10px;
}

#screen-pick {
  transition: background 220ms ease;
}

#screen-pick::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0);
  pointer-events: none;
  transition: background 240ms ease;
  z-index: 1;
}

#screen-pick.refine-active::before {
  background: rgba(6, 5, 4, 0.22);
}

.pick-top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-bottom: 4px;
}

.pick-top-brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
  color: rgba(242, 236, 228, 0.86);
  font-size: 13.5px;
  font-weight: 560;
}

.pick-top-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
}

.pick-home-link {
  justify-self: start;
  font-size: 12.5px;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 16, 14, 0.36);
  color: rgba(242, 236, 228, 0.72);
  opacity: 0.86;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.pick-home-link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(20, 16, 14, 0.52);
  color: rgba(242, 236, 228, 0.88);
}

.pick-nav-spacer {
  width: 58px;
  height: 1px;
}

#screen-pick #pickCard {
  position: relative;
  z-index: 5;
  width: 100%;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(46, 36, 30, 0.78);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -8px 24px rgba(0,0,0,0.18);
  overflow: hidden;
  padding: 0;
}

#pickCard p {
  color: rgba(255,255,255,0.82);
}

#pickCard.refine-transition-out {
  opacity: 0.38;
  filter: saturate(0.92) brightness(0.96);
}

#pickCard.pick-card-fade-in {
  animation: pickCardFadeIn 280ms ease both;
}

#screen-pick #pickCard.is-thinking {
  display: none;
}

#screen-pick .card-body.pick-card-body {
  padding: 12px 12px 11px;
  display: grid;
  gap: 7px;
  transition: opacity 260ms ease;
  position: relative;
  min-height: 214px;
  align-content: start;
}

.pick-primary-content {
  display: grid;
  gap: 7px;
  opacity: 1;
  max-height: 620px;
  overflow: hidden;
  transition: opacity 280ms ease, max-height 420ms ease;
}

#screen-pick .pick-kicker,
#screen-pick .pick-label {
  margin: 0 0 7px;
  font-size: 12.2px;
  text-transform: none;
  color: rgba(242, 236, 228, 0.64);
  letter-spacing: 0;
  line-height: 1.38;
  max-width: 34ch;
}

 

.pick-context {
  font-size: 14px;
  opacity: 0.8;
  text-align: center;
  margin-bottom: 6px;
}

.pick-meta { font-size: 13px; color: var(--text-dim); } 

.pick-poster-wrap {
  display: none;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 8.7;
  max-height: 280px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  border-radius: 0;
  background: #0f0d0b;
  transition: max-height 420ms ease, opacity 320ms ease, border-color 320ms ease;
}

#screen-pick .poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 6, 5, 0.36), rgba(7, 6, 5, 0.08) 48%, rgba(7, 6, 5, 0.02));
  pointer-events: none;
}

.pick-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 320ms ease, filter 320ms ease;
  filter: saturate(0.9) contrast(0.95);
}

.pick-poster.is-loaded {
  opacity: 1;
}

#screen-pick .service-badge,
.pick-service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  max-width: calc(100% - 28px);
  font-size: 10.5px;
  color: rgba(255, 248, 240, 0.96);
  background: rgba(12, 10, 9, 0.68);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 11px;
  backdrop-filter: blur(12px);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: opacity 420ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  letter-spacing: 0.01em;
}



.pick-title {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 2px;
  font-weight: 650;
  letter-spacing: 0.01em;
} 

 

.pick-reason {
  margin: 0 0 5px;
  color: rgba(242, 236, 228, 0.78);
  font-size: 13.5px;
  line-height: 1.42;
} 

.pick-why {
  margin: 0 0 2px;
  color: rgba(242, 236, 228, 0.68);
  font-size: 12.8px;
  line-height: 1.5;
  padding: 0;
}

#screen-pick .service-line,
.pick-service-line {
  color: rgba(242, 236, 228, 0.62);
  font-size: 12.2px;
  line-height: 1.4;
  margin: 0 0 6px;
}

 

.whisper { 

  color: rgba(231,223,214,0.92); 

  font-size: 13px; 

  line-height: 1.55; 

} 

 

.pick-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; } 

.pick-actions .secondary-btn { margin-top: 2px; } 

#openBtn {
  margin-top: 4px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 14.5px;
  font-weight: 600;
  color: #edf5ff;
  background: rgba(91, 151, 208, 0.48);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

#openBtn:hover {
  background: rgba(102, 164, 223, 0.56);
}

#screen-pick .link-btn,
.pick-link-btn {
  margin: 10px auto 0;
  width: fit-content;
  background: transparent;
  color: rgba(242, 236, 228, 0.74);
  border: none;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  padding: 2px 0;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
  opacity: 0.82;
}

#screen-pick .link-btn:hover,
.pick-link-btn:hover {
  color: rgba(242, 236, 228, 0.9);
  opacity: 1;
}

.watch-helper {
  display: none;
  opacity: 0;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 18px;
  transition: opacity 280ms ease;
}

.watch-helper.show {
  opacity: 1;
}

.watch-helper a {
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.watch-helper a:hover {
  border-bottom-color: rgba(255,255,255,0.7);
}

.pick-fade-in { animation: pickFadeIn 280ms ease both; } 
.pick-soft-reveal { animation: pickSoftReveal 260ms ease-out both; }

.refine-lite {
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 12px 1px 2px;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  transition: opacity 220ms ease, transform 240ms ease;
}

#screen-pick .adjust-panel {
  display: none;
  gap: 10px;
}

#screen-pick .refine-focus-panel {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 18px 0 0;
  position: static;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgba(34, 28, 24, 0);
  backdrop-filter: blur(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 220ms ease, max-height 220ms ease, padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  display: grid;
  pointer-events: none;
  z-index: 2;
}

#screen-pick.refine-active .refine-focus-panel {
  max-height: 720px;
  opacity: 1;
  padding: 16px 16px 20px;
  border-color: rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(56, 46, 40, 0.3), rgba(34, 28, 24, 0.2));
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
}

#screen-pick.refine-active #pickAdjustBtn {
  display: none;
}

#screen-pick.refine-active .refine-focus-panel:focus-within {
  border-color: rgba(255, 248, 240, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 248, 240, 0.03), 0 10px 24px rgba(0, 0, 0, 0.16);
}

.refine-panel-copy {
  display: grid;
  gap: 0;
  margin-bottom: 14px;
}

.refine-panel-title {
  margin: 0 0 6px;
  color: rgba(255, 248, 240, 0.94);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 560;
}

.refine-chip-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding-bottom: 2px;
}

.refine-chip {
  flex: 0 0 auto;
  width: auto;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.09);
  background: rgba(255, 248, 240, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(255, 248, 240, 0.84);
  font-size: 12.4px;
  line-height: 1.2;
  text-align: left;
  white-space: normal;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, filter 150ms ease, opacity 150ms ease;
}

.refine-chip:hover {
  background: rgba(255, 248, 240, 0.07);
  border-color: rgba(255, 248, 240, 0.14);
  color: rgba(255, 248, 240, 0.92);
}

.refine-chip.active {
  background: rgba(255, 248, 240, 0.12);
  border-color: rgba(255, 248, 240, 0.2);
  color: rgba(255, 248, 240, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.refine-chip.is-pressed {
  background: rgba(255, 248, 240, 0.15);
  border-color: rgba(255, 248, 240, 0.24);
  color: rgba(255, 248, 240, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 12px rgba(0, 0, 0, 0.12);
  filter: brightness(1.03);
}

.refine-layer-label {
  font-size: 12px;
  color: rgba(255, 248, 240, 0.5);
  margin: 22px 0 8px;
}

.refine-layer-label:first-child {
  margin-top: 0;
}

.refine-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 8px;
}

.refine-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.refine-chip-sm {
  padding: 6px 11px;
  font-size: 11.5px;
}

.refine-micro-text {
  font-size: 11px;
  color: rgba(255, 248, 240, 0.35);
  text-align: center;
  margin-top: 18px;
}

.refine-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  justify-content: space-between;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.refine-lite .chip-group {
  margin-top: 10px;
  gap: 10px 8px;
}

.refine-input {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: rgba(255,248,240,0.92);
  padding: 0 0 0 1px;
  font-size: 12.4px;
  margin: 0;
  min-height: 0;
  height: 32px;
  line-height: 32px;
  resize: none;
  outline: none;
  box-shadow: none;
  transition: color 200ms ease;
}

.refine-input:focus {
  outline: none;
  background: transparent;
  box-shadow: none;
}

.refine-input:-webkit-autofill,
.refine-input:-webkit-autofill:hover,
.refine-input:-webkit-autofill:focus {
  -webkit-text-fill-color: rgba(255,248,240,0.92);
  transition: background-color 9999s ease-out 0s;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
}

.refine-input::placeholder {
  color: rgba(255,248,240,0.45);
}

#screen-pick .optional-copy {
  margin: 0;
  color: rgba(242, 236, 228, 0.78);
  font-size: 12.6px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  #screen-pick.refine-active .refine-focus-panel {
    max-height: 560px;
    padding-bottom: 20px;
  }
}

.pick-kicker,
.pick-title,
.pick-reason,
.pick-service-line,
.why-label,
.pick-why,
.pick-actions {
  transition: opacity 220ms ease, transform 240ms ease;
}

.refine-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 58px;
  height: 28px;
  margin-top: 0;
  margin-left: 0;
  align-self: auto;
  flex: 0 0 auto;
  position: static;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.07);
  background: rgba(255, 248, 240, 0.045);
  color: rgba(255, 248, 240, 0.8);
  padding: 0 9px;
  font-size: 11.5px;
  line-height: 1;
  font-weight: 540;
  opacity: 0;
  transform: translateY(4px);
  filter: blur(3px);
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: opacity 240ms ease-out, transform 240ms ease-out, filter 240ms ease-out, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.refine-submit:hover {
  background: rgba(255, 248, 240, 0.06);
  border-color: rgba(255, 248, 240, 0.1);
  color: rgba(255, 248, 240, 0.88);
}

.refine-submit.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.refine-submit.is-submitting {
  opacity: 0;
  transform: translateY(4px) scale(0.985);
  filter: blur(2px);
  pointer-events: none;
}

@keyframes pickCardFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

 

.divider { 

  height: 1px; 

  background: rgba(255,255,255,0.08); 

  width: 100%; 

} 

 

/* Choosing micro-moment */ 

.choosing { 

  display: none; 

  align-items: center; 
  justify-content: center;

  gap: 9px; 

  font-size: 12.5px; 

  color: rgba(242, 236, 228, 0.66); 

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(18, 14, 12, 0.42);
  backdrop-filter: blur(10px);
  width: 100%;
  margin: 0 0 8px;
  padding: 10px 12px;
  opacity: 0;
  transition: opacity 240ms ease;

} 

.choosing.is-visible {
  opacity: 1;
}

 

.dot { 

  width: 7px; 

  height: 7px; 

  border-radius: 999px; 

  background: rgba(243, 238, 231, 0.86); 

  opacity: 0.6; 

  animation: breatheDot 1.8s ease-in-out infinite; 

} 

 

@keyframes breatheDot { 

  0%, 100% { transform: scale(0.95); opacity: 0.5; } 

  50% { transform: scale(1.08); opacity: 0.88; } 

} 

@keyframes pickFadeIn { 
  from { opacity: 0; transform: translateY(4px); } 
  to { opacity: 1; transform: translateY(0); } 
} 

@keyframes pickSoftReveal {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

 

/* Tiny invisible alive breathing */ 

.alive { animation: breathe 2.8s ease-in-out infinite; } 

 

@keyframes breathe { 

  0% { box-shadow: 0 10px 30px rgba(0,0,0,0.25); } 

  50% { box-shadow: 0 12px 34px rgba(0,0,0,0.28); } 

  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.25); } 

} 

 

.why-title { 

  margin: 8px 0 3px;

  color: rgba(242, 236, 228, 0.52); 

  font-size: 11.6px;

  letter-spacing: 0;
  text-transform: none;

} 

 

.trust-line { 

  font-size: 13px; 

  color: var(--text-dim); 

  margin-top: 6px; 

} 

 

.closure-line { 

  font-size: 12.2px; 

  color: rgba(242, 236, 228, 0.72); 

  text-align: center;
  margin: 6px auto 0;
  max-width: 34ch;
  line-height: 1.45;

} 

#openBtn + #pickClosure { margin-top: 14px; }
#pickClosure { margin-bottom: 10px; }

#screen-pick .pick-link-btn,
.pick-link-btn {
  margin-top: 10px;
}

.memory-cue {
  display: none;
  margin: 2px auto 0;
  padding: 7px 10px;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 236, 228, 0.68);
  font-size: 11.8px;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 340ms ease, transform 340ms ease;
}

.memory-cue.show {
  opacity: 1;
  transform: translateY(0);
}

.pick-footer {
  margin-top: 26px;
  padding-top: 28px;
  padding-bottom: 20px;
  display: grid;
  gap: 8px;
  justify-items: center;
  opacity: 0.88;
}

.pick-footer .footer-brand {
  font-size: 13px;
  color: var(--text-soft);
  opacity: 0.78;
}

.pick-footer .footer-links {
  margin-bottom: 0;
}

 

/* 10C) Refine section (CALM / HEADSPACE spacing) */ 

.refine { 

  margin-top: 12px; 

  padding: 18px 16px; 

  border-radius: 18px; 

  border: 1px solid rgba(255,255,255,0.08); 

  background: rgba(255,255,255,0.06); 

  opacity: 0; 

  transform: translateY(4px); 

  transition: opacity 240ms ease, transform 240ms ease; 

} 

 

.refine.show { 

  opacity: 1; 

  transform: translateY(0); 

} 

.refine-closing {

  opacity: 0;

  transform: translateY(-4px);

  transition: opacity 280ms ease, transform 280ms ease;

}

 

/* More breathing between groups */ 

.refine .chip-group { 

  gap: 12px 10px; 

  margin-top: 12px; 

} 

 

.refine-title { 

  font-size: 13px; 

  color: var(--text-soft); 

  margin-top: 18px; 

  margin-bottom: 2px; 

} 

 

.refine-title:first-child { margin-top: 0; } 

 

.refine-tip { 

  margin-top: 16px; 

  padding-top: 10px; 

  border-top: 1px solid rgba(255,255,255,0.08); 

  opacity: 0.9; 

} 

 

/* 11) CHECK-IN */ 

.checkin { 

  display: flex; 

  flex-direction: column; 

  gap: 0; 

  margin-top: 14px; 
  padding-top: 12px;

  animation: fadeIn 220ms ease forwards; 

} 

 

.checkin-title { 

  font-size: 13px; 

  color: var(--text-soft); 

  margin-top: 0; 

  margin-bottom: 0; 

} 

 

.checkin-title + .chip-group { margin-top: 8px; } 
.checkin .chip-group + .checkin-title { margin-top: 10px; }

 

#checkinNote { margin-top: 10px; } 

 

@keyframes fadeIn { 

  from { opacity: 0; transform: translateY(4px); } 

  to { opacity: 1; transform: translateY(0); } 

} 

 

.note { 

  min-height: 80px; 

  resize: vertical; 

  border-radius: 14px; 

  border: 1px solid rgba(255,255,255,0.08); 

  background: rgba(30,24,20,0.70); 

  color: var(--text-cream); 

  padding: 12px; 

} 

 

/* Warm message */ 

.warm-msg { 

  margin-top: 12px; 

  padding: 12px 14px; 

  border-radius: 16px; 

  border: 1px solid rgba(255,255,255,0.08); 

  background: rgba(91,111,134,0.18); 

  color: var(--text-parchment); 

  font-size: 14px; 

  opacity: 0; 

  transform: translateY(4px); 

  transition: opacity var(--t), transform var(--t); 

} 

 

.warm-msg.show { 

  opacity: 1; 

  transform: translateY(0); 

} 

 

/* 12) WAITLIST FORM */ 

.form-row { 

  display: flex; 

  flex-direction: column; 

  gap: 12px; 

} 

 

.form-row input[type="email"] { 

  width: 100%; 

  box-sizing: border-box; 

  border-radius: 16px; 

  border: 1px solid rgba(255,255,255,0.10); 

  background: rgba(30,24,20,0.62); 

  color: var(--text-cream); 

  padding: 14px 14px; 

  font-size: 15px; 

  outline: none; 

} 

 

.form-row input::placeholder { color: rgba(243,238,231,0.65); } 

 

/* 13) FOOTER */ 

.footer { 

  text-align: center; 

  padding: 36px 0 22px; 
  background: transparent;

  color: var(--text-dim); 

} 

 

.footer-links { margin-bottom: 10px; } 

 

.footer a { 

  color: var(--text-dim); 

  text-decoration: none; 

  margin: 0 8px; 

  opacity: 0.85; 

} 

 

.footer a:hover { opacity: 1; } 

 

.copyright { font-size: 12px; opacity: 0.85; } 

.home-footer {
  padding-top: 30px;
  padding-bottom: 24px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.home-footer .footer-brand {
  font-size: 13px;
  color: var(--text-soft);
  opacity: 0.82;
}

.home-footer .footer-links {
  margin-bottom: 0;
}

.tm {
  font-size: 0.6em;
  vertical-align: super;
  opacity: 0.8;
}

 

/* 14) SCREEN SHOW/HIDE */ 

.screen { display: none; } 

.screen.active { display: block; } 

 

/* 15) MOBILE TUNE */ 

@media (max-width: 420px) { 

  .container { padding: 34px 0 40px; } 

  .card { padding: 18px; } 

  #screen-pick .pick-kicker,
  #screen-pick .pick-label {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.34;
  }

  .closure-line {
    max-width: 100%;
    font-size: 12px;
  }

  .chip { padding: 12px 14px; } 

} 

 

/* Respect reduced motion */ 

@media (prefers-reduced-motion: reduce) { 

  .dot, .alive, .pick-fade-in { animation: none; } 

  .refine { transition: none; } 

  .modal-overlay, .modal-sheet { transition: none; } 

} 

 

/* ========================================================= 

   APPLE STYLE MODAL POPUP (Waitlist after Start Watching) 

   ========================================================= */ 

.modal-overlay { 

  position: fixed; 

  inset: 0; 

  display: grid; 

  place-items: center; 

  padding: 18px; 

  background: rgba(10, 8, 7, 0.55); 

  opacity: 0; 

  pointer-events: none; 

  transition: opacity 1000ms ease; 

  z-index: 80; 

} 

 

.modal-overlay.on { 

  opacity: 1; 

  pointer-events: auto; 

} 

 

.modal-sheet { 

  width: min(520px, 100%); 

  border-radius: 22px; 

  border: 1px solid rgba(255,255,255,0.10); 

  background: rgba(30,24,20,0.72); 

  backdrop-filter: blur(18px); 

  box-shadow: 0 18px 60px rgba(0,0,0,0.38); 

  padding: 18px 16px; 

  transform: translateY(4px); 

  opacity: 0; 

  transition: transform 1000ms ease, opacity 1000ms ease; 

} 

 

.modal-overlay.on .modal-sheet { 

  transform: translateY(0); 

  opacity: 1; 

} 

 

.modal-title { 

  font-size: 15px; 

  font-weight: 650; 

  color: var(--text-cream); 

  margin-bottom: 6px; 

} 

 

.modal-sub { 

  font-size: 13px; 

  color: var(--text-parchment); 

  margin-bottom: 14px; 

} 

 

.modal-note { 

  font-size: 12px; 

  color: var(--text-dim); 

  margin-top: 12px; 

  text-align: center; 

  opacity: 0.95; 

} 

 

.modal-link { 

  margin-top: 10px; 

  width: 100%; 

  background: none; 

  border: none; 

  color: rgba(231,223,214,0.92); 

  font-size: 14px; 

  cursor: pointer; 

  text-decoration: underline; 

  opacity: 0.9; 

  padding: 10px 8px; 

} 

 

.modal-link:hover { opacity: 1; } 

 

/* ========================================================= 

   SIMPLE PILL BUTTON (About / Privacy / Terms) 

   ========================================================= */ 

.pill-link { 

  display: inline-flex; 

  align-items: center; 

  justify-content: center; 

  width: auto; 

  align-self: flex-start; 

  padding: 12px 18px; 

  border-radius: 999px; 

  background: rgba(255,255,255,0.08); 

  border: 1px solid rgba(255,255,255,0.10); 

  color: var(--text-cream); 

  text-decoration: none; 

  font-size: 14px; 

  cursor: pointer; 

  transition: var(--t); 

} 

 

.pill-link:hover { background: rgba(255,255,255,0.12); } 

 

.cta-trust { 

  margin-top: 8px; 

  margin-bottom: 18px; 

  font-size: 0.9rem; 

  opacity: 0.75; 

  text-align: center; 

  color: #e7e2d9; 

  letter-spacing: 0.2px; 

} 

.cta-wrap { margin-top: 16px; display: grid; gap: 10px; }

.cta-btn { width: 100%; max-width: 420px; justify-self: start; display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; line-height: 1.1; text-decoration: none !important; }

.back-link { display: inline-block; text-decoration: none; opacity: 0.85; }

.back-link:hover { opacity: 1; }

.wtw-page .wtw-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; align-items: center; }

.wtw-page .wtw-btn { display: block; width: 100%; max-width: 420px; text-align: center; padding: 12px 16px; border-radius: 14px; text-decoration: none; font-weight: 600; line-height: 1.2; color: var(--text-cream); background: linear-gradient(180deg, rgba(91,111,134,0.95), rgba(91,111,134,0.82)); border: 1px solid var(--accent-border); box-shadow: 0 8px 20px rgba(0,0,0,0.22); }

.wtw-page .wtw-btn:active { transform: translateY(1px); }

.wtw-page .wtw-back { display: inline-block; text-decoration: none; opacity: 0.85; font-size: 14px; color: var(--text-parchment); }

.wtw-page .wtw-back:hover { opacity: 1; text-decoration: underline; }

.cta-btn {
  display: inline-block;
  background: rgba(120,150,190,0.55);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 18px;
}

.cta-btn:hover {
  background: rgba(120,150,190,0.75);
}

.back-link {
  display: block;
  margin-top: 14px;
  text-decoration: none;
  opacity: 0.8;
}

.back-link:hover {
  opacity: 1;
}

.back-link,
.back-link:visited {
  color: #cfd6ff;
  text-decoration: none;
}

.back-link:hover {
  opacity: 0.9;
}

.card a,
.card a:visited {
  color: #9bbcff;
  text-decoration: underline;
}
