/* ============================================================
   haru.club — dew-pearl frutiger aero diary
   ============================================================ */

:root {
    --sakura-mist: #FFD9DD;
    --glass-mint: #A6E3D7;
    --dawn-lavender: #C9B8FF;
    --peach-bloom: #FFB69E;
    --twilight-iris: #5A4A6E;
    --cloudpaper: #F4F1EC;
    --pool-cyan: #7FCFD0;
    --well-water: #2A2438;

    --tube-width: 720px;
    --tube-radius-x: 360px;
    --tube-radius-y: 180px;

    --font-display: 'Quicksand', system-ui, sans-serif;
    --font-body: 'Nunito', system-ui, sans-serif;
    --font-pixel: 'DotGothic16', 'Courier New', monospace;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--twilight-iris);
    font-size: 17px;
    line-height: 1.78;
    background:
        radial-gradient(ellipse at 18% 8%, rgba(255, 217, 221, 0.55) 0%, transparent 42%),
        radial-gradient(ellipse at 82% 12%, rgba(166, 227, 215, 0.42) 0%, transparent 38%),
        radial-gradient(ellipse at 50% 96%, rgba(201, 184, 255, 0.34) 0%, transparent 50%),
        linear-gradient(180deg, #F8F4EE 0%, #F4F1EC 36%, #EDE9E2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    cursor: default;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 720px) {
    body { font-size: 16px; }
}

/* ============================================================
   The bubble drift field
   ============================================================ */

.bubble-field {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -22vh;
    left: var(--bx, 50%);
    width: var(--bsize, 80px);
    height: var(--bsize, 80px);
    border-radius: 50%;
    opacity: var(--bopacity, 0.28);
    background:
        radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 217, 221, 0.55) 18%, rgba(166, 227, 215, 0.32) 52%, rgba(127, 207, 208, 0.28) 78%, rgba(127, 207, 208, 0.06) 100%);
    box-shadow:
        inset -6px -8px 18px rgba(255, 255, 255, 0.32),
        inset 6px 8px 22px rgba(255, 217, 221, 0.42),
        0 0 24px rgba(166, 227, 215, 0.22);
    will-change: transform, opacity;
    animation:
        bubbleRise var(--bdur, 90s) var(--bdelay, 0s) cubic-bezier(0.32, 0.04, 0.78, 0.96) infinite,
        bubbleSway var(--bswaydur, 14s) var(--bdelay, 0s) ease-in-out infinite;
}

.bubble::before {
    content: "";
    position: absolute;
    top: 14%;
    left: 18%;
    width: 28%;
    height: 22%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.bubble::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.45) 82%, rgba(255, 217, 221, 0.5) 92%, rgba(255, 182, 158, 0.18) 100%);
    pointer-events: none;
}

@keyframes bubbleRise {
    0%   { transform: translate3d(0, 0, 0) scale(0.94); }
    50%  { transform: translate3d(var(--bdrift, 30px), -62vh, 0) scale(1); }
    100% { transform: translate3d(calc(var(--bdrift, 30px) * 0.4), -132vh, 0) scale(0.96); }
}

@keyframes bubbleSway {
    0%, 100% { margin-left: 0; }
    50% { margin-left: var(--bsway, 22px); }
}

/* ============================================================
   Pre-H1 stars
   ============================================================ */

.star-scatter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14vh;
    pointer-events: none;
    z-index: 0;
}

.star-scatter span {
    position: absolute;
    font-family: var(--font-pixel);
    color: var(--twilight-iris);
    opacity: 0.34;
    font-size: 10px;
    user-select: none;
}

/* ============================================================
   Drift petal (one-time crossing)
   ============================================================ */

.drift-petal {
    position: fixed;
    top: 18vh;
    left: -10vw;
    width: 48px;
    height: 48px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: petalDrift 14s 2.6s ease-in-out 1 forwards;
}

