@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caveat";
    src: url("../fonts/Caveat-VariableFont_wght.woff2") format("woff2");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Space Mono";
    src: url("../fonts/SpaceMono-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Space Mono";
    src: url("../fonts/SpaceMono-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #111311;
    --paper: #f7f6f1;
    --off: #eeece5;
    --mint: #79d7c3;
    --mint-deep: #2b8b78;
    --line: rgba(17, 19, 17, .15);
    --muted: #626560;
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

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

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 99;
    padding: .75rem 1rem;
    background: var(--mint);
    color: var(--ink);
}

.skip-link:focus {
    top: 1rem;
}

.page-noise {
    position: fixed;
    z-index: -1;
    inset: 0;
    opacity: .055;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
    width: min(1420px, calc(100% - 48px));
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--line);
}

.site-header .logo{
    width:clamp(120px,500px, 8vw)
}

.brand {
    font: 600 43px/.8 Caveat, cursive;
    letter-spacing: -2px;
    white-space: nowrap;
}

.brand span {
    color: var(--mint-deep);
}

.nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
}

.nav a,
.header-mail {
    position: relative;
}

.nav a:after,
.header-mail:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .25s;
}

.nav a:hover:after,
.header-mail:hover:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 12px;
    font-weight: 700;
}

.language {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 4px;
    font: 700 11px 'Space Mono', monospace;
}

.language i {
    padding: 0 3px;
    opacity: .35;
    font-style: normal;
}

.language span:last-child {
    opacity: .35;
}

.language.is-en span:first-child {
    opacity: .35;
}

.language.is-en span:last-child {
    opacity: 1;
}

.hero {
    min-height: calc(100vh - 100px);
    width: min(1420px, calc(100% - 48px));
    margin: auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 25px;
    padding: 55px 0 25px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 21px;
    font: 700 11px 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    display: block;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 670px;
    margin-bottom: 25px;
    font-size: clamp(3.7rem, 6.3vw, 6.7rem);
    line-height: .96;
    letter-spacing: -.08em;
    font-weight: 800;
}

h1 em,
h2 em {
    font-family: Caveat, cursive;
    font-weight: 600;
    letter-spacing: -.05em;
    font-style: normal;
    white-space: nowrap;
    color: var(--mint-deep);
    text-wrap: wrap;
}

.hero-text {
    max-width: 510px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    transition: transform .25s, background .25s;
}

.button:hover {
    transform: translateY(-3px);
}

.button-dark {
    color: white;
    background: var(--ink);
}

.button-mint {
    background: var(--mint);
}

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

.hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #e9eee9, #edf4f0 55%, #d6e4dc);
    isolation: isolate;
}

.hero-blob {
    position: absolute;
    width: 82%;
    aspect-ratio: 1;
    background: var(--mint);
    border-radius: 48% 52% 44% 56% / 58% 46% 54% 42%;
    right: -10%;
    bottom: -16%;
    opacity: .78;
    transform: rotate(-16deg);
}

.character {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 80%;
    object-fit: contain;
    object-position: 50% 77%;
    right: 0;
    bottom: 0%;
    mix-blend-mode: multiply;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(17, 19, 17, .16);
    width: 76%;
    aspect-ratio: 1;
    border-radius: 50%;
    left: 7%;
    top: 15%;
}

.orbit-two {
    width: 102%;
    left: -17%;
    top: 4%;
}

