/*
 * GetPayin landing page — "panel board" direction.
 *
 * Self-contained: the landing layout loads this instead of Bootstrap/AOS/boxicons, so nothing
 * here may lean on the admin theme's classes. Everything is namespaced `gp-` to keep it from
 * colliding with the bikin template stylesheet still used by the support and customers pages.
 */

:root {
    --gp-ground: #f7f4ef;
    --gp-panel: #ffffff;
    --gp-sand: #ede7dc;
    --gp-ink: #12332f;
    --gp-body: #4c635f;
    --gp-faint: #7c8f8b;
    --gp-line: #e7e2d8;
    --gp-teal: #009b95;
    --gp-teal-soft: #e4f2f1;
    --gp-teal-bright: #5fe0d4;
    --gp-placeholder: #a7ada4;
    --gp-radius: 24px;
    --gp-radius-sm: 14px;
    --gp-gap: 16px;
    --gp-pad: clamp(18px, 3vw, 56px);
}

.gp-page {
    margin: 0;
    background: var(--gp-ground);
    color: var(--gp-ink);
    font-family: Figtree, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

.gp-page a {
    color: var(--gp-teal);
    text-decoration: none;
}

.gp-page a:hover,
.gp-page a:focus {
    color: var(--gp-ink);
}

.gp-page h1,
.gp-page h2,
.gp-page h3,
.gp-page h4 {
    font-family: "Bricolage Grotesque", Figtree, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
}

.gp-display {
    font-family: "Bricolage Grotesque", Figtree, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/*
 * Full-bleed board: the fluid gutter sets the margin, not a narrow centred column. The cap is
 * only there so an ultrawide display cannot stretch a single card past a readable measure.
 */
.gp-shell {
    max-width: 2200px;
    margin: 0 auto;
    padding: 0 var(--gp-pad);
}

.gp-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gp-faint);
}

/* Keeps a heading reachable from the fixed-free header without a scroll-margin surprise. */
.gp-page [id] {
    scroll-margin-top: 24px;
}

.gp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.gp-page :focus-visible {
    outline: 2px solid var(--gp-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── header ─────────────────────────────────────────────────────────── */

.gp-header {
    padding: 22px 0;
}

.gp-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gp-header__logo img {
    height: 32px;
    width: auto;
}

.gp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 500;
}

.gp-nav a {
    color: var(--gp-body);
}

.gp-nav a:hover,
.gp-nav a:focus {
    color: var(--gp-ink);
}

.gp-page .gp-nav__login {
    color: var(--gp-ink);
    font-weight: 600;
}

.gp-nav__icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gp-nav__icons img {
    height: 22px;
    width: auto;
}

.gp-btn {
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 28px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.gp-btn--sm {
    font-size: 15px;
    padding: 11px 20px;
}

.gp-page .gp-btn--dark {
    background: var(--gp-ink);
    color: #fff;
}

.gp-page .gp-btn--dark:hover,
.gp-page .gp-btn--dark:focus {
    background: var(--gp-teal);
    color: #fff;
}

.gp-page .gp-btn--teal {
    background: var(--gp-teal);
    color: #fff;
}

.gp-page .gp-btn--teal:hover,
.gp-page .gp-btn--teal:focus {
    background: var(--gp-ink);
    color: #fff;
}

.gp-page .gp-btn--ghost {
    border-color: #d8d2c6;
    color: var(--gp-ink);
}

.gp-page .gp-btn--ghost:hover,
.gp-page .gp-btn--ghost:focus {
    border-color: var(--gp-ink);
    color: var(--gp-ink);
}

.gp-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--gp-line);
    border-radius: 999px;
    padding: 0;
    color: var(--gp-ink);
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.gp-nav-toggle:hover {
    border-color: var(--gp-ink);
}

.gp-nav-toggle[aria-expanded="true"] {
    background: var(--gp-ink);
    border-color: var(--gp-ink);
}

/* Three bars that fold into a cross: the outer two meet in the middle and rotate. */
.gp-nav-toggle__bars {
    position: relative;
    display: block;
    width: 18px;
    height: 12px;
}

.gp-nav-toggle__bars i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.25, 1), opacity 0.16s ease;
}

