@font-face {
    font-family: Nimbus;
    src: url(../fonts/NimbusSans-Regular.otf) format("opentype");
    font-display: swap;
    font-weight: 400
}

@font-face {
    font-family: Nimbus;
    src: url(../fonts/NimbusSans-Bold.otf) format("opentype");
    font-display: swap;
    font-weight: 700
}

:root {
    --orange: #ff642e;
    --orange2: #ff7a45;
    --graphite: #24272d;
    --ink: #15171a;
    --muted: #60646c;
    --line: #d9dadd;
    --paper: #f7f7f4;
    --white: #fff;
    --lime: #dfff72;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(24, 26, 30, .14)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 400 17px/1.55 Nimbus, Arial, sans-serif;
    overflow-x: hidden
}

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

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

button,
input,
textarea {
    font: inherit
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    padding: 0 clamp(20px, 4vw, 64px);
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(247, 247, 244, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(21, 23, 26, .12);
    transition: .25s
}

.site-header.scrolled {
    height: 68px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 20px;
    white-space: nowrap
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px
}

.brand b {
    color: var(--orange)
}

nav {
    display: flex;
    gap: 28px;
    margin-left: auto
}

nav a {
    font-size: 15px;
    position: relative
}

nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 2px;
    background: var(--orange);
    transition: .25s
}

nav a:hover:after {
    right: 0
}

.header-cta {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--graphite);
    color: white;
    padding: 0 18px;
    border-radius: 4px;
    font-weight: 700
}

.header-cta span {
    color: var(--orange)
}

.menu {
    display: none;
    border: 0;
    background: none;
    width: 46px;
    height: 46px
}

.menu span {
    display: block;
    height: 2px;
    background: var(--ink);
    margin: 7px
}

.hero {
    min-height: 800px;
    height: 100svh;
    max-height: 1000px;
    padding: 150px clamp(20px, 6vw, 92px) 70px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .75fr);
    align-items: center;
    gap: 6vw;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 85% 30%, #fff 0 18%, transparent 42%), linear-gradient(130deg, #f7f7f4 55%, #ececea 55%)
}

.hero:before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border: 1px solid #c9cacc;
    border-radius: 50%;
    right: -190px;
    bottom: -210px
}

.hero-copy {
    max-width: 760px;
    position: relative;
    z-index: 2
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    margin: 0 0 22px
}

.hero h1 {
    font-size: clamp(58px, 7vw, 108px);
    line-height: .91;
    letter-spacing: -.06em;
    margin: 0 0 30px;
    max-width: 900px
}

.hero h1 em {
    font-style: normal;
    color: var(--orange)
}

.lead {
    font-size: clamp(18px, 2vw, 23px);
    max-width: 620px;
    color: var(--muted);
    margin: 0 0 32px
}

.stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.store {
    min-width: 188px;
    background: var(--graphite);
    color: white;
    border-radius: 10px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #3a3d44;
    transition: .25s
}

.store:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(255, 100, 46, .25)
}

.store i {
    font-size: 30px
}

.store span {
    font-size: 19px;
    line-height: 1
}

.store small {
    font-size: 10px;
    display: block;
    margin-bottom: 4px;
    letter-spacing: .05em
}

.store-note {
    font-size: 13px;
    color: #74777c;
    margin-top: 12px
}

.hero-visual {
    height: min(680px, 74vh);
    position: relative;
    display: grid;
    place-items: center
}

.hero-visual img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 35px 40px rgba(0, 0, 0, .18));
    animation: float 5s ease-in-out infinite
}

.price-chip {
    position: absolute;
    z-index: 3;
    background: white;
    padding: 14px 18px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--orange);
    display: grid;
    min-width: 145px
}

.price-chip span {
    font-size: 11px;
    letter-spacing: .15em
}

.price-chip b {
    font-size: 26px
}

.chip-a {
    top: 20%;
    left: -8%;
    transform: rotate(-5deg)
}

