/* ===== Realto Page ===== */

/* ── Scroll animations ── */
.realto-page [data-anim] {
    opacity: 0;
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(80ms + var(--delay, 0ms));
    will-change: opacity, transform;
}

.realto-page [data-anim="fade-up"]    { transform: translateY(40px); }
.realto-page [data-anim="fade-left"]  { transform: translateX(48px); }
.realto-page [data-anim="fade-right"] { transform: translateX(-48px); }
.realto-page [data-anim="zoom-in"]    { transform: scale(0.94); }

.realto-page [data-anim].in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .realto-page [data-anim] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.realto-page {
    min-height: 100vh;
    background: #f8fafc;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem 0;
    overflow-x: clip;
    font-family: 'Inter', system-ui, sans-serif;
}

/* ── Glow blobs ── */
.rl-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.rl-glow--tl {
    top: -100px; left: -120px;
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(0,168,150,0.08) 0%, transparent 65%);
}

.rl-glow--br {
    bottom: -80px; right: -100px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(0,168,150,0.06) 0%, transparent 65%);
}

/* ── Hero wrapper ── */
.rl-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Watermark ── */
.rl-watermark {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* ── Header ── */
.rl-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.rl-tag {
    display: inline-block;
    border: 1px solid rgba(0,168,150,0.4);
    color: #00A896;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(0,168,150,0.06);
}

.rl-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.rl-sub {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
}

/* ── Video Frame ── */
.rl-video-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin-top: 3.5rem;
    padding: 0 1rem;
}

.rl-video-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 24px 64px rgba(0,0,0,0.10);
    background: #0f172a;
}

.rl-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e2e8f0;
}

.rl-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rl-video-cta {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
    align-items: center;
}

.rl-video-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 20px 5px 5px;
    background: linear-gradient(180deg, #00bfac 0%, #00A896 50%, #009688 100%);
    color: #ffffff;
    font-family: inherit;
    text-decoration: none;
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.25) inset,
        0 -1px 0 rgba(0,0,0,0.15) inset,
        0 4px 0 #006d63,
        0 6px 16px rgba(0,168,150,0.45);
    transition: transform 0.12s, box-shadow 0.12s;
    white-space: nowrap;
}

.rl-video-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.25) inset,
        0 -1px 0 rgba(0,0,0,0.15) inset,
        0 6px 0 #006d63,
        0 10px 24px rgba(0,168,150,0.5);
}

.rl-video-btn:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.2) inset,
        0 -1px 0 rgba(0,0,0,0.1) inset,
        0 1px 0 #006d63,
        0 2px 8px rgba(0,168,150,0.3);
}

.rl-video-btn-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, #009688 0%, #006d63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 2px 4px rgba(0,0,0,0.2);
}

.rl-video-btn-icon svg { width: 18px; height: 18px; stroke: #ffffff; }
.rl-video-btn-text { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em; }

/* ══════════════════════
   THE PROBLEM
══════════════════════ */
.rl-problem {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 5rem -2rem 0;
    background: #ffffff;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.rl-problem-inner {
    width: 100%;
    max-width: 1200px;
}

.rl-problem-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 3.5rem;
}

.rl-problem-head {
    position: sticky;
    top: 6rem;
}

.rl-problem-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.rl-problem-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.rl-problem-accent {
    color: #00A896;
}

.rl-problem-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rl-problem-body p {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.7;
}

.rl-problem-body strong {
    color: #0f172a;
    font-weight: 700;
}

.rl-problem-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rl-stat {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.rl-stat:hover {
    border-color: rgba(0,168,150,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}

.rl-stat-num {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #00A896;
    letter-spacing: -0.03em;
    line-height: 1;
}

.rl-stat-label {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
}

@media (max-width: 960px) {
    .rl-problem-top { grid-template-columns: 1fr; gap: 32px; }
    .rl-problem-head { position: static; }
    .rl-problem-stats { grid-template-columns: repeat(2, 1fr); }
    .rl-problem { padding: 4rem 1.5rem; }
}

@media (max-width: 540px) {
    .rl-problem-stats { grid-template-columns: 1fr; }
}

/* ══════════════════════
   THE SOLUTION
══════════════════════ */
.rl-solution {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #f8fafc;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.rl-solution-inner {
    width: 100%;
    max-width: 1200px;
}

.rl-solution-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 3rem;
}

.rl-solution-head { }

.rl-solution-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.rl-solution-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.rl-solution-accent { color: #00A896; }

.rl-solution-body { padding-top: 0.5rem; }

.rl-solution-lead {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
}

/* Callout block */
.rl-solution-callout {
    background: linear-gradient(160deg, #062a26 0%, #0f3933 55%, #0a2521 100%);
    border-radius: 24px;
    padding: 44px 48px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0,168,150,0.2);
    box-shadow: 0 24px 48px rgba(0,168,150,0.15);
}

.rl-solution-callout-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    color: #5eead4;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.rl-solution-callout-lead {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.rl-solution-callout-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 820px;
}

/* Flow steps */
.rl-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.rl-flow::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(0,168,150,0.35) 0 6px, transparent 6px 12px);
    z-index: 0;
}

