/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
    /* Warna utama — palet elegan */
    --ink: #193d42;
    --deep-ink: #102f35;
    --paper: #f0eadf;
    --paper-light: #f8f4eb;
    --butter: #e7d498;
    --ochre: #c88e4a;
    --red: #bd4b43;
    --mist: #b8ceca;
    --line: rgba(25, 61, 66, .19);

    /* Fonts */
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --mono: 'DM Mono', monospace;

    /* Shadows & Radius */
    --shadow-card: 10px 13px 0 rgba(25, 61, 66, .17);
    --shadow-sm: 5px 5px 0 rgba(25, 61, 66, .16);
    --radius: 20px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.site-grain {
    position: fixed;
    z-index: 50;
    inset: 0;
    pointer-events: none;
    opacity: .15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* ============================================================
   SHELL CONTAINER
   ============================================================ */
.site-shell {
    overflow: hidden;
    background: var(--paper);
    min-height: 100vh;
}

/* ============================================================
   TOPBAR / NAVIGATION
   ============================================================ */
.topbar {
    position: relative;
    z-index: 20;
    width: min(1360px, calc(100% - 64px));
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1;
    letter-spacing: -.065em;
    font-weight: 700;
    text-decoration: none;
}

.brand > span:last-child > span {
    color: var(--red);
}

.brand-mark {
    color: var(--red);
    font-size: 25px;
    transform: translateY(-1px);
}

.desktop-nav {
    display: flex;
    gap: 34px;
    margin-left: 115px;
}

.desktop-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .02em;
    transition: color .2s ease;
}

.desktop-nav a:hover {
    color: var(--red);
}

/* Mobile Menu Button */
.menu-button {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 12px;
    padding: 8px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    padding: 8px 20px;
    background: var(--paper-light);
    border: 1px solid var(--line);
    box-shadow: 8px 8px 0 rgba(25, 61, 66, .15);
}

.mobile-nav:not([hidden]) {
    display: grid;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-nav a:last-child {
    border-bottom: 0;
}

.mobile-nav i {
    color: var(--red);
    font-size: 10px;
}

/* Nav Invite Button */
.nav-invite {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 11px 17px;
    color: var(--paper-light);
    background: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease;
}

.nav-invite:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

/* Focus states */
.topbar a:focus-visible,
.menu-button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 53px;
    padding: 0 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 5px 5px 0 var(--ink);
}

.button-dashboard {
    background: var(--deep-ink);
    color: #fff;
    box-shadow: 5px 5px 0 var(--butter);
}

.button-dashboard:hover {
    background: var(--butter);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--deep-ink);
}

.button .arrow {
    font-size: 10px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
    color: var(--red);
    border-color: var(--red);
}

.text-link i {
    font-size: 9px;
}

.light-link {
    color: #f4f0e5;
    border-color: #f4f0e5;
}

.light-link:hover {
    color: var(--butter);
    border-color: var(--butter);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-new {
    width: min(1360px, calc(100% - 64px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .94fr 1.06fr;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 12px 72px 3px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .125em;
    text-transform: uppercase;
}

.eyebrow span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--red);
}

.hero-copy h1 {
    max-width: 580px;
    margin: 20px 0 23px;
    font-size: clamp(65px, 6.15vw, 99px);
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.055em;
}

.hero-copy h1 em,
.experience-heading em,
.spread-copy em,
.steps-title em,
.command-section h2 em,
.final-cta h2 em,
.legal-hero h1 em {
    color: var(--red);
    font-weight: 500;
}

.hero-intro {
    width: min(440px, 100%);
    color: #426167;
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 33px;
}

.hero-facts {
    display: flex;
    gap: 38px;
    margin-top: 58px;
}

.hero-facts div {
    position: relative;
}

.hero-facts div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -20px;
    width: 1px;
    height: 31px;
    background: var(--line);
}

.hero-facts dt {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
}

.hero-facts dd {
    margin-top: 6px;
    color: #547176;
    font-size: 10px;
}

