/* ============================================================
   Front-page — extends style.css design tokens
   ============================================================ */

/* --------------------------------------------------------
   Shared
   -------------------------------------------------------- */
.esp-fp-section-head { margin-bottom: var(--space-7); }
.esp-fp-section-head h2 { margin-top: var(--space-2); }

/* --------------------------------------------------------
   Hero
   -------------------------------------------------------- */
.esp-fp-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.esp-fp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border-strong) 1.1px, transparent 1.1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 35%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 35%, transparent 100%);
}
.esp-fp-hero__inner {
    position: relative;
    padding-top: var(--space-9);
    padding-bottom: 0;
    text-align: center;
}
.esp-fp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.esp-fp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 7px 15px 7px 11px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}
.esp-fp-hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cool);
    flex-shrink: 0;
}
.esp-fp-hero__content h1 {
    max-width: 900px;
    margin-top: 26px;
    text-wrap: balance;
}
.esp-fp-hero__content > p {
    font-size: 1.1875rem;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 22px;
}
.esp-fp-hero__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.esp-fp-hero__ctas .btn--primary {
    box-shadow: 0 6px 16px rgba(43, 48, 114, 0.22);
}

/* Product mockup */
.esp-fp-hero__mockup {
    position: relative;
    max-width: 940px;
    margin: 60px auto -90px;
    border-radius: 14px 14px 0 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-bottom: none;
    box-shadow: 0 -2px 0 var(--surface), 0 30px 60px -24px rgba(15, 17, 21, 0.28);
    overflow: hidden;
    text-align: left;
}
.esp-browser__chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    background: #fbfbfd;
}
.esp-browser__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
}
.esp-browser__dot--r { background: #f0606b; }
.esp-browser__dot--y { background: #f5bf4f; }
.esp-browser__dot--g { background: #5fc97e; }
.esp-browser__url {
    margin-left: 14px;
    height: 22px;
    flex: 1;
    max-width: 320px;
    border-radius: 6px;
    background: var(--surface-alt);
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11.5px;
    color: #9aa0ad;
    font-family: var(--font-mono);
}
.esp-browser__body {
    display: grid;
    grid-template-columns: 180px 1fr;
}
.esp-browser__sidebar {
    background: var(--surface-alt);
    border-right: 1px solid var(--border);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.esp-browser__s-item {
    height: 9px;
    border-radius: 4px;
    background: var(--border);
    display: block;
}
.esp-browser__s-item:nth-child(1) { width: 80%; }
.esp-browser__s-item:nth-child(2) { width: 60%; }
.esp-browser__s-item:nth-child(3) { width: 70%; }
.esp-browser__s-item:nth-child(4) { width: 55%; }
.esp-browser__s-item:nth-child(5) { width: 65%; }
.esp-browser__s-item--active { background: var(--primary); }
.esp-browser__s-item--push { margin-top: auto; width: 50%; }
.esp-browser__pane { padding: 24px; }
.esp-browser__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.esp-browser__tb-title { display: block; height: 13px; width: 180px; border-radius: 5px; background: var(--border); }
.esp-browser__tb-btn  { display: block; height: 26px; width: 96px; border-radius: 7px; background: var(--primary); }
.esp-browser__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
.esp-browser__stat {
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.esp-browser__stat > span:first-child { display: block; height: 8px; width: 60%; border-radius: 4px; background: var(--border); }
.esp-browser__stat-val { display: block; height: 16px; width: 45%; border-radius: 4px; }
.esp-browser__stat-val--amber  { background: var(--warm); }
.esp-browser__stat-val--teal   { background: var(--cool); }
.esp-browser__stat-val--indigo { background: var(--primary); }
.esp-browser__table { border: 1px solid var(--border); border-radius: 9px; overflow: hidden; }
.esp-browser__tr {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 16px;
    border-bottom: 1px solid #f4f4f8;
}
.esp-browser__tr--last { border-bottom: none; }
.esp-browser__tr--head { background: #fafafc; border-bottom-color: var(--border); }
.esp-browser__tr > span:first-child  { flex: 2; height: 8px; border-radius: 4px; background: var(--border); display: block; }
.esp-browser__tr > span:nth-child(2) { flex: 1.2; height: 8px; border-radius: 4px; background: var(--border); display: block; }
.esp-browser__tr--head > span { background: #cfcfdb; }
.esp-browser__chip { flex-shrink: 0; height: 18px; width: 64px; border-radius: var(--radius-pill); display: block; }
.esp-browser__chip--teal   { background: var(--cool-soft); }
.esp-browser__chip--amber  { background: var(--warm-soft); }
.esp-browser__chip--indigo { background: var(--primary-soft); }

/* --------------------------------------------------------
   Compatibility strip
   -------------------------------------------------------- */
.esp-fp-compat {
    padding: 110px 0 36px;
    border-bottom: 1px solid var(--border);
}
.esp-fp-compat__label {
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9aa0ad;
    margin: 0 0 22px;
}
.esp-fp-compat__pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.esp-fp-compat__pill {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 9px 18px;
}

/* --------------------------------------------------------
   Plugin cards
   -------------------------------------------------------- */
.esp-fp-cards { gap: var(--space-5); }

.esp-fp-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--duration-base) var(--ease),
                border-color var(--duration-base) var(--ease);
}
.esp-fp-card:hover {
    box-shadow: 0 14px 32px rgba(15, 17, 21, 0.10);
    border-color: var(--border-strong);
}
.esp-fp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    border-radius: 0 0 3px 3px;
}
.esp-fp-card--amber::before  { background: var(--warm); }
.esp-fp-card--teal::before   { background: var(--cool); }
.esp-fp-card--indigo::before { background: var(--primary); }

.esp-fp-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.esp-fp-card__icon-wrap--amber  { background: var(--warm-soft); }
.esp-fp-card__icon-wrap--teal   { background: var(--cool-soft); }
.esp-fp-card__icon-wrap--indigo { background: var(--primary-soft); }

/* Shapes — use currentColor so parent sets the tint */
.esp-fp-card__icon-shape { display: block; width: 18px; height: 18px; border: 3px solid currentColor; }
.esp-fp-card__icon-shape--square  { border-radius: 5px; }
.esp-fp-card__icon-shape--circle  { border-radius: 50%; }
.esp-fp-card__icon-shape--diamond { border-radius: 4px; transform: rotate(45deg); }

.esp-fp-card__icon-wrap--amber  .esp-fp-card__icon-shape { color: var(--warm); }
.esp-fp-card__icon-wrap--teal   .esp-fp-card__icon-shape { color: var(--cool); }
.esp-fp-card__icon-wrap--indigo .esp-fp-card__icon-shape { color: var(--primary); }

.esp-fp-card h3 { font-size: 1.3125rem; letter-spacing: -0.01em; margin: 0; }
.esp-fp-card > p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin-top: 10px; flex: 1; }
.esp-fp-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.esp-fp-card__link {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--duration-fast) var(--ease);
}
.esp-fp-card__link:hover { color: var(--primary-hover); }

/* --------------------------------------------------------
   Deep dives
   -------------------------------------------------------- */
.esp-fp-deep__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.esp-fp-deep--rev .esp-fp-deep__visual { order: -1; }

.esp-fp-deep__tag { display: inline-flex; margin-bottom: 20px; }

.esp-fp-deep__text h2 {
    margin-top: 0;
    font-size: clamp(1.625rem, 1.4rem + 1vw, 2.125rem);
    line-height: 1.12;
    text-wrap: balance;
}
.esp-fp-deep__text > p {
    font-size: 1.03125rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 16px;
}
.esp-fp-deep__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 26px;
}
.esp-fp-deep__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #3a414d;
}
.esp-fp-deep__bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-top: 7px;
    display: block;
}
.esp-fp-deep__bullets--amber  li::before { background: var(--warm);    box-shadow: 0 0 0 7px var(--warm-soft); }
.esp-fp-deep__bullets--teal   li::before { background: var(--cool);    box-shadow: 0 0 0 7px var(--cool-soft); }
.esp-fp-deep__bullets--indigo li::before { background: var(--primary); box-shadow: 0 0 0 7px var(--primary-soft); }