.chip-b {
    right: -3%;
    bottom: 16%;
    transform: rotate(5deg)
}

.orbit {
    position: absolute;
    width: 92%;
    aspect-ratio: 1;
    border: 1px dashed #a8aaad;
    border-radius: 50%;
    animation: spin 22s linear infinite
}

.orbit span {
    position: absolute;
    right: -26px;
    top: 50%;
    background: var(--lime);
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em
}

.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: clamp(20px, 6vw, 92px);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .13em
}

.scroll-cue span {
    color: var(--orange);
    margin-left: 18px
}

.route-line {
    position: absolute;
    left: -20px;
    top: 115px;
    width: 220px;
    height: 35px;
    border-top: 3px solid var(--orange);
    border-radius: 50%;
    transform: rotate(-8deg)
}

.route-line span {
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--orange);
    border-radius: 50%;
    top: -6px
}

.route-line span:nth-child(1) {
    left: 15%
}

.route-line span:nth-child(2) {
    left: 50%
}

.route-line span:nth-child(3) {
    left: 85%
}

.ticker {
    background: var(--orange);
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em
}

.ticker div {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: ticker 24s linear infinite
}

.ticker i {
    font-style: normal;
    font-size: 8px;
    color: var(--graphite)
}

.section {
    padding: clamp(85px, 10vw, 150px) clamp(20px, 6vw, 92px)
}

.section-head {
    display: grid;
    grid-template-columns: .55fr 1.3fr .75fr;
    gap: 35px;
    align-items: start;
    margin-bottom: 70px
}

.section-head h2,
.steps h2,
.compare h2,
.download h2,
.contact h2 {
    font-size: clamp(44px, 5vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
    margin: 0
}

.section-head>p:last-child {
    color: var(--muted);
    margin: 0
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 16px
}

.feature {
    position: relative;
    min-height: 360px;
    padding: 34px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s
}

.feature:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.feature-main {
    grid-row: span 2;
    min-height: 730px;
    background: #eceeeb
}

.feature .index {
    font-size: 13px;
    color: var(--muted)
}

.feature>i {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 29px;
    color: var(--orange)
}

.feature h3 {
    font-size: clamp(30px, 3vw, 50px);
    line-height: 1.03;
    margin: 120px 0 18px;
    max-width: 420px
}

.feature p {
    max-width: 500px;
    color: var(--muted)
}

.feature.dark {
    background: var(--graphite);
    color: white;
    border-color: var(--graphite)
}

.feature.dark p {
    color: #c9cbd0
}

.mini-map {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 32px;
    height: 285px;
    border-radius: 18px;
    background: linear-gradient(115deg, transparent 40%, #dadcd8 41% 43%, transparent 44%), linear-gradient(30deg, transparent 52%, #d1d3cf 53% 55%, transparent 56%), #f8f8f5;
    overflow: hidden
}

.mini-map:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, transparent 0 4px, #ff642e 5px 7px, transparent 8px), radial-gradient(circle at 70% 60%, transparent 0 4px, #ff642e 5px 7px, transparent 8px)
}

.mini-map span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    padding: 6px 9px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .12);
    font-size: 12px;
    font-weight: 700;
    z-index: 2
}

.showcase {
    background: var(--graphite);
    color: white;
    overflow: hidden
}

.section-head.light>p:last-child {
    color: #c4c6ca
}

.phone-stage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start
}

.phone-card {
    background: #30343b;
    border: 1px solid #484c54;
    border-radius: var(--radius);
    padding: 28px;
    transition: .3s
}

.phone-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px)
}

.phone-card.raised {
    margin-top: 80px
}

