/* ═══════════════════════════════════════════════════════════════
   RAVIN CHAT — premium dark landing (RTL)
   Deep dark base · gold accent · glass surfaces · refined type.
   Namespaced .rl-*  ·  loaded only on the landing page.
   ═══════════════════════════════════════════════════════════════ */
body.rl-page { background: #07080b; }
/* professional layered background: soft gold auroras + faint dot grid */
body.rl-page::before {
    content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 92% 55% at 50% -8%, rgba(234,179,8,.13), transparent 60%),
        radial-gradient(circle 520px at 86% 10%, rgba(250,204,21,.08), transparent 70%),
        radial-gradient(circle 620px at 5% 74%, rgba(234,179,8,.06), transparent 72%),
        radial-gradient(circle 520px at 50% 108%, rgba(99,102,241,.06), transparent 70%);
    animation: rlBgDrift 26s ease-in-out infinite alternate;
}
body.rl-page::after {
    content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(ellipse 120% 75% at 50% -6%, #000, transparent 72%);
    mask-image: radial-gradient(ellipse 120% 75% at 50% -6%, #000, transparent 72%);
}
@keyframes rlBgDrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-1.5%,-2.5%,0) scale(1.05); } }
@media (prefers-reduced-motion: reduce) { body.rl-page::before { animation: none; } }
.rl {
    --bg: #08090c; --bg-2: #0d0e13;
    --surf: rgba(255,255,255,.035); --surf-2: rgba(255,255,255,.055);
    --ln: rgba(255,255,255,.08); --ln-2: rgba(255,255,255,.14);
    --tx: #eef0f4; --tx-2: #9aa1ad; --tx-3: #6b7280;
    --gold: #eab308; --gold-2: #facc15; --gold-d: #ca8a04;
    --gold-soft: rgba(234,179,8,.12); --gold-ln: rgba(234,179,8,.4);
    --r: 20px; --r-lg: 28px; --maxw: 1160px;
    font-family: 'Peyda', system-ui, sans-serif;
    color: var(--tx); background: transparent; line-height: 1.75;
    position: relative; z-index: 1;
    -webkit-font-smoothing: antialiased;
}
.rl *, .rl *::before, .rl *::after { box-sizing: border-box; }
.rl img { max-width: 100%; display: block; }
.rl a { text-decoration: none; color: inherit; }
.rl-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.rl h1, .rl h2, .rl h3 { color: var(--tx); letter-spacing: -.03em; line-height: 1.18; margin: 0; }
.rl section { position: relative; }
.rl ::selection { background: rgba(234,179,8,.28); color: #fff; }

/* content always visible (defeats global .reveal{opacity:0}); gentle load-in */
.rl .reveal { opacity: 1 !important; transform: none !important; animation: rlUp .7s cubic-bezier(.22,1,.36,1) both; }
@keyframes rlUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rl .reveal { animation: none; } }

