:root {
    --black: #000;
    --ink: #f7f7f4;
    --muted: #a6a6a6;
    --blue: #0757ff;
    --blue-deep: #063fb8;
    --panel: #1f1d1d;
    --panel-soft: #242222;
    --line: rgba(255, 255, 255, .16);
    --paper: #e7e7e7;
    --radius-lg: 10px;
    --radius-md: 8px;
    --font-display: "Michroma", "Trebuchet MS", sans-serif;
    --font-body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: var(--black);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.35;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.site-frame {
    width: min(100%, 374px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 13px 24px 150px;
    overflow: hidden;
}

.header {
    position: sticky;
    top: 10px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin-bottom: 17px;
    padding: 6px 8px 6px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(7, 7, 7, .78);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .32);
    backdrop-filter: blur(18px);
}

.brand {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
}

.nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    color: rgba(255, 255, 255, .72);
    background: linear-gradient(180deg, rgba(18, 18, 18, .985), rgba(9, 9, 9, .985));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
    backdrop-filter: blur(18px);
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-6px) scale(.98);
    transform-origin: top right;
    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility 0s linear .2s;
}

.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    white-space: nowrap;
    outline: none;
    overflow: hidden;
    isolation: isolate;
    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.nav a::before {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 6px;
    left: 12px;
    height: 1px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .2s ease, transform .2s ease;
}

.nav a::after {
    content: none;
}

.nav a:hover,
.nav a:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.nav a:hover::before,
.nav a:focus-visible::before {
    opacity: .72;
    transform: scaleX(1);
}

.nav a.is-active {
    color: #fff;
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .1);
}

.nav a.is-active::before {
    opacity: .78;
    transform: scaleX(1);
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 31px;
    height: 31px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.nav-toggle span {
    display: block;
    width: 13px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

.hero {
    position: relative;
    min-height: 177px;
    padding: 27px 18px 18px;
    overflow: hidden;
    background: #1e1d1d;
    border-radius: var(--radius-lg);
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 7px;
    font-weight: 700;
    color: #fff;
}

.hero h1,
.section h2,
.clients-head h2,
.section-plans > h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 220px;
    font-size: 24px;
    line-height: 1.19;
}

.hero__copy {
    width: 190px;
    margin: 15px 0 14px;
    color: #e4e4e4;
    font-size: 6.6px;
    line-height: 1.55;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 0 16px;
    color: #fff;
    background: var(--blue);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-1px);
    background: #1b67ff;
}

.button--blue {
    min-width: 93px;
}

.pinwheel {
    position: absolute;
    display: block;
    width: 112px;
    height: 112px;
    pointer-events: none;
}

.pinwheel i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54%;
    height: 20%;
    background: var(--blue-deep);
    clip-path: polygon(0 35%, 63% 35%, 63% 0, 100% 50%, 63% 100%, 63% 65%, 0 65%);
    transform: rotate(calc(var(--i) * 45deg));
    transform-origin: 0 50%;
}

.hero__mark {
    position: absolute;
    display: block;
    right: -16px;
    bottom: -1px;
    width: 112px;
    height: auto;
    pointer-events: none;
    transform: rotate(18deg);
}

.partner-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
}

.partner-strip__logos {
    display: block;
    width: min(100%, 260px);
    height: auto;
    opacity: .96;
}

.mini-logo {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 26px;
}

.mini-logo--lines::before,
.logo-lines::before {
    content: "";
    position: absolute;
    inset: 3px 0 0 0;
    background:
        linear-gradient(135deg, transparent 0 29%, #fff 30% 34%, transparent 35% 100%),
        linear-gradient(135deg, transparent 0 42%, #fff 43% 47%, transparent 48% 100%),
        linear-gradient(135deg, transparent 0 55%, #fff 56% 60%, transparent 61% 100%),
        linear-gradient(135deg, transparent 0 68%, #fff 69% 73%, transparent 74% 100%);
}

.mini-logo--orbit {
    border-radius: 50%;
    background:
        repeating-linear-gradient(24deg, #fff 0 3px, transparent 3px 6px),
        radial-gradient(circle at 47% 52%, transparent 0 28%, #fff 29% 33%, transparent 34%);
    transform: rotate(24deg);
}

.mini-logo--angle::before,
.logo-angle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 77% 31%, 52% 31%, 83% 100%, 39% 100%, 0 7%);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 44px;
}

.feature-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 176px;
    padding: 22px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 34%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 16px);
    opacity: .42;
}

.feature-card > :not(.feature-card__number) {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .28);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.feature-card__number {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 0;
    color: currentColor;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    opacity: .14;
    pointer-events: none;
}

.feature-card__kicker {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.feature-card h2 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.feature-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.52;
}

.feature-card br {
    display: none;
}

.feature-card--blue {
    background: linear-gradient(145deg, #0d63ff 0%, var(--blue) 52%, #0344d6 100%);
    color: #fff;
}

.feature-card--speakers {
    min-height: 340px;
}

.feature-card--light {
    color: #111;
    background: linear-gradient(145deg, #f0f0ed 0%, #d9d9d6 100%);
    border-color: rgba(0, 0, 0, .08);
}

.feature-card--light::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .72), transparent 32%),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, .08) 0 1px, transparent 1px 16px);
    opacity: .52;
}

.feature-card--light:hover {
    border-color: rgba(0, 0, 0, .18);
}

.feature-card--light .feature-card__kicker {
    color: rgba(0, 0, 0, .52);
}

.feature-card > p {
    max-width: 35rem;
    margin-top: 22px;
}

.feature-card__intro {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.feature-card__intro p {
    max-width: 24rem;
}

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--blue);
    background: #f1f1ef;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.feature-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 28px;
}

.avatar-stack {
    display: flex;
    flex: 0 0 auto;
}

.avatar-stack span {
    width: 30px;
    height: 30px;
    margin-left: -10px;
    border: 2px solid var(--blue, #0757ff);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.avatar-stack span:first-child {
    margin-left: 0;
    background-image: url("../img/avatar1.png");
}

.avatar-stack span:nth-child(2) {
    background-image: url("../img/avatar2.png");
}

.avatar-stack span:nth-child(3) {
    background-image: url("../img/avatar3.png");
}

.avatar-stack span:nth-child(4) {
    background-image: url("../img/avatar4.png");
}

.pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 82px;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.pill-link:hover,
.pill-link:focus-visible {
    color: var(--blue);
    background: #fff;
    transform: translateY(-1px);
}

.pill-link span {
    font-size: 1.18em;
}

.section {
    margin-top: 0;
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 17px;
}

.section-head h2,
.clients-head h2,
.section-plans > h2 {
    font-size: 22px;
    line-height: 1.08;
}

.section-head p {
    width: 97px;
    margin: 3px 0 0;
    color: #b8b8b8;
    font-size: 5.8px;
    line-height: 1.45;
}

.section-head--sites {
    align-items: flex-end;
    margin-bottom: 14px;
}

.section-head--sites > div:first-child {
    min-width: 0;
}

.section-head--sites h2 {
    margin-bottom: 6px;
}

.section-head--sites p {
    width: auto;
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.site-controls {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
}

.site-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    font-size: 17px;
    line-height: 1;
    transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.site-controls button:hover,
.site-controls button:focus-visible {
    color: #111;
    background: #fff;
    border-color: #fff;
    transform: translateY(-1px);
}

.site-carousel {
    margin-inline: -2px;
    overflow: hidden;
}

.site-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(246px, 86%);
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.site-track::-webkit-scrollbar {
    display: none;
}

.site-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 185px;
    padding: 18px;
    overflow: hidden;
    color: #fff;
    background: #1f1b1c;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    scroll-snap-align: start;
    transition: border-color .24s ease, background .24s ease, transform .24s ease;
}

.site-card:hover {
    border-color: rgba(255, 255, 255, .24);
    background: #242021;
    transform: translateY(-2px);
}

.site-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.site-card__logo {
    display: block;
    flex: 0 0 auto;
    background-image: url("../img/Logos.png");
    background-repeat: no-repeat;
    background-size: 360px 60px;
    mix-blend-mode: screen;
}

.logo-chordpad {
    width: 62px;
    height: 60px;
    background-position: 0 0;
}

.logo-rendanet {
    width: 64px;
    height: 58px;
    background-position: -168px 0;
}

.logo-future {
    width: 48px;
    height: 58px;
    background-position: -316px 0;
}

.site-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #111;
    background: #fff;
    border-radius: 50%;
    font-size: 13px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .2s ease, transform .2s ease;
}

