:root {
    --black: #050505;
    --black-soft: #0c0c0c;
    --surface: #121212;
    --white: #ffffff;
    --off-white: #f4f5f5;
    --gray: #a6a6a6;
    --gray-dark: #6c6c6c;
    --line: rgba(255, 255, 255, 0.12);
    --line-dark: rgba(5, 5, 5, 0.10);
    --accent: #41bac2;
    --accent-light: #6dd3d9;
    --accent-dark: #258d94;
    --container: 1240px;
    --radius: 24px;
    --font: "Montserrat", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.84);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-symbol {
    position: relative;
    width: 34px;
    height: 34px;
    display: block;
}

.brand-symbol span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 39px;
    border-radius: 2px;
    transform-origin: center;
}

.brand-symbol span:first-child {
    background: var(--white);
    transform: translate(-50%, -50%) rotate(45deg);
}

.brand-symbol span:last-child {
    background: var(--accent);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.brand-name {
    display: flex;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.brand-name strong:last-child {
    color: var(--accent);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 25px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: var(--accent);
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
}

.button i {
    font-size: 19px;
}

.button-small {
    min-height: 44px;
    padding: 0 19px;
    font-size: 11px;
}

.button-ghost {
    border-color: var(--line);
    background: transparent;
    color: var(--white);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.button-white {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

.button-white:hover {
    border-color: var(--off-white);
    background: var(--off-white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 22px;
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 175px 0 58px;
    background:
        radial-gradient(circle at 70% 20%, rgba(65, 186, 194, 0.12), transparent 34%),
        var(--black);
    overflow: hidden;
}

.hero-grid,
.dark-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    top: 10%;
    right: -190px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 186, 194, 0.18), transparent 68%);
}

.hero-glow-two {
    bottom: -240px;
    left: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 186, 194, 0.10), transparent 70%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.eyebrow span {
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    max-width: 790px;
    font-size: clamp(54px, 6.6vw, 96px);
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 0.94;
}

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

.hero-description {
    max-width: 650px;
    margin-top: 31px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--white);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 37px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 42px;
}

.proof-avatars {
    display: flex;
    padding-left: 8px;
}

.proof-avatars span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-left: -8px;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--surface);
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.proof-avatars span:nth-child(2) {
    background: var(--accent);
    color: var(--black);
}

.hero-proof p {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 11px;
    line-height: 1.5;
}

.hero-visual {
    position: relative;
}

