:root {
    --bg: #fff7f9;
    --card: #ffffff;
    --text: #1b1b1d;
    --muted: #5b5b66;
    --pink: #de6c87;
    --pink-hover: #d05a78;
    --green-wa: #25d366;
    --green-wa-hover: #1fb855;
    --line: rgba(20, 20, 25, .12);
    --shadow: 0 10px 30px rgba(20, 20, 25, .10);
    --radius: 18px;
    --max: 1020px;
    --header-h: 69px;
}

[hidden] {
    display: none !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(900px 500px at 20% 0%, rgba(222, 108, 135, .18), transparent 55%),
        radial-gradient(900px 500px at 90% 20%, rgba(222, 108, 135, .10), transparent 55%),
        var(--bg);
}

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

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

a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* ——— Focus-visible global ——— */
:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
    border-radius: 6px;
}

button {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

/* ——— Skip link ——— */
.skip {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    z-index: 9999;
}

/* ——— Topbar ——— */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 247, 249, .82);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}

.topbar--scrolled {
    box-shadow: 0 4px 20px rgba(20, 20, 25, .08);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
}

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

.brand:hover {
    text-decoration: none;
}

.brand__logo {
    width: 140px;
    height: auto;
}

/* ——— Nav ——— */
.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__links {
    display: none;
    gap: 14px;
    align-items: center;
}

.nav__links a {
    font-size: 14px;
    color: rgba(27, 27, 29, .85);
    padding: 4px 2px;
    position: relative;
    transition: color .2s ease;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transition: width .25s ease;
}

.nav__links a:hover {
    color: var(--pink);
    text-decoration: none;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
    width: 100%;
}

/* ——— Icon button / hamburger ——— */
.iconbtn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--card);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease;
}

.iconbtn:hover {
    box-shadow: 0 4px 12px rgba(20, 20, 25, .08);
}

.iconbtn__bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.iconbtn__bars span {
    display: block;
    height: 2px;
    background: rgba(27, 27, 29, .85);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.iconbtn[aria-expanded="true"] .iconbtn__bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.iconbtn[aria-expanded="true"] .iconbtn__bars span:nth-child(2) {
    opacity: 0;
}

.iconbtn[aria-expanded="true"] .iconbtn__bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--text);
    border-radius: 14px;
    padding: 10px 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    box-shadow: 0 8px 20px rgba(20, 20, 25, .10);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(20, 20, 25, .08);
}

.btn--primary {
    background: var(--pink);
    border-color: rgba(222, 108, 135, .35);
    color: white;
}

.btn--primary:hover {
    background: var(--pink-hover);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(222, 108, 135, .35);
}

.btn--ghost:hover {
    background: rgba(222, 108, 135, .06);
}

.btn--big {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
}

.btn--full {
    width: 100%;
}

.desktopOnly {
    display: none;
}

/* ——— Main ——— */
.main {
    padding-bottom: 0;
}

/* ——— Hero ——— */
.hero {
    padding: 26px 0 6px;
}

.hero__grid {
    display: grid;
    gap: 16px;
}

.hero__grid--single {
    grid-template-columns: 1fr;
}

.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(222, 108, 135, .25);
    background: rgba(255, 255, 255, .65);
    color: rgba(27, 27, 29, .78);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
    animation: fadeInDown .5s ease both;
}

h1 {
    font-size: clamp(28px, 5.2vw, 40px);
    line-height: 1.05;
    margin: 10px 0 10px;
    letter-spacing: -0.02em;
}

h3 {
    margin: 0;
}

.heroTitleRow {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 10px;
}

.heroTitleRow h1 {
    margin: 0;
    animation: fadeInDown .6s .1s ease both;
}

.heroBook {
    flex: 0 0 auto;
    width: 190px;
    animation: fadeInUp .7s .2s ease both;
}

.heroBook img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(20, 20, 25, .10);
    background: #fff;
    box-shadow: 0 10px 22px rgba(20, 20, 25, .08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.heroBook img:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: 0 18px 36px rgba(20, 20, 25, .14);
}

.lead {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(27, 27, 29, .82);
    margin: 12px 0 14px;
}

.hero__copy > .lead {
    animation: fadeInDown .6s .2s ease both;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0 14px;
    animation: fadeInUp .6s .3s ease both;
}