.esp-fp-deep__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.esp-fp-deep__cta:hover { gap: 12px; color: var(--primary-hover); }

/* --------------------------------------------------------
   Skeleton / mockup primitives (shared)
   -------------------------------------------------------- */
.esp-mock__bar {
    display: block;
    height: 9px;
    border-radius: 4px;
    background: var(--border);
}
.esp-mock__bar--sm      { height: 7px; background: #e6e6ee; }
.esp-mock__bar--teal    { background: var(--cool); }
.esp-mock__bar--teal-lt { background: var(--cool-soft); }

/* PPWR declaration card */
.esp-mock {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 40px -20px rgba(15, 17, 21, 0.22);
    overflow: hidden;
}
.esp-mock__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: #fbfbfd;
}
.esp-mock__head-bar { display: block; height: 11px; width: 140px; border-radius: 5px; background: var(--border); }
.esp-mock__body { padding: 22px 20px; display: flex; flex-direction: column; gap: 16px; }
.esp-mock__row { display: flex; align-items: center; justify-content: space-between; }
.esp-mock__chip-sm { display: block; height: 18px; width: 70px; border-radius: 6px; }
.esp-mock__chip-sm--amber { background: var(--warm-soft); }
.esp-mock__divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.esp-mock__minicards { display: flex; gap: 10px; }
.esp-mock__minicard {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 13px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.esp-mock__accent { display: block; height: 13px; width: 50%; border-radius: 4px; }
.esp-mock__accent--amber  { background: var(--warm); }
.esp-mock__accent--indigo { background: var(--primary); }
.esp-mock__btn-bar { display: block; height: 36px; border-radius: 8px; background: var(--primary); width: 100%; }

/* HPOS swap */
.esp-swap__panels { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.esp-swap__card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.esp-swap__card--from { opacity: 0.65; }
.esp-swap__card--to   { border: 2px solid var(--cool); box-shadow: 0 12px 28px -14px rgba(20, 184, 166, 0.5); }

.esp-swap__card-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.esp-swap__card-logo--gray { background: #ededf2; }
.esp-swap__card-logo--teal { background: var(--cool-soft); }
.esp-swap__card-logo--teal::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2.5px solid var(--cool);
}
.esp-swap__lines { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.esp-swap__badge {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.esp-swap__badge--gray { color: #9aa0ad; background: var(--surface-alt); }
.esp-swap__badge--teal { color: #0f766e; background: var(--cool-soft); }

.esp-swap__arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-ink);
    font-size: 14px;
    text-decoration: none;
}
.esp-swap__arrow--teal   { background: var(--cool); }
.esp-swap__arrow--indigo { background: var(--primary); }

.esp-swap__status {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.esp-swap__status-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cool-soft);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.esp-swap__status-icon::after {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 3px;
    background: var(--cool);
}
.esp-swap__status-info { flex: 1; display: flex; flex-direction: column; }
.esp-swap__status-btn { display: block; height: 28px; width: 80px; border-radius: 7px; background: var(--cool); flex-shrink: 0; }

/* CSV → Drafts */
.esp-csv { display: flex; align-items: center; gap: 14px; }
.esp-csv__file {
    flex: 1;
    background: #fbfbfd;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
}
.esp-csv__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #9aa0ad;
    font-family: var(--font-mono);
    margin-bottom: 12px;
}
.esp-csv__rows { display: flex; flex-direction: column; gap: 8px; }
.esp-csv__rows span { display: block; height: 9px; border-radius: 3px; background: #e0e0ea; }
.esp-csv__drafts { flex: 1.1; display: flex; flex-direction: column; gap: 10px; }
.esp-csv__draft {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 4px 12px -8px rgba(15, 17, 21, 0.2);
}
.esp-csv__draft > div { flex: 1; display: flex; flex-direction: column; }
.esp-csv__thumb { width: 34px; height: 34px; border-radius: 7px; background: var(--primary-soft); flex-shrink: 0; display: block; }

/* --------------------------------------------------------
   Why EssentialsWP
   -------------------------------------------------------- */
.esp-fp-why__box {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 52px 40px;
}
.esp-fp-why__heading {
    font-size: 1.875rem;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 44px;
}
.esp-fp-why__grid { gap: 20px; }
.esp-fp-why__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.esp-fp-why__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.esp-fp-why__icon--indigo .esp-fp-card__icon-shape { color: var(--primary); }
.esp-fp-why__icon--teal   .esp-fp-card__icon-shape { color: var(--cool); }
.esp-fp-why__icon--amber  .esp-fp-card__icon-shape { color: var(--warm); }
.esp-fp-why__item h3 { font-size: 1.125rem; margin: 0; }
.esp-fp-why__item p  { font-size: 14.5px; line-height: 1.5; color: var(--text-muted); margin: 7px 0 0; max-width: 240px; }

/* --------------------------------------------------------
   How it works
   -------------------------------------------------------- */
.esp-fp-how {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.esp-fp-how__steps { gap: 28px; }
.esp-fp-how__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-ink);
    background: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 10px;
}
.esp-fp-how__step h3 { margin: 18px 0 0; font-size: 1.1875rem; }
.esp-fp-how__step > p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin-top: 9px; }

/* --------------------------------------------------------
   Testimonial
   -------------------------------------------------------- */
.esp-fp-testimonial__figure { margin: 0; text-align: center; }
.esp-fp-testimonial__mark {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1;
    color: var(--border);
    display: block;
}
.esp-fp-testimonial__quote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.25rem, 1rem + 1.2vw, 1.6875rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 4px 0 0;
    text-wrap: balance;
}
.esp-fp-testimonial__attr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 30px;
    font-style: normal;
}
.esp-fp-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}
.esp-fp-testimonial__attr > span:last-child { text-align: left; display: flex; flex-direction: column; gap: 2px; }
.esp-fp-testimonial__attr strong { display: block; font-weight: 600; font-size: 15px; color: var(--text); }
.esp-fp-testimonial__attr > span:last-child > span { font-size: 14px; color: var(--text-muted); }