.phone-frame {
    height: 570px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle, #4a4e55, transparent 67%);
    margin-bottom: 25px
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.phone-card span {
    color: var(--orange);
    font-size: 12px;
    letter-spacing: .14em
}

.phone-card h3 {
    font-size: 32px;
    margin: 8px 0
}

.phone-card p {
    color: #c2c4c9;
    margin: 0
}

.compare {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 7vw;
    align-items: center
}

.compare-copy>p:not(.eyebrow) {
    font-size: 20px;
    color: var(--muted);
    max-width: 650px
}

.metric-row {
    border-top: 1px solid var(--line);
    margin-top: 40px
}

.metric-row div {
    display: grid;
    grid-template-columns: .35fr 1fr;
    padding: 17px 0;
    border-bottom: 1px solid var(--line)
}

.metric-row span {
    color: var(--muted)
}

.station-photo {
    margin: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/12
}

.station-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.station-photo figcaption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.station-photo figcaption span {
    font-size: 12px;
    color: var(--orange);
    letter-spacing: .15em
}

.station-photo figcaption b {
    font-size: 19px
}

.steps {
    background: #eceeeb;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 8vw
}

.steps-intro {
    position: sticky;
    top: 130px;
    align-self: start
}

.steps-intro>p:last-child {
    font-size: 19px;
    color: var(--muted)
}

.step-list article {
    min-height: 190px;
    border-top: 1px solid #c9cbca;
    padding: 28px 0;
    display: grid;
    grid-template-columns: 65px 1fr 70px;
    gap: 20px;
    align-items: start
}

.step-list article:last-child {
    border-bottom: 1px solid #c9cbca
}

.step-list article>span {
    color: var(--orange);
    font-weight: 700
}

.step-list h3 {
    font-size: 32px;
    margin: 0 0 10px
}

.step-list p {
    color: var(--muted);
    margin: 0;
    max-width: 540px
}

.step-list i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 1px solid #c4c6c5;
    border-radius: 50%;
    transition: .25s
}

.step-list article:hover i {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: rotate(8deg)
}

.download {
    background: var(--orange);
    color: white;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 5vw;
    position: relative
}

.download .eyebrow {
    color: var(--graphite)
}

.download h2 {
    max-width: 800px
}

.download p:last-child {
    max-width: 650px
}

.download-mark {
    font-size: 90px;
    letter-spacing: -.15em;
    font-weight: 700;
    border: 2px solid white;
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    border-radius: 50%
}

.download-mark span {
    color: var(--graphite)
}

.download .store:hover {
    background: white;
    color: var(--graphite)
}

.contact {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 8vw
}

.contact-copy>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 19px
}

.contact-details {
    margin-top: 45px;
    border-top: 1px solid var(--line)
}

.contact-details p {
    display: grid;
    grid-template-columns: 110px 1fr;
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink)
}

.contact-details span {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-form {
    background: white;
    border: 1px solid var(--line);
    padding: 35px;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.contact-form label {
    font-size: 14px;
    font-weight: 700
}

.contact-form label:nth-child(4),
.contact-form .consent,
.contact-form button {
    grid-column: 1/-1
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid #aaa;
    background: transparent;
    outline: none
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange)
}

.contact-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400
}

.consent input {
    width: 20px;
    height: 20px;
    margin: 2px 0
}

.consent a {
    text-decoration: underline
}

.contact-form button {
    border: 0;
    background: var(--graphite);
    color: white;
    min-height: 58px;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    transition: .25s
}

.contact-form button:hover {
    background: var(--orange)
}

footer {
    background: #181a1f;
    color: white;
    padding: 70px clamp(20px, 6vw, 92px) 25px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3b3e44;
    padding-bottom: 35px
}

.footer-top p {
    color: #aeb1b7
}

.footer-grid {
    display: grid;
    grid-template-columns: .6fr .6fr 1fr;
    gap: 40px;
    padding: 45px 0
}

.footer-grid h3 {
    font-size: 13px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .14em
}

.footer-grid a {
    display: block;
    color: #d8dade;
    margin: 8px 0
}