.rl-flow-step {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.rl-flow-step:hover {
    border-color: rgba(0,168,150,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}

.rl-flow-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00A896;
    color: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,168,150,0.35);
}

.rl-flow-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-top: 4px;
}

.rl-flow-text {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.55;
}

@media (max-width: 1080px) {
    .rl-flow { grid-template-columns: repeat(3, 1fr); }
    .rl-flow::before { display: none; }
}

@media (max-width: 960px) {
    .rl-solution { padding: 4rem 1.5rem; }
    .rl-solution-top { grid-template-columns: 1fr; gap: 24px; }
    .rl-solution-callout { padding: 32px 24px; border-radius: 18px; }
}

@media (max-width: 680px) {
    .rl-flow { grid-template-columns: 1fr; gap: 12px; }
}

/* ══════════════════════
   WHAT REALTO DOES
══════════════════════ */
.rl-does {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #ffffff;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.rl-does-inner {
    width: 100%;
    max-width: 1200px;
}

.rl-does-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.rl-does-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.rl-does-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.rl-does-accent { color: #00A896; }

.rl-does-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rl-does-card {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 26px 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.rl-does-card:hover {
    border-color: rgba(0,168,150,0.35);
    background: #f0fdf9;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,168,150,0.1);
}

.rl-does-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,168,150,0.1);
    border: 1px solid rgba(0,168,150,0.22);
    color: #00A896;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.rl-does-icon svg {
    width: 22px;
    height: 22px;
}

.rl-does-card-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.rl-does-card-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
}

.rl-does-badge {
    position: absolute;
    bottom: 20px;
    left: 26px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid;
}

.rl-does-badge--core {
    color: #00A896;
    background: rgba(0,168,150,0.08);
    border-color: rgba(0,168,150,0.3);
}

.rl-does-badge--smart {
    color: #2563eb;
    background: rgba(37,99,235,0.08);
    border-color: rgba(37,99,235,0.3);
}

.rl-does-badge--infra {
    color: #b45309;
    background: rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.3);
}

.rl-does-card[data-anim]:nth-child(1) { --delay: 0ms; }
.rl-does-card[data-anim]:nth-child(2) { --delay: 80ms; }
.rl-does-card[data-anim]:nth-child(3) { --delay: 160ms; }
.rl-does-card[data-anim]:nth-child(4) { --delay: 240ms; }
.rl-does-card[data-anim]:nth-child(5) { --delay: 320ms; }
.rl-does-card[data-anim]:nth-child(6) { --delay: 400ms; }
.rl-does-card[data-anim]:nth-child(7) { --delay: 480ms; }
.rl-does-card[data-anim]:nth-child(8) { --delay: 560ms; }
.rl-does-card[data-anim]:nth-child(9) { --delay: 640ms; }

@media (max-width: 960px) {
    .rl-does-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .rl-does { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
    .rl-does-grid { grid-template-columns: 1fr; }
    .rl-does { width: calc(100% + 2.5rem); margin: 0 -1.25rem; padding: 3.5rem 1.25rem; }
    .rl-who { width: calc(100% + 2.5rem); margin: 0 -1.25rem; padding: 3.5rem 1.25rem; }
}

/* ══════════════════════
   WHO IT'S FOR
══════════════════════ */
.rl-who {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #f8fafc;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.rl-who-inner {
    width: 100%;
    max-width: 1200px;
}

.rl-who-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.rl-who-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.rl-who-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.rl-who-accent { color: #00A896; }

.rl-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.rl-who-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.rl-who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bfac, #00A896, transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.rl-who-card:hover {
    border-color: rgba(0,168,150,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15,23,42,0.08);
}

.rl-who-card:hover::before { opacity: 1; }

.rl-who-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.rl-who-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,168,150,0.12) 0%, rgba(0,168,150,0.05) 100%);
    border: 1px solid rgba(0,168,150,0.22);
    color: #00A896;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rl-who-icon svg { width: 24px; height: 24px; }

.rl-who-num {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: 0.02em;
    line-height: 1;
}