.quick {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 10px;
}

.quick li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(27, 27, 29, .82);
    font-size: 14px;
    line-height: 1.45;
    animation: fadeInUp .5s ease both;
}

.quick li:nth-child(1) { animation-delay: .35s; }
.quick li:nth-child(2) { animation-delay: .42s; }
.quick li:nth-child(3) { animation-delay: .49s; }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(222, 108, 135, .9);
    margin-top: 5px;
    flex: 0 0 auto;
}

/* ——— Shared keyframes ——— */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ——— Sections ——— */
.section {
    padding: 26px 0;
}

.section h2 {
    font-size: 22px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.muted {
    color: var(--muted);
}

.tiny {
    font-size: 13px;
}

/* ——— Cards ——— */
.card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: 0 8px 18px rgba(20, 20, 25, .06);
    transition: box-shadow .25s ease, transform .25s ease;
}

.card:hover {
    box-shadow: 0 12px 28px rgba(20, 20, 25, .09);
}

.card--flat {
    box-shadow: none;
    background: rgba(255, 255, 255, .65);
}

.card--flat:hover {
    box-shadow: none;
}

/* ——— Team cards ——— */
.teamGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.teamCard {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease;
}

.teamCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(20, 20, 25, .08);
}

.teamCard__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(222,108,135,.18), rgba(222,108,135,.35));
    margin: 0 auto 8px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--pink);
}

.teamCard__name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.teamCard__role {
    font-size: 12px;
    color: var(--muted);
    margin: 3px 0 0;
}

/* ——— Stack ——— */
.stack {
    display: grid;
    gap: 12px;
}

/* ——— Link cards ——— */
.linkCard {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .85);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 18px rgba(20, 20, 25, .06);
    transition: transform .22s ease, box-shadow .22s ease;
}

.linkCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 20, 25, .10);
    text-decoration: none;
}

.linkCard:active {
    transform: translateY(0);
}

.linkCard__left h3 {
    margin: 0;
}

.linkCard__left p {
    margin: 6px 0 0;
}

.linkCard__arrow {
    font-size: 18px;
    color: rgba(27, 27, 29, .65);
    transition: transform .2s ease, color .2s ease;
}

.linkCard:hover .linkCard__arrow {
    transform: translateX(3px);
    color: var(--pink);
}

/* ——— Badge ——— */
.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(222, 108, 135, .25);
    background: rgba(222, 108, 135, .10);
    margin-bottom: 6px;
}

/* ——— Grid 2 cols ——— */
.grid2 {
    display: grid;
    gap: 12px;
}

.linkBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.linkBtn span[aria-hidden] {
    transition: transform .2s ease, color .2s ease;
}

.linkBtn:hover {
    text-decoration: none;
}

.linkBtn:hover span[aria-hidden] {
    transform: translateX(3px);
    color: var(--pink);
}

/* ——— CTA Band ——— */
.ctaBand {
    margin-top: 14px;
    border: 1px solid rgba(222, 108, 135, .20);
    background: rgba(222, 108, 135, .08);
    border-radius: var(--radius);
    padding: 14px;
    display: grid;
    gap: 12px;
}

.ctaBand .h3 {
    margin: 0;
}

.hr {
    height: 1px;
    background: rgba(20, 20, 25, .10);
    margin: 12px 0;
}

/* ——— Footer ——— */
.footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 247, 249, .7);
    padding: 18px 0 12px;
    margin-top: 20px;
}

.footer__inner {
    display: grid;
    gap: 16px;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer__links a {
    font-size: 14px;
    transition: color .2s ease;
}

.footer__links a:hover {
    color: var(--pink);
}

.linkLike {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-size: 14px;
    transition: color .2s ease;
    color: inherit;
}

.linkLike:hover {
    color: var(--pink);
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer__socialLink {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .7);
    display: grid;
    place-items: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.footer__socialLink:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 20, 25, .10);
    background: rgba(255, 255, 255, 1);
}

.footer__socialLink svg {
    width: 18px;
    height: 18px;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 6px;
}

.footer__legalBtn {
    font-size: 12px;
    color: var(--muted);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s ease;
}