.hero-stamp {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid var(--ink);
    font: 700 10px/1.25 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.stamp-top {
    right: 6%;
    top: 8%;
    background: var(--paper);
    transform: rotate(13deg);
}

.stamp-bottom {
    bottom: 8%;
    left: 5%;
    background: var(--ink);
    color: var(--paper);
    transform: rotate(-13deg);
}

.hero-note {
    position: absolute;
    z-index: 3;
    right: 8%;
    bottom: 9%;
    width: 115px;
    height: 115px;
    padding: 15px;
    border-radius: 17px;
    background: var(--paper);
    box-shadow: 0 15px 30px rgba(16, 30, 20, .16);
    transform: rotate(7deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-note span {
    font: 11px 'Space Mono', monospace;
}

.hero-note b {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
}

.intro-band {
    width: min(1420px, calc(100% - 48px));
    margin: 30px auto 0;
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.intro-band p {
    max-width: 780px;
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 2.2rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.05em;
}

.intro-mark {
    width: 63px;
    height: 63px;
    background: var(--ink);
    border-radius: 39% 61% 55% 45% / 51% 38% 62% 49%;
    color: var(--off);
    display: grid;
    place-items: center;
    font: 600 43px Caveat, cursive;
    padding-right: 10px
    
}

.section {
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
}

.products {
    padding: 136px 0 158px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 45px;
    align-items: end;
    margin-bottom: 52px;
}

.section-heading h2,
.why h2,
.contact h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 5.15rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.08em;
}

.section-heading>p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.product-card {
    min-height: 420px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fcfbf8;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(20, 24, 20, .08);
}

.product-card--featured {
    grid-row: span 2;
    min-height: 856px;
    background: var(--ink);
    color: var(--paper);
    border: 0;
}

.card-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 10px 'Space Mono', monospace;
    letter-spacing: .05em;
}

.status {
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 9px;
}

.status-live {
    border-color: rgba(121, 215, 195, .55);
    color: var(--mint);
}

.slider-mockup {
    position: relative;
    flex: 1;
    min-height: 390px;
    display: grid;
    place-items: center;
    padding: 38px 8px 22px;
}

.mockup-browser {
    width: 100%;
    max-width: 490px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f7f1;
    color: var(--ink);
    box-shadow: 0 20px 34px rgba(0, 0, 0, .35);
    transform: rotate(-3deg);
}

.browser-bar {
    height: 29px;
    background: #e6e4df;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
}

.browser-bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b7b6b1;
}

.browser-bar span {
    margin: auto;
    font: 7px 'Space Mono', monospace;
}

.mockup-hero-image {
    height: 238px;
    padding: 31px;
    position: relative;
    background: linear-gradient(130deg, #e1e8e1, #a9d3c8 50%, #75b5a6);
    overflow: hidden;
}

.mockup-hero-image:after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(17, 19, 17, .24);
    border-radius: 48% 52% 45% 55%;
    right: -36px;
    top: 24px;
}

.mockup-label {
    position: relative;
    z-index: 1;
    font-size: clamp(25px, 4vw, 42px);
    line-height: .9;
    font-weight: 800;
    letter-spacing: -.08em;
}

.mockup-pill {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 31px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: 8px 14px;
    font: 9px 'Space Mono', monospace;
}

.mockup-dots {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mockup-dots * {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b0b0ac;
}

.mockup-dots b {
    width: 18px;
    border-radius: 9px;
    background: var(--mint-deep);
}

.mockup-controls {
    position: absolute;
    bottom: 22px;
    right: 16px;
    color: var(--mint);
    font: 9px 'Space Mono', monospace;
    display: flex;
    gap: 7px;
    align-items: center;
}

.mockup-controls i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
}

.product-content {
    margin-top: auto;
}

.product-kind {
    font: 10px 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .65;
}

.product-content h3 {
    font-size: clamp(1.7rem, 2.5vw, 2.6rem);
    line-height: .98;
    letter-spacing: -.07em;
    margin: 0 0 15px;
}

.product-content>p:last-of-type {
    color: inherit;
    opacity: .68;
    font-size: 13px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 21px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.compatibility {
    font: 10px 'Space Mono', monospace;
    opacity: .7;
    white-space: nowrap;
}

.product-card--soon {
    background: #efeee8;
    min-height: 410px;
}

.coming-mockup {
    flex: 1;
    min-height: 160px;
    margin: 22px 0 18px;
    position: relative;
    border-radius: 16px;
    background: #dfe8e2;
    overflow: hidden;
}

.mockup-lines {
    padding: 24px;
    display: grid;
    align-content: center;
    gap: 12px;
}

.mockup-lines span {
    height: 11px;
    border-radius: 99px;
    background: rgba(17, 19, 17, .14);
}

.mockup-lines span:nth-child(1) {
    width: 72%;
}

.mockup-lines span:nth-child(2) {
    width: 46%;
    background: var(--mint-deep);
}

.mockup-lines span:nth-child(3) {
    width: 61%;
}

.mockup-lines i {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    right: -18px;
    bottom: -16px;
    background: var(--ink);
}

.mockup-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mockup-grid i {
    border-radius: 9px;
    background: rgba(17, 19, 17, .1);
}

.mockup-grid i:nth-child(2) {
    background: var(--mint);
}

.mockup-grid b {
    position: absolute;
    width: 60%;
    height: 12px;
    border-radius: 99px;
    background: var(--ink);
    left: 20%;
    bottom: 18px;
}

.mockup-orbit {
    display: grid;
    place-items: center;
}

.mockup-orbit span {
    width: 125px;
    height: 125px;
    border-radius: 48% 52% 60% 40%;
    background: var(--mint);
    transform: rotate(25deg);
}

.mockup-orbit i,
.mockup-orbit b {
    position: absolute;
    border: 1px solid rgba(17, 19, 17, .28);
    border-radius: 50%;
    width: 165px;
    height: 165px;
}

.mockup-orbit b {
    width: 85px;
    height: 85px;
    border-color: var(--ink);
}

.why {
    padding: 118px 0;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(50px, 11vw, 180px);
    align-items: center;
    border-top: 1px solid var(--line);
}

.why-visual {
    height: 520px;
    border-radius: var(--radius);
    background: var(--mint);
    position: relative;
    overflow: hidden;
}

.why-shape {
    position: absolute;
    width: 330px;
    height: 330px;
    left: 19%;
    top: 27%;
    border-radius: 45% 55% 37% 63%;
    background: var(--ink);
    transform: rotate(25deg);
}

.why-shape.second {
    width: 190px;
    height: 190px;
    left: 54%;
    top: 8%;
    border: 1px solid var(--ink);
    background: transparent;
}

.code-line {
    position: absolute;
    z-index: 2;
    font: 700 17px 'Space Mono', monospace;
    letter-spacing: -.1em;
}

.code-line.one {
    left: 8%;
    top: 11%;
}

.code-line.two {
    right: 6%;
    bottom: 28%;
    transform: rotate(-90deg);
    transform-origin: right bottom;
}

.why-content>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 570px;
    margin: 26px 0 34px;
}

.benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.benefit-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 20px;
    align-items: center;
}

