231 lines
8.4 KiB
HTML
231 lines
8.4 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=390, initial-scale=1">
|
||
|
|
<title>Kalei — Weekly Pulse (Step 2)</title>
|
||
|
|
<link rel="stylesheet" href="../../assets/design-system.css">
|
||
|
|
<style>
|
||
|
|
@keyframes breathing {
|
||
|
|
0%, 100% { opacity: 0.5; transform: scale(1) translate(-50%, -50%); }
|
||
|
|
50% { opacity: 0.8; transform: scale(1.06) translate(-48%, -52%); }
|
||
|
|
}
|
||
|
|
@keyframes fadeIn {
|
||
|
|
from { opacity: 0; transform: translateY(10px); }
|
||
|
|
to { opacity: 1; transform: translateY(0); }
|
||
|
|
}
|
||
|
|
.bg-aura {
|
||
|
|
position: absolute;
|
||
|
|
top: 40%;
|
||
|
|
left: 50%;
|
||
|
|
width: 240px;
|
||
|
|
height: 240px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
|
||
|
|
filter: blur(50px);
|
||
|
|
animation: breathing 8s ease-in-out infinite;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
.pulse-frame {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
flex: 1;
|
||
|
|
padding: 0 var(--space-4) var(--space-6);
|
||
|
|
}
|
||
|
|
.step-indicator {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding: var(--space-4) 0 var(--space-2);
|
||
|
|
}
|
||
|
|
.step-label {
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: 600;
|
||
|
|
color: var(--dim-light);
|
||
|
|
}
|
||
|
|
.step-dots {
|
||
|
|
display: flex;
|
||
|
|
gap: 6px;
|
||
|
|
}
|
||
|
|
.step-dot {
|
||
|
|
width: 6px;
|
||
|
|
height: 6px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: var(--twilight);
|
||
|
|
}
|
||
|
|
.step-dot.complete { background: var(--dim-light); }
|
||
|
|
.step-dot.active {
|
||
|
|
background: linear-gradient(135deg, var(--amethyst), var(--sapphire));
|
||
|
|
box-shadow: 0 0 8px rgba(59,130,246,0.4);
|
||
|
|
}
|
||
|
|
.close-btn {
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: var(--deep-glass);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
text-decoration: none;
|
||
|
|
border: none;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
.pulse-heading {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: 26px;
|
||
|
|
font-weight: 700;
|
||
|
|
color: var(--pure-light);
|
||
|
|
margin-bottom: var(--space-5);
|
||
|
|
letter-spacing: -0.01em;
|
||
|
|
animation: fadeIn 0.4s ease-out 0.1s both;
|
||
|
|
opacity: 0;
|
||
|
|
line-height: 1.2;
|
||
|
|
}
|
||
|
|
/* Observation list */
|
||
|
|
.observation-list {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: var(--space-3);
|
||
|
|
margin-bottom: var(--space-5);
|
||
|
|
}
|
||
|
|
.observation-item {
|
||
|
|
display: flex;
|
||
|
|
align-items: flex-start;
|
||
|
|
gap: var(--space-3);
|
||
|
|
animation: fadeIn 0.4s ease-out both;
|
||
|
|
opacity: 0;
|
||
|
|
}
|
||
|
|
.obs-dot {
|
||
|
|
width: 10px;
|
||
|
|
height: 10px;
|
||
|
|
border-radius: 50%;
|
||
|
|
flex-shrink: 0;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
.obs-dot.amethyst { background: var(--amethyst); box-shadow: 0 0 8px rgba(139,92,246,0.5); }
|
||
|
|
.obs-dot.amber { background: var(--amber); box-shadow: 0 0 8px rgba(245,158,11,0.5); }
|
||
|
|
.obs-dot.emerald { background: var(--emerald); box-shadow: 0 0 8px rgba(16,185,129,0.5); }
|
||
|
|
.obs-dot.sapphire { background: var(--sapphire); box-shadow: 0 0 8px rgba(59,130,246,0.5); }
|
||
|
|
.obs-text {
|
||
|
|
font-size: 14px;
|
||
|
|
color: var(--soft-light);
|
||
|
|
line-height: 1.6;
|
||
|
|
}
|
||
|
|
.obs-text strong {
|
||
|
|
color: var(--pure-light);
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
/* Highlighted callout */
|
||
|
|
.callout-card {
|
||
|
|
background: rgba(245,158,11,0.06);
|
||
|
|
border: 1px solid rgba(245,158,11,0.2);
|
||
|
|
border-radius: var(--radius-xl);
|
||
|
|
padding: var(--space-4);
|
||
|
|
margin-bottom: var(--space-5);
|
||
|
|
animation: fadeIn 0.4s ease-out 0.55s both;
|
||
|
|
opacity: 0;
|
||
|
|
}
|
||
|
|
.callout-label {
|
||
|
|
font-size: 10px;
|
||
|
|
font-weight: 600;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: 0.07em;
|
||
|
|
color: var(--amber-light);
|
||
|
|
margin-bottom: var(--space-2);
|
||
|
|
}
|
||
|
|
.callout-text {
|
||
|
|
font-size: 14px;
|
||
|
|
color: var(--soft-light);
|
||
|
|
line-height: 1.65;
|
||
|
|
}
|
||
|
|
.callout-text strong {
|
||
|
|
color: var(--amber-light);
|
||
|
|
}
|
||
|
|
.next-btn {
|
||
|
|
height: 52px;
|
||
|
|
background: linear-gradient(135deg, var(--amethyst), var(--sapphire));
|
||
|
|
color: var(--pure-light);
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 600;
|
||
|
|
border-radius: var(--radius-lg);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
text-decoration: none;
|
||
|
|
box-shadow: 0 0 24px rgba(59,130,246,0.2);
|
||
|
|
margin-top: auto;
|
||
|
|
transition: opacity 0.2s ease-out;
|
||
|
|
animation: fadeIn 0.4s ease-out 0.65s both;
|
||
|
|
opacity: 0;
|
||
|
|
}
|
||
|
|
.next-btn:hover { opacity: 0.88; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="device-frame">
|
||
|
|
<div class="bg-aura"></div>
|
||
|
|
|
||
|
|
<div class="status-bar">
|
||
|
|
<span class="time">9:41</span>
|
||
|
|
<div class="icons">
|
||
|
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="7" width="2.5" height="5" rx="0.5" fill="#E2E8F0" opacity="0.4"/><rect x="4.5" y="5" width="2.5" height="7" rx="0.5" fill="#E2E8F0" opacity="0.6"/><rect x="8" y="3" width="2.5" height="9" rx="0.5" fill="#E2E8F0" opacity="0.8"/><rect x="11.5" y="1" width="2.5" height="11" rx="0.5" fill="#E2E8F0"/></svg>
|
||
|
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M 2,8 C 4,4 12,4 14,8" stroke="#E2E8F0" stroke-width="1.2" fill="none" stroke-linecap="round"/><path d="M 4,10 C 6,7 10,7 12,10" stroke="#E2E8F0" stroke-width="1" fill="none" opacity="0.8" stroke-linecap="round"/><circle cx="8" cy="12" r="1.2" fill="#E2E8F0"/></svg>
|
||
|
|
<svg width="24" height="12" viewBox="0 0 24 12" fill="none"><rect x="0.5" y="0.5" width="21" height="11" rx="2.5" stroke="#E2E8F0" stroke-width="1" opacity="0.5"/><rect x="22" y="3" width="2" height="6" rx="1" fill="#E2E8F0" opacity="0.3"/><rect x="2" y="2" width="16" height="8" rx="1.5" fill="#10B981" opacity="0.9"/></svg>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="pulse-frame">
|
||
|
|
<div class="step-indicator">
|
||
|
|
<span class="step-label">Step 2 of 3</span>
|
||
|
|
<div class="step-dots">
|
||
|
|
<div class="step-dot complete"></div>
|
||
|
|
<div class="step-dot active"></div>
|
||
|
|
<div class="step-dot"></div>
|
||
|
|
</div>
|
||
|
|
<a class="close-btn" href="../turn/10-turn-home.html">
|
||
|
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none">
|
||
|
|
<path d="M2 2L10 10M10 2L2 10" stroke="var(--dim-light)" stroke-width="1.5" stroke-linecap="round"/>
|
||
|
|
</svg>
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="pulse-heading">Here's what I noticed this week</div>
|
||
|
|
|
||
|
|
<div class="observation-list">
|
||
|
|
<!-- 14 Turns — canonical data -->
|
||
|
|
<div class="observation-item" style="animation-delay: 0.15s;">
|
||
|
|
<div class="obs-dot amethyst"></div>
|
||
|
|
<div class="obs-text"><strong>14 Turns</strong> this week — Wednesday was your most active day. That's the day of the presentation. You processed it in real time.</div>
|
||
|
|
</div>
|
||
|
|
<!-- Catastrophizing dropped from 5 last week — canonical -->
|
||
|
|
<div class="observation-item" style="animation-delay: 0.25s;">
|
||
|
|
<div class="obs-dot amber"></div>
|
||
|
|
<div class="obs-text">Catastrophizing appeared <strong>3 times</strong> — down from 5 last week. The pattern is still there, but it's losing frequency.</div>
|
||
|
|
</div>
|
||
|
|
<!-- 5 mirror sessions — canonical -->
|
||
|
|
<div class="observation-item" style="animation-delay: 0.35s;">
|
||
|
|
<div class="obs-dot emerald"></div>
|
||
|
|
<div class="obs-text"><strong>5 Mirror sessions</strong> and your streak hit <strong>14 days</strong> — the longest you've sustained consistent reflection.</div>
|
||
|
|
</div>
|
||
|
|
<!-- Goal evidence tiles — canonical: 2 new for "Present with confidence" -->
|
||
|
|
<div class="observation-item" style="animation-delay: 0.45s;">
|
||
|
|
<div class="obs-dot sapphire"></div>
|
||
|
|
<div class="obs-text"><strong>2 new evidence tiles</strong> added to "Present with confidence" — both from moments this week where you held your ground.</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Highlighted callout — feeling vs data gap -->
|
||
|
|
<div class="callout-card">
|
||
|
|
<div class="callout-label">Something to notice</div>
|
||
|
|
<div class="callout-text">
|
||
|
|
You rated this week as <strong>"Steady"</strong> — but the data shows real movement. Catastrophizing down, streak at an all-time high, goal evidence growing. Sometimes the feeling lags behind the evidence. The evidence is real.
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<a class="next-btn" href="76-guide-pulse-focus.html">Next</a>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|