/* Hero Art */
.hero-art {
    position: relative;
    min-height: 620px;
    isolation: isolate;
    background: linear-gradient(125deg, #c8d9d5 0%, #b9d0cc 56%, #a2c1bd 100%);
    overflow: hidden;
}

.hero-art::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -125px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(25, 61, 66, .24);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(240, 234, 223, .08), 0 0 0 112px rgba(240, 234, 223, .08);
}

.hero-art::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -70px;
    bottom: -106px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(25, 61, 66, .2);
    border-radius: 50%;
}

.hero-sun {
    position: absolute;
    top: 90px;
    left: 13%;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--butter);
    opacity: .92;
}

.orbit-text {
    position: absolute;
    top: 87px;
    left: 54%;
    width: 250px;
    color: var(--ink);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .27em;
    line-height: 1.4;
    transform: rotate(72deg);
}

.orbit-text span {
    color: var(--red);
}

/* Tarot Cards */
.tarot-card {
    background: #e3c686;
    border: 3px solid #f5e4bc;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.hero-main-card {
    position: absolute;
    z-index: 2;
    top: 88px;
    left: 50%;
    width: 248px;
    height: 373px;
    margin: 0;
    transform: translateX(-50%) rotate(-5deg);
}

.hero-main-card img {
    display: block;
    width: 100%;
    height: calc(100% - 30px);
    object-fit: cover;
}

.hero-main-card figcaption {
    height: 30px;
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #15373e;
    background: #ead9ae;
    font-family: var(--serif);
    font-size: 11px;
}

.hero-main-card figcaption span {
    font-family: var(--mono);
    font-size: 9px;
}

.hero-back {
    position: absolute;
    z-index: 1;
    top: 154px;
    left: calc(50% + 61px);
    width: 198px;
    height: 294px;
    transform: rotate(12deg);
    border-color: var(--ink);
    background-color: #264d50;
    background-image: radial-gradient(#d8c68d 1px, transparent 1.4px),
        linear-gradient(45deg, transparent 47%, #d8c68d 48%, #d8c68d 52%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, #d8c68d 48%, #d8c68d 52%, transparent 53%);
    background-size: 13px 13px, 30px 30px, 30px 30px;
}

.hero-back span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--butter);
    font-size: 36px;
    transform: translate(-50%, -50%);
}

.reading-note {
    position: absolute;
    z-index: 4;
    right: 28px;
    bottom: 47px;
    display: flex;
    gap: 10px;
    width: 205px;
    padding: 13px;
    background: var(--paper-light);
    box-shadow: var(--shadow-sm);
    transform: rotate(3deg);
}

.note-icon {
    color: var(--red);
    font-size: 18px;
}

.reading-note p {
    color: #416166;
    font-family: var(--serif);
    font-size: 11px;
    line-height: 1.4;
}

.reading-note strong {
    color: var(--ink);
    font-weight: 600;
}

.constellation {
    position: absolute;
    z-index: 3;
    color: var(--paper-light);
    font-size: 15px;
}

.constellation-one {
    top: 69px;
    right: 44px;
}

.constellation-two {
    top: 325px;
    left: 57px;
    font-size: 10px;
}