/* ─── buttons ─── */
.rl-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: inherit; font-weight: 700; font-size: .95rem; padding: .8rem 1.5rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent; transition: transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s; white-space: nowrap; }
.rl-btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); color: #17140a; box-shadow: 0 8px 24px -6px rgba(234,179,8,.5); }
.rl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(234,179,8,.6); }
.rl-btn-ghost { background: transparent; color: var(--tx-2); }
.rl-btn-ghost:hover { color: var(--tx); }
.rl-btn-soft { background: var(--surf-2); color: var(--tx); border-color: var(--ln-2); }
.rl-btn-soft:hover { border-color: var(--gold-ln); color: var(--gold-2); transform: translateY(-2px); }
.rl-btn-dark { background: #fff; color: #0a0a0c; }
.rl-btn-dark:hover { transform: translateY(-2px); background: #f0f0f0; }
.rl-btn-white { background: #0f1013; color: #fff; border-color: rgba(255,255,255,.14); }
.rl-btn-white:hover { transform: translateY(-2px); border-color: var(--gold-ln); }
.rl-btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
/* `.rl a { color: inherit }` would otherwise override button text colors —
   pin the solid buttons so their labels keep the right contrast. */
.rl a.rl-btn-primary, .rl button.rl-btn-primary { color: #17140a; }
.rl a.rl-btn-white, .rl button.rl-btn-white { color: #fff; }
.rl a.rl-btn-dark, .rl button.rl-btn-dark { color: #0a0a0c; }

/* ─── nav (full-width minimal bar, blurs on scroll) ─── */
.rl-nav { position: fixed; top: 0; inset-inline: 0; z-index: 100; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, backdrop-filter .3s; }
.rl-nav.scrolled { background: rgba(9,10,13,.72); -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3); border-bottom-color: var(--ln); }
.rl-nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 15px 24px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.rl-logo { display: flex; align-items: center; gap: .65rem; font-weight: 900; font-size: 1.18rem; color: var(--tx); letter-spacing: -.02em; }
.rl-logo-mark { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(150deg,#26272e,#101116); border: 1px solid var(--gold-ln); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px -5px rgba(234,179,8,.45); }
.rl-logo-mark img { width: 21px; height: 21px; object-fit: contain; }
.rl-nav-links { display: flex; gap: 2rem; }
.rl-nav-links a { font-size: .92rem; font-weight: 600; color: var(--tx-2); transition: color .18s; position: relative; }
.rl-nav-links a::after { content: ''; position: absolute; bottom: -6px; inset-inline: 0; height: 2px; border-radius: 2px; background: var(--gold-2); transform: scaleX(0); transition: transform .2s; }
.rl-nav-links a:hover { color: var(--tx); }
.rl-nav-links a:hover::after { transform: scaleX(1); }
.rl-nav-actions { display: flex; align-items: center; gap: .8rem; }
.rl-nav-actions .rl-btn-ghost { padding: .5rem .4rem; }
/* mobile hamburger + drawer */
.rl-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 9px; }
.rl-burger span { width: 24px; height: 2px; background: var(--tx); border-radius: 2px; transition: transform .25s, opacity .2s; }
.rl-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rl-burger.open span:nth-child(2) { opacity: 0; }
.rl-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.rl-nav.menu-open { background: rgba(9,10,13,.98); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
/* animated slide-down drawer */
.rl-mobile-menu { display: flex; flex-direction: column; padding: 0 24px; overflow: hidden; background: rgba(9,10,13,.98); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border-bottom: 1px solid transparent; max-height: 0; opacity: 0; transform: translateY(-10px); transition: max-height .4s cubic-bezier(.22,1,.36,1), opacity .3s ease, transform .4s cubic-bezier(.22,1,.36,1), padding .4s ease, border-color .4s ease; }
.rl-mobile-menu.open { max-height: calc(100vh - 62px); opacity: 1; transform: translateY(0); padding: .5rem 24px 1.5rem; border-bottom-color: var(--ln); overflow-y: auto; }
.rl-mobile-menu a.rl-m-link { font-size: 1.05rem; font-weight: 600; color: var(--tx-2); padding: .95rem .4rem; border-bottom: 1px solid rgba(255,255,255,.06); opacity: 0; transform: translateY(-8px); transition: color .18s, opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.rl-mobile-menu a.rl-m-link:hover { color: var(--gold-2); }
.rl-mobile-menu.open a.rl-m-link { opacity: 1; transform: none; }
.rl-mobile-menu.open a.rl-m-link:nth-child(1) { transition-delay: .06s; }
.rl-mobile-menu.open a.rl-m-link:nth-child(2) { transition-delay: .1s; }
.rl-mobile-menu.open a.rl-m-link:nth-child(3) { transition-delay: .14s; }
.rl-mobile-menu.open a.rl-m-link:nth-child(4) { transition-delay: .18s; }
.rl-mobile-menu.open a.rl-m-link:nth-child(5) { transition-delay: .22s; }
.rl-mobile-actions { display: flex; gap: .6rem; margin-top: 1.1rem; opacity: 0; transform: translateY(-8px); transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.rl-mobile-menu.open .rl-mobile-actions { opacity: 1; transform: none; transition-delay: .28s; }
.rl-mobile-actions .rl-btn { flex: 1; justify-content: center; }
/* dim backdrop behind the open drawer */
.rl-menu-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .32s ease, visibility 0s .32s; }
.rl-menu-backdrop.open { opacity: 1; visibility: visible; transition: opacity .32s ease; }
@media (prefers-reduced-motion: reduce) { .rl-mobile-menu, .rl-mobile-menu a.rl-m-link, .rl-mobile-actions, .rl-burger span { transition-duration: .01ms !important; } }

/* ─── hero ─── */
.rl-hero { padding: 168px 0 90px; overflow: hidden; }
.rl-hero::before { content: ''; position: absolute; inset: 0; z-index: -2;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 52px 52px; mask-image: radial-gradient(ellipse 70% 55% at 60% 25%, #000 20%, transparent 72%); -webkit-mask-image: radial-gradient(ellipse 70% 55% at 60% 25%, #000 20%, transparent 72%); }
.rl-blob { position: absolute; border-radius: 50%; filter: blur(90px); z-index: -1; pointer-events: none; }
.rl-blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(234,179,8,.34), transparent 68%); top: -160px; inset-inline-end: -60px; animation: rlBlobA 15s ease-in-out infinite alternate; }
.rl-blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(250,204,21,.20), transparent 70%); top: 160px; inset-inline-start: -120px; animation: rlBlobB 19s ease-in-out infinite alternate; }
.rl-blob-3 { display: none; }
@keyframes rlBlobA { from { transform: translate(0,0) scale(1); } to { transform: translate(-46px,54px) scale(1.14); } }
@keyframes rlBlobB { from { transform: translate(0,0) scale(1); } to { transform: translate(54px,-34px) scale(1.12); } }
/* live rising chat-glow particles */
.rl-hero-fx { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.rl-fx { position: absolute; bottom: -24px; border-radius: 50%; background: radial-gradient(circle, rgba(250,204,21,.9), rgba(234,179,8,.15)); box-shadow: 0 0 14px rgba(234,179,8,.55); opacity: 0; animation: rlRise linear infinite; }
@keyframes rlRise {
    0% { transform: translateY(0) scale(.5); opacity: 0; }
    12% { opacity: .85; }
    85% { opacity: .45; }
    100% { transform: translateY(-70vh) scale(1.15); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .rl-blob-1, .rl-blob-2, .rl-fx { animation: none; } .rl-fx { display: none; } }
.rl-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.rl-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem 1rem; border-radius: 100px; background: var(--surf); border: 1px solid var(--ln); font-size: .8rem; font-weight: 600; color: var(--tx-2); margin-bottom: 1.7rem; }
.rl-badge b { color: var(--gold-2); }
.rl-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 4px rgba(234,179,8,.18); }
.rl-hero h1 { font-size: 3.7rem; font-weight: 900; letter-spacing: -.045em; }
.rl-hl { position: relative; white-space: nowrap; }
.rl-hl-green, .rl-hl-coral { background: linear-gradient(120deg, var(--gold-2), var(--gold-d)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rl-hero-sub { font-size: 1.18rem; color: var(--tx-2); margin: 1.5rem 0 2rem; max-width: 520px; line-height: 1.9; }
.rl-hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.rl-hero-note { margin-top: 1.6rem; font-size: .85rem; color: var(--tx-3); display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.rl-hero-note span { display: inline-flex; align-items: center; gap: .4rem; }
.rl-hero-note svg { color: var(--gold-2); }
.rl-rating { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.8rem; }
.rl-rating-avatars { display: flex; }
.rl-rating-avatars span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg); margin-inline-start: -10px; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); display: inline-block; }
.rl-rating-avatars span:nth-child(2){ background: linear-gradient(135deg,#34d399,#059669);} .rl-rating-avatars span:nth-child(3){ background: linear-gradient(135deg,#818cf8,#4f46e5);} .rl-rating-avatars span:nth-child(4){ background: linear-gradient(135deg,#fb7185,#e11d48);}
.rl-rating-stars { color: var(--gold-2); font-size: 1.02rem; letter-spacing: 2px; }
.rl-rating-txt { font-size: .84rem; color: var(--tx-3); }
.rl-rating-txt b { color: var(--tx); }

/* hero product mockup */
.rl-mock { position: relative; }
.rl-mock-glow { position: absolute; inset: -12% -8%; border-radius: 40px; background: radial-gradient(circle at 60% 30%, rgba(234,179,8,.25), transparent 60%); z-index: 0; filter: blur(30px); }
.rl-float { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: .45rem; background: rgba(20,21,26,.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--ln-2); color: var(--tx); font-size: .78rem; font-weight: 700; padding: .5rem .8rem; border-radius: 100px; box-shadow: 0 12px 30px rgba(0,0,0,.5); }
.rl-float svg { color: var(--gold-2); }
.rl-float-1 { top: 8%; inset-inline-start: -8%; animation: rlFloat 4s ease-in-out infinite; }
.rl-float-2 { bottom: 12%; inset-inline-end: -6%; animation: rlFloat 4.6s ease-in-out infinite reverse; }
@keyframes rlFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.rl-browser { position: relative; z-index: 1; background: #101116; border: 1px solid var(--ln-2); border-radius: 22px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); overflow: hidden; }
.rl-browser-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--ln); background: rgba(255,255,255,.02); }
.rl-browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.14); }
.rl-browser-url { margin-inline-start: 12px; font-size: .72rem; color: var(--tx-3); direction: ltr; }
.rl-chat { padding: 18px; }
.rl-chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--ln); }
.rl-chat-av { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg,#26272e,#121317); border: 1px solid var(--gold-ln); display: flex; align-items: center; justify-content: center; }
.rl-chat-av img { width: 20px; height: 20px; object-fit: contain; }
.rl-chat-id b { display: block; font-size: .88rem; color: var(--tx); }
.rl-chat-id span { font-size: .72rem; color: var(--tx-3); display: flex; align-items: center; gap: 5px; }
.rl-chat-id i { width: 6px; height: 6px; border-radius: 50%; background: #34d399; }
.rl-chat-body { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; }
.rl-b { max-width: 82%; padding: .65rem .9rem; border-radius: 15px; font-size: .84rem; line-height: 1.7; }
.rl-b-in { align-self: flex-start; background: var(--surf-2); color: var(--tx); border-bottom-left-radius: 4px; }
.rl-b-out { align-self: flex-end; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); color: #17140a; font-weight: 600; border-bottom-right-radius: 4px; }
.rl-chat-input { display: flex; align-items: center; justify-content: space-between; padding: .7rem 1rem; border-radius: 12px; background: var(--surf); border: 1px solid var(--ln); font-size: .8rem; color: var(--tx-3); }
.rl-chat-send { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); color: #17140a; display: flex; align-items: center; justify-content: center; }

/* ─── marquee ─── */
.rl-marquee { border-block: 1px solid var(--ln); padding: 18px 0; overflow: hidden; background: var(--bg-2); }
.rl-marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: rlMarquee 30s linear infinite; width: max-content; }
.rl-marquee-item { font-size: 1rem; font-weight: 700; color: var(--tx-3); display: inline-flex; align-items: center; gap: 3rem; }
.rl-marquee-item::before { content: '✦'; color: var(--gold-2); }
@keyframes rlMarquee { to { transform: translateX(50%); } }

/* ─── section shell ─── */
.rl-sec { padding: 90px 0; }
.rl-sec.alt { background: rgba(255,255,255,.018); }
.rl-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.rl-eyebrow { display: inline-block; font-size: .78rem; font-weight: 800; color: var(--gold-2); background: var(--gold-soft); border: 1px solid var(--gold-ln); padding: .3rem .9rem; border-radius: 100px; margin-bottom: 1rem; }
.rl-h2 { font-size: 2.4rem; font-weight: 900; letter-spacing: -.035em; }
.rl-lead { color: var(--tx-2); font-size: 1.05rem; margin-top: .9rem; line-height: 1.9; }

/* ─── stats ─── */
.rl-stats { padding: 54px 0; }
.rl-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rl-stat { text-align: center; padding: 1.5rem 1rem; border-radius: var(--r); background: var(--surf); border: 1px solid var(--ln); }
.rl-stat-num { font-size: 2.6rem; font-weight: 900; letter-spacing: -.04em; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rl-stat-lbl { font-size: .84rem; color: var(--tx-2); margin-top: .3rem; }

/* ─── features ─── */
.rl-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rl-feat { padding: 1.8rem; border-radius: var(--r); background: var(--surf); border: 1px solid var(--ln); transition: transform .2s, border-color .2s, background .2s; }
.rl-feat:hover { transform: translateY(-4px); border-color: var(--gold-ln); background: var(--surf-2); }
.rl-feat-ic { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid var(--gold-ln); color: var(--gold-2); margin-bottom: 1.1rem; }
.rl-feat h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: .5rem; }
.rl-feat p { color: var(--tx-2); font-size: .92rem; line-height: 1.85; }

/* ─── steps ─── */
.rl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rl-step { padding: 1.8rem; border-radius: var(--r); background: var(--surf); border: 1px solid var(--ln); text-align: center; }
.rl-step-n { width: 46px; height: 46px; border-radius: 14px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 900; color: #17140a; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); box-shadow: 0 8px 20px -6px rgba(234,179,8,.5); }
.rl-step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; }
.rl-step p { color: var(--tx-2); font-size: .9rem; line-height: 1.8; }

/* ─── showcase split ─── */
.rl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.rl-split-txt h2 { font-size: 2.1rem; font-weight: 900; letter-spacing: -.035em; margin: .8rem 0 1rem; }
.rl-split-txt > p { color: var(--tx-2); font-size: 1.02rem; line-height: 1.9; margin-bottom: 1.5rem; }
.rl-check-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.8rem; }
.rl-check { display: flex; align-items: center; gap: .7rem; color: var(--tx); font-size: .95rem; }
.rl-check b { color: var(--gold-2); font-weight: 700; }
.rl-check-ic { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid var(--gold-ln); color: var(--gold-2); }
.rl-shot { background: #101116; border: 1px solid var(--ln-2); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); }
.rl-shot-top { display: flex; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--ln); }
.rl-shot-top i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.14); }
.rl-shot-body { display: grid; grid-template-columns: 64px 1fr; min-height: 260px; }
.rl-shot-rail { border-inline-end: 1px solid var(--ln); padding: 16px 0; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.rl-shot-rail span { width: 30px; height: 30px; border-radius: 9px; background: var(--surf-2); }
.rl-shot-rail span:first-child { background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); }
.rl-shot-main { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.rl-shot-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; background: var(--surf); border: 1px solid var(--ln); }
.rl-shot-row.active { border-color: var(--gold-ln); background: var(--gold-soft); }
.rl-shot-row i { width: 36px; height: 36px; border-radius: 50%; background: var(--surf-2); flex-shrink: 0; }
.rl-shot-row.active i { background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); }
.rl-shot-row b { height: 9px; width: 70%; border-radius: 100px; background: var(--surf-2); display: block; }

