  @media (min-width: 1200px){
    .rtc-nav-center{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: max-content !important;
        max-width: none !important;
        flex: 0 0 auto;
    }
   
}

.sec-1-home-14__tagline{
    font-size: 12px;
    letter-spacing: .1em;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffabb2;
}
.rtc-spark{ color: #d81b2c; }

.rtc-gradient-text{
    background: linear-gradient(135deg, #ff3b3b 0%, #8a0000 45%, #0a0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.rtc-gradient-text2{
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.rtc-subheadline{
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #ffffff;
    min-height: 1.3em;
}
.rtc-cursor {
    display: inline-block;
    margin-left: 2px;
    animation: rtcCursorBlink 0.5s step-end infinite;
}
@keyframes rtcCursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.rtc-countdown-row{
    display: flex;
    gap: 5px;
}
.rtc-countdown-box{
    background: linear-gradient(160deg, #d81b2c 0%, #4a0505 100%);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
    min-width: 68px;
}
.rtc-countdown-num{
    display: block;
    font-size: 26px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.rtc-countdown-label{
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .85;
    margin-top: 4px;
}

.rtc-right-copy{
    color: #5a5a5a;
    font-size: 16px;
    line-height: 1.6;
}
.rtc-checklist{
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.rtc-checklist li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}
.rtc-check-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(160deg, #d81b2c 0%, #4a0505 100%);
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}

.rtc-cta-row{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.rtc-pill-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #111;
    color: #111;
    transition: all .2s ease;
}
.rtc-pill-btn:hover{
    background: #111;
    color: #fff;
}
.rtc-pill-btn--solid{
    background: linear-gradient(135deg, #d81b2c 0%, #4a0505 100%);
    border: none;
    color: #fff;
}
.rtc-pill-btn--solid:hover{
    opacity: .9;
    background: linear-gradient(135deg, #d81b2c 0%, #4a0505 100%);
    color: #fff;
}

@media (max-width: 991px){
    .rtc-countdown-row{ flex-wrap: wrap; }
}


.sec-1-home-14{
    position: relative;
    overflow: hidden;
    background-color: #fdfdfd;
}

/* Layer 1: fine square grid */
.sec-1-home-14::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 90%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 90%);
    pointer-events: none;
    z-index: 0;
}

/* Layer 2: larger dashed cross-hatch, offset, very faint */
.sec-1-home-14::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(216,27,44,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(216,27,44,0.05) 1px, transparent 1px);
    background-size: 210px 210px;
    pointer-events: none;
    z-index: 0;
}

/* Content must sit above the grid layers */
.sec-1-home-14 .container{
    position: relative;
    z-index: 1;
}

/* Layer 3: a few glowing accent nodes at grid intersections */
.rtc-grid-nodes{
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.rtc-grid-node{
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d81b2c;
    box-shadow: 0 0 12px 3px rgba(216,27,44,0.45);
    animation: rtc-node-pulse 3.2s ease-in-out infinite;
}
.rtc-grid-node:nth-child(1){ top: 14%; left: 8%; animation-delay: 0s; }
.rtc-grid-node:nth-child(2){ top: 62%; left: 22%; animation-delay: .6s; }
.rtc-grid-node:nth-child(3){ top: 30%; left: 88%; animation-delay: 1.2s; }
.rtc-grid-node:nth-child(4){ top: 78%; left: 68%; animation-delay: 1.8s; }
.rtc-grid-node:nth-child(5){ top: 8%; left: 55%; animation-delay: 2.4s; }

@keyframes rtc-node-pulse{
    0%, 100%{ opacity: .25; transform: scale(1); }
    50%{ opacity: 1; transform: scale(1.6); }
}

/* Layer 4: thin corner brackets, subtle "scanned area" tech cue */
.rtc-corner{
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: rgba(216,27,44,0.35);
    z-index: 0;
    pointer-events: none;
}
.rtc-corner--tl{ top: 24px; left: 24px; border-top: 2px solid; border-left: 2px solid; }
.rtc-corner--tr{ top: 24px; right: 24px; border-top: 2px solid; border-right: 2px solid; }
.rtc-corner--bl{ bottom: 24px; left: 24px; border-bottom: 2px solid; border-left: 2px solid; }
.rtc-corner--br{ bottom: 24px; right: 24px; border-bottom: 2px solid; border-right: 2px solid; }

.rtc-spec-card{
    width: 100%;
    border-radius: 16px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(216,27,44,0.05);
    overflow: hidden;
}
.rtc-spec-card__titlebar{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgb(81, 81, 81);
    border-bottom: 1px solid rgba(109, 109, 109, 0.06);
}

.rtc-traffic-lights{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.rtc-spec-card__searchbar{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    max-width: 320px;
    margin: 0 auto;
}

.rtc-spec-card__searchbar svg{
    width: 12px;
    height: 12px;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.rtc-spec-card__path{
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.9) !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
}

.rtc-dot{
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.12);
}

/* exact macOS traffic light hex values, flat like the real OS (not gradient) */
.rtc-dot--red{
    background: #ff5f57 !important;
}
.rtc-dot--yellow{
    background: #febc2e !important;
}
.rtc-dot--green{
    background: #28c840 !important;
}

.rtc-dot svg{
    width: 7px;
    height: 7px;
    opacity: .7;
}
.rtc-dot--red svg{ color: #9a0000; }
.rtc-dot--yellow svg{ color: #985c00; }
.rtc-dot--green svg{ color: #006512; }


.rtc-spec-card__path{
    margin-left: 10px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #ffffff;
}

.rtc-spec-card__body{
    padding: 26px 28px 28px;
}
.rtc-spec-card__intro{
    color: #000000;
    font-size: 17px;
    line-height: normal;
    margin-bottom: 22px;
}
.rtc-spec-row{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    
}
.rtc-spec-row:last-of-type{ border-bottom: none; }
.rtc-spec-key{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #d81b2c;
}
.rtc-spec-val{
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.rtc-spec-card__cta{
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.rtc-partners-strip{
    margin-top: 34px;
    max-width: 480px;
}
.rtc-partners-strip__label{
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    color: #ffffff;
    margin-bottom: 12px;
}
.rtc-partners-strip__track{
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.rtc-partners-strip__group{
    display: inline-flex;
    align-items: center;
    gap: 36px;
    animation: rtc-strip-scroll 18s linear infinite;
    padding-right: 36px;
}
.rtc-partners-strip__group img{
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: filter .2s ease;
}
.rtc-partners-strip__group img:hover{
    filter: grayscale(0%) opacity(1);
}
@keyframes rtc-strip-scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-100%); }
}
.rtc-partners-strip__track{
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.rtc-partners-strip__group{
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: center;
    gap: 36px;
    animation: rtc-strip-scroll 20s linear infinite;
    padding-right: 36px;
}
.rtc-partners-strip__group img{
    height: 22px;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: filter .2s ease;
}
.rtc-partners-strip__group img:hover{
    filter: grayscale(0%) opacity(1);
}
@keyframes rtc-strip-scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-100%); }
}

.rtc-mono-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    letter-spacing: .08em;
}
.rtc-live-dot{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 8px 2px rgba(255,59,59,0.7);
    animation: rtc-live-pulse 1.6s ease-in-out infinite;
}
@keyframes rtc-live-pulse{
    0%, 100%{ opacity: 1; }
    50%{ opacity: .3; }
}

.rtc-card-frame{
    position: relative;
    border: 1px solid rgba(255,59,59,0.25);
}
.rtc-card-frame::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

.rtc-mono-tag-pill{
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.rtc-brand-glow{
    text-shadow: 0 0 40px rgba(255,59,59,0.35);
}

.rtc-footer-link{
    position: relative;
    transition: color .2s ease;
}
.rtc-footer-link::before{
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff3b3b, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.rtc-footer-link:hover::before{
    transform: scaleX(1);
}

.sec-2-home-14__portrait-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.sec-2-home-14__portrait-slider .sec-2-home-14__portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
}
.sec-2-home-14__portrait-slider .sec-2-home-14__portrait-img--active {
    opacity: 1;
    visibility: visible;
}
.sec-2-home-14__portrait-slide-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #111;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.sec-2-home-14__portrait-slide-btn:hover {
    background: #f2f2f2;
    transform: scale(1.05);
}

.brand-logo-bw {
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter .2s ease, opacity .2s ease;
}
.brand:hover .brand-logo-bw {
    filter: grayscale(0%);
    opacity: 1;
}

.card-home-12-testimonial__avatar--dummy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #9a9a9a;
    flex-shrink: 0;
}

.card-home-12-testimonial__avatar--dummy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #9a9a9a;
    flex-shrink: 0;
}
.card-home-12-testimonial__quote--clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: -webkit-line-clamp .2s ease;
}
.card-home-12-testimonial__quote--clamped.is-expanded {
    -webkit-line-clamp: unset;
    display: block;
}
.card-home-12-testimonial__readmore {
    background: none;
    border: none;
    padding: 0;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.75;
      text-align: left;
}
.card-home-12-testimonial--dark .card-home-12-testimonial__readmore {
    color: #fff;
  
}
.card-home-12-testimonial__readmore:hover {
    opacity: 1;
}




.sec-1-home-14__hero-bot-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 300px;
    pointer-events: none;
}
.hero-bot-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    filter: drop-shadow(0 0 16px rgba(240,153,123,0.55));
    z-index: 2;
}
.hero-logo-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 4px 10px;
    opacity: 0;
    animation-name: heroChipFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.hero-logo-chip img {
    height: 14px;
    width: auto;
}
.hero-word-pop {
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0;
    animation-name: heroWordFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes heroChipFloat {
    0%   { opacity: 0; transform: translateY(8px) scale(0.9); }
    12%  { opacity: 1; transform: translateY(0) scale(1); }
    70%  { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-8px) scale(0.9); }
}
@keyframes heroWordFloat {
    0%   { opacity: 0; transform: translateX(10px); }
    15%  { opacity: 1; transform: translateX(0); }
    65%  { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-10px); }
}