.benefit-list span {
    font: 10px 'Space Mono', monospace;
    color: var(--mint-deep);
}

.benefit-list b {
    font-size: 14px;
}

.contact {
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto 22px;
    padding: clamp(45px, 8vw, 110px);
    min-height: 450px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.contact-inner {
    position: relative;
    z-index: 2;
}

.contact .eyebrow {
    color: var(--mint);
}

.contact h2 {
    max-width: 750px;
}

.contact h2 em {
    color: var(--mint);
}

.contact-link {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    margin-top: 34px;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 600;
    letter-spacing: -.05em;
    border-bottom: 1px solid var(--mint);
    padding-bottom: 7px;
}

.contact-link span {
    color: var(--mint);
}

.contact-sigil {
    position: absolute;
    right: 5%;
    bottom: -18%;
    font: 600 clamp(18rem, 37vw, 38rem)/1 Caveat, cursive;
    color: var(--mint);
    opacity: .9;
    transform: rotate(-10deg);
}

.footer {
    width: min(1420px, calc(100% - 48px));
    margin: auto;
    padding: 32px 0 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--muted);
}

.footer .brand {
    color: var(--ink);
    font-size: 34px;
    max-width: 100%;
    min-width: 0;
}

.footer .logo {
    display: block;
    width: min(140px, 100%);
    max-width: 100%;
    height: auto;
}

.footer p {
    margin: 0;
}

