/* =========================
   ACCENT
========================= */
.re-gold {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.re-gold-text { color: #eab308; }
.re-green { color: #22c55e; }

/* animation */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   CHIP
========================= */
.re-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #eab308;
    margin-bottom: 18px;
}

.re-chip svg { stroke: #eab308; }

/* =========================
   SECTION HEAD
========================= */
.re-head {
    text-align: center;
    margin-bottom: 55px;
}

.re-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.re-section-desc {
    font-size: 15px;
    color: #9ca3af;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================
   BUTTONS
========================= */
.re-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #000;
    font-weight: 600;
    border: none;
}

.re-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(234, 179, 8, 0.25);
}

.re-btn-gold svg {
    stroke: #000;
    transition: transform 0.3s;
}

.re-btn-gold:hover svg {
    transform: translateX(4px);
}

.re-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1px solid #333;
}

.re-btn-ghost:hover {
    border-color: #eab308;
    color: #eab308;
}

.re-btn-ghost:hover svg { stroke: #eab308; }

/* =========================
   HERO
========================= */
.re-hero {
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.re-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.re-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.12;
}

.re-glow-1 {
    width: 500px;
    height: 500px;
    background: #eab308;
    top: -120px;
    right: -100px;
}

.re-glow-2 {
    width: 400px;
    height: 400px;
    background: #f59e0b;
    bottom: -100px;
    left: -100px;
}

.re-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.re-hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.re-hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.re-hero-desc {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
}

.re-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* stats */
.re-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.re-stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #eab308;
}

.re-stat-item span {
    font-size: 13px;
    color: #9ca3af;
}

.re-stat-line {
    width: 1px;
    height: 38px;
    background: #222;
}

/* terminal */
.re-terminal {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.re-terminal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-bottom: 1px solid #1a1a1a;
}

.re-dots {
    display: flex;
    gap: 7px;
}

.re-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.re-dots span:nth-child(1) { background: #ef4444; }
.re-dots span:nth-child(2) { background: #eab308; }
.re-dots span:nth-child(3) { background: #22c55e; }

.re-terminal-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.re-terminal-body { padding: 8px 10px; }

.re-feed-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    transition: background 0.3s;
}

.re-feed-row:hover { background: rgba(255, 255, 255, 0.025); }

.re-feed-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.re-feed-icon svg { stroke: #eab308; }

.re-feed-info { flex: 1; }

.re-feed-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.re-feed-status { font-size: 11px; font-weight: 500; }
.re-live { color: #22c55e; }
.re-sync { color: #eab308; }
.re-ok { color: #14b8a6; }

.re-feed-val {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* =========================
   SERVICES
========================= */
.re-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.re-srv-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.re-srv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eab308, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.re-srv-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(234, 179, 8, 0.05);
}

.re-srv-card:hover::before { opacity: 1; }

.re-srv-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 46px;
    font-weight: 800;
    color: rgba(234, 179, 8, 0.04);
    line-height: 1;
    transition: color 0.3s;
}

.re-srv-card:hover .re-srv-num { color: rgba(234, 179, 8, 0.1); }

.re-srv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s;
}

.re-srv-icon svg {
    stroke: #eab308;
    transition: transform 0.3s;
}

.re-srv-card:hover .re-srv-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.re-srv-card:hover .re-srv-icon svg { transform: scale(1.1); }

.re-srv-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.re-srv-card:hover h3 { color: #eab308; }

.re-srv-card p {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.75;
    margin-bottom: 18px;
}

.re-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.re-tags span {
    padding: 4px 14px;
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.12);
    border-radius: 50px;
    font-size: 12px;
    color: rgba(234, 179, 8, 0.8);
    font-weight: 500;
}

/* =========================
   BENEFITS
========================= */
.re-benefits-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.re-benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: all 0.35s;
    margin-bottom: 8px;
}

.re-benefit-item:hover {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

.re-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s;
}

.re-benefit-icon svg { stroke: #eab308; }

.re-benefit-item:hover .re-benefit-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.re-benefit-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.re-benefit-item:hover h4 { color: #eab308; }

.re-benefit-item p {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.7;
}

/* benefit visual */
.re-benefit-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
}

.re-visual-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: #eab308;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.re-visual-card-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.re-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    padding: 18px 22px;
    transition: all 0.35s;
}

.re-mini-card:hover {
    border-color: rgba(234, 179, 8, 0.2);
    transform: translateX(6px);
}

.re-mini-card svg { stroke: #eab308; }

.re-mini-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.re-mini-val {
    font-size: 18px;
    font-weight: 700;
}

/* =========================
   COMPLIANCE
========================= */
.re-comp-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s;
}

.re-comp-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(234, 179, 8, 0.04);
}

.re-comp-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.35s;
}

.re-comp-icon svg { stroke: #eab308; }

.re-comp-card:hover .re-comp-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.re-comp-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.re-comp-card:hover h3 { color: #eab308; }

.re-comp-card p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
}

/* =========================
   USE CASES
========================= */
.re-usecase-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.re-case-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: all 0.35s;
    margin-bottom: 6px;
    position: relative;
}

.re-case-item:hover {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

.re-case-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(234, 179, 8, 0.15);
    letter-spacing: 1px;
    transition: color 0.3s;
}

.re-case-item:hover .re-case-num { color: rgba(234, 179, 8, 0.35); }

.re-case-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s;
}

.re-case-icon svg { stroke: #eab308; }

.re-case-item:hover .re-case-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.re-case-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.re-case-item:hover h4 { color: #eab308; }

.re-case-item p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

/* orbit visual */
.re-usecase-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 380px;
    margin: 0 auto;
}

.re-uc-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #eab308;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.re-uc-center-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.re-uc-center-icon svg { stroke: #eab308; }

.re-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(234, 179, 8, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.re-orbit-1 {
    width: 180px;
    height: 180px;
    animation: reOrbitPulse 4s ease-in-out infinite;
}

.re-orbit-2 {
    width: 270px;
    height: 270px;
    border-color: rgba(234, 179, 8, 0.06);
    animation: reOrbitPulse 4s ease-in-out 0.7s infinite;
}

.re-orbit-3 {
    width: 360px;
    height: 360px;
    border-color: rgba(234, 179, 8, 0.04);
    animation: reOrbitPulse 4s ease-in-out 1.4s infinite;
}

.re-orbit-dot {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.re-orbit-dot svg { stroke: #eab308; }

.re-od-1 { top: 10%; left: 75%; }
.re-od-2 { top: 70%; left: 10%; }
.re-od-3 { top: 80%; left: 80%; }

@keyframes reOrbitPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.5; }
}

/* =========================
   TABLE (WHY US)
========================= */
.re-table-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.re-table {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
}

.re-table-header {
    display: flex;
    padding: 18px 28px;
    background: rgba(234, 179, 8, 0.04);
    border-bottom: 1px solid #1a1a1a;
}

.re-table-header .re-table-col {
    font-size: 13px;
    font-weight: 600;
    color: #eab308;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.re-table-row {
    display: flex;
    padding: 20px 28px;
    border-bottom: 1px solid #111;
    transition: background 0.3s;
}

.re-table-row:last-child { border-bottom: none; }

.re-table-row:hover { background: rgba(234, 179, 8, 0.02); }

.re-col-feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.re-col-benefit {
    flex: 1.2;
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.re-col-feature strong {
    font-size: 14px;
    color: #fff;
}

.re-table-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.re-table-icon svg { stroke: #eab308; }

/* =========================
   CTA
========================= */
.re-cta {
    background: linear-gradient(135deg, #0a0a0a, #111);
    border: 1px solid #1a1a1a;
    border-radius: 22px;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.re-cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #eab308;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
    top: -80px;
    left: -80px;
    pointer-events: none;
}

.re-cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.re-cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.re-cta-content p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 480px;
}

.re-cta-rings {
    position: relative;
    width: 170px;
    height: 170px;
    flex-shrink: 0;
}

.re-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(234, 179, 8, 0.1);
}

.re-ring-1 {
    width: 170px;
    height: 170px;
    top: 0;
    left: 0;
    animation: rePulse 3s ease-in-out infinite;
}

.re-ring-2 {
    width: 120px;
    height: 120px;
    top: 25px;
    left: 25px;
    border-color: rgba(234, 179, 8, 0.15);
    animation: rePulse 3s ease-in-out 0.5s infinite;
}

.re-ring-3 {
    width: 70px;
    height: 70px;
    top: 50px;
    left: 50px;
    border-color: rgba(234, 179, 8, 0.2);
    animation: rePulse 3s ease-in-out 1s infinite;
}

.re-ring-center {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.re-ring-center svg { stroke: #eab308; }

@keyframes rePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.5; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .re-hero-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .re-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .re-hero-title { font-size: 34px; }

    .re-hero-left { text-align: center; }
    .re-hero-desc { max-width: 100%; }
    .re-hero-btns { justify-content: center; }
    .re-stats-row { justify-content: center; }

    .re-terminal {
        max-width: 460px;
        margin: 0 auto;
    }

    .re-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .re-section-title { font-size: 28px; }

    .re-benefits-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .re-section-title[style] { text-align: center !important; }

    .re-usecase-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .re-usecase-visual { max-width: 300px; }

    .re-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .re-cta-content p { max-width: 100%; }

    .re-table-row { flex-direction: column; gap: 8px; }
    .re-table-header { display: none; }
    .re-col-benefit { padding-left: 48px; }
}

@media (max-width: 600px) {
    .re-hero { padding: 90px 0 50px; }
    .re-hero-title { font-size: 26px; }
    .re-hero-desc { font-size: 14px; }

    .re-stats-row { flex-direction: column; gap: 14px; }
    .re-stat-line { width: 40px; height: 1px; }
    .re-hero-btns { flex-direction: column; align-items: center; }

    .re-section-title { font-size: 22px; }
    .re-section-desc { font-size: 13px; }

    .re-srv-grid { grid-template-columns: 1fr; }
    .re-srv-card { padding: 26px 20px; }

    .re-cta { padding: 34px 20px; }
    .re-cta-content h2 { font-size: 22px; }

    .re-cta-rings { width: 130px; height: 130px; }
    .re-ring-1 { width: 130px; height: 130px; }
    .re-ring-2 { width: 90px; height: 90px; top: 20px; left: 20px; }
    .re-ring-3 { width: 50px; height: 50px; top: 40px; left: 40px; }

    .re-usecase-visual { max-width: 240px; }
    .re-orbit-3 { width: 240px; height: 240px; }
    .re-orbit-2 { width: 180px; height: 180px; }
    .re-orbit-1 { width: 120px; height: 120px; }
}