/* ─── pricing ─── */
.rl-price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.rl-price-grid .rl-price { padding: 1.8rem 1.4rem; }
.rl-price { position: relative; padding: 2rem 1.7rem; border-radius: var(--r-lg); background: var(--surf); border: 1px solid var(--ln); display: flex; flex-direction: column; }
.rl-price.feat { background: linear-gradient(180deg, rgba(234,179,8,.1), var(--surf)); border-color: var(--gold-ln); box-shadow: 0 24px 60px -24px rgba(234,179,8,.35); }
.rl-price-tag { position: absolute; top: -13px; inset-inline-end: 22px; font-size: .72rem; font-weight: 800; color: #17140a; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); padding: .3rem .85rem; border-radius: 100px; }
.rl-price-name { font-size: 1.05rem; font-weight: 800; color: var(--tx); }
.rl-price-off { display: inline-block; font-size: .72rem; font-weight: 800; color: var(--gold-2); background: var(--gold-soft); border: 1px solid var(--gold-ln); padding: .15rem .6rem; border-radius: 100px; margin-top: .8rem; }
.rl-price-amount { font-size: 2.1rem; font-weight: 900; letter-spacing: -.03em; margin: .5rem 0 1.3rem; color: var(--tx); }
.rl-price-amount span { font-size: .85rem; font-weight: 600; color: var(--tx-3); }
.rl-price-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.rl-price-list li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--tx-2); }
.rl-price-list svg { color: var(--gold-2); flex-shrink: 0; }