@media (max-width:900px) {
    .site-header {
        height: 80px
    }

    .nav,
    .header-mail {
        display: none
    }

    .header-actions {
        margin-left: auto
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 65px 0 16px
    }

    .hero-copy {
        padding-bottom: 20px
    }

    .hero-visual {
        min-height: 560px
    }

    .section-heading,
    .why {
        grid-template-columns: 1fr
    }

    .section-heading {
        gap: 25px
    }

    .section-heading>p {
        max-width: 520px
    }

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

    .product-card--featured {
        grid-column: span 2;
        min-height: 740px
    }

    .why {
        gap: 45px
    }

    .why-visual {
        height: 400px
    }

    .footer {
        flex-wrap: wrap;
        gap: 14px
    }

    .footer p {
        order: 3;
        width: 100%
    }
}

@media (max-width:580px) {

    .site-header,
    .hero,
    .section,
    .intro-band,
    .contact,
    .footer {
        width: min(100% - 32px, 1420px)
    }

    .site-header {
        height: 70px
    }

    .brand {
        font-size: 38px
    }

    h1 {
        font-size: clamp(3.3rem, 15vw, 4.6rem)
    }

    .hero {
        padding-top: 38px
    }

    .hero-text {
        font-size: 15px
    }

    .hero-visual {
        min-height: 455px
    }

    .character {
        width: 112%;
        right: -8%;
        bottom: 0%
    }

    .hero-note {
        width: 89px;
        height: 89px;
        padding: 11px;
        right: 7%;
        bottom: 6%
    }

    .hero-note b {
        font-size: 11px
    }

    .hero-stamp {
        width: 68px;
        height: 68px;
        font-size: 7px
    }

    .intro-band {
        padding: 25px 0
    }

    .intro-mark {
        width: 46px;
        height: 46px;
        font-size: 32px
    }

    .products {
        padding: 90px 0
    }

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

    .product-card--featured {
        grid-column: auto;
        min-height: 670px
    }

    .slider-mockup {
        min-height: 280px;
        padding-top: 25px
    }

    .mockup-hero-image {
        height: 175px;
        padding: 25px
    }

    .mockup-label {
        font-size: 28px
    }

    .mockup-pill {
        left: 25px;
        bottom: 24px
    }

    .product-card {
        min-height: 380px
    }

    .why {
        padding: 80px 0
    }

    .why-visual {
        height: 300px
    }

    .contact {
        padding: 43px 27px;
        min-height: 340px
    }

    .contact-sigil {
        bottom: -10%;
        right: -6%;
        font-size: 14rem
    }

    .footer {
        padding-bottom: 28px
    }

    .footer>a:last-child {
        font-size: 10px
    }
}

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

/* Contact visual, privacy controls and deliberately static product cards. */
.product-card {
    transition: none;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.button:hover {
    transform: none;
}

.contact {
    min-height: 470px;
    background: var(--paper);
    color: var(--ink);
    display: grid;
    grid-template-columns: 1fr minmax(270px, 390px);
    align-items: center;
}

.contact .eyebrow {
    color: inherit;
}

.contact h2 em,
.contact-link span {
    color: var(--mint-deep);
}

.contact-link {
    border-color: var(--mint-deep);
}

.contact-sigil {
    display: none;
}

.contact-image {
    height: 100%;
    align-self: end;
    display: flex;
    justify-content: center;
    align-items: end;
    overflow: hidden;
}

.contact-image img {
    width: 112%;
    max-height: 440px;
    object-fit: contain;
    object-position: bottom;
}

.footer-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-links a,
.cookie-settings {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.footer-links a:hover,
.cookie-settings:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    z-index: 20;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 900px;
    margin: auto;
    padding: 24px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    background: var(--ink);
    color: var(--paper);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.cookie-banner[hidden],
.cookie-panel[hidden] {
    display: none;
}

.cookie-copy h2 {
    font-size: 20px;
    letter-spacing: -.05em;
    margin: 0 0 5px;
}

.cookie-copy p {
    max-width: 500px;
    margin: 0 0 7px;
    font-size: 12px;
    line-height: 1.55;
    opacity: .75;
}

.cookie-copy a,
.cookie-manage {
    font-size: 11px;
    text-decoration: underline;
    color: var(--mint);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.button-plain {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, .35);
}

.cookie-manage {
    padding: 8px;
    background: none;
    border: 0;
    cursor: pointer;
    width: 100%;
}

.cookie-panel {
    position: fixed;
    z-index: 25;
    inset: 0;
    background: rgba(17, 19, 17, .45);
    display: grid;
    place-items: center;
    padding: 20px;
}

.cookie-panel-card {
    position: relative;
    width: min(550px, 100%);
    padding: 34px;
    border-radius: 24px;
    background: var(--paper);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .3);
}

.cookie-panel-card h2 {
    font-size: 30px;
    letter-spacing: -.06em;
    margin: 0 0 8px;
}

.cookie-panel-card>p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

.cookie-close {
    position: absolute;
    right: 15px;
    top: 10px;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}

.consent-option {
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: flex-start;
}

.consent-option:last-of-type {
    border-bottom: 1px solid var(--line);
}

.consent-option b,
.consent-option small {
    display: block;
}

.consent-option b {
    font-size: 14px;
}

.consent-option small {
    max-width: 390px;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.consent-option input {
    appearance: none;
    width: 42px;
    height: 24px;
    margin: 0;
    border-radius: 99px;
    background: #b6b7b2;
    position: relative;
    cursor: pointer;
    flex: 0 0 auto;
}

.consent-option input:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: left .2s;
}

.consent-option input:checked {
    background: var(--mint-deep);
}

.consent-option input:checked:after {
    left: 21px;
}

.consent-option input:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.legal-page {
    width: min(900px, calc(100% - 48px));
    margin: 80px auto 110px;
}

.legal-page h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    margin-bottom: 48px;
}

