/* Third-party CMS embed styles — scoped under .relx-home */

.relx-home,
.relx-home *,
.relx-home *::before,
.relx-home *::after {
    box-sizing: border-box;
}

.relx-home {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow: visible;
    --rx-orange: #ff6a1a;
    --rx-orange-2: #ff3d2e;
    --rx-grad: linear-gradient(90deg, #ff8a3d 0%, #ff5a1f 50%, #ff2e62 100%);
    --rx-bg: #f7f6f3;
    --rx-ink: #111;
    --rx-muted: #6b6b6b;
    --rx-line: #e7e5e0;
    --rx-radius: 18px;
    --rx-content-max: 1200px;
    --rx-gutter: 24px;
    --rx-content-inset: max(var(--rx-gutter), calc((100vw - var(--rx-content-max)) / 2 + var(--rx-gutter)));
}

.relx-home img,
.relx-home svg {
    max-width: 100%;
    display: block;
}

.relx-home a {
    text-decoration: none;
    color: inherit;
}

.relx-home button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Site-wide top notice (TopNotice widget / layout block) */
.page-header-notice {
    background: #000;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    letter-spacing: .2px;
}

.relx-home .rx-hero {
    background: var(--rx-bg);
    padding: 56px 24px;
}

.relx-home .rx-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.relx-home .rx-eyebrow {
    font-size: 13px;
    color: var(--rx-muted);
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.relx-home .rx-hero h1 {
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -.02em;
}

.relx-home .rx-hero h1 .accent {
    background: linear-gradient(90deg, #00d4c8, #3aa0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.relx-home .rx-hero p.lead {
    font-size: 16px;
    color: #333;
    margin: 18px 0 28px;
    max-width: 460px;
}

.relx-home .rx-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.relx-home .rx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .15s ease, box-shadow .2s ease;
}

.relx-home .rx-btn-primary {
    background: var(--rx-grad);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(255, 90, 31, .6);
}

.relx-home .rx-btn-outline {
    background: #fff;
    color: var(--rx-orange);
    border: 1.5px solid var(--rx-orange);
}

.relx-home .rx-btn:hover {
    transform: translateY(-2px);
}

.relx-home .rx-hero-visual {
    position: relative;
    aspect-ratio: 16/10;
    background: radial-gradient(circle at 60% 50%, #2a2a2a 0%, #000 70%);
    border-radius: var(--rx-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .4);
}

.relx-home .rx-hero-visual::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: conic-gradient(from 180deg at 50% 50%, rgba(0, 212, 200, 0), rgba(0, 212, 200, .25), rgba(255, 90, 31, .25), rgba(0, 212, 200, 0));
    filter: blur(40px);
    animation: rxspin 14s linear infinite;
}

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

.relx-home .rx-hero-visual .device {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 24px;
}

.relx-home .rx-hero-visual .device .badge {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.relx-home .rx-hero-visual .device .name {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: .05em;
}

.relx-home .rx-hero-visual .device .sub {
    opacity: .75;
    margin-top: 8px;
    font-size: 14px;
}

.relx-home .rx-section {
    padding: 72px 24px;
}

.relx-home .rx-section--flush {
    padding-left: 0;
    padding-right: 0;
}

.relx-home .rx-section--flush .rx-section-head {
    padding-left: 24px;
    padding-right: 24px;
}

.relx-home .rx-section-head {
    max-width: 1200px;
    margin: 0 auto 32px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.relx-home .rx-section-head h2 {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    color: var(--rx-orange);
    margin: 0;
    letter-spacing: -.01em;
}

.relx-home .rx-section-head .link {
    color: var(--rx-ink);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.relx-home .rx-section-head .link:hover {
    color: var(--rx-orange);
}

.relx-home .rx-section-head .link .arr {
    display: inline-block;
    transition: transform .2s ease;
}

.relx-home .rx-section-head .link:hover .arr {
    transform: translateX(3px);
}

.relx-home .rx-cards-wrap {
    position: relative;
}

.relx-home .rx-features {
    background: #fff;
    border-top: 1px solid var(--rx-line);
    border-bottom: 1px solid var(--rx-line);
    padding: 36px 24px;
}

.relx-home .rx-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.relx-home .rx-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.relx-home .rx-feat .icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff1e8, #ffe2d6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rx-orange-2);
}

.relx-home .rx-feat .icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.relx-home .rx-feat .t {
    font-weight: 700;
    font-size: 14px;
}

.relx-home .rx-feat .s {
    font-size: 12px;
    color: var(--rx-muted);
    margin-top: 2px;
}

.relx-home .rx-faq {
    background: var(--rx-bg);
}

.relx-home .rx-faq h2 {
    text-align: center;
    color: var(--rx-orange);
}

.relx-home .rx-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.relx-home .rx-faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .04);
}

.relx-home .rx-faq-q {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    color: var(--rx-ink);
    background: #fff;
    transition: background-color .15s ease, color .15s ease;
}

.relx-home .rx-faq-item.open .rx-faq-q {
    /* background: #1a56db;
    color: #fff; */
}

.relx-home .rx-faq-q .chev {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--rx-orange);
    transition: transform .2s ease;
}

.relx-home .rx-faq-item.open .rx-faq-q .chev {
    color: var(--rx-orange);
    transform: rotate(180deg);
}

.relx-home .rx-faq-q .chev svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.relx-home .rx-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .2s ease;
    background: #fff;
}

