:root {
    --sand: #f4efe6;
    --paper: #fbf8f3;
    --ink: #161410;
    --muted: #6b645a;
    --line: rgba(22, 20, 16, 0.1);
    --sage: #3f6f5b;
    --sage-deep: #2a4d3f;
    --mist: #7eb89a;
    --gold: #c4a574;
    --hero: #12100d;
    --radius: 1.5rem;
    --shadow: 0 30px 80px rgba(18, 16, 13, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--sand);
    font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 20;
    padding: 0.6rem 1rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
}

.skip:focus {
    top: 1rem;
}

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(18, 16, 13, 0.82);
    border-bottom: 1px solid rgba(251, 248, 243, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.25rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--paper);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand small {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.mark {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.7rem;
    background: linear-gradient(160deg, var(--mist), var(--sage-deep));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.1rem;
}

.nav-links a {
    color: rgba(251, 248, 243, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--paper);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.35rem;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: var(--mist);
    color: var(--hero);
}

.btn-primary:hover {
    background: #93c9ab;
}

.btn-ghost {
    background: transparent;
    color: var(--paper);
    box-shadow: inset 0 0 0 1px rgba(251, 248, 243, 0.22);
}

.btn-dark {
    background: var(--ink);
    color: var(--paper);
}

.hero {
    background:
        radial-gradient(900px 420px at 80% 10%, rgba(126, 184, 154, 0.18), transparent 60%),
        radial-gradient(700px 380px at 10% 90%, rgba(196, 165, 116, 0.12), transparent 55%),
        var(--hero);
    color: var(--paper);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    padding: 4.5rem 0 5rem;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        padding: 5.5rem 0 6rem;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(126, 184, 154, 0.12);
    color: var(--mist);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section-head h2,
.cta-band h2,
.legal-page h1 {
    font-family: Fraunces, ui-serif, Georgia, serif;
    font-weight: 560;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    max-width: 14ch;
}

@media (max-width: 700px) {
    .hero h1 {
        max-width: none;
    }

    .nav-links a.nav-desktop {
        display: none;
    }

    .nav-links a.btn {
        padding: 0.7rem 1rem;
        font-size: 0.88rem;
    }
}

.lede {
    max-width: 38rem;
    margin: 1.25rem 0 2rem;
    color: rgba(251, 248, 243, 0.74);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

.fine {
    color: rgba(251, 248, 243, 0.55);
    font-size: 0.92rem;
}

.stage {
    position: relative;
    min-height: 520px;
}

.orb {
    position: absolute;
    inset: 8% 8% auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #c9ecd8, var(--sage) 46%, #1c3329 78%);
    filter: blur(0.2px);
    animation: breathe 8s ease-in-out infinite;
    box-shadow: 0 0 80px rgba(126, 184, 154, 0.28);
}

.orb::after {
    content: "INSPIRAR";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(251, 248, 243, 0.85);
    animation: breathe-label 8s ease-in-out infinite;
}

.phone {
    position: relative;
    z-index: 1;
    width: min(290px, 100%);
    margin: 2rem auto 0;
    padding: 0.7rem;
    border-radius: 2.1rem;
    background: #1c1915;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-screen {
    border-radius: 1.6rem;
    background: #221f1a;
    padding: 1.2rem 1.1rem 1.3rem;
    min-height: 430px;
}

.phone-top {
    display: flex;
    justify-content: space-between;
    color: rgba(251, 248, 243, 0.5);
    font-size: 0.75rem;
    margin-bottom: 1.4rem;
}

.phone h3 {
    font-family: Fraunces, ui-serif, Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.15;
    margin: 0 0 1.1rem;
}

.day-card {
    background: rgba(251, 248, 243, 0.05);
    border: 1px solid rgba(251, 248, 243, 0.08);
    border-radius: 1.1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.day-card strong {
    display: block;
    color: var(--mist);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.stat {
    background: rgba(251, 248, 243, 0.04);
    border-radius: 0.9rem;
    padding: 0.75rem;
}

.stat b {
    display: block;
    font-size: 1.15rem;
}

.stat span {
    color: rgba(251, 248, 243, 0.55);
    font-size: 0.78rem;
}

.fake-btn {
    margin-top: 1rem;
    background: var(--mist);
    color: var(--hero);
    text-align: center;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.85rem;
}

.section {
    padding: 4.5rem 0;
}

.section-head {
    max-width: 38rem;
    margin-bottom: 2.2rem;
}

.section-head p,
.muted {
    color: var(--muted);
}

.cards {
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .cards.four {
        grid-template-columns: repeat(4, 1fr);
    }

    .cards.three {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
}

.card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.kicker {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--sage);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.days {
    display: grid;
    gap: 0.7rem;
}

@media (min-width: 720px) {
    .days {
        grid-template-columns: 1fr 1fr;
    }
}

.day {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    padding: 1rem 1.1rem;
}

.num {
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--sage);
    color: var(--paper);
    font-weight: 800;
}

.day.locked .num {
    background: #d9d1c4;
    color: var(--ink);
}

.day h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

.day p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.split {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 860px) {
    .split {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }
}

.quote {
    font-family: Fraunces, ui-serif, Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.note {
    font-size: 0.95rem;
    color: var(--muted);
}

.cta-band {
    background: var(--sage-deep);
    color: var(--paper);
    border-radius: 2rem;
    padding: 2.4rem 1.6rem;
    text-align: center;
}

.cta-band p {
    color: rgba(251, 248, 243, 0.72);
}

.site-footer {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--line);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-row nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-row a {
    color: var(--sage-deep);
}

.legal-page {
    padding: 3.5rem 0 5rem;
}

.legal-page article {
    max-width: 44rem;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.6rem;
}

.legal-page h2 {
    font-family: Fraunces, ui-serif, Georgia, serif;
    font-size: 1.35rem;
    margin: 2rem 0 0.6rem;
}

.legal-page p,
.legal-page li {
    color: #433e37;
}

.legal-page ul {
    padding-left: 1.15rem;
}

@keyframes breathe {
    0%,
    100% {
        transform: scale(0.84);
    }
    50% {
        transform: scale(1);
    }
}

@keyframes breathe-label {
    0%,
    42% {
        content: "INSPIRAR";
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
    58%,
    100% {
        content: "EXPIRAR";
        opacity: 1;
    }
}

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

    .orb,
    .orb::after {
        animation: none;
    }
}
