:root {
    --paper: #f5f1e8;
    --ink: #161616;
    --muted: #6b6963;
    --line: rgba(22, 22, 22, 0.15);
    --white: #fffdfa;
    --yellow: #ffc94a;
    --pink: #ff6f91;
    --lime: #c8f05a;
    --violet: #8d72f8;
    --radius-lg: 36px;
    --radius-md: 22px;
    --shadow: 0 24px 60px rgba(34, 31, 22, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 6%, rgba(255, 201, 74, 0.18), transparent 22rem),
        var(--paper);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    border-radius: 10px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    width: min(1280px, calc(100% - 64px));
    height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50% 50% 46% 54% / 45% 56% 44% 55%;
    font-family: Georgia, serif;
    font-size: 22px;
    letter-spacing: 0;
    transform: rotate(-8deg);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
}

.site-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 12px 20px;
    color: var(--white);
    background: var(--ink);
    border-radius: 999px;
}

.hero {
    width: min(1280px, calc(100% - 64px));
    min-height: calc(100svh - 92px);
    margin: 0 auto;
    padding: 54px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 52px;
}

.hero-copy {
    padding-left: 2vw;
}

.eyebrow {
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #55534e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.eyebrow span {
    width: 9px;
    height: 9px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 111, 145, 0.14);
}

.hero h1 {
    margin: 0;
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: clamp(64px, 7.2vw, 108px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.075em;
}

.hero h1 em {
    position: relative;
    z-index: 0;
    font-style: normal;
    white-space: nowrap;
}

.hero h1 em::after {
    content: "";
    position: absolute;
    right: -2%;
    bottom: 7%;
    left: 1%;
    z-index: -1;
    height: 20%;
    background: var(--yellow);
    border-radius: 60% 45% 55% 35%;
    transform: rotate(-1.5deg);
}

.hero-lead {
    max-width: 520px;
    margin: 35px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 12px 28px rgba(22, 22, 22, 0.18);
}

.button-dark span {
    font-size: 19px;
}

.hero-note {
    margin-top: 46px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-note span {
    padding: 8px 12px;
    color: #5f5d57;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
}

.hero-art {
    position: relative;
    min-height: 690px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-art::before {
    content: "";
    position: absolute;
    z-index: -3;
    width: min(90%, 610px);
    aspect-ratio: 1;
    background: var(--violet);
    border-radius: 48% 52% 44% 56% / 58% 44% 56% 42%;
    transform: rotate(-6deg);
    box-shadow: inset -45px -25px 0 rgba(0, 0, 0, 0.06);
}

.hero-art::after {
    content: "OMO";
    position: absolute;
    z-index: -2;
    top: 46%;
    left: 50%;
    color: rgba(255, 255, 255, 0.12);
    font-size: clamp(92px, 12vw, 180px);
    font-weight: 900;
    letter-spacing: -0.1em;
    transform: translate(-51%, -50%) rotate(8deg);
}

.orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(22, 22, 22, 0.22);
    border-radius: 50%;
}

.orbit::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--lime);
    border: 4px solid var(--ink);
    border-radius: 50%;
}

.orbit-one {
    width: 610px;
    height: 370px;
    transform: rotate(20deg);
}

.orbit-one::before {
    top: 18%;
    right: 7%;
}

.orbit-two {
    width: 500px;
    height: 560px;
    transform: rotate(-26deg);
}

.orbit-two::before {
    bottom: 10%;
    left: 13%;
    background: var(--pink);
}

.phone-shell {
    position: relative;
    z-index: 2;
    width: 298px;
    height: 614px;
    padding: 10px;
    background: #1c1c1c;
    border: 1px solid #4e4e4e;
    border-radius: 47px;
    box-shadow: 0 34px 70px rgba(31, 22, 72, 0.34), inset 0 0 0 2px #080808;
    transform: rotate(3deg);
}

.phone-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 14px 18px 78px;
    background: #f7f4ec;
    border-radius: 38px;
}

.phone-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 800;
}

.phone-island {
    width: 75px;
    height: 20px;
    background: var(--ink);
    border-radius: 999px;
}

.app-heading {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #77736b;
    font-size: 9px;
    font-weight: 700;
}

.app-heading button {
    width: 29px;
    height: 29px;
    padding: 0;
    color: var(--white);
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    font-size: 8px;
}

