:root {
    --paper: #fdfbf5;
    --paper-warm: #f7efe2;
    --paper-card: #fffaf0;
    --ink: #2c2116;
    --ink-soft: #3a2e2e;
    --body: #625b53;
    --muted: #918a82;
    --line: #e6d8c3;
    --gold-deep: #6e542d;
    --gold: #c3a45d;
    --cinnabar: #9b3f2f;
    --jade: #5c7e70;
    --walnut: #5a4332;
    --shadow: rgba(90, 67, 50, 0.12);
    --display: "Nanum Myeongjo", serif;
    --sans: "Noto Sans KR", sans-serif;
    --shell: min(1180px, calc(100% - 48px));
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink-soft);
    background:
        radial-gradient(circle at 12% 9%, rgba(195, 164, 93, 0.08), transparent 24rem),
        linear-gradient(180deg, #fffdf8 0%, var(--paper) 30%, var(--paper-warm) 100%);
    font-family: var(--sans);
    line-height: 1.65;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    content: "";
    opacity: 0.2;
    background-image:
        repeating-linear-gradient(0deg, rgba(90, 67, 50, 0.025) 0, rgba(90, 67, 50, 0.025) 1px, transparent 1px, transparent 5px),
        repeating-linear-gradient(90deg, rgba(90, 67, 50, 0.018) 0, rgba(90, 67, 50, 0.018) 1px, transparent 1px, transparent 7px);
    mix-blend-mode: multiply;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 15;
    border-bottom: 1px solid rgba(110, 84, 45, 0.11);
    background: rgba(253, 251, 245, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    width: var(--shell);
    min-height: 76px;
    margin-inline: auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand img {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(90, 67, 50, 0.15);
    border-radius: 13px;
    box-shadow: 0 5px 15px rgba(44, 33, 22, 0.08);
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.desktop-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    position: relative;
    color: var(--body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--cinnabar);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-cta,
.primary-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: #f7e8bd;
    background: var(--ink);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(44, 33, 22, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid rgba(195, 164, 93, 0.36);
    border-radius: 999px;
    font-size: 13px;
}

.header-cta:hover,
.primary-button:hover {
    background: #1f160e;
    box-shadow: 0 14px 30px rgba(44, 33, 22, 0.2);
    transform: translateY(-2px);
}

.hero {
    display: grid;
    min-height: 740px;
    padding-block: 78px 96px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    align-items: center;
    gap: clamp(50px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
    display: flex;
    margin: 0 0 22px;
    align-items: center;
    gap: 9px;
    color: var(--gold-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.seal,
.mini-seal {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    color: #fff6e7;
    background: var(--cinnabar);
    font-family: var(--display);
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255, 246, 231, 0.38);
}

.seal {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    font-size: 13px;
}

.mini-seal {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    font-size: 12px;
}

.hero h1,
.section-heading h2,
.conversation-copy h2,
.features-heading h2,
.closing-inner h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -0.065em;
}

.hero h1 {
    font-size: clamp(52px, 6vw, 82px);
    line-height: 1.18;
}

.hero h1 em {
    position: relative;
    color: var(--cinnabar);
    font-style: normal;
}

.hero h1 em::after {
    position: absolute;
    right: -2px;
    bottom: 1px;
    left: -2px;
    height: 9px;
    z-index: -1;
    border-radius: 999px;
    background: rgba(195, 164, 93, 0.23);
    content: "";
    transform: rotate(-1.5deg);
}

.hero-description {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--body);
    font-size: 17px;
    line-height: 1.9;
}

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

.primary-button {
    min-height: 56px;
    padding: 0 24px;
    border: 1px solid rgba(195, 164, 93, 0.42);
    border-radius: 999px;
    font-size: 15px;
}

.text-button {
    color: var(--gold-deep);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hero-keywords {
    display: flex;
    margin: 32px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.hero-keywords li {
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--body);
    background: rgba(255, 250, 239, 0.7);
    font-size: 11px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 600px;
    place-items: center;
}

.orbit-mark {
    position: absolute;
    border: 1px solid rgba(110, 84, 45, 0.16);
    border-radius: 50%;
}

.orbit-mark::after {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cinnabar);
    box-shadow: 0 0 0 6px rgba(155, 63, 47, 0.09);
    content: "";
}

.orbit-mark-one {
    width: 510px;
    height: 510px;
    transform: rotate(18deg);
}

.orbit-mark-one::after {
    top: 80px;
    right: 31px;
}

.orbit-mark-two {
    width: 390px;
    height: 390px;
    border-style: dashed;
    transform: rotate(-24deg);
}

.orbit-mark-two::after {
    right: 18px;
    bottom: 90px;
    background: var(--jade);
    box-shadow: 0 0 0 6px rgba(92, 126, 112, 0.1);
}

.app-preview {
    position: relative;
    z-index: 2;
    width: min(390px, 86vw);
    padding: 11px;
    overflow: hidden;
    border: 1px solid rgba(195, 164, 93, 0.36);
    border-radius: 42px;
    background: var(--ink);
    box-shadow: 0 34px 70px rgba(44, 33, 22, 0.23), 0 8px 20px rgba(44, 33, 22, 0.14);
    transform: rotate(1.4deg);
}

.app-preview-bar {
    display: flex;
    height: 34px;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
    color: #f5e8c8;
    font-size: 9px;
    font-weight: 800;
}

.preview-notch {
    width: 84px;
    height: 21px;
    margin-top: -8px;
    border-radius: 0 0 13px 13px;
    background: #120d08;
}

.app-preview-surface {
    position: relative;
    min-height: 486px;
    overflow: hidden;
    border-radius: 31px;
    background: var(--paper-card);
}

.preview-background,
.preview-wash {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.preview-background {
    object-fit: cover;
}

.preview-wash {
    background: linear-gradient(180deg, rgba(255, 250, 239, 0.95) 0%, rgba(255, 250, 239, 0.72) 48%, rgba(44, 33, 22, 0.14) 100%);
}

.fortune-sheet {
    position: relative;
    z-index: 1;
    margin: 26px 19px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 20px;
    background: rgba(255, 250, 239, 0.83);
    box-shadow: 0 18px 30px rgba(90, 67, 50, 0.12);
    backdrop-filter: blur(8px);
}

.fortune-sheet-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-deep);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 800;
}

.fortune-sheet-top time {
    margin-left: auto;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
}

.fortune-sheet h2 {
    margin: 19px 0 11px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 28px;
    line-height: 1.32;
    letter-spacing: -0.05em;
}

.fortune-sheet > p {
    margin: 0;
    color: var(--body);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.65;
}

.fortune-tags {
    display: flex;
    margin-top: 15px;
    gap: 6px;
}

.fortune-tags span {
    padding: 5px 9px;
    border: 1px solid rgba(110, 84, 45, 0.12);
    border-radius: 999px;
    color: var(--gold-deep);
    background: rgba(110, 84, 45, 0.08);
    font-size: 9px;
    font-weight: 800;
}

.mini-rhythm {
    display: grid;
    margin-top: 17px;
    padding-top: 13px;
    border-top: 1px solid rgba(110, 84, 45, 0.17);
    gap: 8px;
}

.mini-rhythm span {
    display: flex;
    color: var(--body);
    font-size: 10px;
    font-weight: 600;
}

.mini-rhythm b {
    width: 40px;
    color: var(--jade);
}

.floating-note {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 205px;
    padding: 12px 14px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(230, 216, 195, 0.8);
    border-radius: 14px;
    background: rgba(255, 252, 245, 0.94);
    box-shadow: 0 14px 30px var(--shadow);
    backdrop-filter: blur(12px);
}

.floating-note-top {
    top: 62px;
    left: -5px;
}

.floating-note-bottom {
    right: -12px;
    bottom: 65px;
}

.note-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff5de;
    background: var(--cinnabar);
    font-size: 13px;
}

.note-icon.jade {
    background: var(--jade);
}

.floating-note > span:last-child {
    display: grid;
    line-height: 1.3;
}

.floating-note small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.floating-note strong {
    margin-top: 3px;
    color: var(--ink-soft);
    font-family: var(--display);
    font-size: 12px;
}

.intro-strip {
    border-block: 1px solid rgba(195, 164, 93, 0.2);
    color: #f8ecd0;
    background: linear-gradient(125deg, #342216, #20150f);
}

.intro-strip-inner {
    display: grid;
    min-height: 232px;
    padding-block: 48px;
    grid-template-columns: 0.8fr 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.intro-strip p,
.intro-strip span {
    margin: 0;
    color: rgba(248, 236, 208, 0.66);
    font-size: 13px;
    font-weight: 700;
}

.intro-strip strong {
    font-family: var(--display);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.45;
    letter-spacing: -0.05em;
}

.daily-section {
    display: grid;
    padding-block: 144px;
    grid-template-columns: 0.76fr 1.24fr;
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
}

.section-heading h2,
.conversation-copy h2,
.features-heading h2 {
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.34;
}

.section-heading > p:last-child,
.conversation-copy > p,
.features-heading > p {
    margin: 24px 0 0;
    color: var(--body);
    font-size: 16px;
    line-height: 1.9;
}

.rhythm-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background:
        linear-gradient(rgba(255, 250, 239, 0.86), rgba(255, 250, 239, 0.91)),
        url("./images/consultation-desk.png") center / cover;
    box-shadow: 0 24px 60px var(--shadow);
}

.rhythm-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rhythm-card-header > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.rhythm-card-header p {
    margin: 0;
    color: var(--gold-deep);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
}

.rhythm-date {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.rhythm-tabs {
    display: grid;
    margin-top: 24px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(240, 232, 217, 0.72);
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.rhythm-tab {
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    color: var(--muted);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.rhythm-tab span {
    margin-right: 5px;
    color: var(--gold);
}

.rhythm-tab.is-active {
    color: var(--jade);
    background: rgba(255, 250, 239, 0.95);
    box-shadow: 0 3px 12px rgba(90, 67, 50, 0.08);
}

.rhythm-tab:focus-visible,
.header-cta:focus-visible,
.primary-button:focus-visible,
.text-button:focus-visible,
.desktop-nav a:focus-visible,
.store-badge:focus-visible {
    outline: 3px solid rgba(155, 63, 47, 0.32);
    outline-offset: 3px;
}

.rhythm-panel {
    display: grid;
    min-height: 174px;
    margin-top: 12px;
    padding: 24px;
    border: 1px solid rgba(230, 216, 195, 0.92);
    border-radius: 18px;
    background: rgba(255, 250, 239, 0.88);
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 20px;
}

.rhythm-symbol {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(195, 164, 93, 0.32);
    border-radius: 50%;
    color: var(--gold-deep);
    background: rgba(255, 255, 255, 0.6);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
}

.rhythm-label {
    margin: 0 0 6px;
    color: var(--jade);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
}

.rhythm-panel strong {
    color: var(--ink);
    font-family: var(--display);
    font-size: 23px;
    line-height: 1.45;
}

.rhythm-panel p:last-child {
    margin: 9px 0 0;
    color: var(--body);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}

.preview-caption {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.preview-caption span {
    color: var(--gold);
}

.conversation-section {
    padding-block: 135px;
    border-block: 1px solid rgba(195, 164, 93, 0.15);
    background: rgba(255, 252, 245, 0.7);
}

.conversation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: center;
    gap: clamp(55px, 8vw, 112px);
}

.ink-frame {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--paper-card);
    box-shadow: 0 24px 60px var(--shadow);
}

.ink-frame > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ink-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 250, 239, 0.2), rgba(44, 33, 22, 0.2));
    content: "";
}

.chat-bubble {
    position: absolute;
    z-index: 2;
    max-width: 74%;
    padding: 16px 18px;
    border: 1px solid rgba(230, 216, 195, 0.94);
    background: rgba(255, 252, 245, 0.94);
    box-shadow: 0 15px 32px rgba(44, 33, 22, 0.12);
    backdrop-filter: blur(10px);
}

.chat-bubble small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.chat-bubble p {
    margin: 0;
    color: var(--ink-soft);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.chat-bubble-question {
    top: 210px;
    right: auto;
    left: 76px;
    border-radius: 19px 19px 19px 6px;
}

.chat-bubble-answer {
    display: flex;
    top: 52px;
    bottom: auto;
    left: 30px;
    max-width: 82%;
    align-items: flex-start;
    gap: 11px;
    border-radius: 19px 19px 19px 6px;
}

.conversation-copy > p {
    max-width: 550px;
}

.conversation-steps {
    display: grid;
    margin: 34px 0 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.conversation-steps li {
    display: grid;
    padding: 17px 18px;
    border: 1px solid transparent;
    border-radius: 15px;
    grid-template-columns: 36px 1fr;
    gap: 13px;
    transition: border 180ms ease, background 180ms ease, transform 180ms ease;
}

.conversation-steps li:hover {
    border-color: var(--line);
    background: rgba(255, 250, 239, 0.72);
    transform: translateX(4px);
}

.conversation-steps li > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #f8ecd0;
    background: var(--ink);
    font-size: 11px;
    font-weight: 900;
}

.conversation-steps strong {
    color: var(--ink);
    font-family: var(--display);
    font-size: 17px;
}

.conversation-steps p {
    margin: 3px 0 0;
    color: var(--body);
    font-size: 13px;
}

.features-section {
    padding-block: 145px;
}

.features-heading {
    display: grid;
    margin-bottom: 46px;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 80px;
}

.features-heading > p {
    margin-bottom: 7px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    position: relative;
    min-height: 305px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255, 250, 239, 0.82);
    box-shadow: 0 10px 24px rgba(90, 67, 50, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover {
    border-color: rgba(195, 164, 93, 0.55);
    box-shadow: 0 20px 34px rgba(90, 67, 50, 0.11);
    transform: translateY(-5px);
}

.feature-card img {
    position: absolute;
    right: -18px;
    bottom: -20px;
    width: 142px;
    height: 142px;
    object-fit: contain;
    opacity: 0.92;
}

.feature-card > div {
    position: relative;
    z-index: 1;
    max-width: 73%;
}

.feature-card span,
.wide-feature-copy > span {
    color: var(--cinnabar);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.feature-card h3 {
    margin: 14px 0 11px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 23px;
    line-height: 1.45;
    letter-spacing: -0.04em;
}

.feature-card p {
    margin: 0;
    color: var(--body);
    font-size: 12px;
    line-height: 1.75;
}

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

.wide-feature {
    position: relative;
    min-height: 295px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper-card);
    box-shadow: 0 12px 28px rgba(90, 67, 50, 0.07);
}

.wide-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.wide-feature:hover img {
    transform: scale(1.025);
}

.wide-feature::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 250, 239, 0.98) 0%, rgba(255, 250, 239, 0.89) 45%, rgba(255, 250, 239, 0.08) 82%);
    content: "";
}

