284 lines
13 KiB
HTML
284 lines
13 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=390, initial-scale=1">
|
||
|
|
<title>Kalei — Choose Your Ritual</title>
|
||
|
|
<link rel="stylesheet" href="../../assets/design-system.css">
|
||
|
|
<style>
|
||
|
|
.ritual-card {
|
||
|
|
border-radius: var(--radius-2xl);
|
||
|
|
overflow: hidden;
|
||
|
|
margin-bottom: var(--space-4);
|
||
|
|
text-decoration: none;
|
||
|
|
display: block;
|
||
|
|
transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
|
||
|
|
border: 1px solid;
|
||
|
|
}
|
||
|
|
.ritual-card-header {
|
||
|
|
padding: var(--space-5) var(--space-4) var(--space-4);
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.ritual-card-body {
|
||
|
|
padding: var(--space-3) var(--space-4) var(--space-4);
|
||
|
|
border-top: 1px solid;
|
||
|
|
}
|
||
|
|
.ritual-name {
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
margin-bottom: 4px;
|
||
|
|
}
|
||
|
|
.ritual-tagline {
|
||
|
|
font-size: 12px;
|
||
|
|
color: var(--dim-light);
|
||
|
|
margin-top: 2px;
|
||
|
|
line-height: 1.4;
|
||
|
|
}
|
||
|
|
.ritual-duration {
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 600;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 4px;
|
||
|
|
padding: 4px 10px;
|
||
|
|
border-radius: var(--radius-full);
|
||
|
|
margin-top: 8px;
|
||
|
|
}
|
||
|
|
.ritual-steps-preview {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 6px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.ritual-step-chip {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 4px;
|
||
|
|
height: 26px;
|
||
|
|
padding: 0 10px;
|
||
|
|
border-radius: var(--radius-full);
|
||
|
|
font-size: 11px;
|
||
|
|
font-weight: 500;
|
||
|
|
background: rgba(255,255,255,0.08);
|
||
|
|
}
|
||
|
|
.ritual-arrow {
|
||
|
|
font-size: 10px;
|
||
|
|
opacity: 0.35;
|
||
|
|
color: var(--dim-light);
|
||
|
|
}
|
||
|
|
/* Morning — Amethyst */
|
||
|
|
.ritual-morning {
|
||
|
|
background: rgba(139,92,246,0.08);
|
||
|
|
border-color: rgba(139,92,246,0.3);
|
||
|
|
}
|
||
|
|
.ritual-morning .ritual-card-header {
|
||
|
|
background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(99,102,241,0.08));
|
||
|
|
}
|
||
|
|
.ritual-morning .ritual-card-body { border-color: rgba(139,92,246,0.18); }
|
||
|
|
.ritual-morning:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(139,92,246,0.22); }
|
||
|
|
/* Evening — Sapphire */
|
||
|
|
.ritual-evening {
|
||
|
|
background: rgba(59,130,246,0.08);
|
||
|
|
border-color: rgba(59,130,246,0.3);
|
||
|
|
}
|
||
|
|
.ritual-evening .ritual-card-header {
|
||
|
|
background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(30,58,138,0.08));
|
||
|
|
}
|
||
|
|
.ritual-evening .ritual-card-body { border-color: rgba(59,130,246,0.18); }
|
||
|
|
.ritual-evening:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(59,130,246,0.22); }
|
||
|
|
/* Quick — Emerald */
|
||
|
|
.ritual-quick {
|
||
|
|
background: rgba(16,185,129,0.08);
|
||
|
|
border-color: rgba(16,185,129,0.3);
|
||
|
|
}
|
||
|
|
.ritual-quick .ritual-card-header {
|
||
|
|
background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(4,120,87,0.08));
|
||
|
|
}
|
||
|
|
.ritual-quick .ritual-card-body { border-color: rgba(16,185,129,0.18); }
|
||
|
|
.ritual-quick:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(16,185,129,0.22); }
|
||
|
|
.ritual-bg-deco {
|
||
|
|
position: absolute;
|
||
|
|
top: -20px;
|
||
|
|
right: -20px;
|
||
|
|
width: 110px;
|
||
|
|
height: 110px;
|
||
|
|
border-radius: 50%;
|
||
|
|
opacity: 0.07;
|
||
|
|
filter: blur(24px);
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
.intro-text {
|
||
|
|
padding: var(--space-2) 0 var(--space-4);
|
||
|
|
font-size: 14px;
|
||
|
|
color: var(--dim-light);
|
||
|
|
line-height: 1.6;
|
||
|
|
}
|
||
|
|
.streak-nudge {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 6px;
|
||
|
|
font-size: 12px;
|
||
|
|
color: var(--amber-light);
|
||
|
|
font-weight: 600;
|
||
|
|
margin-top: 6px;
|
||
|
|
}
|
||
|
|
.streak-nudge-dot {
|
||
|
|
width: 7px;
|
||
|
|
height: 7px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: var(--amber);
|
||
|
|
box-shadow: 0 0 6px rgba(245,158,11,0.5);
|
||
|
|
animation: pulse 2s ease-in-out infinite;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="device-frame">
|
||
|
|
|
||
|
|
<!-- STATUS BAR -->
|
||
|
|
<div class="status-bar">
|
||
|
|
<span class="time">8:47</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>
|
||
|
|
|
||
|
|
<!-- NAV HEADER -->
|
||
|
|
<div class="nav-header">
|
||
|
|
<a class="nav-back" href="../you/35-you-profile.html">
|
||
|
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||
|
|
<path d="M12 4L6 10L12 16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||
|
|
</svg>
|
||
|
|
</a>
|
||
|
|
<span class="nav-title">Your Rituals</span>
|
||
|
|
<span class="nav-action">
|
||
|
|
<a href="49-ritual-streak.html" style="text-decoration:none; color: var(--amber-light); font-size:13px; font-weight:600;">14 🔥</a>
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- SCREEN CONTENT -->
|
||
|
|
<div class="screen-content" style="padding-top: var(--space-2);">
|
||
|
|
|
||
|
|
<div class="intro-text">
|
||
|
|
Choose the ritual that fits this moment. Each one is a different shape of care — and Alex has been showing up for 14 days straight.
|
||
|
|
<div class="streak-nudge">
|
||
|
|
<span class="streak-nudge-dot"></span>
|
||
|
|
Longest streak yet. Keep the thread going.
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Morning Clarity -->
|
||
|
|
<a class="ritual-card ritual-morning" href="45-ritual-morning.html">
|
||
|
|
<div class="ritual-card-header">
|
||
|
|
<div class="ritual-bg-deco" style="background: var(--amethyst);"></div>
|
||
|
|
<div style="display:flex; align-items:center; gap: var(--space-3); margin-bottom: var(--space-2);">
|
||
|
|
<svg width="36" height="36" viewBox="0 0 36 36">
|
||
|
|
<defs><linearGradient id="mGr" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#C4B5FD"/><stop offset="100%" stop-color="#7C3AED"/></linearGradient></defs>
|
||
|
|
<g transform="translate(18,18)">
|
||
|
|
<path d="M0,0 L3,-13 L0,-15 L-3,-13Z" fill="url(#mGr)" opacity="0.9"/>
|
||
|
|
<g transform="rotate(60)"><path d="M0,0 L3,-13 L0,-15 L-3,-13Z" fill="url(#mGr)" opacity="0.7"/></g>
|
||
|
|
<g transform="rotate(120)"><path d="M0,0 L3,-13 L0,-15 L-3,-13Z" fill="url(#mGr)" opacity="0.8"/></g>
|
||
|
|
<g transform="rotate(180)"><path d="M0,0 L3,-13 L0,-15 L-3,-13Z" fill="url(#mGr)" opacity="0.7"/></g>
|
||
|
|
<g transform="rotate(240)"><path d="M0,0 L3,-13 L0,-15 L-3,-13Z" fill="url(#mGr)" opacity="0.9"/></g>
|
||
|
|
<g transform="rotate(300)"><path d="M0,0 L3,-13 L0,-15 L-3,-13Z" fill="url(#mGr)" opacity="0.8"/></g>
|
||
|
|
<circle r="3" fill="white" opacity="0.2"/>
|
||
|
|
</g>
|
||
|
|
</svg>
|
||
|
|
<div>
|
||
|
|
<div class="ritual-name" style="color: var(--amethyst-light);">Morning Clarity</div>
|
||
|
|
<div class="ritual-tagline">Set your intention before the day sets it for you</div>
|
||
|
|
<div class="ritual-duration" style="background: rgba(139,92,246,0.15); color: var(--amethyst-light);">
|
||
|
|
<svg width="12" height="12" viewBox="0 0 12 12"><circle cx="6" cy="6" r="5" fill="none" stroke="currentColor" stroke-width="1"/><path d="M6 3v3l2 2" stroke="currentColor" stroke-width="1" stroke-linecap="round"/></svg>
|
||
|
|
15 min · 4 steps
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="ritual-card-body">
|
||
|
|
<div class="label text-dim" style="margin-bottom: var(--space-2);">Steps</div>
|
||
|
|
<div class="ritual-steps-preview">
|
||
|
|
<div class="ritual-step-chip" style="color: var(--amber-light);">Intention</div>
|
||
|
|
<div class="ritual-arrow">→</div>
|
||
|
|
<div class="ritual-step-chip" style="color: var(--amethyst-light);">Fragments</div>
|
||
|
|
<div class="ritual-arrow">→</div>
|
||
|
|
<div class="ritual-step-chip" style="color: var(--sapphire-light);">Rehearsal</div>
|
||
|
|
<div class="ritual-arrow">→</div>
|
||
|
|
<div class="ritual-step-chip" style="color: var(--emerald-light);">Commit</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<!-- Evening Wind-Down -->
|
||
|
|
<a class="ritual-card ritual-evening" href="46-ritual-evening.html">
|
||
|
|
<div class="ritual-card-header">
|
||
|
|
<div class="ritual-bg-deco" style="background: var(--sapphire);"></div>
|
||
|
|
<div style="display:flex; align-items:center; gap: var(--space-3); margin-bottom: var(--space-2);">
|
||
|
|
<svg width="36" height="36" viewBox="0 0 36 36">
|
||
|
|
<defs><linearGradient id="eGr" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#93C5FD"/><stop offset="100%" stop-color="#2563EB"/></linearGradient></defs>
|
||
|
|
<circle cx="18" cy="18" r="13" fill="none" stroke="url(#eGr)" stroke-width="1.5" opacity="0.5"/>
|
||
|
|
<circle cx="18" cy="18" r="8" fill="none" stroke="url(#eGr)" stroke-width="1.5" opacity="0.7"/>
|
||
|
|
<circle cx="18" cy="18" r="3" fill="url(#eGr)" opacity="0.8"/>
|
||
|
|
</svg>
|
||
|
|
<div>
|
||
|
|
<div class="ritual-name" style="color: var(--sapphire-light);">Evening Wind-Down</div>
|
||
|
|
<div class="ritual-tagline">Let the day settle before you do</div>
|
||
|
|
<div class="ritual-duration" style="background: rgba(59,130,246,0.15); color: var(--sapphire-light);">
|
||
|
|
<svg width="12" height="12" viewBox="0 0 12 12"><circle cx="6" cy="6" r="5" fill="none" stroke="currentColor" stroke-width="1"/><path d="M6 3v3l2 2" stroke="currentColor" stroke-width="1" stroke-linecap="round"/></svg>
|
||
|
|
20 min · 4 steps
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="ritual-card-body">
|
||
|
|
<div class="label text-dim" style="margin-bottom: var(--space-2);">Steps</div>
|
||
|
|
<div class="ritual-steps-preview">
|
||
|
|
<div class="ritual-step-chip" style="color: var(--sapphire-light);">Day Reflection</div>
|
||
|
|
<div class="ritual-arrow">→</div>
|
||
|
|
<div class="ritual-step-chip" style="color: var(--amethyst-light);">Pattern Check</div>
|
||
|
|
<div class="ritual-arrow">→</div>
|
||
|
|
<div class="ritual-step-chip" style="color: var(--emerald-light);">Gratitude</div>
|
||
|
|
<div class="ritual-arrow">→</div>
|
||
|
|
<div class="ritual-step-chip" style="color: var(--indigo-light);">Tomorrow</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<!-- Quick Grounding -->
|
||
|
|
<a class="ritual-card ritual-quick" href="47-ritual-quick.html" style="margin-bottom: var(--space-6);">
|
||
|
|
<div class="ritual-card-header">
|
||
|
|
<div class="ritual-bg-deco" style="background: var(--emerald);"></div>
|
||
|
|
<div style="display:flex; align-items:center; gap: var(--space-3); margin-bottom: var(--space-2);">
|
||
|
|
<svg width="36" height="36" viewBox="0 0 36 36">
|
||
|
|
<defs><linearGradient id="qGr" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#6EE7B7"/><stop offset="100%" stop-color="#059669"/></linearGradient></defs>
|
||
|
|
<path d="M18 4L28 10V22L18 28L8 22V10Z" fill="none" stroke="url(#qGr)" stroke-width="1.5" opacity="0.8"/>
|
||
|
|
<path d="M18 10L24 14V20L18 24L12 20V14Z" fill="url(#qGr)" opacity="0.3"/>
|
||
|
|
</svg>
|
||
|
|
<div>
|
||
|
|
<div class="ritual-name" style="color: var(--emerald-light);">Quick Grounding</div>
|
||
|
|
<div class="ritual-tagline">Two minutes to come back to yourself when stressed</div>
|
||
|
|
<div class="ritual-duration" style="background: rgba(16,185,129,0.15); color: var(--emerald-light);">
|
||
|
|
<svg width="12" height="12" viewBox="0 0 12 12"><circle cx="6" cy="6" r="5" fill="none" stroke="currentColor" stroke-width="1"/><path d="M6 3v3l2 2" stroke="currentColor" stroke-width="1" stroke-linecap="round"/></svg>
|
||
|
|
2 min · 2 steps
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="ritual-card-body">
|
||
|
|
<div class="label text-dim" style="margin-bottom: var(--space-2);">Steps</div>
|
||
|
|
<div class="ritual-steps-preview">
|
||
|
|
<div class="ritual-step-chip" style="color: var(--amethyst-light);">Name it</div>
|
||
|
|
<div class="ritual-arrow">→</div>
|
||
|
|
<div class="ritual-step-chip" style="color: var(--emerald-light);">Ground it</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|