.legal-page h2 {
    margin: 42px 0 13px;
    font-size: 25px;
    letter-spacing: -.05em;
}

.legal-page p,
.legal-page li {
    color: #454844;
    font-size: 15px;
    line-height: 1.75;
}

.legal-page ul {
    padding-left: 20px;
}

.legal-note {
    padding: 18px 20px;
    border-left: 3px solid var(--mint-deep);
    background: #edf5f1;
    color: var(--ink) !important;
}

.legal-meta {
    font: 12px 'Space Mono', monospace;
    color: var(--muted) !important;
}

@media (max-width:900px) {
    .contact {
        grid-template-columns: 1fr 250px;
        padding-right: 45px
    }

    .cookie-banner {
        max-width: 620px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px
    }

    .cookie-actions {
        justify-content: flex-start
    }
}

@media (max-width:580px) {
    .contact {
        display: block;
        padding: 43px 27px;
        min-height: 500px
    }

    .contact-image {
        position: absolute;
        width: 210px;
        height: 290px;
        opacity: .7;
        right:0
    }

    .contact-image img {
        width: 105%;
        max-height: 270px
    }

    .footer-links {
        order: 3;
        width: 100%
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px
    }

    .cookie-actions {
        width: 100%
    }

    .cookie-actions .button {
        flex: 1;
        gap: 8px;
        padding: 0 13px;
        font-size: 10px
    }

    .cookie-panel-card {
        padding: 28px 22px
    }

    .consent-option small {
        max-width: 230px
    }

    .legal-page {
        width: min(100% - 32px, 900px);
        margin: 50px auto 80px
    }
}

/* Custom modules */
.custom {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto 22px;
  padding: clamp(42px, 7vw, 92px);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: end;
  overflow: hidden;
  position: relative;
}

.custom-copy { position: relative; z-index: 1; }
.custom h2 { max-width: 780px; margin: 0; }
.custom h2 em { color: var(--paper); }
.custom-copy p { max-width: 620px; margin: 26px 0 32px; font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.6; }
.custom-side { position: relative; min-height: 220px; display: flex; align-items: flex-end; justify-content: flex-end; }
.custom-number { position: absolute; right: -18px; bottom: -74px; color: var(--paper); font: 600 clamp(15rem, 25vw, 25rem)/.8 Caveat, cursive; transform: rotate(-9deg); }
.custom-side p { position: relative; margin: 0 10px 10px 0; font: 700 clamp(1.4rem, 2.4vw, 2.4rem)/.95 Manrope, sans-serif; letter-spacing: -.06em; text-align: right; }