.wide-feature-copy {
    position: relative;
    z-index: 1;
    max-width: 56%;
    padding: 35px;
}

.wide-feature-copy h3 {
    margin: 13px 0 10px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 26px;
    line-height: 1.45;
    letter-spacing: -0.04em;
}

.wide-feature-copy p {
    margin: 0;
    color: var(--body);
    font-size: 12px;
    line-height: 1.7;
}

.closing-section {
    position: relative;
    overflow: hidden;
    color: #f8ecd0;
    background:
        radial-gradient(circle at 50% 10%, rgba(195, 164, 93, 0.17), transparent 34rem),
        linear-gradient(145deg, #342216 0%, #1d130d 68%, #130d09 100%);
}

.closing-section::before,
.closing-section::after {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(195, 164, 93, 0.12);
    border-radius: 50%;
    content: "";
}

.closing-section::before {
    top: -160px;
    left: -110px;
}

.closing-section::after {
    right: -150px;
    bottom: -170px;
}

.closing-ink {
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    opacity: 0.1;
    background: url("./images/consultation-desk.png") center bottom / cover;
    filter: grayscale(1) contrast(1.2);
    mix-blend-mode: screen;
}

.closing-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 720px;
    padding-block: 110px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.closing-icon {
    width: 106px;
    height: 106px;
    margin-bottom: 30px;
    border: 1px solid rgba(248, 236, 208, 0.36);
    border-radius: 29px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
}

.closing-kicker {
    margin: 0 0 15px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.closing-inner h2 {
    color: #f8ecd0;
    font-size: clamp(46px, 6vw, 74px);
    line-height: 1.3;
}

.closing-inner > p:not(.closing-kicker) {
    max-width: 580px;
    margin: 26px 0 0;
    color: rgba(248, 236, 208, 0.68);
    font-size: 15px;
}

.store-badge {
    display: inline-block;
    margin-top: 34px;
    border-radius: 10px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.store-badge:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.store-badge img {
    width: 188px;
    height: auto;
}

.closing-inner > small {
    margin-top: 28px;
    color: rgba(248, 236, 208, 0.43);
    font-size: 10px;
}

.site-footer {
    border-top: 1px solid rgba(248, 236, 208, 0.08);
    color: rgba(248, 236, 208, 0.58);
    background: #130d09;
}

.footer-inner {
    display: flex;
    min-height: 110px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.footer-brand img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

.footer-brand > div {
    display: grid;
    line-height: 1.25;
}

.footer-brand strong {
    color: #f8ecd0;
    font-family: var(--display);
    font-size: 14px;
}

.footer-brand span,
.footer-inner p {
    margin: 0;
    font-size: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.mobile-only {
    display: none;
}

@media (max-width: 1000px) {
    :root {
        --shell: min(100% - 40px, 820px);
    }

    .hero {
        min-height: auto;
        padding-block: 70px 110px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 650px;
    }

    .hero-visual {
        width: min(650px, 100%);
        margin: 10px auto 0;
    }

    .intro-strip-inner {
        grid-template-columns: 0.7fr 1.1fr 1fr;
        gap: 28px;
    }

    .daily-section,
    .conversation-grid {
        grid-template-columns: 1fr;
    }

    .daily-section {
        gap: 46px;
    }

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

    .conversation-visual {
        order: 2;
    }

    .conversation-copy {
        order: 1;
    }

    .ink-frame {
        min-height: 650px;
    }

    .features-heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features-heading > p {
        max-width: 650px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    :root {
        --shell: calc(100% - 32px);
    }

    html {
        scroll-padding-top: 74px;
    }

    .header-inner {
        min-height: 68px;
        gap: 14px;
    }

    .brand img {
        width: 39px;
        height: 39px;
        border-radius: 11px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy small,
    .desktop-nav {
        display: none;
    }

    .header-cta {
        min-height: 39px;
        margin-left: auto;
        padding-inline: 14px;
        font-size: 12px;
    }

    .hero {
        padding-block: 54px 76px;
        overflow: hidden;
        gap: 42px;
    }

    .eyebrow,
    .section-kicker {
        margin-bottom: 17px;
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 60px);
    }

    .hero-description {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.85;
    }

    .hero-actions {
        width: 100%;
        margin-top: 28px;
        flex-direction: column;
        gap: 15px;
    }

    .primary-button {
        width: min(100%, 360px);
    }

    .hero-keywords {
        margin-top: 25px;
        justify-content: center;
    }

    .hero-visual {
        min-height: 545px;
    }

    .orbit-mark-one {
        width: 420px;
        height: 420px;
    }

    .orbit-mark-two {
        width: 310px;
        height: 310px;
    }

    .app-preview {
        width: min(350px, 90vw);
        border-radius: 36px;
    }

    .app-preview-surface {
        min-height: 440px;
        border-radius: 27px;
    }

    .fortune-sheet {
        margin: 20px 15px;
        padding: 17px;
    }

    .fortune-sheet h2 {
        font-size: 25px;
    }

    .floating-note {
        min-width: 185px;
        padding: 10px 12px;
    }

    .floating-note-top {
        top: 24px;
        left: -5px;
    }

    .floating-note-bottom {
        right: -4px;
        bottom: 21px;
    }

    .intro-strip-inner {
        min-height: auto;
        padding-block: 48px;
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    .intro-strip strong {
        font-size: 27px;
    }

    .intro-strip span {
        max-width: 490px;
        margin: 6px auto 0;
    }

    .mobile-only {
        display: initial;
    }

    .daily-section,
    .features-section {
        padding-block: 95px;
    }

    .conversation-section {
        padding-block: 95px;
    }

    .section-heading h2,
    .conversation-copy h2,
    .features-heading h2 {
        font-size: 36px;
    }

    .section-heading > p:last-child,
    .conversation-copy > p,
    .features-heading > p {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.85;
    }

    .rhythm-card {
        padding: 17px;
        border-radius: 21px;
    }

    .rhythm-panel {
        min-height: 196px;
        padding: 19px;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .rhythm-symbol {
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .rhythm-panel strong {
        font-size: 20px;
    }

    .ink-frame {
        min-height: 520px;
        border-radius: 24px;
    }

    .chat-bubble {
        max-width: 85%;
    }

    .chat-bubble-question {
        top: 176px;
        right: auto;
        left: 42px;
    }

    .chat-bubble-answer {
        top: 34px;
        bottom: auto;
        left: 18px;
        max-width: 90%;
    }

    .conversation-steps li {
        padding-inline: 0;
    }

    .conversation-steps li:hover {
        padding-inline: 14px;
        transform: none;
    }

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

    .feature-card {
        min-height: 245px;
    }

    .feature-card img {
        right: -8px;
        bottom: -13px;
        width: 130px;
        height: 130px;
    }

    .wide-feature {
        min-height: 330px;
    }

    .wide-feature::after {
        background: linear-gradient(90deg, rgba(255, 250, 239, 0.98) 0%, rgba(255, 250, 239, 0.9) 56%, rgba(255, 250, 239, 0.17) 100%);
    }

    .wide-feature-copy {
        max-width: 70%;
        padding: 28px;
    }

    .closing-inner {
        min-height: 650px;
        padding-block: 90px;
    }

    .closing-icon {
        width: 90px;
        height: 90px;
        border-radius: 25px;
    }

    .closing-inner h2 {
        font-size: 44px;
    }

    .footer-inner {
        padding-block: 28px;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .header-cta span {
        display: none;
    }

    .hero-visual {
        min-height: 510px;
    }

    .app-preview {
        width: 100%;
    }

    .floating-note {
        display: none;
    }

    .rhythm-card-header {
        align-items: flex-start;
        gap: 12px;
    }

    .rhythm-date {
        max-width: 90px;
        text-align: right;
    }

    .rhythm-tab {
        font-size: 12px;
    }

    .feature-card > div {
        max-width: 76%;
    }

    .wide-feature-copy {
        max-width: 82%;
        padding: 25px;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