/* ─── testimonials ─── */
.rl-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rl-quote { padding: 1.8rem; border-radius: var(--r); background: var(--surf); border: 1px solid var(--ln); }
.rl-quote-stars { color: var(--gold-2); letter-spacing: 2px; margin-bottom: .9rem; }
.rl-quote p { color: var(--tx); font-size: .96rem; line-height: 1.95; margin-bottom: 1.3rem; }
.rl-quote-by { display: flex; align-items: center; gap: .7rem; }
.rl-quote-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #17140a; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); }
.rl-quote-by b { display: block; font-size: .9rem; color: var(--tx); }
.rl-quote-by span { font-size: .78rem; color: var(--tx-3); }

/* ─── faq ─── */
.rl-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.rl-faq-item { border: 1px solid var(--ln); border-radius: 16px; background: var(--surf); overflow: hidden; transition: border-color .2s; }
.rl-faq-item.open { border-color: var(--gold-ln); }
.rl-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.4rem; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--tx); text-align: right; }
.rl-faq-q svg { color: var(--gold-2); flex-shrink: 0; transition: transform .25s; }
.rl-faq-item.open .rl-faq-q svg { transform: rotate(45deg); }
.rl-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.rl-faq-item.open .rl-faq-a { max-height: 320px; }
.rl-faq-a > div { padding: 0 1.4rem 1.3rem; color: var(--tx-2); font-size: .93rem; line-height: 1.95; }