.relx-home .rx-faq-item.open .rx-faq-a {
    grid-template-rows: 1fr;
    padding: 15px 0px 0px;
}

.relx-home .rx-faq-a-inner {
    overflow: hidden;
}

.relx-home .rx-faq-a-inner p {
    margin: 0;
    padding: 0 22px 18px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.relx-home .rx-banner {
    background: var(--rx-grad);
    color: #fff;
    padding: 56px 24px;
}

.relx-home .rx-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.relx-home .rx-banner h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    margin: 0;
}

.relx-home .rx-banner p {
    margin: 6px 0 0;
    opacity: .92;
    font-size: 15px;
}

.relx-home .rx-banner .rx-btn {
    background: #fff;
    color: var(--rx-orange-2);
}

@media (max-width: 1024px) {
    .relx-home .rx-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .relx-home .rx-hero-visual {
        aspect-ratio: 16/8;
    }

    .relx-home .rx-features-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .relx-home .rx-hero {
        padding: 40px 16px;
    }

    .relx-home .rx-hero h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .relx-home .rx-hero p.lead {
        font-size: 15px;
    }

    .relx-home .rx-hero-visual {
        aspect-ratio: 16/9;
    }

    .relx-home .rx-hero-visual .device .name {
        font-size: 32px;
    }

    .relx-home .rx-section {
        padding: 48px 16px;
    }

    .relx-home {
        --rx-gutter: 16px;
    }

    .relx-home .rx-section--flush .rx-section-head {
        padding-left: 16px;
        padding-right: 16px;
    }

    .relx-home .rx-section-head {
        margin-bottom: 24px;
    }

    .relx-home .rx-section-head h2 {
        font-size: clamp(20px, 6vw, 26px);
    }

    .relx-home .rx-features-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .relx-home .rx-features {
        padding: 28px 16px;
    }

    .relx-home .rx-banner {
        padding: 40px 16px;
    }

    .relx-home .rx-banner-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .relx-home .rx-banner .rx-btn {
        width: 100%;
        max-width: 280px;
    }

    .relx-home .rx-faq-q {
        padding: 16px 18px;
        font-size: 14px;
    }

    .relx-home .rx-faq-a-inner p {
        padding: 0 18px 16px;
    }
}

@media (max-width: 480px) {
    .relx-home .rx-cta-row {
        flex-direction: column;
    }

    .relx-home .rx-btn {
        width: 100%;
    }
}