.footer-grid p {
    color: #d8dade
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #9fa2aa;
    max-width: 930px;
    border-top: 1px solid #3b3e44;
    padding-top: 25px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #3b3e44;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #9fa2aa
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s, transform .75s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes float {
    50% {
        transform: translateY(-15px)
    }
}

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

@keyframes ticker {
    to {
        transform: translateX(-50%)
    }
}

@media(max-width:1050px) {
    nav {
        display: none
    }

    .menu {
        display: block;
        margin-left: auto
    }

    .header-cta {
        display: none
    }

    .site-header.open nav {
        display: flex;
        position: absolute;
        top: 79px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 25px;
        flex-direction: column
    }

    .hero {
        grid-template-columns: 1fr 380px
    }

    .section-head {
        grid-template-columns: 1fr 2fr
    }

    .section-head>p:last-child {
        grid-column: 2
    }

    .download {
        grid-template-columns: 130px 1fr
    }

    .download>.stores {
        grid-column: 2
    }

    .download-mark {
        width: 120px;
        height: 120px;
        font-size: 64px
    }

    .phone-frame {
        height: 480px
    }
}

@media(max-width:780px) {
    body {
        font-size: 16px
    }

    .site-header {
        height: 68px
    }

    .site-header.open nav {
        top: 67px
    }

    .hero {
        height: auto;
        max-height: none;
        min-height: 0;
        padding-top: 115px;
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 55px
    }

    .hero-visual {
        height: 580px;
        margin-top: 20px
    }

    .chip-a {
        left: 0
    }

    .chip-b {
        right: 0
    }

    .scroll-cue {
        display: none
    }

    .section {
        padding: 78px 20px
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .section-head>p:last-child {
        grid-column: auto
    }

    .feature-grid,
    .phone-stage,
    .compare,
    .steps,
    .contact {
        grid-template-columns: 1fr
    }

    .feature-main {
        min-height: 650px
    }

    .phone-card.raised {
        margin-top: 0
    }

    .phone-stage {
        gap: 18px
    }

    .phone-frame {
        height: 600px
    }

    .compare {
        gap: 55px
    }

    .steps-intro {
        position: static
    }

    .download {
        grid-template-columns: 1fr
    }

    .download-mark {
        display: none
    }

    .download>.stores {
        grid-column: auto
    }

    .contact-form {
        grid-template-columns: 1fr
    }

    .contact-form label {
        grid-column: 1/-1
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid>div:last-child {
        grid-column: 1/-1
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 46px
    }

    .hero-visual {
        height: 490px
    }

    .price-chip {
        padding: 10px;
        min-width: 115px
    }

    .price-chip b {
        font-size: 20px
    }

    .section-head h2,
    .steps h2,
    .compare h2,
    .download h2,
    .contact h2 {
        font-size: 42px
    }

    .phone-frame {
        height: 480px
    }

    .stores {
        flex-direction: column
    }

    .store {
        width: 100%
    }

    .station-photo {
        aspect-ratio: 4/5
    }

    .station-photo figcaption {
        flex-direction: column
    }

    .step-list article {
        grid-template-columns: 44px 1fr
    }

    .step-list i {
        display: none
    }

    .contact-form {
        padding: 22px
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid>div:last-child {
        grid-column: auto
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

.legal-main {
    padding: 150px clamp(20px, 6vw, 92px) 100px;
    min-height: 70vh
}

.legal-hero {
    max-width: 920px;
    margin-bottom: 65px
}

.legal-hero .updated {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.legal-hero h1 {
    font-size: clamp(52px, 7vw, 96px);
    line-height: .94;
    letter-spacing: -.055em;
    margin: 24px 0
}

.legal-hero p {
    font-size: 20px;
    color: var(--muted);
    max-width: 720px
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 820px);
    gap: 7vw
}

.legal-aside {
    position: sticky;
    top: 110px;
    align-self: start;
    border-top: 3px solid var(--orange);
    padding-top: 20px
}

.legal-aside b {
    display: block;
    margin-bottom: 10px
}

.legal-aside p {
    font-size: 14px;
    color: var(--muted)
}

.legal-copy section {
    padding: 30px 0;
    border-top: 1px solid var(--line)
}

.legal-copy h2 {
    font-size: 30px;
    margin: 0 0 18px
}

.legal-copy p {
    color: #4d5158;
    margin: 0 0 15px
}

.company-card {
    background: var(--graphite);
    color: white;
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 25px
}

.company-card p {
    color: #d8dade
}

.thanks-panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(30px, 6vw, 70px);
    max-width: 1050px
}

.thanks-panel h1 {
    font-size: clamp(50px, 7vw, 90px);
    line-height: .95;
    letter-spacing: -.05em;
    margin: 0 0 25px
}

.thanks-panel h1 span {
    color: var(--orange)
}

.thanks-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 45px 0
}

.thanks-steps article {
    background: #eceeeb;
    padding: 25px;
    border-radius: 15px
}

.thanks-steps b {
    color: var(--orange);
    font-size: 13px
}

.thanks-steps h2 {
    font-size: 24px
}

.back-button {
    display: inline-flex;
    background: var(--graphite);
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    gap: 25px
}

.back-button:hover {
    background: var(--orange)
}

@media(max-width:780px) {
    .legal-layout {
        grid-template-columns: 1fr
    }

    .legal-aside {
        position: static
    }

    .thanks-steps {
        grid-template-columns: 1fr
    }
}

.mini-map span:nth-child(1) {
    left: 18%;
    top: 45%
}

.mini-map span:nth-child(2) {
    left: 48%;
    top: 22%
}

.mini-map span:nth-child(3) {
    left: 72%;
    top: 60%
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 60px));
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .4s ease
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0)
}

.cookie-banner__inner {
    position: relative;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 28px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 46px;
    overflow: hidden;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

.cookie-banner__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 92px;
    height: 4px;
    background: var(--orange)
}

.cookie-banner__inner::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -68px;
    top: -76px;
    border: 1px solid rgba(255, 100, 46, .24);
    border-radius: 50%;
    pointer-events: none
}