.constellation-three {
    bottom: 99px;
    left: 32%;
    font-size: 12px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    width: min(1360px, calc(100% - 64px));
    min-height: 85px;
    margin: 0 auto;
    padding: 21px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip p {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
}

.trust-strip > div {
    display: flex;
    align-items: center;
    gap: 19px;
    color: #527075;
    font-size: 10px;
}

.trust-strip i {
    color: var(--red);
    font-style: normal;
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-section {
    width: min(1360px, calc(100% - 64px));
    margin: 0 auto;
    padding: 120px 0;
}

.section-label {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #507176;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.section-label span {
    color: var(--red);
}

.section-label.light {
    color: #b5cbc7;
}

.section-label.light span {
    color: var(--butter);
}

.experience-heading {
    display: grid;
    grid-template-columns: 1.1fr .47fr;
    justify-content: space-between;
    gap: 60px;
    padding: 29px 0 51px;
}

.experience-heading h2 {
    font-size: clamp(42px, 4vw, 62px);
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.055em;
}

.experience-heading p,
.steps-title p {
    align-self: end;
    color: #527075;
    font-size: 15px;
    line-height: 1.65;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
}

.experience-card {
    position: relative;
    min-height: 360px;
    padding: 28px;
    overflow: hidden;
}

.wide-card {
    background: #e2d49e;
}

.daily-card {
    background: #e9a95a;
}

.ai-card {
    background: #bdd3cf;
}

.card-number {
    color: rgba(25, 61, 66, .58);
    font-family: var(--mono);
    font-size: 10px;
}

.feature-symbol {
    position: absolute;
    top: 19px;
    right: 24px;
    color: var(--red);
    font-family: var(--serif);
    font-size: 30px;
}

.experience-card h3 {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.experience-card p {
    position: relative;
    z-index: 2;
    max-width: 243px;
    margin-top: 13px;
    color: #426267;
    font-size: 12px;
    line-height: 1.6;
}

.card-fan {
    position: absolute;
    bottom: -53px;
    right: 5px;
    width: 249px;
    height: 206px;
}

.card-fan img {
    position: absolute;
    bottom: 0;
    width: 98px;
    height: 147px;
    object-fit: cover;
    border: 2px solid #f1e5bc;
    box-shadow: 2px 3px 0 rgba(25, 61, 66, .22);
}

.card-fan img:nth-child(1) {
    left: 17px;
    transform: rotate(-17deg);
}

.card-fan img:nth-child(2) {
    left: 81px;
    transform: translateY(-11px) rotate(-1deg);
}

.card-fan img:nth-child(3) {
    right: 4px;
    transform: rotate(15deg);
}

.daily-date {
    position: absolute;
    right: 21px;
    bottom: 19px;
    color: #7e442c;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .04em;
}

.daily-date b {
    color: var(--ink);
    font-weight: 500;
}

.model-dots {
    position: absolute;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
}

.model-dots span {
    width: 24px;
    height: 24px;
    margin-right: -7px;
    border: 2px solid #bdd3cf;
    border-radius: 50%;
    background: var(--red);
}

.model-dots span:nth-child(2) {
    background: var(--ink);
}

.model-dots span:nth-child(3) {
    background: var(--ochre);
}

.model-dots span:nth-child(4) {
    background: #e2d49e;
}

.model-dots b {
    margin-left: 16px;
    color: var(--ink);
    font-size: 10px;
}

/* ============================================================
   SPREADS SECTION
   ============================================================ */
.spreads-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 612px;
    background: var(--deep-ink);
}

.spread-visual {
    position: relative;
    overflow: hidden;
    background: #234a4e;
}

.spread-visual::before {
    content: '';
    position: absolute;
    top: -130px;
    left: 50%;
    width: 530px;
    height: 530px;
    border: 1px solid rgba(236, 225, 187, .24);
    border-radius: 50%;
    transform: translateX(-50%);
}

.spread-visual::after {
    content: '✦';
    position: absolute;
    bottom: 31px;
    left: 60px;
    color: var(--butter);
    font-size: 20px;
}

.spread-line {
    position: absolute;
    height: 1px;
    background: rgba(236, 225, 187, .28);
    transform-origin: left center;
}

.line-one {
    top: 43%;
    left: 12%;
    width: 74%;
    transform: rotate(11deg);
}

.line-two {
    top: 52%;
    left: 18%;
    width: 67%;
    transform: rotate(-20deg);
}

.spread-card {
    position: absolute;
    width: 133px;
    height: 200px;
    border: 3px solid #e6d6ac;
    box-shadow: 8px 9px 0 rgba(0, 0, 0, .2);
    overflow: hidden;
}

.spread-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-card-1 {
    top: 158px;
    left: 15%;
    transform: rotate(-15deg);
}

.s-card-2 {
    z-index: 2;
    top: 109px;
    left: calc(50% - 66px);
    transform: rotate(3deg);
}

.s-card-3 {
    top: 188px;
    right: 15%;
    transform: rotate(17deg);
}

.spread-label {
    position: absolute;
    color: #d8c895;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .1em;
}

.label-past {
    top: 382px;
    left: 14%;
}

.label-present {
    top: 335px;
    left: calc(50% - 38px);
}

.label-future {
    top: 414px;
    right: 10%;
}

.spread-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px clamp(35px, 8vw, 122px);
    color: #eef0e5;
}

.spread-copy h2 {
    margin: 27px 0 22px;
    color: #f5f1e7;
    font-size: clamp(45px, 4vw, 60px);
    font-family: var(--serif);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.055em;
}

.spread-copy h2 em {
    color: var(--butter);
}

.spread-copy > p {
    color: #bbcfcb;
    font-size: 14px;
    line-height: 1.67;
}

.spread-list {
    margin: 28px 0 27px;
    padding: 0;
    list-style: none;
}

.spread-list li {
    display: grid;
    grid-template-columns: 33px 1fr 130px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(238, 240, 229, .2);
    color: #f3f0e8;
    font-family: var(--serif);
    font-size: 17px;
}

.spread-list li span {
    color: var(--butter);
    font-family: var(--mono);
    font-size: 9px;
}

.spread-list li em {
    color: #b7ceca;
    font-family: var(--sans);
    font-size: 10px;
    font-style: normal;
}

/* ============================================================
   STEPS SECTION
   ============================================================ */
.steps-section {
    width: min(1360px, calc(100% - 64px));
    margin: 0 auto;
    padding: 120px 0 111px;
}

.steps-title {
    display: grid;
    grid-template-columns: 1.2fr .47fr;
    gap: 60px;
    padding: 27px 0 56px;
}

.steps-title h2 {
    font-size: clamp(42px, 4vw, 62px);
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.055em;
}

.steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.steps-list li {
    display: grid;
    grid-template-columns: 96px 1fr 160px;
    gap: 19px;
    align-items: center;
    min-height: 132px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.step-index {
    color: var(--red);
    font-family: var(--mono);
    font-size: 11px;
}

.steps-list h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -.04em;
}

.steps-list p {
    margin-top: 5px;
    color: #59757a;
    font-size: 12px;
}

.steps-list code {
    justify-self: end;
    padding: 8px 11px;
    color: var(--red);
    background: #e6ded0;
    font-family: var(--mono);
    font-size: 11px;
}

/* ============================================================
   COMMAND SECTION
   ============================================================ */
.command-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
    padding: 111px max(32px, calc((100vw - 1360px) / 2));
    background: #25494e;
}