.gp-nav-toggle__bars i:nth-child(1) { top: 0; }
.gp-nav-toggle__bars i:nth-child(2) { top: 5px; }
.gp-nav-toggle__bars i:nth-child(3) { top: 10px; }

.gp-nav-toggle[aria-expanded="true"] {
    color: #fff;
}

.gp-nav-toggle[aria-expanded="true"] .gp-nav-toggle__bars i:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.gp-nav-toggle[aria-expanded="true"] .gp-nav-toggle__bars i:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.gp-nav-toggle[aria-expanded="true"] .gp-nav-toggle__bars i:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.gp-nav-scrim {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(18, 51, 47, 0.28);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.gp-nav-scrim.is-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s;
}

@media (prefers-reduced-motion: reduce) {
    .gp-nav,
    .gp-nav > *,
    .gp-nav-scrim,
    .gp-nav-toggle__bars i {
        transition-duration: 0.01ms;
        transition-delay: 0s;
    }
}

/* ── bento hero ─────────────────────────────────────────────────────── */

/* Two equal halves: the hero and the payment-link mock are a pair, so they get a pair's grid. */
.gp-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: var(--gp-gap);
    padding-top: 20px;
    padding-bottom: var(--gp-pad);
}

.gp-card {
    background: var(--gp-panel);
    border-radius: var(--gp-radius);
    padding: clamp(22px, 1.7vw, 32px);
}

.gp-card--sand {
    background: var(--gp-sand);
}

/*
 * The hero card stretches to the height of the aside column beside it, which is the bento
 * look. What it must not do is hand that slack to the content: `space-between` spread the
 * three numbered steps down the whole card. Content stacks from the top and the actions are
 * pushed to the bottom instead, so any leftover height becomes one clean gap above the CTAs.
 */
.gp-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: clamp(26px, 2.4vw, 44px);
}

/*
 * Plainly stacked. The two-ended split belongs to the bands underneath; giving the hero one
 * too made the card read as two bands of its own, on top of the sequence's rules.
 */
.gp-hero__title {
    margin: 0;
    font-size: clamp(30px, 2.6vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: pretty;
}

.gp-hero__lead {
    margin: 18px 0 0;
    max-width: 30em;
    font-size: 17px;
    line-height: 1.6;
    color: var(--gp-body);
}

/*
 * Back inside the hero card, under the lead. They fit there now that each step is one short
 * line of its own rather than the old features paragraphs. `flex: 0 0 auto` keeps them at
 * their natural height when the card stretches — the slack belongs above the CTAs, not here.
 */
.gp-steps {
    border-top: 1px solid var(--gp-line);
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: gp-step;
}

.gp-steps li {
    display: flex;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--gp-line);
    font-size: 15px;
    line-height: 1.5;
}

.gp-steps li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.gp-steps li::before {
    counter-increment: gp-step;
    content: "0" counter(gp-step);
    font-family: "Bricolage Grotesque", Figtree, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gp-teal);
    flex: 0 0 22px;
}

.gp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}

/* ── payment link mock ──────────────────────────────────────────────── */

.gp-link-card {
    background: var(--gp-panel);
    border-radius: var(--gp-radius);
    overflow: hidden;
}

.gp-link-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 28px;
    border-bottom: 1px solid var(--gp-line);
}

.gp-link-card__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gp-faint);
}

.gp-pill {
    font-size: 12px;
    font-weight: 600;
    color: var(--gp-teal);
    background: var(--gp-teal-soft);
    padding: 5px 11px;
    border-radius: 999px;
}

.gp-link-card__body {
    padding: 26px 28px 0;
}

.gp-link-card__meta {
    font-size: 13px;
    color: var(--gp-faint);
}

