:root {
    --pebble-blue: #0052ff;
    --pebble-ink: #0a0b0d;
    --pebble-muted: #5b616e;
    --pebble-line: #eaecf0;
    --pebble-soft: #f6f8fb;
}

body {
    font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--pebble-ink);
    background: #fff;
}

.pebble-shell-nav {
    position: sticky;
    top: 14px;
    z-index: 1000;
    margin: 14px auto 0;
    padding: 0 clamp(16px, 4vw, 32px);
    font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pebble-shell-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1450px, 100%);
    min-height: 94px;
    margin: 0 auto;
    padding: 18px 26px;
    border: 1px solid rgba(10, 11, 13, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(10, 11, 13, .08);
    backdrop-filter: blur(22px) saturate(1.7);
    -webkit-backdrop-filter: blur(22px) saturate(1.7);
}

.pebble-shell-nav__brand,
.pebble-shell-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--pebble-ink);
    text-decoration: none;
}

.pebble-shell-nav__mark,
.pebble-shell-footer__mark {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--pebble-blue);
}

.pebble-shell-nav__wordmark,
.pebble-shell-footer__logo span:last-child {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pebble-shell-nav__links,
.pebble-shell-nav__actions {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 14px);
}

.pebble-shell-nav__links a,
.pebble-shell-nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #3a414d;
    font: 700 15px/1 Manrope, sans-serif;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.pebble-shell-nav__links a:hover,
.pebble-shell-nav__trigger:hover {
    color: var(--pebble-ink);
    background: rgba(10, 11, 13, .05);
}

.pebble-shell-nav__group {
    position: relative;
}

.pebble-shell-nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 198px;
    padding: 8px;
    border: 1px solid rgba(10, 11, 13, .08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 44px rgba(10, 11, 13, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.pebble-shell-nav__group:hover .pebble-shell-nav__menu,
.pebble-shell-nav__group:focus-within .pebble-shell-nav__menu,
.pebble-shell-nav__group.is-open .pebble-shell-nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pebble-shell-nav__menu a {
    display: flex;
    min-height: 39px;
    padding: 0 12px;
}

.pebble-shell-nav__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--pebble-line);
    border-radius: 12px;
    background: #fff;
    color: var(--pebble-ink);
    cursor: pointer;
}

.pebble-shell-nav__search svg {
    width: 18px;
    height: 18px;
}

.pebble-shell-nav__cta,
.pebble-shell-nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    background: var(--pebble-blue);
    color: #fff;
    font: 800 15px/1 Manrope, sans-serif;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 82, 255, .18);
}

.pebble-shell-nav__burger {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--pebble-line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.pebble-shell-nav__burger span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--pebble-ink);
}

.pebble-shell-nav__mobile {
    display: none;
    width: min(1450px, calc(100% - clamp(32px, 8vw, 64px)));
    margin: 10px auto 0;
    padding: 10px;
    border: 1px solid rgba(10, 11, 13, .08);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 44px rgba(10, 11, 13, .16);
    backdrop-filter: blur(22px) saturate(1.7);
    -webkit-backdrop-filter: blur(22px) saturate(1.7);
}

.pebble-shell-nav__mobile a,
.pebble-shell-nav__mobile-search {
    display: block;
    width: 100%;
    padding: 13px 15px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: #1a1d21;
    font: 700 15px/1 Manrope, sans-serif;
    text-align: left;
    text-decoration: none;
}

.pebble-shell-nav__mobile p {
    margin: 0;
    padding: 12px 15px 4px;
    color: #6b717c;
    font: 800 11px/1 Manrope, sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pebble-shell-logo {
    display: block;
    width: auto;
    height: 42px;
}

.pebble-shell-footer__logo .pebble-shell-logo {
    height: 34px;
}

.pebble-shell-nav__trigger svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pebble-shell-nav__mobile-cta {
    margin-top: 8px;
    text-align: center;
}

.pebble-shell-footer {
    margin-top: clamp(72px, 8vw, 120px);
    padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 54px) 26px;
    border-top: 1px solid var(--pebble-line);
    background: #fff;
    font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pebble-shell-footer__inner {
    display: grid;
    grid-template-columns: minmax(280px, 1.7fr) repeat(2, minmax(150px, .55fr));
    gap: clamp(28px, 5vw, 72px);
    width: min(1180px, 100%);
    margin: 0 auto;
}

.pebble-shell-footer__brand p {
    max-width: 360px;
    margin: 18px 0 0;
    color: var(--pebble-muted);
    font: 500 15px/1.65 Manrope, sans-serif;
}

.pebble-shell-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.pebble-shell-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--pebble-line);
    border-radius: 12px;
    background: #f3f5f8;
    color: var(--pebble-muted);
    text-decoration: none;
    transition: color .15s ease, background .15s ease;
}

.pebble-shell-footer__social a:hover {
    background: #eaeef3;
    color: var(--pebble-ink);
}

.pebble-shell-footer__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pebble-shell-footer__social svg[fill="none"] {
    fill: none;
}

.pebble-shell-footer__social svg[fill="none"] circle:last-child {
    fill: currentColor;
    stroke: none;
}

.pebble-shell-footer__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pebble-shell-footer__column h2 {
    margin: 0 0 6px;
    color: var(--pebble-ink);
    font: 800 13px/1 Manrope, sans-serif;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.pebble-shell-footer__column a,
.pebble-shell-footer__bottom a {
    color: var(--pebble-muted);
    font: 600 14px/1.45 Manrope, sans-serif;
    text-decoration: none;
}

.pebble-shell-footer__column a:hover,
.pebble-shell-footer__bottom a:hover {
    color: var(--pebble-ink);
}

.pebble-shell-footer__bottom {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    width: min(1180px, 100%);
    margin: 44px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--pebble-line);
    color: #6b717c;
    font: 600 13px/1.45 Manrope, sans-serif;
}

.pebble-shell-footer__disclaimer {
    margin: 0;
    color: #989da8;
    font: 500 12.5px/1.65 Manrope, sans-serif;
}

.pebble-shell-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
}

.pebble-shell-footer__legal span {
    color: #989da8;
    font: 500 12.5px/1.65 Manrope, sans-serif;
}

.pebble-shell-footer__bottom nav,
.pebble-shell-footer__legal nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pebble-shell-nav a:focus-visible,
.pebble-shell-nav button:focus-visible,
.pebble-shell-footer a:focus-visible {
    outline: 2px solid var(--pebble-blue);
    outline-offset: 2px;
}

@media (max-width: 1120px) {
    .pebble-shell-nav__links,
    .pebble-shell-nav__cta {
        display: none;
    }

    .pebble-shell-nav__burger {
        display: inline-flex;
    }

    .pebble-shell-nav.is-open .pebble-shell-nav__mobile {
        display: block;
    }

    .pebble-shell-nav__inner {
        min-height: 76px;
        padding: 14px 18px;
        border-radius: 22px;
    }
}

@media (max-width: 780px) {
    .pebble-shell-nav {
        top: 8px;
        margin-top: 8px;
        padding: 0 12px;
    }

    .pebble-shell-nav__wordmark,
    .pebble-shell-footer__logo span:last-child {
        font-size: 27px;
    }

    .pebble-shell-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .pebble-shell-footer__brand {
        grid-column: 1 / -1;
    }

    .pebble-shell-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .pebble-shell-nav__search {
        display: none;
    }

    .pebble-shell-footer__inner {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pebble-shell-nav__menu {
        transition: none;
    }
}