@keyframes petalDrift {
    0%   { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
    8%   { opacity: 0.85; }
    50%  { transform: translate3d(60vw, -2vh, 0) rotate(140deg); opacity: 0.85; }
    92%  { opacity: 0.85; }
    100% { transform: translate3d(120vw, 4vh, 0) rotate(280deg); opacity: 0; }
}

/* ============================================================
   Day counter (top right droplet)
   ============================================================ */

.day-counter {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 50;
    width: 64px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(127, 207, 208, 0.32));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.day-counter.tick-pulse {
    animation: tickPulse 0.6s ease-out;
}

@keyframes tickPulse {
    0%   { transform: scale(1); filter: drop-shadow(0 4px 12px rgba(127, 207, 208, 0.32)); }
    50%  { transform: scale(1.18); filter: drop-shadow(0 6px 24px rgba(127, 207, 208, 0.7)); }
    100% { transform: scale(1); filter: drop-shadow(0 4px 12px rgba(127, 207, 208, 0.32)); }
}

.day-counter-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.day-counter-text {
    position: relative;
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--twilight-iris);
    letter-spacing: 0.04em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(8px);
    z-index: 2;
}

/* ============================================================
   Cursor bubble
   ============================================================ */

.cursor-bubble {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    pointer-events: none;
    z-index: 30;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 0.6s ease;
    will-change: transform, opacity;
    filter: drop-shadow(0 2px 8px rgba(127, 207, 208, 0.42));
}

.cursor-bubble.active { opacity: 0.85; }

.cursor-bubble.releasing {
    transition: transform 14s cubic-bezier(0.32, 0.04, 0.78, 0.96), opacity 14s ease-out;
    opacity: 0;
}

@media (max-width: 720px) {
    .cursor-bubble { display: none; }
}

/* ============================================================
   The day-tube (capsule column)
   ============================================================ */

.day-tube {
    position: relative;
    width: var(--tube-width);
    max-width: 92%;
    margin: 18vh auto;
    padding: 96px 64px 0;
    border-radius: var(--tube-radius-x) / var(--tube-radius-y);
    background:
        linear-gradient(180deg, rgba(201, 184, 255, 0.34) 0%, rgba(166, 227, 215, 0.22) 50%, rgba(255, 217, 221, 0.32) 100%);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border: 1.5px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 24px 70px rgba(42, 36, 56, 0.12),
        0 6px 16px rgba(127, 207, 208, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    isolation: isolate;
}

.day-tube::before {
    /* chrome bevel border */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(166, 227, 215, 0.65) 22%,
        rgba(201, 184, 255, 0.55) 50%,
        rgba(255, 217, 221, 0.65) 78%,
        rgba(255, 255, 255, 0.85) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 4;
}

.day-tube::after {
    /* outer rim halo */
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(ellipse at 28% 18%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 3;
}

.tube-light {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at var(--lx, 30%) var(--ly, 20%), rgba(255, 255, 255, 0.55) 0%, rgba(255, 217, 221, 0.18) 18%, rgba(255, 255, 255, 0) 42%);
    animation: tubeLightDrift 38s ease-in-out infinite;
}

@keyframes tubeLightDrift {
    0%   { background-position: 20% 14%; }
    25%  { background-position: 78% 32%; }
    50%  { background-position: 62% 80%; }
    75%  { background-position: 14% 56%; }
    100% { background-position: 20% 14%; }
}

@media (max-width: 720px) {
    .day-tube {
        padding: 72px 28px 0;
        border-radius: 240px / 140px;
        margin: 10vh auto;
    }
}

/* ============================================================
   Sections
   ============================================================ */

.section {
    position: relative;
    padding: 64px 0 72px;
    z-index: 2;
}

.section-greeting { padding-top: 80px; }

.section-anchor-bubble {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 32px;
    pointer-events: none;
    animation: anchorRotate 240s linear infinite;
    filter: drop-shadow(0 8px 24px rgba(255, 217, 221, 0.4));
}

.section-anchor-bubble svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes anchorRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 720px) {
    .section-anchor-bubble {
        width: 200px;
        height: 200px;
    }
}

/* ============================================================
   Typography
   ============================================================ */

.welcome-pixel {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--pool-cyan);
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: 0 0 8px rgba(127, 207, 208, 0.35);
    margin-bottom: 18px;
}

.day-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.6rem, 6.5vw, 4.4rem);
    letter-spacing: -0.005em;
    line-height: 1.06;
    text-align: center;
    color: var(--twilight-iris);
    margin-bottom: 28px;
}

.section-h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 3.4vw, 2.05rem);
    letter-spacing: 0;
    line-height: 1.18;
    text-align: center;
    color: var(--twilight-iris);
    margin-bottom: 36px;
}

.lede,
.lede-sub {
    font-family: var(--font-body);
    text-align: center;
    color: var(--twilight-iris);
    max-width: 520px;
    margin: 0 auto 18px;
}