.gp-link-card__amount {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 8px;
}

.gp-link-card__amount b {
    font-family: "Bricolage Grotesque", Figtree, sans-serif;
    font-size: clamp(32px, 2.6vw, 46px);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.gp-link-card__amount span {
    font-size: 17px;
    font-weight: 600;
    color: var(--gp-teal);
}

/*
 * The wallet buttons, in their own brand's black. The marks are lockups only — no background
 * of their own — so the button below is what carries the shape, at the same 46px as a field.
 */
.gp-wallets {
    padding: 20px 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gp-wallet {
    height: 46px;
    border-radius: 12px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-wallet img {
    height: 21px;
    width: auto;
}

.gp-or {
    padding: 16px 28px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gp-faint);
}

.gp-or::before,
.gp-or::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--gp-line);
}

.gp-fields {
    padding: 16px 28px 0;
    display: grid;
    gap: 10px;
}

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

.gp-field {
    height: 46px;
    border: 1px solid var(--gp-line);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    color: var(--gp-placeholder);
}

.gp-link-card__foot {
    padding: 20px 28px 26px;
}

.gp-fake-btn {
    background: var(--gp-teal);
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border-radius: 12px;
}

.gp-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gp-faint);
    text-align: center;
}

/*
 * Paired with the wallets band beside it rather than stacked as a second full-width row, so
 * the board is two panels over two panels instead of a hero and a run of stripes.
 */
.gp-payout__title {
    font-size: clamp(24px, 2.1vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.gp-payout p {
    margin: 14px 0 0;
    max-width: 40em;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gp-body);
}

/* Sized to the payout statement beside it, so the pair reads as one row of two panels. */
.gp-methods__label {
    font-family: "Bricolage Grotesque", Figtree, sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gp-ink);
    margin: 0;
}

.gp-methods__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px clamp(20px, 2.2vw, 36px);
    margin-top: 22px;
}

.gp-methods__list img {
    height: 24px;
    width: auto;
    mix-blend-mode: multiply;
}

/* ── value row ──────────────────────────────────────────────────────── */

.gp-values {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gp-gap);
}

.gp-values h3 {
    margin-bottom: 10px;
    font-size: 21px;
    letter-spacing: -0.015em;
}

.gp-values p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gp-body);
}

/* ── pricing ────────────────────────────────────────────────────────── */

.gp-section {
    padding-bottom: var(--gp-pad);
}

/* A standalone page has no hero above it, so it opens on the same gutter the bento does. */
.gp-section--top {
    padding-top: 20px;
}

.gp-pricing {
    background: var(--gp-ink);
    color: #fff;
    border-radius: 28px;
    padding: clamp(26px, 2.8vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.gp-pricing__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gp-teal-bright);
}

.gp-pricing__title {
    margin-top: 18px;
    font-size: clamp(28px, 2.5vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.gp-pricing__lead {
    margin: 16px 0 0;
    max-width: 26em;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.66);
}

.gp-plan {
    background: #fff;
    color: var(--gp-ink);
    border-radius: 22px;
    padding: clamp(22px, 1.9vw, 34px);
}

.gp-plan__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gp-plan__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gp-teal);
}

.gp-cycle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gp-faint);
    background: none;
    border: 1px solid var(--gp-line);
    border-radius: 999px;
    padding: 6px 12px;
    cursor: pointer;
    font-family: inherit;
}

.gp-cycle:hover {
    border-color: var(--gp-teal);
    color: var(--gp-teal);
}

.gp-cycle__swap {
    color: var(--gp-teal);
}

.gp-plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 14px;
}

.gp-plan__price b {
    font-family: "Bricolage Grotesque", Figtree, sans-serif;
    font-size: clamp(38px, 3vw, 54px);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.gp-plan__price span {
    font-size: 16px;
    font-weight: 600;
    color: var(--gp-body);
}

.gp-plan__note {
    font-size: 14px;
    color: var(--gp-faint);
    margin-top: 4px;
}

.gp-plan__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 24px 0 26px;
    padding-top: 20px;
    border-top: 1px solid var(--gp-line);
    font-size: 15px;
    list-style: none;
}