/* --------------------------------------------------------
   FAQ
   -------------------------------------------------------- */
.esp-fp-faq {
    border-top: 1px solid var(--border);
}
.esp-fp-faq__heading {
    font-size: clamp(1.625rem, 1.3rem + 1.5vw, 2.125rem);
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 44px;
}
.esp-fp-faq__list { display: flex; flex-direction: column; gap: 12px; }
.esp-fp-faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    overflow: hidden;
}
.esp-fp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.03125rem;
    color: var(--text);
    transition: background var(--duration-fast) var(--ease);
}
.esp-fp-faq__q:hover { background: var(--surface-alt); }
.esp-fp-faq__sign {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.22s ease;
}
.esp-fp-faq__q[aria-expanded="true"] .esp-fp-faq__sign { transform: rotate(45deg); }

.esp-fp-faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.26s ease;
}
.esp-fp-faq__a.is-open { grid-template-rows: 1fr; }
.esp-fp-faq__a-inner {
    overflow: hidden;
    min-height: 0;
}
.esp-fp-faq__a-inner > p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    padding: 12px 22px 20px;
}

/* --------------------------------------------------------
   CTA banner
   -------------------------------------------------------- */
.esp-fp-cta__box {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: 18px;
    padding: 64px 48px;
    text-align: center;
}
.esp-fp-cta__texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1.1px, transparent 1.1px);
    background-size: 24px 24px;
}
.esp-fp-cta__inner { position: relative; }
.esp-fp-cta__box h2 {
    color: var(--primary-ink);
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
    text-wrap: balance;
    margin: 0;
}
.esp-fp-cta__box > .esp-fp-cta__inner > p {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin: 16px auto 0;
}
.esp-fp-cta__btn {
    display: inline-flex;
    background: var(--surface);
    color: var(--primary);
    margin-top: 30px;
    transition: background var(--duration-fast) var(--ease);
}
.esp-fp-cta__btn:hover { background: var(--surface-alt); }

/* --------------------------------------------------------
   Footer spacing override
   -------------------------------------------------------- */
.page--front-page ~ .site-footer { margin-top: 0; }

/* --------------------------------------------------------
   Responsive
   -------------------------------------------------------- */
@media (max-width: 960px) {
    .esp-fp-hero__mockup { display: none; }
    .esp-fp-hero__inner  { padding-bottom: var(--space-8); }
    .esp-fp-compat       { padding-top: var(--space-7); }
}

@media (max-width: 860px) {
    .esp-fp-deep__split {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .esp-fp-deep--rev .esp-fp-deep__visual { order: 0; }

    .esp-fp-why__box { padding: var(--space-6) var(--space-5); }

    .esp-swap__panels { flex-wrap: wrap; }
    .esp-swap__arrow  { align-self: center; }

    .esp-fp-cta__box { padding: var(--space-7) var(--space-5); }
}

@media (max-width: 600px) {
    .esp-fp-hero__ctas { flex-direction: column; align-items: stretch; }
    .esp-fp-hero__ctas .btn { justify-content: center; }

    .esp-csv { flex-direction: column; }

    .esp-fp-cta__box { border-radius: var(--radius-lg); }
}