.site-card:hover .site-card__arrow,
.site-card:focus-within .site-card__arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.site-card h3 {
    margin: 0 0 9px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.16;
}

.site-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 8px;
    line-height: 1.55;
}

.site-card--cta {
    justify-content: space-between;
    isolation: isolate;
    background: var(--blue);
    border-color: rgba(255, 255, 255, .16);
}

.site-card--cta:hover {
    background: var(--blue);
    border-color: rgba(255, 255, 255, .28);
}

.site-card--cta::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(0, 0, 0, .06);
    pointer-events: none;
}

.site-card__mark {
    position: absolute;
    right: -42px;
    bottom: -34px;
    z-index: -1;
    width: 178px;
    height: auto;
    opacity: .28;
    filter: brightness(0) invert(1);
    transform: rotate(-5deg);
    pointer-events: none;
}

.site-card__cta-copy {
    position: relative;
    z-index: 1;
}

.site-card__eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-card--cta p {
    position: relative;
    z-index: 1;
    max-width: 205px;
    color: rgba(255, 255, 255, .78);
}

.site-card__button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: min(100%, 220px);
    min-height: 30px;
    margin-top: 18px;
    color: var(--blue);
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    transition: transform .2s ease, filter .2s ease;
}

.site-card__button:hover,
.site-card__button:focus-visible {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.section-visite {
    position: relative;
    margin-top: 45px;
    padding-bottom: 4px;
}

.section-head--visite {
    position: relative;
    align-items: center;
}

.section-head--visite::before {
    content: "";
    order: 2;
    flex: 1;
    height: 1px;
    margin: 0 28px;
    background: rgba(255, 255, 255, .08);
}

.section-head--visite h2 {
    order: 1;
    flex: 0 0 auto;
}

.section-head--visite p {
    order: 3;
    flex: 0 0 auto;
    width: auto;
    color: #fff;
    text-align: right;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.visit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 158px;
    padding: 18px 15px;
    overflow: hidden;
    border-radius: 18px;
    color: #202020;
    background: #dedede;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
    transition: border-color .24s ease, background-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.visit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .32);
}

.visit-card--plain:hover {
    background: #ededed;
}

.visit-card__title {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.22;
}

.visit-card__meta {
    position: relative;
    z-index: 1;
    color: #242424;
    font-size: 9px;
    line-height: 1.45;
}

.visit-card--image {
    padding: 0;
    display: block;
    isolation: isolate;
    cursor: pointer;
    background: #070707;
    border-color: rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.visit-card__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) saturate(0) brightness(.84) contrast(1.08);
    transform: scale(1.02);
    transition: filter .46s ease, opacity .46s ease, transform .46s ease;
    will-change: filter, transform;
    z-index: 0;
}

.visit-card--image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .14);
    pointer-events: none;
    transition: opacity .34s ease;
}

.visit-card--image:hover .visit-card__image {
    filter: grayscale(0) saturate(1.08) brightness(1) contrast(1.02);
    transform: scale(1.075);
}

.visit-card--image:hover::before {
    opacity: 0;
}

.visit-card--image:hover {
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .38), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.visit-card--image::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: inherit;
    pointer-events: none;
    transition: inset .28s ease, border-color .28s ease;
}

.visit-card--image:hover::after {
    inset: 14px;
    border-color: rgba(255, 255, 255, .42);
}

.visit-card--person {
    color: #111;
    background: #d8d8d8;
}

.visit-card--person::before {
    content: "";
    position: absolute;
    left: 24%;
    right: 24%;
    bottom: 0;
    height: 74%;
    background: #777;
    border-radius: 999px 999px 0 0;
    transform: skewX(-10deg);
}

.visit-card--person::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 22%;
    width: 44%;
    aspect-ratio: 1;
    background: #171717;
    border-radius: 50%;
    box-shadow: -8px 42px 0 -3px #111, -2px 72px 0 0 #c8c8c8;
    transform: translateX(-50%);
}

.outline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
    min-height: 34px;
    margin-top: 24px;
    border: 1px solid rgba(255,255,255,.95);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
}

.section-benefits {
    margin-top: 56px;
    padding-top: 22px;
}

.section-head--benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.section-head--benefits h2 {
    font-size: 31px;
    line-height: 1;
    white-space: nowrap;
}

.section-head--benefits p {
    width: min(100%, 280px);
    margin: 0;
    color: #ededed;
    font-size: 12px;
    line-height: 1.5;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.benefit-card {
    position: relative;
    min-height: 230px;
    padding: 34px 28px;
    overflow: hidden;
    background: #1f1c1d;
    border-radius: 34px;
}

.benefit-card h3 {
    position: relative;
    z-index: 1;
    max-width: 260px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.benefit-card__copy {
    position: relative;
    z-index: 1;
    width: min(100%, 200px);
    margin: 56px 0 0 auto;
}

.benefit-card__copy p {
    margin: 0;
    color: #eeeeee;
    font-size: 12px;
    line-height: 1.62;
}

.benefit-card__number {
    position: absolute;
    left: 24px;
    bottom: -16px;
    z-index: 0;
    display: block;
    width: 168px;
    max-width: none;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.benefit-card--two .benefit-card__number,
.benefit-card--three .benefit-card__number {
    width: 210px;
}

.benefit-card--four .benefit-card__number {
    width: 226px;
}

.benefit-card--three h3,
.benefit-card--four h3 {
    margin-left: auto;
    text-align: right;
}

.benefit-card--three .benefit-card__copy,
.benefit-card--four .benefit-card__copy {
    margin-right: auto;
    margin-left: 0;
}

.benefit-card--three .benefit-card__number,
.benefit-card--four .benefit-card__number {
    right: 24px;
    left: auto;
}

.section-clients {
    margin-top: 64px;
    padding-top: 20px;
}

.clients-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.clients-head h2 {
    font-size: 28px;
}

.client-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    flex: 0 0 auto;
}

.client-pagination__status {
    display: none;
    align-items: center;
    min-width: 46px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 10px;
    line-height: 1;
}

.client-pagination__status span:not(:first-child) {
    color: rgba(255, 255, 255, .38);
}

.slider-controls {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.slider-controls button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    font-size: 0;
    font-weight: 500;
    line-height: 1;
    outline: none;
    box-shadow: inset 0 0 0 1px transparent;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.slider-controls button::before,
.slider-controls button::after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 999px;
}

.slider-controls button::before {
    width: 18px;
    height: 2px;
    background: currentColor;
}

.slider-controls button::after {
    width: 8px;
    height: 8px;
    background: transparent;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 1px;
}

.slider-controls button[data-client-slide="prev"]::after {
    transform: translateX(-5px) rotate(225deg);
}

.slider-controls button[data-client-slide="prev"]::before {
    transform: translateX(1px);
}

.slider-controls button[data-client-slide="next"]::after {
    transform: translateX(5px) rotate(45deg);
}

.slider-controls button[data-client-slide="next"]::before {
    transform: translateX(-1px);
}

.slider-controls button:last-child {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .9);
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
    transform: translateY(-1px);
}

.slider-controls button:first-child:hover,
.slider-controls button:first-child:focus-visible {
    color: #111;
    background: #fff;
    border-color: #fff;
}

.slider-controls button:last-child:hover,
.slider-controls button:last-child:focus-visible {
    background: #1b67ff;
    border-color: #1b67ff;
}

.client-pagination__dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.client-pagination__dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    background: rgba(255, 255, 255, .24);
    border: 0;
    border-radius: 999px;
    transition: width .22s ease, background-color .22s ease, transform .22s ease;
}

.client-pagination__dots button:hover,
.client-pagination__dots button:focus-visible {
    background: rgba(255, 255, 255, .62);
    transform: scale(1.12);
}

.client-pagination__dots button.is-active {
    width: 22px;
    background: var(--blue);
}

.client-track {
    --client-card-w: min(82vw, 326px);
    position: relative;
    height: 370px;
    overflow: visible;
    outline: none;
}