/* ─── CTA ─── */
.rl-cta { position: relative; overflow: hidden; text-align: center; padding: 4rem 2rem; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); color: #17140a; }
.rl-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px); background-size: 22px 22px; }
.rl-cta h2 { position: relative; font-size: 2.2rem; font-weight: 900; color: #17140a; letter-spacing: -.035em; }
.rl-cta p { position: relative; font-size: 1.05rem; color: rgba(23,20,10,.75); margin: .8rem auto 1.8rem; max-width: 520px; }
.rl-cta .rl-btn-white { position: relative; }

/* ─── blog ─── */
.rl-head-row { display: flex; align-items: flex-end; justify-content: space-between; text-align: right; max-width: none; }
.rl-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rl-post { border-radius: var(--r); background: var(--surf); border: 1px solid var(--ln); overflow: hidden; transition: transform .2s, border-color .2s; }
.rl-post:hover { transform: translateY(-4px); border-color: var(--gold-ln); }
.rl-post-cover { height: 160px; background: linear-gradient(135deg, #1a1b21, #101116); border-bottom: 1px solid var(--ln); }
.rl-post-body { padding: 1.3rem; }
.rl-post-body h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: .5rem; }
.rl-post-body p { color: var(--tx-2); font-size: .87rem; line-height: 1.8; }

/* ─── footer ─── */
.rl-footer { border-top: 1px solid var(--ln); padding: 60px 0 30px; background: rgba(255,255,255,.02); }
.rl-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.rl-footer-brand p { color: var(--tx-3); font-size: .88rem; line-height: 1.85; margin-top: 1rem; max-width: 300px; }
.rl-footer-col h4 { font-size: .85rem; font-weight: 800; color: var(--tx); margin-bottom: 1rem; }
.rl-footer-col a { display: block; color: var(--tx-3); font-size: .88rem; margin-bottom: .7rem; transition: color .15s; }
.rl-footer-col a:hover { color: var(--gold-2); }
.rl-footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--ln); color: var(--tx-3); font-size: .82rem; }