.sec-4-home-13__chip:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: inherit !important;
}

@media (max-width: 767px) {
    .sec-2-home-14__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
    .sec-2-home-14__stat {
        border-right: none !important;
    }
    .sec-2-home-14__stat:nth-child(odd) {
        border-right: 1px solid rgba(0,0,0,0.1) !important;
        padding-right: 12px;
    }
    .sec-2-home-14__stat-num {
        font-size: 32px !important;
        line-height: 1.1 !important;
        white-space: nowrap;
    }
    .sec-2-home-14__stat-label {
        font-size: 13px !important;
    }
}

@media (max-width: 400px) {
    .sec-2-home-14__stat-num {
        font-size: 26px !important;
    }
}

@media (min-width: 992px) {
    #at-menu-bar {
        display: none !important;
    }
}


.retechcon-topics {
    position: relative;
    background: #120608;
    padding: 64px 0;
    overflow: hidden;
    border-radius: 25px;
}
.retechcon-topics__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.retechcon-topics__inner {
    position: relative;
    max-width: 1100px;
}
.retechcon-topics__eyebrow {
    color: #f0997b;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 8px;
}
.retechcon-topics__heading {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 40px;
}
.retechcon-topics__row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 8px;
    margin-top: 48px;
}
.retechcon-topics__row:first-of-type {
    margin-top: 0;
}
.retechcon-topics__connector {
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 0;
    border-top: 2px dotted rgba(240,153,123,0.4);
    z-index: 0;
}
.retechcon-topics__item {
    position: relative;
    z-index: 1;
    text-align: center;
}
.retechcon-topics__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #a90c04, #1a1a22);
    box-shadow: 0 0 0 3px #120608, 0 0 0 4px rgba(240,153,123,0.5);
}
.retechcon-topics__title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}
.retechcon-topics__desc {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin: 0;
}
@media (max-width: 991px) {
    .retechcon-topics__row {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 8px;
    }
    .retechcon-topics__connector { display: none; }
}
@media (max-width: 575px) {
    .retechcon-topics__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rtc-spec-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.12);
}
.rtc-spec-key {
    color: #d81b2c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.rtc-spec-val {
    font-weight: 600;
    text-align: right;
}