.screen-stage {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-stage::before {
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(65, 186, 194, 0.16);
    border-radius: 50%;
    content: "";
}

.screen-stage::after {
    position: absolute;
    width: 530px;
    height: 530px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.screen-frame {
    position: relative;
    z-index: 3;
    width: 445px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 23px;
    background: linear-gradient(145deg, #242424, #090909);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(65, 186, 194, 0.08);
    transform: perspective(900px) rotateY(-7deg) rotateX(3deg);
}

.screen-toolbar {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-toolbar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.screen-toolbar span:first-child {
    background: var(--accent);
}

.screen-toolbar small {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.screen-content {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px;
    border-radius: 0 0 13px 13px;
    background:
        linear-gradient(135deg, rgba(65, 186, 194, 0.15), transparent 55%),
        #080808;
    overflow: hidden;
}

.screen-content::after {
    position: absolute;
    top: -70%;
    left: -30%;
    width: 50%;
    height: 250%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    content: "";
    transform: rotate(22deg);
    animation: screenShine 5s infinite ease-in-out;
}

.screen-label {
    margin-bottom: 26px;
    color: var(--accent-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.screen-logo {
    display: flex;
    margin-bottom: 19px;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1;
}

.screen-logo span:last-child {
    color: var(--accent);
}

.screen-content p {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.screen-progress {
    position: absolute;
    right: 45px;
    bottom: 37px;
    left: 45px;
    height: 2px;
    background: rgba(255, 255, 255, 0.13);
}

.screen-progress span {
    display: block;
    width: 65%;
    height: 100%;
    background: var(--accent);
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background: rgba(15, 15, 15, 0.80);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(15px);
}

.floating-card i {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(65, 186, 194, 0.12);
    color: var(--accent);
    font-size: 19px;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 8px;
}

.floating-card-top {
    top: 90px;
    right: -25px;
    animation: float 5s ease-in-out infinite;
}

.floating-card-bottom {
    bottom: 83px;
    left: -12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    animation: float 5s ease-in-out infinite 1s;
}

.floating-card-bottom strong {
    color: var(--accent);
    font-size: 21px;
    line-height: 1;
}

.stats-bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 83px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-bar article {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 23px 34px;
    border-right: 1px solid var(--line);
}

.stats-bar article:first-child {
    padding-left: 0;
}

.stats-bar article:last-child {
    border-right: 0;
}

.stats-bar strong {
    color: var(--white);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.stats-bar span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.section {
    position: relative;
    padding: 130px 0;
}

.section-light {
    background: var(--off-white);
    color: var(--black);
}

.intro-section {
    padding-bottom: 60px;
}

.split-heading {
    display: grid;
    grid-template-columns: 0.48fr 1fr;
    gap: 90px;
}

.section-number {
    display: block;
    color: rgba(5, 5, 5, 0.16);
    font-size: 78px;
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 1;
}

.section-kicker {
    margin-top: 10px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.split-heading h2,
.section-title h2,
.visibility-heading h2,
.contact-content h2,
.audience-copy h2 {
    font-size: clamp(40px, 5.1vw, 72px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1.02;
}

.split-heading h2 span,
.section-title h2 span,
.visibility-heading h2 span,
.contact-content h2 span {
    color: var(--accent-dark);
}

.split-heading > div:last-child > p {
    max-width: 680px;
    margin-top: 27px;
    color: rgba(5, 5, 5, 0.58);
    font-size: 15px;
    line-height: 1.9;
}

.section-title {
    max-width: 800px;
    margin-bottom: 58px;
}

.section-title .section-kicker {
    margin-bottom: 20px;
}

.circuit-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 20px;
}

.feature-card {
    position: relative;
    min-height: 475px;
    display: flex;
    flex-direction: column;
    padding: 38px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.feature-card-large {
    grid-row: span 2;
    min-height: 970px;
    background:
        radial-gradient(circle at 85% 80%, rgba(65, 186, 194, 0.15), transparent 36%),
        var(--white);
}

.feature-card-accent {
    background: var(--accent);
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-index {
    color: rgba(5, 5, 5, 0.34);
    font-size: 10px;
    font-weight: 800;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    font-size: 19px;
}

.feature-copy {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.feature-label {
    margin-bottom: 17px;
    color: var(--accent-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.feature-card-accent .feature-label {
    color: rgba(5, 5, 5, 0.54);
}

.feature-copy h3 {
    max-width: 620px;
    font-size: clamp(28px, 3vw, 47px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.05;
}

.feature-copy > p:last-of-type {
    max-width: 570px;
    margin-top: 22px;
    color: rgba(5, 5, 5, 0.55);
    font-size: 13px;
    line-height: 1.85;
}

.feature-card-accent .feature-copy > p:last-of-type {
    color: rgba(5, 5, 5, 0.65);
}

.measure {
    margin-top: 37px;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
}

.measure strong,
.measure span {
    display: block;
}

.measure strong {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.measure span {
    margin-top: 4px;
    color: rgba(5, 5, 5, 0.43);
    font-size: 9px;
}

.mini-screens {
    position: absolute;
    top: 122px;
    right: -75px;
    width: 520px;
    height: 280px;
    transform: rotate(-8deg);
}

.mini-screens span {
    position: absolute;
    width: 285px;
    aspect-ratio: 4 / 3;
    border: 10px solid #191919;
    border-radius: 11px;
    background:
        linear-gradient(140deg, rgba(65, 186, 194, 0.46), transparent 52%),
        #080808;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.mini-screens span:first-child {
    top: 0;
    left: 0;
}

.mini-screens span:last-child {
    right: 0;
    bottom: 0;
}

.metric {
    position: absolute;
    top: 130px;
    left: 38px;
}

.metric strong,
.metric span {
    display: block;
}

.metric strong {
    color: var(--accent-dark);
    font-size: 45px;
    font-weight: 900;
    letter-spacing: -3px;
}

.metric span {
    color: rgba(5, 5, 5, 0.40);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.live-badge {
    position: absolute;
    top: 130px;
    left: 38px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(5, 5, 5, 0.13);
    border-radius: 999px;
    color: rgba(5, 5, 5, 0.68);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.live-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--black);
    animation: pulse 1.5s infinite;
}

.dark-section {
    background: var(--black-soft);
    color: var(--white);
    overflow: hidden;
}

.visibility-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 100px;
}

.section-kicker-light {
    color: var(--accent);
}

.visibility-heading h2 {
    margin-top: 18px;
}

.visibility-heading h2 span {
    color: var(--accent);
}

.visibility-heading > p:not(.section-kicker) {
    max-width: 560px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 14px;
    line-height: 1.9;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 37px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.text-link i {
    color: var(--accent);
    font-size: 18px;
    transition: transform 0.2s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

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

.timeline article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-number {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.timeline h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.timeline p {
    max-width: 520px;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 12px;
    line-height: 1.75;
}

.centered-title {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    min-height: 285px;
    padding: 32px;
    border: 1px solid var(--line-dark);
    border-radius: 21px;
    background: var(--white);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(65, 186, 194, 0.55);
    transform: translateY(-5px);
}

.benefit-card i {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(65, 186, 194, 0.12);
    color: var(--accent-dark);
    font-size: 21px;
}

.benefit-card h3 {
    margin-top: 45px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.benefit-card p {
    margin-top: 12px;
    color: rgba(5, 5, 5, 0.48);
    font-size: 11px;
    line-height: 1.8;
}

.audience-section {
    padding: 110px 0;
    background: var(--accent);
    color: var(--black);
}

.audience-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.audience-copy .section-kicker {
    color: rgba(5, 5, 5, 0.60);
}

.audience-copy h2 {
    margin-top: 15px;
    font-size: clamp(42px, 5vw, 70px);
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 11px;
}

.audience-tags span {
    padding: 13px 18px;
    border: 1px solid rgba(5, 5, 5, 0.22);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.contact-section {
    background: var(--off-white);
}

.contact-box {
    position: relative;
    min-height: 490px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    padding: 75px;
    border-radius: 30px;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: -220px;
    right: -160px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 186, 194, 0.26), transparent 67%);
}

.contact-content,
.contact-actions {
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    margin-top: 17px;
    font-size: clamp(42px, 5vw, 69px);
}

.contact-content h2 span {
    display: block;
    color: var(--accent);
}

.contact-content > p:last-child {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
    line-height: 1.85;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contact-phone > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent);
}

.contact-phone span,
.contact-phone strong {
    display: block;
}

.contact-phone span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
}

.contact-phone strong {
    margin-top: 4px;
    color: var(--white);
    font-size: 13px;
}

.site-footer {
    padding: 75px 0 30px;
    background: var(--black);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    padding-bottom: 55px;
    border-bottom: 1px solid var(--line);
}

.footer-top > p {
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 27px;
    color: rgba(255, 255, 255, 0.30);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes screenShine {
    0%,
    20% {
        transform: translateX(-180%) rotate(22deg);
    }

    65%,
    100% {
        transform: translateX(550%) rotate(22deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.82);
    }
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 780px;
    }

    .hero-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .screen-stage {
        min-height: 510px;
    }

    .visibility-layout {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .section {
        padding: 95px 0;
    }

    .header-inner {
        min-height: 74px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-nav {
        position: fixed;
        top: 74px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 45px 24px;
        background: rgba(5, 5, 5, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .mobile-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav a {
        padding-bottom: 18px;
        border-bottom: 1px solid var(--line);
        font-size: 19px;
        font-weight: 800;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

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

    .stats-bar article {
        border-bottom: 1px solid var(--line);
    }

    .stats-bar article:first-child {
        padding-left: 24px;
    }

    .stats-bar article:nth-child(2) {
        border-right: 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-heading h2,
    .section-title h2,
    .visibility-heading h2,
    .contact-content h2 {
        letter-spacing: -2.7px;
    }

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

    .feature-card,
    .feature-card-large {
        min-height: 580px;
    }

    .feature-card-large {
        grid-row: auto;
    }

    .mini-screens {
        top: 95px;
        right: -130px;
    }

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

    .audience-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .audience-tags {
        justify-content: flex-start;
    }

    .contact-box {
        padding: 50px 38px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero {
        padding-top: 118px;
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -3.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        align-items: flex-start;
    }

    .screen-stage {
        min-height: 410px;
    }

    .screen-stage::before {
        width: 320px;
        height: 320px;
    }

    .screen-stage::after {
        width: 390px;
        height: 390px;
    }

    .screen-frame {
        width: 315px;
        transform: none;
    }

    .screen-content {
        min-height: 245px;
        padding: 29px;
    }

    .screen-logo {
        font-size: 37px;
    }

    .screen-content p {
        font-size: 18px;
    }

    .screen-progress {
        right: 29px;
        bottom: 25px;
        left: 29px;
    }

    .floating-card-top {
        top: 17px;
        right: -4px;
    }

    .floating-card-bottom {
        bottom: 5px;
        left: -3px;
    }

    .stats-bar {
        margin-top: 55px;
    }

    .stats-bar article {
        min-height: 100px;
        padding: 18px;
    }

    .stats-bar article:first-child {
        padding-left: 18px;
    }

    .stats-bar strong {
        font-size: 20px;
    }

    .section-number {
        font-size: 55px;
    }

    .split-heading h2,
    .section-title h2,
    .visibility-heading h2,
    .contact-content h2,
    .audience-copy h2 {
        font-size: 42px;
        letter-spacing: -2.6px;
    }

    .feature-card,
    .feature-card-large {
        min-height: 545px;
        padding: 28px;
    }

    .feature-copy h3 {
        font-size: 32px;
        letter-spacing: -1.8px;
    }

    .mini-screens {
        top: 105px;
        right: -180px;
        transform: rotate(-8deg) scale(0.75);
    }

    .metric,
    .live-badge {
        top: 115px;
        left: 28px;
    }

    .visibility-layout {
        gap: 55px;
    }

    .timeline article {
        grid-template-columns: 45px 1fr;
    }

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

    .benefit-card {
        min-height: 250px;
    }

    .audience-section {
        padding: 85px 0;
    }

    .contact-box {
        min-height: auto;
        padding: 48px 27px;
        border-radius: 23px;
    }

    .contact-actions,
    .contact-actions .button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

/* FIXADV_MEDIA_COMPONENT */

.fixadv-media-section {
    background: #f4f5f5;
}

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

.fixadv-media-card {
    border: 1px solid rgba(5, 5, 5, 0.10);
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
}

.fixadv-media-file {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    border: 0;
    background: #050505;
    object-fit: cover;
}

.fixadv-media-copy {
    padding: 25px;
}

.fixadv-media-copy h3 {
    margin: 0;
    color: #050505;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.fixadv-media-copy p {
    margin: 10px 0 0;
    color: rgba(5, 5, 5, 0.55);
    font-size: 11px;
    line-height: 1.8;
}

@media (max-width: 720px) {
    .fixadv-media-grid {
        grid-template-columns: 1fr;
    }

    .fixadv-media-card {
        border-radius: 18px;
    }
}