/* ─── responsive ─── */
@media (max-width: 900px) {
    .rl-hero-grid, .rl-split { grid-template-columns: 1fr; gap: 40px; }
    .rl-mock, .rl-shot { max-width: 460px; margin: 0 auto; }
    .rl-hero h1 { font-size: 2.9rem; }
    .rl-feat-grid, .rl-steps, .rl-price-grid, .rl-quotes, .rl-posts, .rl-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .rl-nav-links { display: none; }
    .rl-nav-actions { display: none; }
    .rl-burger { display: flex; }
    .rl-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 901px) {
    .rl-mobile-menu { display: none !important; }
    .rl-burger { display: none !important; }
}
@media (max-width: 560px) {
    .rl-hero { padding: 130px 0 64px; }
    .rl-hero h1 { font-size: 2.3rem; }
    .rl-h2 { font-size: 1.9rem; }
    .rl-sec { padding: 64px 0; }
    .rl-feat-grid, .rl-steps, .rl-price-grid, .rl-quotes, .rl-posts, .rl-stats-grid, .rl-footer-grid { grid-template-columns: 1fr; }
    .rl-float { display: none; }
    .rl-hero-note { gap: .8rem; }
}

/* ═══════════ BENTO layout (Linear/Vercel style) ═══════════ */
.rl-hero-c { padding: 150px 0 40px; text-align: center; }
.rl-hero-c .rl-badge { margin-inline: auto; }
.rl-hero-c h1 { font-size: 4.1rem; font-weight: 900; letter-spacing: -.05em; max-width: 15ch; margin: 0 auto; }
.rl-hero-c .rl-hero-sub { margin: 1.5rem auto 2rem; text-align: center; }
.rl-hero-c .rl-hero-cta { justify-content: center; }
.rl-hero-c .rl-hero-note { justify-content: center; }