.command-section h2 {
    max-width: 440px;
    margin: 27px 0 22px;
    color: #f5f1e7;
    font-size: clamp(45px, 4vw, 60px);
    font-family: var(--serif);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.055em;
}

.command-section h2 em {
    color: var(--butter);
}

.command-list {
    border-top: 1px solid rgba(238, 240, 229, .25);
}

.command-list a {
    display: grid;
    grid-template-columns: 116px 1fr 18px;
    align-items: center;
    min-height: 61px;
    border-bottom: 1px solid rgba(238, 240, 229, .25);
    color: #e9efeb;
    text-decoration: none;
    transition: background .2s ease, padding .2s ease;
}

.command-list a:hover {
    padding: 0 10px;
    background: rgba(255, 255, 255, .06);
}

.command-list code {
    color: var(--butter);
    font-family: var(--mono);
    font-size: 12px;
}

.command-list span {
    font-size: 13px;
}

.command-list i {
    font-size: 10px;
    color: #b8cfcb;
}
/* ============================================================
   HELP SECTION — Panduan Bantuan Bot Tarot
   ============================================================ */
.help-section {
    width: min(1360px, calc(100% - 64px));
    margin: 0 auto;
    padding: 80px 0 100px;
}

.help-heading {
    padding: 27px 0 40px;
}

.help-heading h2 {
    font-size: clamp(42px, 4vw, 58px);
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.055em;
}