.gp-page .gp-plan__cta {
    display: block;
    text-align: center;
    border-radius: 12px;
}

/* ── logo panels ────────────────────────────────────────────────────── */

.gp-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gp-gap);
    align-items: start;
}

.gp-panel-title {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-top: 8px;
}

.gp-panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.gp-panel-head a {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.gp-logo-grid {
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

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

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

.gp-logo-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.gp-logo-grid > * {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-logo-grid img {
    max-height: 42px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* ── customer wall (the dedicated /customers page) ──────────────────── */

.gp-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gp-page-head__title {
    font-size: clamp(26px, 2.2vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-top: 8px;
}

/*
 * One tile per logo, sized by the grid rather than a column count, so the wall reflows from
 * six across on a board down to two on a phone without a breakpoint per step.
 */
.gp-logo-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}

.gp-logo-wall__tile {
    background: var(--gp-panel);
    border-radius: var(--gp-radius-sm);
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gp-logo-wall__tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -18px rgba(18, 51, 47, 0.18);
}

.gp-logo-wall__tile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.gp-logo-wall img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* ── faq + contact ──────────────────────────────────────────────────── */

.gp-faq {
    padding: clamp(22px, 1.9vw, 34px);
}

.gp-faq__title {
    font-size: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.gp-faq__list {
    border-top: 1px solid var(--gp-line);
}

.gp-faq__item {
    border-bottom: 1px solid var(--gp-line);
}

.gp-faq__item:last-child {
    border-bottom: 0;
}

.gp-faq__q {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: 0;
    text-align: left;
    font: 600 17px/1.35 Figtree, sans-serif;
    color: var(--gp-ink);
    cursor: pointer;
}

.gp-faq__sign {
    font-size: 18px;
    font-weight: 600;
    color: var(--gp-teal);
    flex: 0 0 auto;
}

.gp-faq__a {
    margin: 0;
    padding: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gp-body);
}

.gp-faq__a[hidden] {
    display: none;
}

.gp-contact {
    background: var(--gp-teal);
    color: #fff;
    border-radius: var(--gp-radius);
    padding: clamp(22px, 1.9vw, 34px);
}

.gp-contact__title {
    font-size: 26px;
    letter-spacing: -0.02em;
}

.gp-contact__lead {
    margin: 12px 0 26px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.gp-contact__links {
    display: grid;
    gap: 12px;
}

.gp-page .gp-contact__link {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.gp-page .gp-contact__link:hover,
.gp-page .gp-contact__link:focus {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.gp-page .gp-contact__link--solid {
    background: #fff;
    color: var(--gp-ink);
}

.gp-page .gp-contact__link--solid:hover,
.gp-page .gp-contact__link--solid:focus {
    background: var(--gp-ink);
    color: #fff;
}

.gp-contact__link-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.gp-contact__link--solid .gp-contact__link-label {
    color: inherit;
}

.gp-contact__link-value {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

/* The inquiry form the old page carried, kept working inside the new contact panel. */
.gp-inquiry {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    display: grid;
    gap: 10px;
}

.gp-inquiry__legend {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.gp-inquiry input,
.gp-inquiry textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: 14px 18px;
    font: 400 16px/1.4 Figtree, sans-serif;
    color: #fff;
}

.gp-inquiry input::placeholder,
.gp-inquiry textarea::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.gp-inquiry input:focus,
.gp-inquiry textarea:focus {
    outline: 2px solid #fff;
    outline-offset: 1px;
}

.gp-inquiry textarea {
    resize: vertical;
    min-height: 96px;
}

.gp-inquiry__submit {
    background: #fff;
    color: var(--gp-ink);
    border: 0;
    border-radius: 14px;
    padding: 15px;
    font: 600 16px/1 Figtree, sans-serif;
    cursor: pointer;
}

.gp-inquiry__submit:hover {
    background: var(--gp-ink);
    color: #fff;
}

.gp-alert {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gp-ink);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ── footer ─────────────────────────────────────────────────────────── */

.gp-footer {
    border-top: 1px solid var(--gp-line);
    padding: 28px 0;
    font-size: 14px;
    color: var(--gp-faint);
}

.gp-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.gp-footer__social {
    display: flex;
    gap: 24px;
}

.gp-footer__social a {
    color: var(--gp-body);
}

/* ── responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .gp-pricing {
        gap: 32px;
    }

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

@media (max-width: 900px) {
    /*
     * The menu stays in flow and hides with visibility rather than `display: none`, because a
     * display swap cannot be transitioned. Hiding is delayed by the length of the fade so the
     * panel is still painted while it animates out.
     */
    .gp-nav {
        position: absolute;
        left: var(--gp-pad);
        right: var(--gp-pad);
        top: 76px;
        z-index: 30;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #fff;
        border: 1px solid var(--gp-line);
        border-radius: 22px;
        padding: 14px;
        box-shadow: 0 24px 60px rgba(18, 51, 47, 0.16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        transform-origin: top right;
        transition:
            opacity 0.2s ease,
            transform 0.32s cubic-bezier(0.2, 0.9, 0.25, 1),
            visibility 0s linear 0.32s;
    }

    .gp-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
        transition-delay: 0s, 0s, 0s;
    }

    /* Each row arrives just after the panel, in order, so the menu unfolds instead of blinking. */
    .gp-nav > * {
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .gp-nav.is-open > * {
        opacity: 1;
        transform: none;
    }

    .gp-nav.is-open > *:nth-child(1) { transition-delay: 0.05s; }
    .gp-nav.is-open > *:nth-child(2) { transition-delay: 0.09s; }
    .gp-nav.is-open > *:nth-child(3) { transition-delay: 0.13s; }
    .gp-nav.is-open > *:nth-child(4) { transition-delay: 0.17s; }
    .gp-nav.is-open > *:nth-child(5) { transition-delay: 0.21s; }
    .gp-nav.is-open > *:nth-child(6) { transition-delay: 0.25s; }
    .gp-nav.is-open > *:nth-child(7) { transition-delay: 0.29s; }

    /* The CTA keeps its pill in the stacked menu; only the plain links become rows. */
    .gp-nav > a:not(.gp-btn) {
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 16px;
        transition: background-color 0.15s ease, color 0.15s ease, opacity 0.24s ease, transform 0.24s ease;
    }

    .gp-nav > a:not(.gp-btn):hover,
    .gp-nav > a:not(.gp-btn):focus {
        background: var(--gp-ground);
    }

    .gp-nav > .gp-btn {
        margin-top: 8px;
    }

    .gp-nav__icons {
        padding: 8px 14px 2px;
        gap: 18px;
        border-top: 1px solid var(--gp-line);
        margin-top: 6px;
    }

    .gp-nav-toggle {
        display: inline-flex;
    }

    .gp-nav-scrim {
        display: block;
    }

    .gp-header {
        position: relative;
    }

    body.gp-nav-locked {
        overflow: hidden;
    }

    .gp-bento,
    .gp-duo,
    .gp-pricing {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    :root {
        --gp-radius: 20px;
    }

    .gp-hero__lead {
        font-size: 16px;
    }

    .gp-hero__actions .gp-btn {
        flex: 1 1 100%;
    }

    .gp-values,
    .gp-logo-grid--3,
    .gp-logo-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gp-plan__features {
        grid-template-columns: 1fr;
    }

    .gp-logo-wall {
        grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
    }

    .gp-logo-wall__tile {
        height: 92px;
        padding: 12px;
    }

    .gp-footer__bar {
        justify-content: center;
        text-align: center;
    }
}