.rl-bento-sec { padding: 40px 0 90px; }
.rl-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 186px; gap: 16px; }
.rl-bento-card { border-radius: 24px; background: var(--surf); border: 1px solid var(--ln); padding: 1.5rem 1.6rem; position: relative; overflow: hidden; display: flex; flex-direction: column; transition: border-color .22s, transform .22s, background .22s; }
.rl-bento-card:hover { border-color: var(--gold-ln); transform: translateY(-3px); background: var(--surf-2); }
.rl-bento-card > .bento-ic { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid var(--gold-ln); color: var(--gold-2); margin-bottom: auto; }
.rl-bento-card h3 { font-size: 1.12rem; font-weight: 800; margin-top: 1rem; }
.rl-bento-card p { color: var(--tx-2); font-size: .88rem; line-height: 1.8; margin-top: .4rem; }
.rl-bento-card .bento-glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(234,179,8,.18), transparent 65%); filter: blur(20px); top: -60px; inset-inline-end: -40px; pointer-events: none; }
.b-2x2 { grid-column: span 2; grid-row: span 2; }
.b-2x1 { grid-column: span 2; }
.b-1x2 { grid-row: span 2; }

/* bento stat */
.bento-stat .bento-num { font-size: 3rem; font-weight: 900; letter-spacing: -.04em; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-top: auto; }
.bento-stat .bento-lbl { color: var(--tx-2); font-size: .86rem; }