.footer__legalBtn:hover {
    color: var(--pink);
}

.footer__bottom {
    padding-top: 10px;
}

/* ——— Mobile menu ——— */
.mobileMenu {
    border-top: 1px solid var(--line);
    background: rgba(255, 247, 249, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    animation: slideDown .25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobileMenu__inner {
    padding: 12px 0 14px;
    display: grid;
    gap: 10px;
}

.mobileLink {
    padding: 12px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .8);
    transition: background .2s ease, transform .15s ease;
}

.mobileLink:hover {
    background: rgba(255, 255, 255, 1);
    text-decoration: none;
    transform: translateX(2px);
}

/* ——— Modal (shared: ebook + legal) ——— */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 18px;
    animation: modalFadeIn .25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, .55);
}

.modal__panel {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 36px);
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 22px 60px rgba(10, 10, 12, .35);
    animation: modalSlideUp .3s ease;
}

.modal__panel--wide {
    width: min(100%, 640px);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(20, 20, 25, .08);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.iconX {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .7);
    cursor: pointer;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-size: 16px;
    transition: background .2s ease, transform .15s ease;
}

.iconX:hover {
    background: rgba(222, 108, 135, .08);
    transform: rotate(90deg);
}

/* ——— Legal modal body ——— */
.legalBody {
    padding: 14px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
}

.legalBody h3 {
    font-size: 15px;
    margin: 18px 0 6px;
}

.legalBody h3:first-child {
    margin-top: 0;
}

.legalBody p {
    margin: 0 0 10px;
    color: rgba(27, 27, 29, .82);
}

.legalBody ul {
    margin: 0 0 10px;
    padding-left: 20px;
}

.legalBody li {
    margin-bottom: 4px;
    color: rgba(27, 27, 29, .82);
}

/* ——— Form ——— */
.form {
    padding: 12px 14px 14px;
    display: grid;
    gap: 12px;
}

.field {
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.field span {
    font-weight: 500;
}

.field input,
.field select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(20, 20, 25, .14);
    background: #fff;
    outline: none;
    font: inherit;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus {
    border-color: rgba(222, 108, 135, .55);
    box-shadow: 0 0 0 4px rgba(222, 108, 135, .16);
}

.field input::placeholder {
    color: rgba(27, 27, 29, .35);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: rgba(27, 27, 29, .80);
}

.check input {
    margin-top: 3px;
    accent-color: var(--pink);
}

.sr-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ——— Floating CTA ——— */
.floatCta {
    position: fixed;
    left: 16px;
    right: 80px;
    bottom: 14px;
    z-index: 60;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(222, 108, 135, .35);
    background: var(--pink);
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 18px 40px rgba(10, 10, 12, .25);
    cursor: pointer;
    transition: transform .3s ease, opacity .3s ease, background .2s ease;
}

.floatCta:hover {
    background: var(--pink-hover);
}

.floatCta--visible {
    animation: floatSlideUp .35s ease forwards;
}

.floatCta--hiding {
    animation: floatSlideDown .25s ease forwards;
}

@keyframes floatSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlideDown {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(20px); }
}

/* ——— WhatsApp floating button ——— */
.waFloat {
    position: fixed;
    right: 16px;
    bottom: 14px;
    z-index: 61;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--green-wa);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
    animation: waPulseEntry .6s .8s ease both;
}

.waFloat:hover {
    background: var(--green-wa-hover);
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .4);
    text-decoration: none;
}

.waFloat:active {
    transform: scale(.96);
}

.waFloat svg {
    width: 28px;
    height: 28px;
}

@keyframes waPulseEntry {
    0%   { opacity: 0; transform: scale(0) rotate(-30deg); }
    60%  { opacity: 1; transform: scale(1.15) rotate(4deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Gentle pulse animation loop */
.waFloat--pulse {
    animation: waGentlePulse 2.5s ease infinite;
}

@keyframes waGentlePulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .35); }
    50%      { box-shadow: 0 8px 32px rgba(37, 211, 102, .55), 0 0 0 8px rgba(37, 211, 102, .12); }
}

/* WhatsApp speech bubble */
.waBubble {
    position: fixed;
    right: 80px;
    bottom: 28px;
    z-index: 61;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px 14px 4px 14px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(20, 20, 25, .12);
    max-width: 220px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(8px) scale(.9);
    transition: opacity .35s ease, transform .35s ease;
}