.help-heading h2 em {
    color: var(--red);
    font-weight: 500;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.help-block {
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 32px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.help-block:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.help-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -.03em;
}

.help-icon {
    font-size: 24px;
}

.help-commands {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-commands li {
    display: flex;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px solid rgba(25, 61, 66, .07);
    font-size: 13px;
    color: #527075;
}

.help-commands li:last-child {
    border-bottom: none;
}

.help-commands code {
    min-width: 180px;
    padding: 2px 10px;
    background: #e6ded0;
    color: var(--red);
    font-family: var(--mono);
    font-size: 11px;
    border-radius: 4px;
    white-space: nowrap;
}

.help-commands li span {
    margin-left: 10px;
    font-size: 12px;
    color: #688084;
}

/* Tips block */
.help-tips {
    grid-column: span 2;
    background: var(--deep-ink);
    border-color: rgba(236, 225, 187, .2);
}

.help-tips h3 {
    color: var(--butter);
}

.help-tips-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 40px;
}

.help-tips-list li {
    padding: 5px 0;
    color: #d4e0dd;
    font-size: 13px;
    line-height: 1.6;
}

.help-mantra {
    grid-column: span 2;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(236, 225, 187, .15);
    color: var(--butter);
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    text-align: center;
    letter-spacing: .02em;
}

/* ============================================================
   HELP SECTION RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .help-section {
        width: min(100% - 40px, 700px);
        padding: 60px 0 70px;
    }

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

    .help-tips {
        grid-column: span 1;
    }

    .help-tips-list {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .help-mantra {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .help-section {
        width: calc(100% - 32px);
        padding: 40px 0 50px;
    }

    .help-block {
        padding: 20px 18px;
        border-radius: var(--radius-sm);
    }

    .help-block h3 {
        font-size: 17px;
    }

    .help-commands li {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .help-commands code {
        min-width: auto;
        font-size: 10px;
        margin-bottom: 3px;
    }

    .help-commands li span {
        margin-left: 0;
        font-size: 11px;
    }

    .help-tips-list li {
        font-size: 12px;
    }

    .help-mantra {
        font-size: 14px;
    }
}
/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    min-height: 505px;
    padding: 95px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #e2d49e;
}

.final-cta .eyebrow {
    color: var(--ink);
}

.final-cta h2 {
    margin: 21px 0 17px;
    font-size: clamp(55px, 6vw, 88px);
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.055em;
}

.final-cta > p:not(.eyebrow) {
    max-width: 420px;
    color: #466267;
    font-size: 14px;
    line-height: 1.65;
}

.final-cta .button {
    margin-top: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.new-footer {
    width: min(1360px, calc(100% - 64px));
    min-height: 114px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 1fr auto;
    gap: 25px;
    align-items: center;
}

.new-footer a {
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .02em;
    transition: color .2s ease;
}

.new-footer a:hover {
    color: var(--red);
}

.new-footer p,
.new-footer small {
    color: #688084;
    font-size: 10px;
    line-height: 1.55;
}

.new-footer > div {
    display: flex;
    gap: 18px;
}

.new-footer small {
    justify-self: end;
    white-space: nowrap;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   LEGAL PAGES — Terms & Privacy
   ============================================================ */

/* Legal Hero */
.legal-hero {
    width: min(1360px, calc(100% - 64px));
    min-height: 280px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #e2d49e 0%, #dac496 100%);
    border-radius: 20px;
    padding: 60px 40px;
}

.legal-hero-content {
    max-width: 700px;
}

.legal-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--ink);
    margin: 12px 0 8px;
}

.legal-hero h1 em {
    color: var(--red);
    font-weight: 500;
}

.legal-sub {
    font-family: var(--mono);
    font-size: 11px;
    color: #5a6f6e;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.legal-intro {
    font-size: 16px;
    color: #426167;
    line-height: 1.65;
}

/* Legal Section */
.legal-section {
    width: min(1000px, calc(100% - 64px));
    margin: 0 auto 60px;
    padding: 0 0 40px;
}

.legal-block {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}

.legal-block:last-of-type {
    border-bottom: none;
}

.legal-block h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.legal-block .legal-icon {
    color: var(--red);
    margin-right: 6px;
}

.legal-block p {
    color: #527075;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-block ul {
    padding-left: 24px;
    color: #527075;
    font-size: 14px;
    line-height: 1.8;
}

.legal-block ul li {
    margin-bottom: 4px;
}

.legal-block code {
    padding: 2px 10px;
    background: #e6ded0;
    color: var(--red);
    font-family: var(--mono);
    font-size: 12px;
    border-radius: 4px;
}