@media (max-width: 575px) {
    .rtc-spec-card__body {
        padding: 20px !important;
    }
    .rtc-spec-card__intro {
        font-size: 14px;
        line-height: 1.5;
    }
    .rtc-spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 8px 0;
    }
    .rtc-spec-val {
        text-align: left;
        font-size: 15px;
    }
    .rtc-spec-card__cta {
        flex-direction: column;
        gap: 10px;
    }
    .rtc-spec-card__cta .rtc-pill-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
  .odometer {
    letter-spacing: 3px !important;
  }
}
   .sec-1-home-14 {
    background: url('../../img-assets/bsg2.jpg') center center / cover no-repeat !important;
    position: relative;
    overflow: hidden;
}

/* container for the falling tech lines */
.sec-1-home-14 .rtc-tech-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.rtc-tech-lines span {
    position: absolute;
    top: -20%;
    width: 1px;
    height: 140px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 90, 90, 0) 10%,
        rgba(255, 90, 90, 0.9) 55%,
        rgba(255, 90, 90, 0.9) 65%,
        transparent 100%
    );
    box-shadow: 0 0 6px 1px rgba(255, 77, 90, 0.5);
    animation: rtcLineDrip linear infinite;
}

/* individual lines: varied position, speed, delay, height */
.rtc-tech-lines span:nth-child(1)  { left: 5%;  height: 160px; animation-duration: 4s;   animation-delay: 0s; }
.rtc-tech-lines span:nth-child(2)  { left: 16%; height: 110px; animation-duration: 5s;   animation-delay: 1s; }
.rtc-tech-lines span:nth-child(3)  { left: 28%; height: 190px; animation-duration: 4.5s; animation-delay: 0.5s; }
.rtc-tech-lines span:nth-child(4)  { left: 39%; height: 130px; animation-duration: 6s;   animation-delay: 2s;   opacity: 0.7; }
.rtc-tech-lines span:nth-child(5)  { left: 50%; height: 150px; animation-duration: 4s;   animation-delay: 0.3s; }
.rtc-tech-lines span:nth-child(6)  { left: 61%; height: 120px; animation-duration: 6.5s; animation-delay: 2.5s; opacity: 0.6; }
.rtc-tech-lines span:nth-child(7)  { left: 72%; height: 170px; animation-duration: 5s;   animation-delay: 1.5s; }
.rtc-tech-lines span:nth-child(8)  { left: 83%; height: 140px; animation-duration: 4.5s; animation-delay: 3s;   opacity: 0.75; }
.rtc-tech-lines span:nth-child(9)  { left: 92%; height: 115px; animation-duration: 5.5s; animation-delay: 0.8s; }
.rtc-tech-lines span:nth-child(10) { left: 12%; height: 155px; animation-duration: 4s;   animation-delay: 3.5s; opacity: 0.65; }