.client-card {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    width: var(--client-card-w);
    height: 332px;
    padding: 30px 26px 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(.9);
    transition:
        transform .48s cubic-bezier(.2, .75, .24, 1),
        opacity .32s ease,
        background-color .32s ease,
        color .32s ease;
}

.client-card__index {
    margin-bottom: 22px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1;
}

.client-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.client-card p {
    margin: 36px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.client-card.is-active,
.client-card.is-prev,
.client-card.is-next {
    opacity: 1;
    pointer-events: auto;
}

.client-card.is-prev,
.client-card.is-next {
    cursor: pointer;
}

.client-card.is-active {
    z-index: 3;
    color: #fff;
    background: #070707;
    border-color: rgba(7, 87, 255, .9);
    box-shadow: inset 0 4px 0 var(--blue);
    transform: translateX(-50%) scale(1);
}

.client-card.is-prev {
    z-index: 2;
    color: rgba(255, 255, 255, .46);
    background: #111;
    border-color: rgba(255, 255, 255, .1);
    transform: translateX(calc(-50% - (var(--client-card-w) * .76))) scale(.9);
}

.client-card.is-next {
    z-index: 1;
    color: #111;
    background: #e7e7e8;
    border-color: #e7e7e8;
    transform: translateX(calc(-50% + (var(--client-card-w) * .76))) scale(.9);
}

.client-card.is-next .client-card__index {
    color: #111;
    opacity: .45;
}

.client-card.is-prev h3,
.client-card.is-prev p,
.client-card.is-prev .client-meta {
    opacity: .62;
}

.client-card.is-prev p,
.client-card.is-next p {
    display: none;
}

.client-card.is-prev .client-meta small,
.client-card.is-next .client-meta small {
    display: none;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.client-avatar {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: #d8d8d8;
}

.client-avatar::before,
.client-avatar::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.client-avatar::before {
    top: 18%;
    width: 36%;
    height: 36%;
    border-radius: 50%;
    background: #d2a07c;
}

.client-avatar::after {
    bottom: -8%;
    width: 58%;
    height: 44%;
    border-radius: 999px 999px 0 0;
    background: #f4f4f4;
}

.client-avatar--mark {
    background:
        radial-gradient(circle at 50% 26%, #5a3527 0 24%, transparent 25%),
        linear-gradient(135deg, #bfd1d2 0%, #7b8f91 100%);
}

.client-avatar--mark::before {
    background: #d1a282;
}

.client-avatar--mark::after {
    background: #232323;
}

.client-avatar--elena {
    background:
        radial-gradient(circle at 50% 24%, #3b241b 0 28%, transparent 29%),
        linear-gradient(135deg, #ffd9cf 0%, #f1ad9f 100%);
}

.client-avatar--elena::before {
    background: #e0aa84;
}

.client-avatar--elena::after {
    background: #fff0e6;
}

.client-avatar--david {
    background:
        radial-gradient(circle at 50% 20%, #47352d 0 22%, transparent 23%),
        linear-gradient(135deg, #dbefe9 0%, #cadad6 100%);
}

.client-avatar--david::before {
    background: #bd815f;
}

.client-avatar--david::after {
    background: #fff;
}

.client-person {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.client-meta strong {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}

.client-meta small {
    font-size: 13px;
    line-height: 1.3;
}

.client-card.is-hidden {
    transform: translateX(calc(-50% + (var(--client-card-w) * 1.5))) scale(.86);
}

.section-contact {
    margin-top: 76px;
}

.contact-header {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.contact-kicker {
    width: max-content;
    padding: 7px 10px;
    color: var(--blue);
    border: 1px solid rgba(7, 87, 255, .48);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 8px;
    line-height: 1;
}

.contact-header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 10vw, 42px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .98;
    text-transform: uppercase;
}

.contact-header p {
    max-width: 285px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.45;
}

.contact-panel {
    position: relative;
    display: grid;
    gap: 28px;
    overflow: hidden;
    padding: 24px;
    background: #030303;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
}

.contact-panel::before,
.contact-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.contact-panel::before {
    top: 0;
    right: 24px;
    left: 24px;
    height: 1px;
    background: var(--blue);
}

.contact-panel::after {
    right: -42px;
    bottom: -42px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(7, 87, 255, .58);
    border-radius: 50%;
}

.contact-panel__intro {
    position: relative;
    z-index: 1;
}

.contact-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1;
}

.contact-status i {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(7, 87, 255, .12);
}

.contact-panel h3 {
    max-width: 520px;
    margin: 24px 0 0;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.16;
    text-transform: uppercase;
}

.contact-panel__intro > p {
    max-width: 410px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.56;
}

.contact-links {
    display: grid;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 54px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-links span,
.contact-field span {
    color: rgba(255, 255, 255, .46);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.contact-links strong {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    text-align: right;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    color: #fff;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    outline: none;
    font-size: 14px;
    transition: border-color .2s ease, background-color .2s ease;
}

.contact-field select {
    appearance: none;
}

.contact-field textarea {
    min-height: 112px;
    padding-top: 14px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    background: #0d0d0d;
    border-color: rgba(7, 87, 255, .75);
}

.contact-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 220px);
    min-height: 50px;
    margin-top: 6px;
    padding: 0 12px 0 20px;
    color: #fff;
    background: var(--blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.contact-submit span {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: #111;
    background: #fff;
    border-radius: 50%;
    font-size: 0;
}

.contact-submit span::before,
.contact-submit span::after {
    content: "";
    position: absolute;
    display: block;
}

.contact-submit span::before {
    top: 12px;
    left: 8px;
    width: 11px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: rotate(-45deg);
}

.contact-submit span::after {
    top: 8px;
    left: 12px;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    background: #1b67ff;
}

.section-plans {
    margin-top: 72px;
    padding-top: 28px;
}

.section-plans > h2 {
    margin-bottom: 34px;
    font-size: 28px;
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 348px;
    padding: 26px;
    overflow: hidden;
    color: #fff;
    background: #030303;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    transition:
        transform .22s ease,
        border-color .22s ease,
        background-color .22s ease,
        color .22s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .42);
}

.plan-card--primary {
    background: #030303;
    border-color: var(--blue);
}

.plan-card::before,
.plan-card::after {
    content: "";
    position: absolute;
    top: 52%;
    width: 28px;
    height: 28px;
    background: var(--black);
    border-radius: 50%;
    transform: translateY(-50%);
}

.plan-card::before {
    left: -15px;
}

.plan-card::after {
    right: -15px;
}

.plan-card--primary::before,
.plan-card--primary::after {
    box-shadow: 0 0 0 1px var(--blue);
}

.plan-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px dashed rgba(255, 255, 255, .2);
}

.plan-card__top span,
.plan-card__top small {
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.plan-card__top span {
    color: var(--blue);
}

.plan-card__top small {
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
}

.plan-card h3 {
    max-width: 280px;
    margin: 32px 0 0;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.plan-card p {
    max-width: 260px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.5;
}

.plan-card__footer {
    display: grid;
    gap: 18px;
    align-items: start;
    margin-top: auto;
}

.plan-card strong {
    display: block;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: .95;
}

.plan-button {
    justify-content: space-between;
    width: min(100%, 194px);
    min-width: 0;
    min-height: 46px;
    padding: 0 12px 0 20px;
    gap: 12px;
    color: #fff;
    background: var(--blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
}

.plan-button span {
    position: relative;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #111;
    background: #fff;
    border-radius: 50%;
    font-size: 0;
    line-height: 1;
}

.plan-button span::before,
.plan-button span::after {
    content: "";
    position: absolute;
    display: block;
    background: currentColor;
}

.plan-button span::before {
    width: 10px;
    height: 2px;
    border-radius: 999px;
    transform: rotate(-45deg);
}

.plan-button span::after {
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    background: transparent;
    transform: translate(2px, -2px);
}

.plan-card--primary .plan-card__top {
    border-bottom-color: rgba(7, 87, 255, .75);
}

.plan-card--primary .plan-button {
    color: #111;
    background: #fff;
}

.plan-card--primary .plan-button span {
    color: #fff;
    background: var(--blue);
}

.plan-card--primary .plan-button:hover,
.plan-card--primary .plan-button:focus-visible {
    background: #ededed;
}

.plan-card:not(.plan-card--primary) .plan-button:hover,
.plan-card:not(.plan-card--primary) .plan-button:focus-visible {
    color: #fff;
    background: #1b67ff;
    border-color: #1b67ff;
}

.section-plans .footer-cards {
    display: none;
}

.footer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
}

.address-card,
.newsletter-card {
    min-height: 122px;
    padding: 17px 15px;
    border-radius: var(--radius-md);
}

.address-card {
    color: #111;
    background: var(--paper);
}

.address-card h3,
.newsletter-card h3 {
    margin: 0 0 16px;
    font-size: 6.8px;
    line-height: 1.4;
    text-transform: uppercase;
}

.address-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    margin: 0 0 14px;
}

.address-card div {
    min-width: 0;
}

.address-card dt {
    margin-bottom: 3px;
    color: #6a6a6a;
    font-size: 5.2px;
}

.address-card dd {
    margin: 0;
    font-size: 5.7px;
    font-weight: 700;
}

.address-card small {
    font-size: 5.2px;
}

.newsletter-card {
    color: #fff;
    background: var(--blue);
}

.newsletter-card p {
    margin: 0 0 18px;
    font-size: 5.7px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    align-items: center;
    width: 70px;
    height: 20px;
    padding: 2px;
    background: #fff;
    border-radius: 999px;
}

.newsletter-form input {
    width: 47px;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 6px;
    color: #111;
    font-size: 5.2px;
    background: transparent;
}

.newsletter-form button {
    width: 16px;
    height: 16px;
    color: #fff;
    background: #111;
    border-radius: 50%;
    font-size: 8px;
}

.socials {
    display: flex;
    gap: 6px;
    margin-top: 15px;
}

.socials a {
    font-size: 5.5px;
    font-weight: 800;
}

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

.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    max-width: 220px;
    padding: 10px 12px;
    color: #111;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    font-size: 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 360px) {
    .site-frame {
        padding-inline: 18px;
    }

    .nav {
        gap: 5px;
    }

    .feature-card {
        padding-inline: 11px;
    }

}

@media (max-width: 759px) {
    .client-track {
        overflow: hidden;
    }

    .client-card.is-prev {
        opacity: .5;
        transform: translateX(calc(-50% - (var(--client-card-w) * .82))) scale(.9);
    }

    .client-card.is-next {
        opacity: .5;
        transform: translateX(calc(-50% + (var(--client-card-w) * .82))) scale(.9);
    }

    .client-card.is-prev h3,
    .client-card.is-prev p,
    .client-card.is-prev .client-meta,
    .client-card.is-next h3,
    .client-card.is-next p,
    .client-card.is-next .client-meta {
        opacity: .22;
    }
}

@media (max-width: 318px) {
    .header {
        padding-left: 12px;
    }

    .nav {
        grid-template-columns: 1fr;
    }

    .nav a {
        justify-content: flex-start;
    }
}

@media (min-width: 760px) {
    body {
        font-size: 16px;
    }

    .site-frame {
        width: 100%;
        max-width: none;
        padding: 32px clamp(40px, 6vw, 128px) 180px;
    }

    .header {
        min-height: 48px;
        margin-bottom: 40px;
        padding: 0;
    }

    .brand {
        font-size: clamp(17px, 1.3vw, 24px);
    }

    .nav {
        gap: clamp(18px, 2.1vw, 40px);
        font-size: clamp(10px, .68vw, 13px);
    }

    .nav a {
        min-height: 31px;
        padding: 7px 13px;
        border-radius: 999px;
    }

    .hero {
        min-height: clamp(520px, 62vh, 760px);
        padding: clamp(64px, 6vw, 104px);
        border-radius: 18px;
    }

    .eyebrow {
        margin-bottom: clamp(28px, 3vw, 48px);
        font-size: clamp(13px, .9vw, 17px);
    }

    .hero h1 {
        max-width: min(980px, 62vw);
        font-size: clamp(58px, 6.2vw, 118px);
        line-height: 1.08;
    }

    .hero__copy {
        width: min(600px, 44vw);
        margin: clamp(32px, 3vw, 48px) 0 34px;
        font-size: clamp(14px, .95vw, 18px);
        line-height: 1.55;
    }

    .button {
        min-height: 48px;
        padding: 0 34px;
        font-size: clamp(12px, .8vw, 15px);
    }

    .button--blue {
        min-width: 220px;
    }

    .pinwheel {
        width: clamp(300px, 24vw, 500px);
        height: clamp(300px, 24vw, 500px);
    }

    .hero__mark {
        right: clamp(18px, 5vw, 100px);
        bottom: clamp(-90px, -5vw, -30px);
    }

    .partner-strip {
        height: clamp(128px, 12vw, 190px);
    }

    .partner-strip__logos {
        width: min(561px, 46vw);
    }

    .mini-logo {
        width: clamp(60px, 5vw, 95px);
        height: clamp(50px, 4.2vw, 78px);
    }

    .mini-logo--orbit {
        background:
            repeating-linear-gradient(24deg, #fff 0 7px, transparent 7px 14px),
            radial-gradient(circle at 47% 52%, transparent 0 28%, #fff 29% 33%, transparent 34%);
    }

    .feature-grid {
        grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
        grid-template-rows: minmax(260px, 1fr) minmax(250px, .92fr);
        min-height: clamp(610px, 43vw, 760px);
        gap: clamp(18px, 1.4vw, 28px);
        margin-bottom: clamp(96px, 9vw, 150px);
    }

    .feature-card,
    .feature-card--light {
        min-height: 0;
        margin-top: 0;
        padding: clamp(38px, 3.3vw, 64px) clamp(34px, 3vw, 58px);
        border-radius: clamp(22px, 2.2vw, 38px);
    }

    .feature-card--speakers {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .feature-card--technologies {
        grid-column: 2;
        grid-row: 1;
    }

    .feature-card--light {
        grid-column: 2;
        grid-row: 2;
    }

    .feature-card__number {
        top: clamp(26px, 2.4vw, 44px);
        right: clamp(28px, 2.6vw, 48px);
        font-size: clamp(56px, 5.4vw, 104px);
    }

    .feature-card__kicker {
        margin-bottom: clamp(14px, 1.3vw, 24px);
        font-size: clamp(12px, .78vw, 15px);
    }

    .feature-card h2 {
        max-width: 780px;
        font-size: clamp(34px, 3vw, 60px);
        line-height: 1.02;
    }

    .feature-card p {
        max-width: none;
        font-size: clamp(16px, 1.16vw, 22px);
        line-height: 1.52;
    }

    .feature-card br {
        display: none;
    }

    .feature-card--technologies > p {
        max-width: min(760px, 82%);
        margin-top: clamp(36px, 3vw, 56px);
    }

    .feature-card--light > p {
        max-width: min(760px, 86%);
        margin-top: clamp(32px, 2.8vw, 52px);
    }

    .feature-card__intro {
        grid-template-columns: clamp(58px, 5vw, 92px) minmax(0, 1fr);
        gap: clamp(22px, 3vw, 56px);
        margin-top: clamp(44px, 4vw, 78px);
    }

    .feature-card__intro p {
        max-width: 420px;
    }

    .feature-card__icon {
        width: clamp(58px, 5vw, 92px);
        height: clamp(58px, 5vw, 92px);
        font-size: clamp(26px, 2.4vw, 44px);
    }

    .feature-card__footer {
        justify-content: space-between;
        gap: clamp(28px, 3vw, 56px);
        padding-top: clamp(42px, 4vw, 72px);
    }

    .avatar-stack span {
        width: clamp(42px, 4.1vw, 76px);
        height: clamp(42px, 4.1vw, 76px);
        margin-left: clamp(-31px, -1.7vw, -14px);
        border-width: clamp(2.5px, 0.3vw, 5px);
    }

    .pill-link {
        min-width: clamp(128px, 10vw, 190px);
        min-height: clamp(44px, 3.5vw, 64px);
        padding: 0 clamp(18px, 1.6vw, 30px);
        gap: clamp(8px, .9vw, 16px);
        font-size: clamp(14px, 1.05vw, 20px);
        text-align: center;
    }

    .section-head {
        gap: 60px;
        margin-bottom: 44px;
    }

    .section-head h2,
    .clients-head h2,
    .section-plans > h2 {
        font-size: clamp(52px, 5.8vw, 104px);
        line-height: 1.02;
    }

    .section-head p {
        width: min(360px, 24vw);
        margin-top: 14px;
        font-size: clamp(13px, .85vw, 16px);
    }

    .section-head--sites {
        align-items: flex-end;
        margin-bottom: 28px;
    }

    .section-head--sites h2 {
        margin-bottom: 10px;
        font-size: clamp(36px, 3vw, 56px);
    }

    .section-head--sites p {
        color: rgba(255, 255, 255, .62);
        font-size: clamp(13px, .85vw, 16px);
    }

    .site-controls {
        gap: 9px;
    }

    .site-controls button {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .site-carousel {
        margin-inline: 0;
    }

    .site-track {
        grid-auto-columns: minmax(330px, 32%);
        gap: 16px;
        padding: 2px 2px 12px;
    }

    .site-card {
        min-height: clamp(270px, 19vw, 330px);
        padding: clamp(26px, 2.2vw, 38px);
        border-radius: 24px;
    }

    .site-card__logo {
        background-size: 674px 113px;
    }

    .logo-chordpad {
        width: 114px;
        height: 113px;
        background-position: 0 0;
    }

    .logo-rendanet {
        width: 116px;
        height: 103px;
        background-position: -312px 0;
    }

    .logo-future {
        width: 86px;
        height: 103px;
        background-position: -592px 0;
    }

    .site-card__arrow {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .site-card h3 {
        margin-bottom: 16px;
        font-size: clamp(24px, 1.75vw, 32px);
    }

    .site-card p {
        font-size: clamp(13px, .88vw, 16px);
        line-height: 1.5;
    }

    .site-card__mark {
        right: clamp(-80px, -4.6vw, -52px);
        bottom: clamp(-76px, -4.2vw, -46px);
        width: clamp(240px, 17vw, 310px);
    }

    .site-card__eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .site-card--cta p {
        max-width: 320px;
    }

    .site-card__button {
        width: min(100%, 280px);
        min-height: 48px;
        margin-top: 26px;
        font-size: 14px;
    }

    .section-head--visite {
        display: grid;
        grid-template-columns: auto minmax(180px, 1fr) auto;
        align-items: center;
        gap: clamp(56px, 4.8vw, 82px);
        margin-bottom: clamp(108px, 8.6vw, 148px);
    }

    .section-head--visite::before {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        margin: 0;
        background: rgba(255, 255, 255, .12);
    }

    .section-head--visite h2 {
        grid-column: 1;
        grid-row: 1;
        font-size: clamp(80px, 6.5vw, 112px);
    }

    .section-head--visite p {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        margin: 0;
        color: #fff;
        font-size: clamp(18px, 1.35vw, 24px);
        line-height: 1.2;
        white-space: nowrap;
    }

    .section-visite,
    .section-benefits,
    .section-clients {
        margin-top: clamp(110px, 11vw, 180px);
    }

    .section-benefits {
        padding-top: clamp(48px, 3.25vw, 66px);
        padding-inline: clamp(18px, 1.18vw, 24px);
    }

    .section-head--benefits {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 21vw);
        align-items: start;
        gap: clamp(80px, 8vw, 150px);
        margin-bottom: clamp(126px, 8.1vw, 166px);
    }

    .section-head--benefits h2 {
        font-size: clamp(78px, 5.9vw, 121px);
        line-height: .96;
    }

    .section-head--benefits p {
        width: auto;
        margin: 6px 0 0;
        font-size: clamp(19px, 1.35vw, 28px);
        line-height: 1.48;
    }

    .section-visite {
        padding-bottom: 48px;
    }

    .visit-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(18px, 1.45vw, 26px);
    }

    .visit-card {
        min-height: clamp(360px, 27vw, 468px);
        padding: clamp(42px, 3vw, 54px);
        border-radius: clamp(42px, 3.2vw, 56px);
    }

    .visit-card__title {
        font-size: clamp(28px, 2vw, 34px);
        line-height: 1.22;
    }

    .visit-card__meta {
        font-size: clamp(17px, 1.2vw, 21px);
        line-height: 1.5;
    }

    .outline-link {
        min-width: clamp(220px, 16vw, 260px);
        min-height: clamp(58px, 4.6vw, 74px);
        margin-top: clamp(56px, 4.8vw, 82px);
        gap: clamp(18px, 1.3vw, 24px);
        font-size: clamp(20px, 1.5vw, 26px);
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(20px, 1.45vw, 30px);
    }

    .benefit-card {
        min-height: clamp(320px, 20vw, 408px);
        padding: clamp(54px, 3.35vw, 69px) clamp(62px, 4.25vw, 87px);
        border-radius: clamp(48px, 3.35vw, 68px);
    }

    .benefit-card h3 {
        max-width: none;
        font-size: clamp(20px, 1.18vw, 24px);
        line-height: 1.16;
    }

    .benefit-card__copy {
        position: absolute;
        top: clamp(142px, 8.65vw, 177px);
        right: clamp(42px, 2.8vw, 58px);
        width: min(38%, 330px);
        margin: 0;
    }

    .benefit-card__copy p {
        font-size: clamp(18px, 1.2vw, 25px);
        line-height: 1.62;
    }

    .benefit-card__number {
        left: clamp(36px, 2.05vw, 42px);
        bottom: clamp(-10px, -.4vw, -7px);
        width: clamp(264px, 16.6vw, 340px);
    }

    .benefit-card--two .benefit-card__number,
    .benefit-card--three .benefit-card__number {
        width: clamp(318px, 20.35vw, 417px);
    }

    .benefit-card--four .benefit-card__number {
        width: clamp(330px, 20.95vw, 429px);
    }

    .benefit-card--three h3,
    .benefit-card--four h3 {
        width: max-content;
        max-width: 100%;
        margin-right: 0;
        text-align: left;
    }

    .benefit-card--three .benefit-card__copy,
    .benefit-card--four .benefit-card__copy {
        right: auto;
        left: clamp(56px, 3vw, 62px);
        width: min(36%, 330px);
    }

    .benefit-card--three .benefit-card__number,
    .benefit-card--four .benefit-card__number {
        right: clamp(34px, 2.45vw, 50px);
        left: auto;
    }

    .section-clients {
        padding-top: clamp(46px, 3vw, 62px);
        padding-inline: clamp(12px, 1vw, 20px);
    }

    .clients-head {
        margin-bottom: clamp(76px, 5vw, 104px);
    }

    .clients-head h2 {
        font-size: clamp(56px, 3.8vw, 78px);
        line-height: 1;
    }

    .client-pagination {
        gap: clamp(18px, 1.2vw, 24px);
    }

    .client-pagination__status {
        display: inline-flex;
        justify-content: flex-end;
        font-size: clamp(13px, .8vw, 16px);
    }

    .section-plans > h2 {
        font-size: clamp(32px, 3vw, 56px);
    }

    .slider-controls {
        gap: clamp(14px, .9vw, 18px);
    }

    .slider-controls button {
        width: clamp(62px, 3.7vw, 76px);
        height: clamp(62px, 3.7vw, 76px);
        border-width: 2px;
        font-size: 0;
    }

    .slider-controls button::before {
        width: clamp(22px, 1.45vw, 30px);
        height: 2px;
    }

    .slider-controls button::after {
        width: clamp(9px, .62vw, 13px);
        height: clamp(9px, .62vw, 13px);
    }

    .client-pagination__dots {
        gap: clamp(8px, .55vw, 11px);
    }

    .client-pagination__dots button {
        width: clamp(7px, .45vw, 9px);
        height: clamp(7px, .45vw, 9px);
    }

    .client-pagination__dots button.is-active {
        width: clamp(28px, 1.7vw, 35px);
    }

    .client-track {
        --client-card-w: clamp(620px, 44vw, 900px);
        --client-side-w: clamp(260px, 18vw, 368px);
        height: clamp(430px, 26vw, 532px);
        overflow: visible;
    }

    .client-card {
        left: 0;
        width: var(--client-card-w);
        height: clamp(400px, 24vw, 492px);
        padding: clamp(56px, 3.3vw, 68px) clamp(60px, 4vw, 82px);
        border-radius: clamp(34px, 2.25vw, 46px);
    }

    .client-card__index {
        margin-bottom: clamp(34px, 2.4vw, 49px);
        font-size: clamp(14px, .8vw, 16px);
    }

    .client-card h3 {
        max-width: 610px;
        font-size: clamp(34px, 2.45vw, 50px);
        line-height: 1.06;
    }

    .client-card p {
        max-width: 760px;
        margin-top: clamp(46px, 2.75vw, 56px);
        font-size: clamp(23px, 1.38vw, 28px);
        line-height: 1.48;
    }

    .client-card.is-active {
        transform: translateX(calc((100vw - var(--client-card-w)) / 2 - clamp(72px, 7vw, 120px))) scale(1);
    }

    .client-card.is-prev {
        width: var(--client-side-w);
        height: clamp(260px, 16vw, 328px);
        padding: clamp(28px, 2vw, 40px);
        border-radius: clamp(24px, 1.75vw, 36px);
        transform: translateX(0) translateY(clamp(72px, 5vw, 102px)) scale(1);
    }

    .client-card.is-next {
        width: var(--client-side-w);
        height: clamp(260px, 16vw, 328px);
        padding: clamp(28px, 2vw, 40px);
        border-radius: clamp(24px, 1.75vw, 36px);
        transform: translateX(calc(100vw - var(--client-side-w) - clamp(144px, 14vw, 240px))) translateY(clamp(72px, 5vw, 102px)) scale(1);
    }

    .client-card.is-hidden {
        transform: translateX(calc(var(--client-card-w) * 2.58)) scale(.96);
    }

    .client-card.is-prev h3,
    .client-card.is-next h3 {
        max-width: 250px;
        font-size: clamp(19px, 1.08vw, 22px);
        line-height: 1.18;
    }

    .client-card.is-prev .client-card__index,
    .client-card.is-next .client-card__index {
        margin-bottom: clamp(28px, 2vw, 40px);
    }

    .client-card.is-prev .client-meta,
    .client-card.is-next .client-meta {
        align-items: center;
    }

    .client-card.is-prev .client-meta strong,
    .client-card.is-next .client-meta strong {
        max-width: 170px;
        font-size: clamp(16px, .95vw, 19px);
        line-height: 1.2;
    }

    .client-meta {
        gap: clamp(20px, 1.15vw, 24px);
    }

    .client-avatar {
        width: clamp(54px, 3.05vw, 62px);
        height: clamp(54px, 3.05vw, 62px);
    }

    .client-meta strong,
    .client-meta small {
        font-size: clamp(20px, 1.18vw, 24px);
        line-height: 1.28;
    }

    .section-contact {
        margin-top: clamp(110px, 9vw, 180px);
        padding-top: clamp(46px, 3vw, 62px);
        padding-inline: clamp(12px, 1vw, 20px);
    }

    .contact-header {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 24vw);
        align-items: start;
        gap: clamp(80px, 8vw, 150px);
        margin-bottom: clamp(58px, 5.2vw, 96px);
    }

    .contact-kicker {
        grid-column: 1 / -1;
        padding: 10px 14px;
        font-size: clamp(10px, .7vw, 13px);
    }

    .contact-header h2 {
        font-size: clamp(70px, 5.6vw, 116px);
        line-height: .94;
    }

    .contact-header p {
        max-width: 420px;
        margin-top: 8px;
        font-size: clamp(17px, 1.1vw, 22px);
        line-height: 1.45;
    }

    .contact-panel {
        grid-template-columns: minmax(0, .88fr) minmax(390px, .7fr);
        gap: clamp(54px, 4.6vw, 88px);
        min-height: clamp(450px, 30vw, 610px);
        padding: clamp(48px, 4.1vw, 82px);
        border-radius: clamp(30px, 2.5vw, 50px);
    }

    .contact-panel::before {
        right: clamp(48px, 4.1vw, 82px);
        left: clamp(48px, 4.1vw, 82px);
    }

    .contact-panel::after {
        right: clamp(-98px, -4vw, -54px);
        bottom: clamp(-98px, -4vw, -54px);
        width: clamp(210px, 16vw, 330px);
        height: clamp(210px, 16vw, 330px);
    }

    .contact-status {
        font-size: clamp(13px, .84vw, 16px);
    }

    .contact-panel h3 {
        max-width: 760px;
        margin-top: clamp(34px, 2.4vw, 48px);
        font-size: clamp(32px, 2.35vw, 48px);
        line-height: 1.1;
    }

    .contact-panel__intro > p {
        max-width: 600px;
        margin-top: clamp(22px, 1.6vw, 32px);
        font-size: clamp(17px, 1.08vw, 22px);
    }

    .contact-links {
        max-width: 620px;
        margin-top: clamp(44px, 3vw, 60px);
    }

    .contact-links a {
        min-height: clamp(62px, 4vw, 78px);
    }

    .contact-links span,
    .contact-field span {
        font-size: clamp(10px, .68vw, 13px);
    }

    .contact-links strong {
        font-size: clamp(15px, .95vw, 19px);
    }

    .contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: start;
        gap: clamp(16px, 1.2vw, 24px);
        padding-left: clamp(36px, 3.1vw, 62px);
        border-left: 1px solid rgba(255, 255, 255, .12);
    }

    .contact-field--wide {
        grid-column: 1 / -1;
    }

    .contact-field input,
    .contact-field select,
    .contact-field textarea {
        min-height: clamp(54px, 3.5vw, 68px);
        padding-inline: clamp(18px, 1.25vw, 26px);
        border-radius: clamp(16px, 1.2vw, 24px);
        font-size: clamp(14px, .9vw, 18px);
    }

    .contact-field textarea {
        min-height: clamp(118px, 8vw, 164px);
        padding-top: clamp(16px, 1.05vw, 22px);
    }

    .contact-submit {
        grid-column: 1 / -1;
        width: min(100%, clamp(240px, 15vw, 308px));
        min-height: clamp(54px, 3.4vw, 68px);
        padding: 0 clamp(13px, 1vw, 20px) 0 clamp(22px, 1.45vw, 30px);
        font-size: clamp(15px, .98vw, 19px);
    }

    .contact-submit span {
        flex-basis: clamp(26px, 1.65vw, 34px);
        width: clamp(26px, 1.65vw, 34px);
        height: clamp(26px, 1.65vw, 34px);
    }

    .section-plans {
        margin-top: clamp(82px, 7.5vw, 142px);
        padding-top: clamp(48px, 3vw, 64px);
        padding-inline: clamp(10px, 1vw, 20px);
    }

    .section-plans > h2 {
        margin-bottom: clamp(54px, 5vw, 92px);
        font-size: clamp(54px, 4vw, 82px);
        line-height: 1;
    }

    .plan-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(18px, 1.45vw, 30px);
    }

    .plan-card {
        min-height: clamp(430px, 26vw, 532px);
        padding: clamp(36px, 2.9vw, 58px);
        border-radius: clamp(30px, 2.5vw, 50px);
    }

    .plan-card::before,
    .plan-card::after {
        top: 56%;
        width: clamp(26px, 1.9vw, 38px);
        height: clamp(26px, 1.9vw, 38px);
    }

    .plan-card::before {
        left: clamp(-20px, -1vw, -13px);
    }

    .plan-card::after {
        right: clamp(-20px, -1vw, -13px);
    }

    .plan-card__top {
        padding-bottom: clamp(22px, 1.6vw, 32px);
    }

    .plan-card__top span,
    .plan-card__top small {
        font-size: clamp(10px, .72vw, 14px);
    }

    .plan-card h3 {
        max-width: 430px;
        margin-top: clamp(34px, 2.4vw, 48px);
        font-size: clamp(28px, 1.9vw, 38px);
        line-height: 1.12;
        white-space: normal;
    }

    .plan-card p {
        max-width: 360px;
        margin-top: clamp(22px, 1.55vw, 32px);
        font-size: clamp(16px, 1.05vw, 21px);
        line-height: 1.52;
    }

    .plan-card__footer {
        gap: clamp(22px, 1.45vw, 30px);
    }

    .plan-card strong {
        font-family: var(--font-body);
        font-size: clamp(48px, 2.95vw, 60px);
        font-weight: 800;
        letter-spacing: 0;
    }

    .plan-button {
        width: min(100%, clamp(230px, 14.4vw, 294px));
        min-width: 0;
        min-height: clamp(54px, 3.15vw, 64px);
        margin-top: 0;
        padding: 0 clamp(13px, 1vw, 20px) 0 clamp(22px, 1.45vw, 30px);
        gap: clamp(12px, .8vw, 16px);
        border-radius: 999px;
        font-size: clamp(16px, .95vw, 19px);
        font-weight: 500;
        white-space: nowrap;
    }

    .plan-button span {
        width: clamp(24px, 1.55vw, 32px);
        height: clamp(24px, 1.55vw, 32px);
    }

    .footer-cards {
        margin-top: 48px;
    }

    .address-card,
    .newsletter-card {
        min-height: clamp(260px, 22vw, 420px);
        padding: clamp(36px, 4vw, 70px);
        border-radius: 18px;
    }

    .address-card h3,
    .newsletter-card h3 {
        margin-bottom: 34px;
        font-size: clamp(16px, 1.1vw, 22px);
    }

    .address-card dl {
        gap: 22px 44px;
        margin-bottom: 34px;
    }

    .address-card dt,
    .address-card small {
        font-size: clamp(12px, .8vw, 15px);
    }

    .address-card dd {
        font-size: clamp(13px, .9vw, 17px);
    }

    .newsletter-card p {
        max-width: 460px;
        margin-bottom: 36px;
        font-size: clamp(13px, .9vw, 17px);
    }

    .newsletter-form {
        width: min(260px, 18vw);
        min-width: 210px;
        height: 44px;
        padding: 4px;
    }

    .newsletter-form input {
        width: calc(100% - 36px);
        padding: 0 16px;
        font-size: 13px;
    }

    .newsletter-form button {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .socials {
        gap: 18px;
        margin-top: 34px;
    }

    .socials a {
        font-size: 13px;
    }
}

@media (min-width: 760px) and (max-width: 980px) {
    .plan-grid,
    .footer-cards {
        grid-template-columns: 1fr;
    }

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

@media (min-width: 760px) {
    .site-frame {
        padding: clamp(22px, 2vw, 34px) clamp(72px, 7vw, 121px) 180px;
    }

    .header {
        min-height: clamp(30px, 2.35vw, 40px);
        margin-bottom: clamp(28px, 2.45vw, 42px);
        padding: 7px 8px 7px clamp(18px, 1.45vw, 25px);
        border-color: rgba(255, 255, 255, .1);
        background: rgba(4, 4, 4, .72);
        box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
        backdrop-filter: blur(22px);
    }

    .brand {
        font-size: clamp(22px, 1.72vw, 30px);
        line-height: 1;
    }

    .nav {
        position: static;
        display: flex;
        grid-template-columns: none;
        align-items: center;
        gap: 2px;
        width: auto;
        padding: 4px;
        color: rgba(255, 255, 255, .64);
        background: rgba(255, 255, 255, .055);
        border-color: rgba(255, 255, 255, .1);
        border-radius: 999px;
        box-shadow: none;
        backdrop-filter: none;
        font-size: clamp(12px, .86vw, 15px);
        font-weight: 600;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        text-transform: none;
        transform: none;
        transition: none;
    }

    .nav a {
        min-height: clamp(33px, 2.4vw, 42px);
        padding: 0 clamp(13px, .95vw, 18px);
        border-radius: 999px;
    }

    .nav a:hover,
    .nav a:focus-visible {
        color: #fff;
        background: rgba(255, 255, 255, .09);
    }

    .nav a.is-active {
        color: #080808;
        border-color: transparent;
        background: #fff;
    }

    .nav a::before {
        bottom: 7px;
        left: clamp(16px, 1.05vw, 20px);
        right: clamp(16px, 1.05vw, 20px);
    }

    .nav a.is-active::before {
        opacity: 0;
    }

    .nav-toggle {
        display: none;
    }

    .hero {
        padding: clamp(58px, 5vw, 86px) clamp(52px, 4.16vw, 72px) clamp(58px, 5vw, 86px);
        background: #1c1c1c;
        border-radius: clamp(42px, 3.35vw, 58px);
    }

    .hero__content {
        position: relative;
        z-index: 2;
    }

    .eyebrow {
        margin: 0 0 clamp(30px, 2.3vw, 40px);
        font-size: clamp(20px, 1.4vw, 24px);
        line-height: 1.2;
        font-weight: 700;
    }

    .hero h1 {
        max-width: none;
        color: #fff;
        font-size: clamp(64px, 5.2vw, 90px);
        line-height: 1.28;
        white-space: nowrap;
    }

    .hero__copy {
        width: min(1120px, 76vw);
        margin: clamp(60px, 4.7vw, 82px) 0 clamp(74px, 5.4vw, 94px);
        color: #fff;
        line-height: 1.36;
        font-weight: 400;
    }

    .button--blue {
        width: clamp(235px, 16.8vw, 290px);
        min-width: 0;
        min-height: clamp(48px, 3.45vw, 60px);
        justify-content: center;
        gap: clamp(10px, .72vw, 13px);
        padding: 0 clamp(24px, 1.9vw, 33px);
        border-radius: 999px;
        background: linear-gradient(105deg, #0757ff 0%, #132e71 100%);
        font-size: clamp(16px, 1.08vw, 19px);
        font-weight: 500;
    }

    .button--blue span {
        display: inline-block;
        font-size: 1.05em;
        line-height: 1;
    }

    .hero__mark {
        z-index: 1;
        top: clamp(265px, 27.5vw, 326px);
        right: clamp(86px, 7.5vw, 130px);
        bottom: auto;
        width: clamp(380px, 28vw, 484px);
        height: auto;
        transform: none;
        opacity: 1;
    }
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    margin-top: 48px;
    width: 100%;
}

.footer-card {
    display: flex;
    flex-direction: column;
    background: var(--paper); /* #e7e7e7 */
    border-radius: clamp(26px, 3.4vw, 40px);
    overflow: hidden;
}

.footer-left {
    padding: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 48px);
    color: #111;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: #111;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 500;
    line-height: 1.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.85;
}

.footer-links-col a:hover {
    opacity: 1;
    transform: translateX(2px);
}

.footer-copyright {
    margin: 0;
    font-size: clamp(11px, 0.9vw, 13px);
    color: #666;
    line-height: 1.5;
}

.footer-right {
    background: var(--blue);
    color: #fff;
    padding: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: clamp(26px, 3.4vw, 40px) clamp(26px, 3.4vw, 40px) 0 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.footer-section-text {
    margin: 0;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.footer-input-group {
    position: relative;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-input-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-family: var(--font-body);
    padding: 4px 0;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-input-group:focus-within {
    border-bottom-color: #fff;
}

.footer-btn {
    align-self: flex-start;
    background: #fff;
    color: #111;
    border: none;
    outline: none;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color 0.25s ease, transform 0.2s ease;
    cursor: pointer;
}

.footer-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.footer-btn:active {
    transform: translateY(0);
}

.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-socials a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 0.85;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}

.footer-socials a svg {
    width: 22px;
    height: 22px;
}

.footer-socials a:hover {
    opacity: 1;
    transform: scale(1.18);
}

/* Desktop media query for split-panel layout override */
@media (min-width: 760px) {
    .site-footer {
        margin-top: 80px;
    }

    .footer-card {
        flex-direction: row;
        align-items: stretch;
    }

    .footer-left {
        flex: 1.25;
        padding: 64px 80px;
        gap: 48px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-copyright {
        margin-top: auto;
    }

    .footer-right {
        flex: 1;
        padding: 64px 80px;
        border-radius: clamp(30px, 3.4vw, 48px) 0 0 clamp(30px, 3.4vw, 48px);
        gap: 48px;
    }

    .footer-newsletter-form {
        gap: 24px;
    }
}

/* Scroll Reveal */
.reveal-section {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transform-origin: center bottom;
    filter: blur(4px);
    transition: 
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
        filter 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Theme Transitioning Overrides */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
    transition: 
        background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
        filter 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}


/* Theme Toggle Button */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-left: auto;
    margin-right: 12px;
    padding: 0;
    z-index: 10;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.08);
}

.theme-toggle:active {
    transform: scale(0.96);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Hide icons based on active theme */
html.light-theme .theme-toggle .sun-icon {
    display: none;
}
html:not(.light-theme) .theme-toggle .moon-icon {
    display: none;
}

/* ==========================================================================
   Light Theme Variables & Overrides
   ========================================================================== */
html.light-theme {
    --black: #f7f7f4; /* light background */
    --ink: #111111;   /* dark text */
    --muted: #666666;
    --panel: #eaeaea;
    --panel-soft: #f2f2ef;
    --line: rgba(0, 0, 0, 0.08);
}

/* Sticky Header in Light Theme */
html.light-theme .header {
    background: rgba(247, 247, 244, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

html.light-theme .brand {
    color: #000;
}

html.light-theme .nav-toggle span {
    background: #111;
}

html.light-theme .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

html.light-theme .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Navigation Links in Light Theme */
html.light-theme .nav {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.65);
}

html.light-theme .nav a:hover:not(.is-active) {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
}

html.light-theme .nav a.is-active {
    color: #fff;
    background: #000;
}

/* Hero Card in Light Theme */
html.light-theme .hero {
    background: #eaeaea;
    color: #111;
}

html.light-theme .hero h1 {
    color: #111;
}

html.light-theme .hero__copy {
    color: #444;
}

/* Partner Strip */
html.light-theme .partner-strip {
    filter: invert(1) brightness(0.2);
    opacity: 0.8;
}

/* Feature Grid */
html.light-theme .feature-card--light {
    background: #e2e2df;
    color: #111;
}

/* Sites Carousel & Cards */
html.light-theme .site-card:not(.site-card--cta) {
    background: #eaeaea;
    color: #111;
    border-color: rgba(0, 0, 0, 0.08);
}

html.light-theme .site-card:not(.site-card--cta):hover {
    background: #e2e2e2;
    border-color: rgba(0, 0, 0, 0.16);
}

html.light-theme .site-card:not(.site-card--cta) .site-card__arrow {
    color: #111;
    background: rgba(0, 0, 0, 0.05);
}

html.light-theme .site-card:not(.site-card--cta):hover .site-card__arrow {
    background: #000;
    color: #fff;
}

/* Visit Cards */
html.light-theme .visit-card--plain {
    background: #eaeaea;
    color: #111;
}

html.light-theme .visit-card--plain:hover {
    background: #e2e2e2;
}

html.light-theme .visit-card--person {
    background: #eaeaea;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Benefit Cards */
html.light-theme .benefit-card {
    background: #eaeaea;
    color: #111;
}

html.light-theme .benefit-card__copy p {
    color: #333;
}

/* Clients Testimonials */
html.light-theme .client-card.is-active {
    background: #ffffff;
    color: #111;
    border-color: rgba(7, 87, 255, .9);
    box-shadow: inset 0 4px 0 var(--blue), 0 20px 40px rgba(0, 0, 0, 0.06);
}

html.light-theme .client-card.is-prev {
    background: #eaeaea;
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.06);
}

html.light-theme .client-card.is-next {
    background: #eaeaea;
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.06);
}

html.light-theme .client-card__index {
    color: #888;
}

html.light-theme .client-pagination__status {
    color: #111;
}

html.light-theme .slider-controls button {
    background: rgba(0, 0, 0, 0.05);
    color: #111;
    border-color: rgba(0, 0, 0, 0.08);
}

html.light-theme .slider-controls button:hover {
    background: #000;
    color: #fff;
}

html.light-theme .client-pagination__dots button {
    background: rgba(0, 0, 0, 0.15);
}

html.light-theme .client-pagination__dots button.is-active {
    background: #000;
}

/* Contact Panel */
html.light-theme .contact-panel {
    background: #eaeaea;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

html.light-theme .contact-panel h3 {
    color: #111;
}

html.light-theme .contact-panel__intro > p {
    color: #444;
}

html.light-theme .contact-status {
    color: #111;
    background: rgba(0, 0, 0, 0.04);
}

html.light-theme .contact-links {
    border-top-color: rgba(0, 0, 0, 0.08);
}

html.light-theme .contact-links a {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

html.light-theme .contact-links span,
html.light-theme .contact-field span {
    color: rgba(0, 0, 0, 0.5);
}

html.light-theme .contact-links strong {
    color: #111;
}

html.light-theme .contact-field input,
html.light-theme .contact-field select,
html.light-theme .contact-field textarea {
    background: #fff;
    color: #111;
    border-color: rgba(0, 0, 0, 0.14);
}

html.light-theme .contact-field input::placeholder,
html.light-theme .contact-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

html.light-theme .contact-field input:focus,
html.light-theme .contact-field select:focus,
html.light-theme .contact-field textarea:focus {
    background: #fff;
    border-color: var(--blue);
}

/* Plans Cards */
html.light-theme .plan-card:not(.plan-card--primary) {
    background: #eaeaea;
    color: #111;
    border-color: rgba(0, 0, 0, 0.08);
}

html.light-theme .plan-card:not(.plan-card--primary) p {
    color: #444;
}

html.light-theme .plan-card--primary {
    background: #fff;
    color: #111;
    border-color: var(--blue);
}

html.light-theme .plan-card--primary p {
    color: #333;
}

html.light-theme .plan-card::before,
html.light-theme .plan-card::after {
    background: var(--black);
}

/* Toast */
html.light-theme .toast {
    background: #000;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Footer Contrasting in Light Theme */
html.light-theme .footer-card {
    background: #1c1c1e;
}

html.light-theme .footer-left {
    color: #fff;
}

html.light-theme .footer-brand {
    color: #fff;
}

html.light-theme .footer-links-col a {
    color: #fff;
    opacity: 0.8;
}

html.light-theme .footer-links-col a:hover {
    opacity: 1;
}

html.light-theme .footer-copyright {
    color: #888;
}

/* Desktop overrides for header in light mode */
@media (min-width: 760px) {
    html.light-theme .header {
        background: rgba(247, 247, 244, 0.85);
    }
}

/* Background Scrolling Grids */
@keyframes scrollGrid {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 40px;
    }
}

@keyframes scrollTech {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 80px;
    }
}

html::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    background-size: 20px 20px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
    animation: scrollGrid 18s linear infinite;
    opacity: 0.3;
}

html.light-theme::after {
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.14) 1.5px, transparent 1.5px);
}

body {
    position: relative;
    background:
        radial-gradient(circle at 12% 10%, rgba(7, 87, 255, 0.03), transparent 20%),
        radial-gradient(circle at 88% 18%, rgba(122, 196, 255, 0.02), transparent 20%),
        linear-gradient(180deg, #010102 0%, #040405 44%, #010102 100%) !important;
}

html.light-theme {
    background: var(--black) !important;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.12;
    transition: transform 0.35s ease-out;
}

body::before {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(7, 87, 255, 0.12) 0%, rgba(7, 87, 255, 0) 70%);
}

body::after {
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: -140px;
    background: radial-gradient(circle, rgba(122, 196, 255, 0.09) 0%, rgba(122, 196, 255, 0) 72%);
}

html.light-theme::before,
html.light-theme::after {
    display: none !important;
}

/* Text and image contrast overrides for Light Theme */
html.light-theme .section-head p,
html.light-theme .section-head--sites p,
html.light-theme .section-head--visite p,
html.light-theme .section-head--benefits p,
html.light-theme .contact-header p {
    color: rgba(0, 0, 0, 0.55) !important;
}

html.light-theme .site-card:not(.site-card--cta) p {
    color: rgba(0, 0, 0, 0.6) !important;
}

html.light-theme .site-card__logo {
    mix-blend-mode: multiply;
    filter: invert(1);
    opacity: 0.85;
}

html.light-theme .client-card.is-active p {
    color: rgba(0, 0, 0, 0.68) !important;
}

/* Header actions and Loja button styles */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-loja-btn {
    min-height: 28px !important;
    padding: 0 12px !important;
    font-size: 9px !important;
    font-family: var(--font-body) !important;
    letter-spacing: 0 !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: var(--blue) !important;
    color: #fff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: transform .2s ease, background .2s ease !important;
}

.header-loja-btn:hover {
    transform: translateY(-1px) !important;
    background: #1b67ff !important;
}

@media (min-width: 760px) {
    .header-loja-btn {
        min-height: clamp(33px, 2.4vw, 42px) !important;
        padding: 0 clamp(16px, 1.2vw, 24px) !important;
        font-size: clamp(12px, 0.86vw, 15px) !important;
    }
}