.legal-block a {
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.legal-block a:hover {
    border-color: var(--red);
}

/* Callout boxes */
.legal-callout {
    background: rgba(227, 209, 180, 0.15);
    border-left: 4px solid var(--red);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 12px 0;
}

.legal-callout.warning {
    border-left-color: var(--ochre);
    background: rgba(200, 142, 74, 0.1);
}

.legal-callout.danger {
    border-left-color: var(--red);
    background: rgba(189, 75, 67, 0.08);
}

.legal-callout ul {
    margin-top: 6px;
}

.legal-callout strong {
    color: var(--ink);
}

/* Table */
.legal-table-wrap {
    overflow-x: auto;
    margin: 12px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.legal-table th {
    text-align: left;
    padding: 12px 14px;
    background: rgba(227, 209, 180, 0.08);
    color: var(--ink);
    font-weight: 600;
    border-bottom: 2px solid var(--line);
}

.legal-table td {
    padding: 10px 14px;
    color: #527075;
    border-bottom: 1px solid var(--line);
}

.legal-table .badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.legal-table .badge.green {
    background: rgba(90, 121, 124, 0.15);
    color: #3a6a6e;
}

.legal-table .badge.yellow {
    background: rgba(200, 142, 74, 0.15);
    color: #8a6a3a;
}

/* Summary box */
.legal-summary {
    background: rgba(25, 61, 66, 0.04);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
}

.legal-summary h2 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 12px;
}

.legal-summary ul {
    padding-left: 20px;
    color: #527075;
    font-size: 14px;
    line-height: 1.9;
}

/* Acknowledgment */
.legal-acknowledgment {
    text-align: center;
    padding: 40px 20px;
    margin-top: 32px;
    border-top: 1px solid var(--line);
}

.legal-acknowledgment h2 {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 8px;
}

.legal-acknowledgment p {
    color: #527075;
    font-size: 15px;
}

.legal-acknowledgment .ack-date {
    margin-top: 10px;
    font-size: 13px;
    color: #7a9296;
}

.legal-acknowledgment .ack-date i {
    color: var(--red);
    margin-right: 6px;
}

.legal-note {
    font-size: 13px !important;
    color: #7a9296 !important;
    margin-top: 6px;
}

/* Legal CTA */
.legal-cta {
    width: min(1000px, calc(100% - 64px));
    margin: 0 auto 60px;
    padding: 48px 32px;
    text-align: center;
    background: var(--deep-ink);
    border-radius: 20px;
}

.legal-cta p {
    color: #d4e0dd;
    font-family: var(--serif);
    font-size: 22px;
    margin-bottom: 20px;
}

.legal-cta .button-primary {
    background: var(--butter);
    color: var(--ink);
    box-shadow: 5px 5px 0 rgba(25, 61, 66, 0.25);
}

.legal-cta .button-primary:hover {
    background: #f5e9c4;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 rgba(25, 61, 66, 0.25);
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile
   ============================================================ */
@media (max-width: 960px) {
    .topbar,
    .hero-new,
    .trust-strip,
    .experience-section,
    .steps-section,
    .new-footer {
        width: min(100% - 40px, 700px);
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: inline-flex;
    }

    .hero-new {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 70px 0 66px;
    }

    .hero-art {
        min-height: 535px;
    }

    .hero-main-card {
        top: 63px;
    }

    .trust-strip {
        gap: 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .experience-heading,
    .steps-title {
        grid-template-columns: 1fr;
        gap: 19px;
    }

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

    .wide-card {
        grid-column: span 2;
    }

    .spreads-section {
        grid-template-columns: 1fr;
    }

    .spread-visual {
        min-height: 500px;
    }

    .spread-copy {
        padding: 77px max(20px, calc((100vw - 620px)/2));
    }

    .command-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 80px 40px;
    }

    .new-footer {
        grid-template-columns: 1fr 1fr;
        padding: 28px 0;
    }

    .new-footer small {
        justify-self: start;
    }

    /* Legal responsive */
    .legal-hero {
        min-height: auto;
        padding: 40px 24px;
        border-radius: 12px;
        margin-bottom: 32px;
        width: calc(100% - 32px);
    }

    .legal-hero h1 {
        font-size: 36px;
    }

    .legal-section {
        width: calc(100% - 32px);
        padding: 0;
    }

    .legal-block {
        padding: 24px 0;
    }

    .legal-block h2 {
        font-size: 19px;
    }

    .legal-table {
        font-size: 12px;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }

    .legal-summary {
        padding: 20px;
    }

    .legal-cta {
        width: calc(100% - 32px);
        padding: 32px 20px;
        border-radius: 12px;
    }

    .legal-cta p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .topbar {
        height: 75px;
        width: calc(100% - 32px);
    }

    .nav-invite {
        padding: 9px 11px;
        font-size: 10px;
    }

    .brand {
        font-size: 19px;
    }

    .brand-mark {
        font-size: 21px;
    }

    .hero-new,
    .trust-strip,
    .experience-section,
    .steps-section,
    .new-footer {
        width: calc(100% - 32px);
    }

    .hero-copy {
        padding: 51px 0 50px;
    }

    .hero-copy h1 {
        font-size: 57px;
    }

    .hero-intro {
        font-size: 14px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 21px;
    }

    .hero-facts {
        gap: 24px;
        margin-top: 47px;
    }

    .hero-facts div:not(:last-child)::after {
        right: -13px;
    }

    .hero-art {
        min-height: 465px;
        margin: 0 -16px;
    }

    .hero-main-card {
        width: 189px;
        height: 284px;
        top: 55px;
    }

    .hero-back {
        top: 113px;
        left: calc(50% + 44px);
        width: 155px;
        height: 231px;
    }

    .hero-sun {
        top: 46px;
        left: 10%;
        width: 145px;
        height: 145px;
    }

    .reading-note {
        right: 20px;
        bottom: 25px;
        width: 183px;
    }

    .trust-strip {
        padding: 19px 0;
    }

    .trust-strip > div {
        flex-wrap: wrap;
        gap: 7px 12px;
        font-size: 9px;
    }

    .experience-section,
    .steps-section {
        padding: 76px 0;
    }

    .experience-heading {
        padding-bottom: 33px;
    }

    .experience-heading h2,
    .steps-title h2 {
        font-size: 42px;
    }

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

    .wide-card {
        grid-column: span 1;
    }

    .experience-card {
        min-height: 312px;
    }

    .experience-card h3 {
        margin-top: 54px;
    }

    .spreads-section {
        min-height: auto;
    }

    .spread-visual {
        min-height: 407px;
    }

    .spread-card {
        width: 102px;
        height: 154px;
    }

    .s-card-1 {
        top: 117px;
    }

    .s-card-2 {
        top: 87px;
        left: calc(50% - 51px);
    }

    .s-card-3 {
        top: 142px;
    }

    .label-past {
        top: 291px;
    }

    .label-present {
        top: 261px;
    }

    .label-future {
        top: 312px;
    }

    .spread-copy {
        padding: 61px 24px;
    }

    .spread-copy h2,
    .command-section h2 {
        font-size: 43px;
    }

    .spread-list li {
        grid-template-columns: 26px 1fr;
        font-size: 15px;
    }

    .spread-list li em {
        display: none;
    }

    .steps-title {
        padding-bottom: 32px;
    }

    .steps-list li {
        grid-template-columns: 43px 1fr;
        min-height: 145px;
    }

    .steps-list code {
        justify-self: start;
        grid-column: 2;
    }

    .steps-list h3 {
        font-size: 23px;
    }

    .command-section {
        padding: 71px 24px;
    }

    .command-list a {
        grid-template-columns: 101px 1fr 13px;
    }

    .command-list span {
        font-size: 11px;
    }

    .final-cta {
        min-height: 463px;
        padding: 74px 20px;
    }

    .final-cta h2 {
        font-size: 57px;
    }

    .new-footer {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 30px 0;
    }

    .new-footer > div {
        order: 3;
    }

    .new-footer small {
        order: 4;
    }

    /* Legal mobile */
    .legal-hero {
        padding: 28px 16px;
    }

    .legal-hero h1 {
        font-size: 28px;
    }

    .legal-intro {
        font-size: 14px;
    }

    .legal-block p,
    .legal-block ul {
        font-size: 13px;
    }

    .legal-table th,
    .legal-table td {
        font-size: 11px;
        padding: 6px 8px;
    }

    .legal-acknowledgment h2 {
        font-size: 21px;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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