@keyframes rtcLineDrip {
    0%   { transform: translateY(0); opacity: 0; }
    10%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateY(160vh); opacity: 0; }
}

/* keep hero content above the lines */
.sec-1-home-14 > *:not(.rtc-tech-lines) {
    position: relative;
    z-index: 2;
}

.at-megamenu--wide {
    min-width: 640px;
}
.at-megamenu--wide .at-megamenu-box + .at-megamenu-box {
    margin-top: 20px;
}



.rtc-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
    background: rgba(0,0,0,.05);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.rtc-theme-toggle:hover { background: rgba(0,0,0,.1); }

/* dark = default state, shows moon */
.rtc-theme-icon--sun { display: none; }
.rtc-theme-icon--moon { display: block; }

body.light-mode .rtc-theme-toggle {
    background: rgba(0,0,0,.05);
    border-color: rgba(0,0,0,.15);
    color: #000;
}
body.light-mode .rtc-theme-icon--sun { display: block; }
body.light-mode .rtc-theme-icon--moon { display: none; }

/* ---- Light mode overrides ---- */
body.light-mode .sec-1-home-14 {
    background: none !important;
}
body.light-mode .rtc-gradient-text2 {
    -webkit-text-fill-color: #5f0707;
}
body.light-mode .rtc-subheadline {
    color: #000000;
}
body.light-mode .rtc-partners-strip__label {
    color: #000000;
}
body.light-mode .rtc-partners-strip__group img {
    filter: grayscale(1);
}
body.light-mode .sec-1-home-14__tagline {
        color: #d81b2c;
}



.light-mode .rtc-tech-lines {
    opacity: 0;
    pointer-events: none;
}

.rtc-tech-lines {
    transition: opacity 0.4s ease;
}