/* Advanced Home Slider page */
.module-hero { width: min(1420px, calc(100% - 48px)); min-height: calc(100vh - 100px); margin: auto; padding: 56px 0 46px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(38px, 7vw, 118px); }
.back-link { display: inline-flex; gap: 9px; align-items: center; margin-bottom: 62px; font: 700 11px 'Space Mono', monospace; text-transform: uppercase; letter-spacing: .04em; }
.back-link span:first-child { font: 20px Manrope, sans-serif; transition: transform .2s; }.back-link:hover span:first-child { transform: translateX(-4px); }
.module-hero h1 { max-width: 690px; }.module-hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }.module-hero-actions .compatibility { font: 700 11px 'Space Mono', monospace; color: var(--muted); }
.module-preview { position: relative; min-height: 590px; padding: 56px 30px 36px; display: grid; place-items: center; overflow: hidden; isolation: isolate; border-radius: var(--radius); background: linear-gradient(150deg, #dce9e3, #eff3e9 60%, #c8e3d9); }
.preview-orbit { position: absolute; border: 1px solid rgba(17,19,17,.15); border-radius: 50%; aspect-ratio: 1; }.preview-orbit-one { width: 75%; top: -18%; right: -9%; }.preview-orbit-two { width: 108%; left: -39%; bottom: -36%; }
.preview-stamp { position: absolute; z-index: 2; top: 7%; right: 7%; width: 85px; height: 85px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font: 700 10px/1.25 'Space Mono', monospace; text-align: center; transform: rotate(12deg); }
.preview-browser { position: relative; z-index: 1; width: min(100%, 625px); padding: 10px; background: #faf9f5; border: 1px solid rgba(17,19,17,.22); border-radius: 11px; box-shadow: 18px 24px 0 rgba(17,19,17,.08); transform: rotate(-4deg); }
.preview-browser-bar { height: 29px; display: flex; gap: 5px; align-items: center; padding: 0 7px; border-bottom: 1px solid rgba(17,19,17,.12); color: #767b76; font: 9px 'Space Mono', monospace; }.preview-browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #b2b5b0; }.preview-browser-bar span { margin-left: 7px; }
.preview-banner { position: relative; min-height: 355px; padding: clamp(28px, 6vw, 60px); overflow: hidden; background: #172e29; color: var(--paper); }.preview-kicker { position: relative; z-index: 1; font: 700 9px 'Space Mono', monospace; text-transform: uppercase; letter-spacing: .1em; color: var(--mint); }.preview-banner h2 { position: relative; z-index: 1; max-width: 310px; margin: 18px 0 32px; font-size: clamp(2rem, 4.2vw, 3.8rem); line-height: .94; letter-spacing: -.07em; }.preview-button { position: relative; z-index: 1; display: inline-block; padding: 12px 17px; border-radius: 999px; background: var(--mint); color: var(--ink); font-size: 10px; font-weight: 800; }.preview-shape { position: absolute; border-radius: 50%; background: var(--mint); }.preview-shape-one { width: 75%; aspect-ratio: 1; right: -27%; bottom: -48%; opacity: .93; }.preview-shape-two { width: 34%; aspect-ratio: 1; right: 12%; top: 13%; border: 1px solid var(--paper); background: transparent; }
.preview-pagination { display: flex; justify-content: center; gap: 7px; padding: 14px 0 4px; }.preview-pagination * { width: 19px; height: 3px; background: #d3d4cf; }.preview-pagination b { background: var(--mint-deep); }.preview-side-note { position: absolute; z-index: 2; bottom: 4%; left: 6%; margin: 0; font: 700 10px/1.15 'Space Mono', monospace; letter-spacing: .05em; }
.module-intro { width: min(1420px, calc(100% - 48px)); margin: 0 auto; padding: clamp(75px, 11vw, 156px) 0; display: grid; grid-template-columns: .25fr 1.1fr .65fr; gap: clamp(28px, 6vw, 95px); border-bottom: 1px solid var(--line); }.module-number { color: var(--mint-deep); font: 700 12px 'Space Mono', monospace; }.module-intro h2 { margin: 0; font-size: clamp(2.35rem, 4.5vw, 4.8rem); line-height: .99; letter-spacing: -.07em; }.module-intro p { align-self: end; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.module-showcase { width: min(1420px, calc(100% - 48px)); margin: 0 auto; }.showcase-item { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(36px, 8vw, 130px); padding: clamp(70px, 10vw, 130px) 0; border-bottom: 1px solid var(--line); }.showcase-item--reverse { grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr); }.showcase-item--reverse .showcase-copy { order: 2; }.showcase-item--reverse img { order: 1; }.showcase-item--wide { padding-top: 85px; }.showcase-copy > span { color: var(--mint-deep); font: 700 11px 'Space Mono', monospace; }.showcase-copy h2 { max-width: 550px; margin: 42px 0 17px; font-size: clamp(2.1rem, 4vw, 4.25rem); line-height: .98; letter-spacing: -.07em; }.showcase-copy p { max-width: 490px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }.showcase-copy ul { margin: 27px 0 0; padding: 0; list-style: none; }.showcase-copy li { padding: 11px 0; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; }.showcase-copy li:before { content: '↗'; margin-right: 10px; color: var(--mint-deep); }.showcase-item img { width: 100%; border-radius: 25px; box-shadow: 0 18px 50px rgba(17,19,17,.08); }
.module-faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 12vw, 190px); padding-top: 100px; padding-bottom: 110px; }.module-faq h2 { margin: 0 0 13px; font-size: clamp(3.2rem, 5vw, 5.5rem); line-height: .9; letter-spacing: -.08em; }.module-faq > div > p { max-width: 300px; color: var(--muted); }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { padding: 21px 32px 21px 0; cursor: pointer; list-style: none; position: relative; font-size: 16px; font-weight: 800; letter-spacing: -.025em; }.faq-list summary:after { content: '+'; position: absolute; right: 0; top: 16px; color: var(--mint-deep); font-size: 25px; font-weight: 500; }.faq-list details[open] summary:after { content: '−'; }.faq-list details p { max-width: 620px; margin: -3px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.module-cta { width: min(1420px, calc(100% - 48px)); margin: 0 auto 22px; padding: clamp(44px, 7vw, 96px); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 9vw, 150px); overflow: hidden; border-radius: var(--radius); background: var(--mint); }.module-cta h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5.5rem); line-height: .96; letter-spacing: -.075em; }.module-cta h2 em { color: var(--paper); }.module-cta-side { display: flex; flex-direction: column; justify-content: end; align-items: flex-start; }.module-cta-side p { max-width: 400px; margin: 0 0 28px; font-size: 16px; line-height: 1.65; }.module-cta-side small { margin-top: 15px; font: 10px 'Space Mono', monospace; }

@media (max-width: 900px) { .module-hero { grid-template-columns: 1fr; padding-top: 35px; }.module-hero-copy { max-width: 650px; }.back-link { margin-bottom: 45px; }.module-preview { min-height: 530px; }.module-intro { grid-template-columns: .15fr 1fr; }.module-intro p { grid-column: 2; max-width: 560px; }.showcase-item, .showcase-item--reverse { grid-template-columns: 1fr; gap: 38px; }.showcase-item--reverse .showcase-copy, .showcase-item--reverse img { order: initial; }.showcase-copy { max-width: 630px; }.module-faq { grid-template-columns: 1fr; gap: 38px; }.module-cta { grid-template-columns: 1fr; } }
@media (max-width: 580px) { .module-hero, .module-intro, .module-showcase, .module-faq, .module-cta { width: min(100% - 32px, 1420px); }.module-hero { min-height: auto; padding: 30px 0 42px; }.back-link { margin-bottom: 38px; }.module-preview { min-height: 390px; padding: 35px 18px 25px; }.preview-stamp { width: 62px; height: 62px; font-size: 7px; }.preview-browser { padding: 7px; box-shadow: 10px 14px 0 rgba(17,19,17,.08); }.preview-banner { min-height: 260px; }.preview-banner h2 { font-size: 2rem; }.preview-side-note { font-size: 7px; }.module-intro { grid-template-columns: 1fr; padding: 70px 0; }.module-intro p { grid-column: auto; }.showcase-item { padding: 70px 0; }.showcase-copy h2 { margin-top: 27px; }.showcase-copy li { font-size: 12px; }.module-faq { padding-top: 70px; padding-bottom: 75px; }.faq-list summary { font-size: 14px; }.module-cta { padding: 42px 28px; } }

@media (max-width: 760px) {
  .custom { grid-template-columns: 1fr; gap: 20px; }
  .custom-side { min-height: 118px; }
  .custom-number { right: -7px; bottom: -42px; }
}


/* Module comparison */
.breadcrumb { width: min(1420px, calc(100% - 48px)); margin: 30px auto -38px; font: 700 11px 'Space Mono', monospace; text-transform: uppercase; letter-spacing: .04em; }
.breadcrumb ol { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.breadcrumb li + li:before { content: '/'; margin-right: 10px; color: var(--mint-deep); }
.breadcrumb a { color: var(--ink); }
.module-comparison { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 12vw, 190px); padding-top: 100px; padding-bottom: 110px; border-bottom: 1px solid var(--line); }
.comparison-heading > span { color: var(--mint-deep); font: 700 11px 'Space Mono', monospace; text-transform: uppercase; letter-spacing: .06em; }
.comparison-heading h2 { margin: 28px 0 18px; font-size: clamp(2.6rem, 4.4vw, 4.8rem); line-height: .98; letter-spacing: -.075em; }
.comparison-heading p { max-width: 380px; margin: 0; color: var(--muted); line-height: 1.7; }
.comparison-table-wrap { overflow-x: auto; border-top: 1px solid var(--line); }
.comparison-table-wrap table { width: 100%; min-width: 590px; border-collapse: collapse; text-align: left; }
.comparison-table-wrap th, .comparison-table-wrap td { padding: 18px 14px; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: middle; }
.comparison-table-wrap thead th { font: 700 10px 'Space Mono', monospace; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
.comparison-table-wrap tbody th { width: 48%; padding-left: 0; font-weight: 800; letter-spacing: -.02em; }
.comparison-table-wrap tbody td:last-child, .comparison-table-wrap thead th:last-child { color: var(--mint-deep); font-weight: 800; }
@media (max-width: 900px) { .module-comparison { grid-template-columns: 1fr; gap: 38px; } }
@media (max-width: 580px) { .breadcrumb { width: min(100% - 32px, 1420px); margin-top: 22px; margin-bottom: -20px; } .module-comparison { width: min(100% - 32px, 1420px); padding-top: 70px; padding-bottom: 75px; } .comparison-table-wrap { margin-right: -16px; } }


/* Keyboard focus */
:where(a, button, input, summary):focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--mint-deep);
}

/* Error pages */
.error-page {
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  padding: 96px 24px;
  background: var(--paper);
}
.error-card {
  width: min(100%, 820px);
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 8vw, 88px);
  border: 1px solid var(--ink);
  background: var(--mint);
}
.error-card::before,
.error-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(17, 19, 17, .24);
  border-radius: 50%;
  pointer-events: none;
}
.error-card::before { width: 520px; height: 520px; right: -240px; top: -245px; }
.error-card::after { width: 320px; height: 320px; right: -120px; top: -145px; }
.error-card > * { position: relative; z-index: 1; }
.error-code {
  margin: 0 0 26px;
  font: 700 12px "Space Mono", monospace;
  letter-spacing: .08em;
}
.error-card h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .88;
  letter-spacing: -.09em;
}
.error-card h1 em { font-family: Caveat, cursive; font-weight: 600; letter-spacing: -.05em; }
.error-card p {
  max-width: 460px;
  margin: 30px 0;
  font-size: 17px;
  line-height: 1.65;
}
.error-card .button { border: 1px solid var(--ink); }
@media (max-width: 640px) {
  .error-page { min-height: calc(100vh - 72px); padding: 32px 16px; }
  .error-card { padding: 38px 25px 42px; }
  .error-card p { font-size: 15px; }
}