/* bento big mockup (inbox) */
.b-mock { padding: 0; }
.b-mock-top { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--ln); }
.b-mock-top i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.14); }
.b-mock-top span { margin-inline-start: 8px; font-size: .72rem; color: var(--tx-3); }
.b-mock-grid { display: grid; grid-template-columns: 1fr 1.3fr; height: calc(100% - 45px); }
.b-mock-list { border-inline-end: 1px solid var(--ln); padding: 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.b-mock-item { display: flex; align-items: center; gap: 9px; padding: 9px; border-radius: 11px; background: var(--surf); }
.b-mock-item.on { background: var(--gold-soft); border: 1px solid var(--gold-ln); }
.b-mock-item i { width: 30px; height: 30px; border-radius: 50%; background: var(--surf-2); flex-shrink: 0; }
.b-mock-item.on i { background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); }
.b-mock-item b { height: 7px; width: 60%; border-radius: 100px; background: var(--surf-2); display: block; }
.b-mock-item.on b { background: rgba(234,179,8,.4); }
.b-mock-chat { padding: 16px; display: flex; flex-direction: column; gap: 9px; justify-content: flex-end; }
.b-mock-b { max-width: 84%; padding: .55rem .85rem; border-radius: 13px; font-size: .8rem; line-height: 1.65; }
.b-mock-b.in { align-self: flex-start; background: var(--surf-2); color: var(--tx); }
.b-mock-b.out { align-self: flex-end; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); color: #17140a; font-weight: 600; }

/* bento avatars (team) */
.bento-avs { display: flex; margin-top: auto; }
.bento-avs span { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg-2); margin-inline-start: -12px; background: linear-gradient(135deg, var(--gold-2), var(--gold-d)); display: flex; align-items: center; justify-content: center; color: #17140a; font-weight: 800; font-size: .8rem; }
.bento-avs span:nth-child(2){background:linear-gradient(135deg,#34d399,#059669);} .bento-avs span:nth-child(3){background:linear-gradient(135deg,#818cf8,#4f46e5);} .bento-avs span:nth-child(4){background:linear-gradient(135deg,#fb7185,#e11d48);} .bento-avs span:first-child{margin-inline-start:0;}

/* bento install code */
.bento-code { margin-top: auto; direction: ltr; text-align: left; font-family: ui-monospace, monospace; font-size: .72rem; color: var(--tx-2); background: rgba(0,0,0,.35); border: 1px solid var(--ln); border-radius: 12px; padding: .8rem; line-height: 1.7; overflow: hidden; }
.bento-code .t-gold { color: var(--gold-2); }

/* bento phone hint */
.bento-phone { margin-top: auto; align-self: flex-start; width: 84px; height: 60px; border-radius: 12px 12px 0 0; border: 1px solid var(--ln-2); border-bottom: none; background: var(--surf-2); position: relative; overflow: hidden; }
.bento-phone::before { content: ''; position: absolute; inset: 8px 8px 0; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--gold-soft), transparent); }

@media (max-width: 900px) {
    .rl-hero-c h1 { font-size: 2.9rem; }
    .rl-bento { grid-template-columns: repeat(2, 1fr); }
    .b-2x2, .b-2x1 { grid-column: span 2; }
    .b-2x2 { grid-row: span 2; }
}
@media (max-width: 560px) {
    .rl-hero-c h1 { font-size: 2.2rem; }
    .rl-bento { grid-template-columns: 1fr; grid-auto-rows: 170px; }
    .b-2x2, .b-2x1, .b-1x2 { grid-column: auto; grid-row: auto; }
    .b-2x2 { grid-row: span 2; }
}