.rl-who-card-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.rl-who-card-quote {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #00A896;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.rl-who-card-text {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
}

.rl-who-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 4px 0;
}

.rl-who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rl-who-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}

.rl-who-list li svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    background: #00A896;
    border-radius: 50%;
    padding: 4px;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 880px) {
    .rl-who-grid { grid-template-columns: 1fr; gap: 16px; }
    .rl-who { padding: 4rem 1.5rem; }
    .rl-who-card { padding: 28px 24px; }
}

/* ══════════════════════
   INTEGRATIONS
══════════════════════ */
.rl-integ {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #ffffff;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.rl-integ-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(0,168,150,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.rl-integ-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.rl-integ-tag {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.rl-integ-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

.rl-integ-accent { color: #00A896; }

.rl-integ-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
}

/* Scrolling rows */
.rl-integ-rows {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 1rem 0;
}

.rl-integ-track {
    overflow: hidden;
    width: 100%;
}

.rl-integ-strip {
    display: flex;
    gap: 12px;
    width: max-content;
}

@keyframes rl-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes rl-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.rl-integ-track--left  .rl-integ-strip { animation: rl-scroll-left  32s linear infinite; }
.rl-integ-track--right .rl-integ-strip { animation: rl-scroll-right 28s linear infinite; }
.rl-integ-track--slow  .rl-integ-strip { animation-duration: 40s; }

.rl-integ-track:hover .rl-integ-strip { animation-play-state: paused; }

.rl-integ-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 20px;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}

.rl-integ-chip:hover {
    border-color: rgba(0,168,150,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.rl-integ-chip img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Fade overlays */
.rl-integ-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 5;
    pointer-events: none;
}

.rl-integ-fade--left  {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.rl-integ-fade--right {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

@media (max-width: 640px) {
    .rl-integ { padding: 4rem 0; }
    .rl-integ-chip { font-size: 0.85rem; padding: 10px 16px; }
    .rl-integ-chip img { width: 20px; height: 20px; }
    .rl-integ-fade { width: 80px; }
}

/* ══════════════════════
   EARLY-ACCESS CTA
══════════════════════ */
.rl-cta {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #ffffff;
    padding: 4rem 2rem 6rem;
    display: flex;
    justify-content: center;
}

.rl-cta-card {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(160deg, #062a26 0%, #0f3933 55%, #0a2521 100%);
    border-radius: 24px;
    padding: 36px 56px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 28px 60px rgba(0,168,150,0.18);
    border: 1px solid rgba(0,168,150,0.25);
}

.rl-cta-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(0,191,172,0.35) 0%, transparent 65%);
    pointer-events: none;
}

.rl-cta-tag {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(0,191,172,0.45);
    color: #5eead4;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(0,191,172,0.08);
    margin-bottom: 12px;
}

.rl-cta-title {
    position: relative;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.rl-cta-sub {
    position: relative;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 20px;
}

.rl-cta-actions {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.rl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
}

.rl-cta-btn svg { width: 16px; height: 16px; }

.rl-cta-btn--primary {
    background: linear-gradient(180deg, #00bfac 0%, #00A896 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,168,150,0.4);
}

.rl-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,168,150,0.55);
}

.rl-cta-btn--ghost {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-color: rgba(255,255,255,0.2);
}

.rl-cta-btn--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.35);
}

.rl-cta-note {
    position: relative;
    margin-top: 18px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .rl-cta { padding: 3rem 1.25rem 4rem; width: calc(100% + 2.5rem); margin: 0 -1.25rem; }
    .rl-cta-card { padding: 32px 22px; border-radius: 20px; }
    .rl-cta-actions { flex-direction: column; }
    .rl-cta-btn { justify-content: center; padding: 14px 20px; width: 100%; }
}

@media (max-width: 600px) {
    .realto-page { padding: 5rem 1.25rem 3rem; }
    .rl-title { font-size: 2rem; }
    .rl-watermark { font-size: 18vw; top: -1%; }
    .rl-video-frame { border-radius: 16px; }
    .rl-video-cta { gap: 6px; bottom: 10px; }
    .rl-video-btn { padding: 3px 12px 3px 3px; }
    .rl-video-btn-icon { width: 24px; height: 24px; margin-right: 7px; }
    .rl-video-btn-icon svg { width: 11px; height: 11px; }
    .rl-video-btn-text { font-size: 0.68rem; }

    .rl-problem { width: calc(100% + 2.5rem); margin: 3rem -1.25rem 0; padding: 4rem 1.25rem; }
    .rl-solution { width: calc(100% + 2.5rem); margin: 0 -1.25rem; padding: 3.5rem 1.25rem; }
}