.cookie-banner__content {
    position: relative;
    z-index: 1;
    max-width: 700px
}

.cookie-banner__label {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .17em;
    text-transform: uppercase
}

.cookie-banner__content h2 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1;
    letter-spacing: -.035em
}

.cookie-banner__content p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6
}

.cookie-banner__link {
    display: inline-block;
    margin-top: 10px;
    padding-bottom: 2px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--orange)
}

.cookie-banner__link:hover {
    color: var(--orange)
}

.cookie-banner__actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.cookie-banner__button {
    min-height: 48px;
    padding: 0 19px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 4px;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease
}

.cookie-banner__button:hover {
    transform: translateY(-2px)
}

.cookie-banner__button--primary {
    border: 1px solid var(--graphite);
    background: var(--graphite);
    color: var(--white)
}

.cookie-banner__button--primary:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 10px 26px rgba(255, 100, 46, .2)
}

.cookie-banner__button--secondary {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink)
}

.cookie-banner__button--secondary:hover {
    background: var(--paper);
    border-color: var(--graphite)
}

.cookie-banner__button:focus-visible,
.cookie-banner__link:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px
}

@media(max-width:780px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px
    }

    .cookie-banner__inner {
        grid-template-columns: 1fr;
        gap: 21px;
        padding: 25px
    }

    .cookie-banner__actions {
        width: 100%
    }

    .cookie-banner__button {
        flex: 1
    }
}

@media(max-width:480px) {
    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px
    }

    .cookie-banner__inner {
        gap: 18px;
        padding: 23px 18px 18px;
        border-radius: 18px
    }

    .cookie-banner__inner::before {
        left: 18px;
        width: 68px
    }

    .cookie-banner__content h2 {
        font-size: 27px
    }

    .cookie-banner__content p {
        font-size: 13px;
        line-height: 1.55
    }

    .cookie-banner__actions {
        flex-direction: column-reverse
    }

    .cookie-banner__button {
        width: 100%
    }
}

@media(prefers-reduced-motion:reduce) {

    .cookie-banner,
    .cookie-banner__button {
        transition: none
    }
}