.lede { font-size: 1.05rem; line-height: 1.78; }
.lede-sub { font-size: 0.95rem; opacity: 0.78; font-style: italic; }

.diary {
    font-family: var(--font-body);
    color: var(--twilight-iris);
    max-width: 560px;
    margin: 0 auto 22px;
    line-height: 1.78;
}

.diary-center {
    text-align: center;
    font-size: 0.96rem;
    opacity: 0.85;
    margin-bottom: 32px;
}

.diary em {
    font-style: italic;
    font-weight: 600;
    color: var(--peach-bloom);
}

.pull-quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
    text-align: center;
    color: var(--twilight-iris);
    line-height: 1.4;
    max-width: 520px;
    margin: 12px auto 32px;
    padding: 0 18px;
    position: relative;
}

/* ============================================================
   Inline word-bubble
   ============================================================ */

.word-bubble {
    position: relative;
    display: inline-block;
    padding: 2px 14px;
    margin: 0 2px;
    color: var(--twilight-iris);
    border-radius: 999px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 217, 221, 0.55) 30%, rgba(166, 227, 215, 0.45) 65%, rgba(127, 207, 208, 0.25) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18),
        0 2px 6px rgba(127, 207, 208, 0.22);
    font-weight: 500;
    white-space: nowrap;
}

.word-bubble::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 8px;
    width: 14px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    pointer-events: none;
}

/* ============================================================
   Bubble period (punctuation bubble)
   ============================================================ */

.bubble-period {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.18em;
    margin-left: 1px;
}

.bubble-period svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================================
   Pearl strand (section divider)
   ============================================================ */

.pearl-strand {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 12px 0;
    margin: 0 auto;
    width: 100%;
}

.pearl {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #ffffff 0%, var(--sakura-mist) 38%, var(--peach-bloom) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 1px 3px rgba(255, 182, 158, 0.35);
    opacity: 0.6;
    animation: pearlPulse 4s ease-in-out infinite;
}

.pearl:nth-child(1) { animation-delay: 0s; }
.pearl:nth-child(2) { animation-delay: 0.2s; }
.pearl:nth-child(3) { animation-delay: 0.4s; }
.pearl:nth-child(4) { animation-delay: 0.6s; }
.pearl:nth-child(5) { animation-delay: 0.8s; }
.pearl:nth-child(6) { animation-delay: 1.0s; }
.pearl:nth-child(7) { animation-delay: 1.2s; }

@keyframes pearlPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1.0; transform: scale(1.08); }
}

/* ============================================================
   Marginalia dewdrops
   ============================================================ */

.dewdrop-marg {
    position: absolute;
    width: 12px;
    height: 16px;
    pointer-events: none;
    opacity: 0.7;
    filter: drop-shadow(0 1px 2px rgba(127, 207, 208, 0.3));
}

.dewdrop-marg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.dewdrop-l1 { left: 18px;  top: 22%; width: 11px; height: 14px; }
.dewdrop-r1 { right: 26px; top: 38%; width: 13px; height: 17px; }
.dewdrop-l2 { left: 22px;  top: 30%; width: 10px; height: 13px; }
.dewdrop-r2 { right: 18px; top: 58%; width: 14px; height: 18px; }
.dewdrop-l3 { left: 16px;  top: 48%; width: 12px; height: 16px; }
.dewdrop-r3 { right: 22px; top: 28%; width: 11px; height: 14px; }
.dewdrop-l4 { left: 24px;  top: 18%; width: 13px; height: 17px; }
.dewdrop-r4 { right: 16px; top: 64%; width: 10px; height: 13px; }
.dewdrop-l5 { left: 20px;  top: 38%; width: 12px; height: 15px; }
.dewdrop-r5 { right: 22px; top: 70%; width: 11px; height: 14px; }

.dewdrop-marg.fresh {
    animation: dewSlideIn 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dewSlideIn {
    0%   { opacity: 0; transform: translateY(-12px) scale(0.7); }
    60%  { opacity: 0.85; transform: translateY(2px) scale(1.05); }
    100% { opacity: 0.7; transform: translateY(0) scale(1); }
}

/* ============================================================
   Artifact gallery (photo bubbles)
   ============================================================ */

.artifact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
    max-width: 560px;
    margin: 0 auto;
}

.artifact {
    text-align: center;
}