.app-question {
    margin: 11px 0 16px;
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.status-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.status {
    padding: 7px 10px;
    border: 1px solid rgba(22, 22, 22, 0.12);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 3px 0 rgba(22, 22, 22, 0.06);
}

.status-yellow { background: var(--yellow); }
.status-pink { background: #ffd1dc; }
.status-white { background: var(--white); }
.status-lime { background: var(--lime); }

.app-card {
    margin-top: 18px;
    padding: 14px;
    background: var(--white);
    border: 1px solid rgba(22, 22, 22, 0.1);
    border-radius: 19px;
    box-shadow: 0 11px 28px rgba(44, 39, 27, 0.08);
}

.app-card-meta {
    display: flex;
    align-items: center;
    font-size: 9px;
}

.avatar {
    width: 27px;
    height: 27px;
    margin-right: 8px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--violet);
    border-radius: 9px;
    font-family: Georgia, serif;
    font-size: 14px;
}

.app-card-meta b,
.app-card-meta small {
    display: block;
}

.app-card-meta small {
    margin-top: 2px;
    color: #929089;
    font-size: 7px;
}

.more {
    margin-left: auto;
    letter-spacing: 0.1em;
}

.app-card > p {
    margin: 13px 0 11px;
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: 13px;
}

.mosaic {
    height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    overflow: hidden;
    background: #222;
    border: 3px solid #222;
    border-radius: 12px;
}

.mosaic i:nth-child(4n + 1) { background: var(--yellow); }
.mosaic i:nth-child(4n + 2) { background: #e6dbff; }
.mosaic i:nth-child(4n + 3) { background: var(--pink); }
.mosaic i:nth-child(4n) { background: var(--lime); }
.mosaic i:nth-child(3),
.mosaic i:nth-child(7),
.mosaic i:nth-child(10) { background: #2a2827; }

.same-frequency {
    margin-top: 11px;
    color: #6e6a63;
    font-size: 8px;
    font-weight: 700;
}

.same-frequency span {
    color: var(--pink);
}

.phone-tabbar {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 22, 22, 0.09);
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(22, 22, 22, 0.1);
    backdrop-filter: blur(10px);
}

.phone-tabbar span {
    display: grid;
    justify-items: center;
    gap: 3px;
    color: #aaa69f;
    font-size: 10px;
}

.phone-tabbar small {
    font-size: 6px;
}

.phone-tabbar .active {
    color: var(--ink);
}

.phone-tabbar .tab-add {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 13px;
    font-size: 20px;
}

.floating-card {
    position: absolute;
    z-index: 4;
    padding: 15px 18px;
    background: rgba(255, 253, 250, 0.95);
    border: 1px solid rgba(22, 22, 22, 0.12);
    border-radius: 17px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.floating-card span,
.floating-card strong {
    display: block;
}

.floating-card-left {
    top: 25%;
    left: 1%;
    transform: rotate(-7deg);
}

.floating-card-left .tiny-label {
    margin-bottom: 8px;
    color: #88847e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.floating-card-left strong {
    font-family: Georgia, serif;
    font-size: 31px;
    line-height: 1;
}

.floating-card-left span:last-child {
    margin-top: 5px;
    color: #5d5953;
    font-size: 9px;
}

.floating-card-right {
    right: -1%;
    bottom: 22%;
    transform: rotate(6deg);
}

.floating-card-right .spark {
    position: absolute;
    top: -18px;
    right: 10px;
    color: var(--yellow);
    font-size: 30px;
    -webkit-text-stroke: 1px var(--ink);
}

.floating-card-right span:not(.spark) {
    margin-bottom: 6px;
    color: #77736c;
    font-size: 9px;
}

.floating-card-right strong {
    font-size: 13px;
}

.section-pad {
    padding: 128px max(32px, calc((100vw - 1280px) / 2));
}

.section-heading {
    max-width: 780px;
}

.section-index {
    margin: 0 0 24px;
    color: #7c7972;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.section-heading h2,
.timeline-intro h2,
.meet-card h2 {
    margin: 0;
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: clamp(52px, 6.2vw, 88px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.section-heading h2 span,
.timeline-intro h2 span {
    color: var(--violet);
}

.section-heading > p:last-child,
.section-heading-split > p,
.timeline-intro > p:last-child {
    max-width: 580px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.now-section {
    position: relative;
    padding-bottom: 0;
    background: var(--white);
    border-radius: 48px 48px 0 0;
}

.now-stage {
    position: relative;
    min-height: 570px;
    margin-top: 74px;
    display: grid;
    grid-template-columns: minmax(360px, 1.15fr) minmax(270px, 0.7fr);
    gap: 28px;
    padding: 70px 8%;
    overflow: hidden;
    background: #f3ca48;
    border: 2px solid var(--ink);
    border-radius: var(--radius-lg);
    box-shadow: 12px 12px 0 var(--ink);
}

.now-stage::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: 15%;
    border: 2px solid rgba(22, 22, 22, 0.2);
    border-radius: 50%;
}

.now-message,
.frequency-panel {
    position: relative;
    z-index: 2;
    align-self: center;
}

.now-message {
    padding: clamp(28px, 4.5vw, 58px);
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 30px;
    box-shadow: 9px 9px 0 rgba(22, 22, 22, 0.96);
    transform: rotate(-2deg);
}

.now-message-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #77736d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.now-message-top time {
    margin-left: auto;
    font-family: ui-monospace, monospace;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4c69;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 76, 105, 0.13);
    animation: pulse-dot 2s ease-in-out infinite;
}

.now-message blockquote {
    margin: 37px 0;
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: clamp(27px, 3.4vw, 47px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.now-author {
    display: flex;
    align-items: center;
}

.avatar-coral {
    width: 42px;
    height: 42px;
    margin-right: 11px;
    background: var(--pink);
    border-radius: 50%;
}

.now-author strong,
.now-author small {
    display: block;
}

.now-author strong {
    font-size: 12px;
}

.now-author small {
    margin-top: 3px;
    color: #95918b;
    font-size: 9px;
}

.now-author button {
    margin-left: auto;
    padding: 9px 13px;
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.frequency-panel {
    padding: 32px 28px;
    color: var(--white);
    background: var(--ink);
    border-radius: 26px;
    transform: rotate(2.5deg);
}

.frequency-panel > p {
    margin: 0 0 20px;
    color: #b9b6ae;
    font-size: 10px;
    letter-spacing: 0.13em;
}

.frequency-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.frequency-row span {
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: 20px;
}

.frequency-row strong {
    font-family: Georgia, serif;
    font-size: 16px;
}

.frequency-panel > small {
    display: block;
    margin-top: 20px;
    color: #85817a;
    font-size: 9px;
}

.now-caption {
    position: absolute;
    right: 18px;
    bottom: 13px;
    color: rgba(22, 22, 22, 0.45);
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 0.9;
    text-align: right;
}

.now-sticker {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--pink);
    border: 2px solid var(--ink);
    border-radius: 50%;
    box-shadow: 5px 5px 0 var(--ink);
}

.sticker-sun {
    top: 24px;
    left: 4%;
    width: 70px;
    height: 70px;
    font-size: 34px;
    transform: rotate(-9deg);
}

.sticker-flower {
    right: 4%;
    bottom: 23px;
    width: 54px;
    height: 54px;
    background: var(--lime);
    font-size: 28px;
    transform: rotate(12deg);
}

.mood-strip {
    width: 100vw;
    margin-top: 100px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.mood-track {
    width: max-content;
    padding: 17px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: 15px;
    animation: ticker 28s linear infinite;
}

.mood-track i {
    color: var(--yellow);
}

.create-section {
    background: #f0ecff;
}

.section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 70px;
}

.section-heading-split > p {
    margin: 0 0 8px;
}

.feature-grid {
    margin-top: 78px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--radius-lg);
}

.feature-pixel {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    background: #d4f569;
}

.feature-copy {
    position: relative;
    z-index: 2;
    padding: 42px;
    align-self: end;
}

.feature-number {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 11px;
}

.feature-copy h3 {
    margin: 22px 0 13px;
    font-family: "Songti SC", "STSong", Georgia, serif;
    font-size: clamp(35px, 3.6vw, 50px);
    font-weight: 600;
    letter-spacing: -0.05em;
}

.feature-copy p {
    max-width: 330px;
    margin: 0;
    color: rgba(22, 22, 22, 0.7);
    font-size: 13px;
    line-height: 1.8;
}

.feature-tag {
    display: inline-block;
    margin-top: 26px;
    font-family: ui-monospace, monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.pixel-board {
    position: relative;
    align-self: center;
    justify-self: center;
    width: min(82%, 330px);
    aspect-ratio: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 3px;
    padding: 10px;
    background: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 24px;
    box-shadow: 12px 14px 0 rgba(22, 22, 22, 0.17);
    transform: rotate(4deg);
}

.pixel-board i {
    background: var(--yellow);
    border-radius: 3px;
}

.pixel-board i:nth-of-type(3n) { background: var(--pink); }
.pixel-board i:nth-of-type(4n) { background: var(--violet); }
.pixel-board i:nth-of-type(5n) { background: #fff8df; }
.pixel-board i:nth-of-type(7n) { background: #302e2c; }

.pixel-smile {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1;
    transform: translate(-50%, -64%);
    text-shadow: 4px 4px 0 var(--ink);
}

.feature-collage {
    background: #ff9bae;
}

.feature-collage .feature-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 48%;
    color: var(--white);
    background: var(--ink);
    border-radius: 28px 0 0 0;
}

.feature-collage .feature-copy p {
    color: rgba(255, 255, 255, 0.68);
}

.collage-canvas {
    position: absolute;
    top: 45px;
    left: 45px;
    width: 55%;
    height: 70%;
    background: #fff8e8;
    border: 2px solid var(--ink);
    box-shadow: 10px 10px 0 var(--ink);
    transform: rotate(-5deg);
}

.collage-photo {
    position: absolute;
    top: 15%;
    left: 13%;
    width: 63%;
    height: 52%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background:
        radial-gradient(circle at 70% 30%, var(--yellow) 0 8%, transparent 9%),
        linear-gradient(145deg, var(--violet) 0 46%, #6c52d8 47% 100%);
    border: 8px solid var(--white);
    box-shadow: 0 7px 18px rgba(22, 22, 22, 0.18);
    transform: rotate(6deg);
}

.collage-photo b {
    font-family: Georgia, serif;
    font-size: 27px;
}

.collage-photo small {
    font-size: 8px;
    letter-spacing: 0.12em;
}

.tape {
    position: absolute;
    z-index: 4;
    top: 9%;
    left: 39%;
    width: 75px;
    height: 22px;
    background: rgba(200, 240, 90, 0.84);
    transform: rotate(14deg);
}

.collage-word {
    position: absolute;
    z-index: 3;
    top: 26%;
    right: -11%;
    color: var(--yellow);
    font-family: Arial Black, sans-serif;
    font-size: clamp(29px, 4vw, 54px);
    -webkit-text-stroke: 1.5px var(--ink);
    transform: rotate(90deg);
}

.collage-note {
    position: absolute;
    bottom: 10%;
    left: 10%;
    padding: 9px 12px;
    background: var(--yellow);
    border: 1px solid var(--ink);
    font-family: "Songti SC", serif;
    font-size: 12px;
    transform: rotate(-2deg);
}

.collage-star {
    position: absolute;
    right: 9%;
    bottom: 10%;
    color: var(--pink);
    font-size: 48px;
    -webkit-text-stroke: 1px var(--ink);
}

.feature-world {
    grid-column: 1 / -1;
    min-height: 450px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    color: var(--white);
    background: var(--ink);
}

.feature-world .feature-copy p {
    color: rgba(255, 255, 255, 0.65);
}

.world-orbit {
    position: relative;
    align-self: center;
    justify-self: center;
    width: min(80%, 560px);
    aspect-ratio: 1.8;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.world-orbit::before,
.world-orbit::after {
    content: "";
    position: absolute;
    inset: 15% -8%;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    transform: rotate(18deg);
}

.world-orbit::after {
    inset: -20% 20%;
    transform: rotate(74deg);
}

.world-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 45% 55% 50% 50%;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 900;
    transform: translate(-50%, -50%) rotate(8deg);
}

.person {
    position: absolute;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--ink);
    border: 3px solid var(--white);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-style: normal;
    font-weight: 700;
    box-shadow: 0 0 0 2px var(--ink);
}

.person-one { top: -18px; left: 26%; background: var(--pink); }
.person-two { top: 31%; right: -20px; background: var(--lime); }
.person-three { bottom: -17px; left: 38%; background: var(--violet); }
.person-four { top: 33%; left: -20px; background: var(--yellow); }

.timeline-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: #1a1918;
}

.timeline-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -12%;
    width: 540px;
    height: 540px;
    background: var(--violet);
    border-radius: 47% 53% 62% 38%;
    filter: blur(1px);
    opacity: 0.22;
}

.timeline-intro {
    padding-bottom: 70px;
}

.section-index-light {
    color: #96928a;
}

.timeline-intro h2 span {
    color: var(--yellow);
}

.timeline-intro > p:last-child {
    color: #a7a39b;
}

.timeline-window {
    position: relative;
    width: min(1050px, calc(100% - 64px));
    margin: 0 auto 128px;
    display: grid;
    grid-template-columns: 250px 1fr;
    overflow: hidden;
    color: var(--ink);
    background: #f5f1e8;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.timeline-date {
    padding: 50px;
    display: flex;
    flex-direction: column;
    background: var(--yellow);
    border-right: 2px solid var(--ink);
}

.timeline-date span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.timeline-date strong {
    margin: 10px 0 0;
    font-family: Georgia, serif;
    font-size: 108px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.timeline-date small {
    margin-top: auto;
    font-family: "Songti SC", serif;
    font-size: 18px;
}

.timeline-list {
    margin: 0;
    padding: 28px 50px;
    list-style: none;
}

.timeline-list li {
    display: grid;
    grid-template-columns: 54px 44px 1fr;
    align-items: start;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-list li:last-child {
    border-bottom: 0;
}

.timeline-list time {
    padding-top: 13px;
    color: #807c75;
    font-family: ui-monospace, monospace;
    font-size: 10px;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 14px;
    font-size: 18px;
}

.icon-yellow { background: var(--yellow); }
.icon-pink { background: #ffc1cf; }
.icon-lime { background: var(--lime); }
.icon-violet { color: var(--white); background: var(--violet); }

.timeline-list div strong {
    display: block;
    margin: 2px 0 6px;
    font-family: "Songti SC", serif;
    font-size: 18px;
}

.timeline-list div p {
    margin: 0;
    color: #77736c;
    font-size: 12px;
    line-height: 1.7;
}

.timeline-list .timeline-ai {
    margin: 10px -20px 0;
    padding: 24px 20px;
    background: #ebe5ff;
    border: 1px solid #a894ff;
    border-radius: 20px;
}

.ai-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 8px;
    color: var(--white);
    background: var(--violet);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.meet-section {
    background: var(--paper);
}

.meet-card {
    position: relative;
    min-height: 570px;
    padding: 90px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: var(--pink);
    border: 2px solid var(--ink);
    border-radius: 46% 54% 42% 58% / 53% 46% 54% 47%;
    box-shadow: 14px 14px 0 var(--ink);
}

.meet-card::before,
.meet-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border: 2px solid var(--ink);
    border-radius: 50%;
}

.meet-card::before {
    top: -70px;
    left: 12%;
    background: var(--yellow);
}

.meet-card::after {
    right: 9%;
    bottom: -80px;
    background: var(--violet);
}

.meet-card > p {
    margin: 0 0 25px;
    font-family: ui-monospace, monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.meet-card h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(53px, 7vw, 96px);
}

.coming-pill {
    position: relative;
    z-index: 2;
    margin-top: 42px;
    padding: 15px 22px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    background: var(--ink);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.coming-pill span {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(200, 240, 90, 0.15);
}

.meet-scribble {
    position: absolute;
    top: 15%;
    right: 15%;
    color: var(--yellow);
    font-size: 70px;
    -webkit-text-stroke: 2px var(--ink);
    transform: rotate(15deg);
}

.meet-bubbles span {
    position: absolute;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-family: "Songti SC", serif;
    font-size: 11px;
    box-shadow: 4px 4px 0 var(--ink);
}

.meet-bubbles span:nth-child(1) { top: 24%; left: 12%; transform: rotate(-12deg); }
.meet-bubbles span:nth-child(2) { top: 60%; right: 11%; transform: rotate(8deg); }
.meet-bubbles span:nth-child(3) { bottom: 10%; left: 22%; transform: rotate(5deg); }
.meet-bubbles span:nth-child(4) { top: 10%; left: 33%; transform: rotate(-4deg); }

.site-footer {
    width: min(1280px, calc(100% - 64px));
    min-height: 180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand strong,
.footer-brand small {
    display: block;
}

.footer-brand strong {
    font-size: 18px;
    letter-spacing: 0.12em;
}

.footer-brand small {
    margin-top: 4px;
    color: #77736c;
    font-family: "Songti SC", serif;
    font-size: 12px;
}

.site-footer > p {
    margin: 0;
    color: #96928b;
    font-size: 10px;
    text-align: right;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(0.84); opacity: 0.72; }
    50% { transform: scale(1.12); opacity: 1; }
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr 440px;
        gap: 20px;
    }

    .hero-art {
        min-height: 620px;
        transform: scale(0.9);
    }

    .feature-pixel,
    .feature-world {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        width: min(100% - 36px, 680px);
        height: 76px;
    }

    .site-nav a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero {
        width: min(100% - 36px, 680px);
        min-height: auto;
        padding: 58px 0 32px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        padding-left: 0;
    }

    .eyebrow,
    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-art {
        margin-top: 20px;
        transform: scale(0.92);
    }

    .section-pad {
        padding: 96px max(24px, calc((100vw - 680px) / 2));
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .now-stage {
        grid-template-columns: 1fr;
        padding: 70px 8%;
    }

    .frequency-panel {
        width: 82%;
        justify-self: end;
        margin-top: -10px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-world {
        grid-column: auto;
    }

    .feature-pixel,
    .feature-world {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .timeline-window {
        width: min(680px, calc(100% - 48px));
        grid-template-columns: 180px 1fr;
    }

    .timeline-date {
        padding: 38px 30px;
    }

    .timeline-date strong {
        font-size: 82px;
    }

    .timeline-list {
        padding: 24px 34px;
    }

    .meet-card {
        min-height: 490px;
        border-radius: 38px;
    }

    .site-footer {
        width: min(100% - 48px, 680px);
    }
}

@media (max-width: 540px) {
    .hero h1 {
        font-size: clamp(52px, 17vw, 74px);
    }

    .hero-lead {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;
        gap: 19px;
    }

    .hero-art {
        width: 540px;
        min-height: 580px;
        margin-left: 50%;
        transform: translateX(-50%) scale(0.76);
        transform-origin: top center;
    }

    .floating-card-left {
        left: 5%;
    }

    .floating-card-right {
        right: 4%;
    }

    .section-pad {
        padding: 78px 18px;
    }

    .section-heading h2,
    .timeline-intro h2 {
        font-size: clamp(46px, 14vw, 64px);
    }

    .now-stage {
        min-height: auto;
        margin-top: 50px;
        padding: 74px 17px 56px;
        border-radius: 25px;
        box-shadow: 7px 7px 0 var(--ink);
    }

    .now-message {
        padding: 28px 21px;
        border-radius: 22px;
        box-shadow: 6px 6px 0 var(--ink);
    }

    .now-message blockquote {
        font-size: 27px;
    }

    .frequency-panel {
        width: 90%;
        padding: 27px 22px;
    }

    .mood-strip {
        margin-top: 70px;
    }

    .feature-grid {
        margin-top: 50px;
    }

    .feature-card {
        min-height: 590px;
        border-radius: 28px;
    }

    .feature-pixel {
        grid-template-columns: 1fr;
        grid-template-rows: 0.75fr 1.25fr;
    }

    .feature-pixel .feature-copy {
        align-self: start;
    }

    .feature-copy {
        padding: 30px;
    }

    .pixel-board {
        width: 74%;
    }

    .collage-canvas {
        top: 35px;
        left: 28px;
        width: 74%;
        height: 52%;
    }

    .feature-collage .feature-copy {
        left: 12%;
    }

    .feature-world {
        min-height: 570px;
        grid-template-columns: 1fr;
        grid-template-rows: 0.72fr 1.28fr;
    }

    .feature-world .feature-copy {
        align-self: start;
    }

    .world-orbit {
        align-self: start;
        width: 80%;
    }

    .timeline-intro {
        padding-bottom: 52px;
    }

    .timeline-window {
        width: calc(100% - 36px);
        margin-bottom: 78px;
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .timeline-date {
        min-height: 200px;
        padding: 26px 30px;
        border-right: 0;
        border-bottom: 2px solid var(--ink);
    }

    .timeline-date strong {
        font-size: 76px;
    }

    .timeline-date small {
        position: absolute;
        top: 33px;
        right: 30px;
    }

    .timeline-list {
        padding: 18px 22px 28px;
    }

    .timeline-list li {
        grid-template-columns: 38px 38px 1fr;
        gap: 10px;
        padding: 20px 0;
    }

    .timeline-icon {
        width: 38px;
        height: 38px;
    }

    .timeline-list .timeline-ai {
        margin-right: -8px;
        margin-left: -8px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .meet-card {
        min-height: 520px;
        padding: 78px 22px;
        box-shadow: 7px 7px 0 var(--ink);
    }

    .meet-card h2 {
        font-size: clamp(45px, 14vw, 62px);
    }

    .meet-bubbles span:nth-child(1) { left: 4%; }
    .meet-bubbles span:nth-child(2) { right: 3%; }
    .meet-bubbles span:nth-child(3) { left: 13%; }
    .meet-bubbles span:nth-child(4) { left: 28%; }

    .site-footer {
        width: calc(100% - 36px);
        padding: 42px 0 28px;
        grid-template-columns: 1fr;
    }

    .site-footer > p {
        margin: 8px 0 0;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