.waBubble--show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ——— Disclosures / Accordions ——— */
.disclosure {
    border-top: 1px solid var(--line);
}

.disclosure__summary {
    list-style: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.disclosure__summary::-webkit-details-marker {
    display: none;
}

.disclosure__inner {
    padding: 22px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.disclosure__inner h2 {
    transition: color .2s ease;
}

.disclosure__summary:hover .disclosure__inner h2 {
    color: var(--pink);
}

.disclosure__hint {
    font-size: 14px;
    color: rgba(27, 27, 29, .65);
    border: 1px solid rgba(20, 20, 25, .12);
    background: rgba(255, 255, 255, .65);
    padding: 6px 10px;
    border-radius: 999px;
    transition: transform .3s ease, background .2s ease, color .2s ease;
}

.disclosure__summary:hover .disclosure__hint {
    background: rgba(222, 108, 135, .08);
    color: var(--pink);
}

details[open] .disclosure__hint {
    transform: rotate(180deg);
}

.disclosure__content {
    padding-bottom: 26px;
    animation: accordionOpen .3s ease;
}

@keyframes accordionOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ——— Ebook grid ——— */
.ebookGrid {
    display: grid;
    gap: 12px;
}

.bullets {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: rgba(27, 27, 29, .82);
    line-height: 1.5;
}

.ctaRow {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.chips {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(222, 108, 135, .25);
    background: rgba(255, 255, 255, .65);
    font-size: 13px;
    transition: box-shadow .2s ease, background .2s ease, transform .15s ease;
}

.chip:hover {
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(20, 20, 25, .08);
    background: rgba(255, 255, 255, .9);
    transform: translateY(-1px);
}

.mockup {
    padding: 12px 14px 0;
}

.mockup--soft {
    padding: 0;
}

.mockup img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(20, 20, 25, .10);
    background: #fff;
}

/* ——— Form submit state ——— */
.btn--loading {
    pointer-events: none;
    opacity: .7;
}

.btn--loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ——— Entrance animations ——— */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

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

/* Stagger children inside visible sections */
.fade-up.is-visible .card,
.fade-up.is-visible .linkCard {
    animation: fadeInUp .4s ease both;
}

.fade-up.is-visible .card:nth-child(1) { animation-delay: .05s; }
.fade-up.is-visible .card:nth-child(2) { animation-delay: .12s; }
.fade-up.is-visible .linkCard:nth-child(1) { animation-delay: .05s; }
.fade-up.is-visible .linkCard:nth-child(2) { animation-delay: .1s; }
.fade-up.is-visible .linkCard:nth-child(3) { animation-delay: .15s; }

/* Team card stagger */
.fade-up.is-visible .teamCard { animation: fadeInUp .4s ease both; }
.fade-up.is-visible .teamCard:nth-child(1) { animation-delay: .05s; }
.fade-up.is-visible .teamCard:nth-child(2) { animation-delay: .1s; }
.fade-up.is-visible .teamCard:nth-child(3) { animation-delay: .15s; }
.fade-up.is-visible .teamCard:nth-child(4) { animation-delay: .2s; }
.fade-up.is-visible .teamCard:nth-child(5) { animation-delay: .25s; }
.fade-up.is-visible .teamCard:nth-child(6) { animation-delay: .3s; }

/* ——— Responsive ——— */
@media (max-width:919px) {
    .heroTitleRow {
        flex-direction: column;
    }

    .heroBook {
        width: 240px;
    }
}

@media (min-width:920px) {
    .iconbtn {
        display: none;
    }

    .nav__links {
        display: flex;
    }

    .desktopOnly {
        display: inline-flex;
    }

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

    .ctaBand {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .footer__inner {
        grid-template-columns: 1.2fr .8fr;
        align-items: start;
    }

    .ebookGrid {
        grid-template-columns: 1.1fr .9fr;
        align-items: start;
    }

    .ctaRow {
        flex-direction: row;
    }

    .heroBook {
        width: 270px;
    }

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

    .floatCta {
        right: 90px;
    }

    .waBubble {
        bottom: 32px;
        right: 84px;
    }
}