.photo-bubble {
    width: 200px;
    height: 200px;
    margin: 0 auto 14px;
    filter:
        drop-shadow(0 8px 20px rgba(127, 207, 208, 0.32))
        drop-shadow(0 2px 6px rgba(255, 182, 158, 0.22));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.photo-bubble:hover {
    transform: translateY(-3px) scale(1.02);
}

.photo-bubble svg {
    width: 100%;
    height: 100%;
    display: block;
}

.artifact figcaption {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--twilight-iris);
    opacity: 0.78;
    font-style: italic;
}

@media (max-width: 720px) {
    .artifact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .photo-bubble {
        width: 160px;
        height: 160px;
    }
}

/* ============================================================
   Memory ledger
   ============================================================ */

.memory {
    position: relative;
    max-width: 540px;
    margin: 22px auto;
    padding: 22px 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 217, 221, 0.18) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 4px 14px rgba(127, 207, 208, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.memory:empty { display: none; }

.memory-text {
    font-family: var(--font-body);
    color: var(--twilight-iris);
    line-height: 1.68;
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.memory-meta {
    text-align: right;
    font-size: 0.78rem;
}

.meta-pixel {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--pool-cyan);
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.memory.fresh-memory {
    animation: memoryAppear 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes memoryAppear {
    0%   { opacity: 0; transform: translateY(-8px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   Memory leaf form
   ============================================================ */

.section-tide {
    padding-bottom: 48px;
}

.tide-h2 {
    font-style: italic;
}

.memory-leaf {
    max-width: 480px;
    margin: 28px auto 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.memory-leaf-label {
    text-align: center;
    margin-bottom: -4px;
}

.memory-input {
    width: 100%;
    padding: 16px 22px;
    border: 1px solid rgba(127, 207, 208, 0.4);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--twilight-iris);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.55) 100%);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        0 8px 24px rgba(127, 207, 208, 0.18);
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    outline: none;
}

.memory-input::placeholder {
    color: var(--twilight-iris);
    opacity: 0.42;
    font-style: italic;
}

.memory-input:hover {
    border-color: rgba(127, 207, 208, 0.7);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        0 12px 30px rgba(127, 207, 208, 0.28);
}

.memory-submit {
    position: relative;
    align-self: center;
    padding: 12px 32px;
    border: none;
    border-radius: 14px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--twilight-iris);
    background: linear-gradient(180deg, rgba(255, 217, 221, 0.92) 0%, rgba(166, 227, 215, 0.85) 100%);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.62),
        inset 0 -1px 0 rgba(255, 182, 158, 0.42),
        0 8px 24px rgba(127, 207, 208, 0.22);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.memory-submit:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.78),
        inset 0 -1px 0 rgba(255, 182, 158, 0.55),
        0 14px 32px rgba(127, 207, 208, 0.34);
}

.memory-submit:active {
    transform: translateY(1px);
}

.submit-text {
    position: relative;
    z-index: 2;
}

.submit-shimmer {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.28s linear;
    z-index: 1;
}

.memory-submit:hover .submit-shimmer {
    left: 140%;
}

.placed-confirm {
    text-align: center;
    color: var(--peach-bloom);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-style: italic;
    min-height: 1.4em;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.placed-confirm.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Tide line (footer)
   ============================================================ */

.tide-line {
    position: relative;
    height: 220px;
    margin: 36px -64px 0;
    overflow: hidden;
    border-bottom-left-radius: var(--tube-radius-x) var(--tube-radius-y);
    border-bottom-right-radius: var(--tube-radius-x) var(--tube-radius-y);
}

.tide-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.petal-rest {
    position: absolute;
    bottom: 24px;
    left: 18%;
    width: 28px;
    height: 28px;
    opacity: 0.78;
    filter: drop-shadow(0 2px 6px rgba(255, 182, 158, 0.4));
}

.tide-attribution {
    position: absolute;
    bottom: 14px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

@media (max-width: 720px) {
    .tide-line {
        margin: 28px -28px 0;
        border-bottom-left-radius: 240px 140px;
        border-bottom-right-radius: 240px 140px;
        height: 180px;
    }
}

/* ============================================================
   Section headline reveal
   ============================================================ */

.reveal {
    display: inline-block;
}

.reveal .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view .letter {
    opacity: 1;
    transform: translateY(0);
}

.reveal .letter.space {
    width: 0.28em;
}
