:root {
    --rl-navy: #08071f;
    --rl-navy-2: #10082d;
    --rl-navy-3: #18083b;
    --rl-pink: #ff2f92;
    --rl-pink-2: #f01879;
    --rl-pink-soft: #fff1f8;
    --rl-purple: #6d22c9;
    --rl-text: #111128;
    --rl-muted: #626276;
    --rl-line: #e8e7ee;
    --rl-white: #ffffff;
    --rl-soft: #faf9fc;
    --rl-shell: 1380px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--rl-white);
    color: var(--rl-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.rl-shell {
    width: min(var(--rl-shell), calc(100% - 64px));
    margin: 0 auto;
}

.rl-icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* -------------------------------------------------------
   Header
------------------------------------------------------- */

.rl-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 104px;
    color: var(--rl-white);
}

.rl-header-inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: 310px 1fr 190px;
    align-items: center;
    gap: 34px;
}

.rl-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.rl-logo img {
    display: block;
    width: auto;
    height: 56px;
    max-width: 250px;
    object-fit: contain;
}

.rl-logo-mark {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border-radius: 9px;
    background: var(--rl-pink);
    color: white;
    font-size: 20px;
}

.rl-logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.rl-logo-copy strong {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.rl-logo-copy strong span {
    color: var(--rl-pink);
}

.rl-logo-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .68);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .8px;
}

.rl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.rl-nav a {
    position: relative;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 700;
    transition: color .18s ease;
}

.rl-nav a:hover {
    color: var(--rl-pink);
}

.rl-header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 165px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--rl-pink);
    border-radius: 6px;
    color: var(--rl-pink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .35px;
    transition:
        background .18s ease,
        color .18s ease;
}

.rl-header-cta:hover {
    background: var(--rl-pink);
    color: #fff;
}

.rl-header-cta svg,
.rl-button svg,
.rl-outline-button svg,
.rl-final-cta a svg,
.rl-theme-note a svg {
    width: 18px;
    height: 18px;
}

/* -------------------------------------------------------
   Hero
------------------------------------------------------- */

.rl-hero {
    position: relative;
    min-height: 750px;
    padding: 154px 0 92px;
    overflow: hidden;
    background:
        radial-gradient(circle at 73% 48%, rgba(104, 25, 194, .24), transparent 30%),
        radial-gradient(circle at 7% 75%, rgba(255, 35, 139, .12), transparent 28%),
        linear-gradient(115deg, #09081f 0%, #0b0825 48%, #160733 100%);
    color: #fff;
}

.rl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    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: 48px 48px;
    pointer-events: none;
}

.rl-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.rl-hero-glow-one {
    top: 185px;
    left: 46%;
    width: 380px;
    height: 380px;
    background: rgba(93, 29, 190, .14);
}

.rl-hero-glow-two {
    right: -120px;
    bottom: 0;
    width: 350px;
    height: 350px;
    background: rgba(255, 47, 146, .10);
}

.rl-hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(350px, .93fr) minmax(480px, 1.24fr) minmax(300px, .72fr);
    gap: 42px;
    align-items: center;
}

.rl-hero-copy {
    padding-top: 18px;
}

.rl-eyebrow,
.rl-section-label,
.rl-trust-kicker {
    margin: 0;
    color: var(--rl-pink);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.rl-hero h1 {
    max-width: 500px;
    margin: 18px 0 0;
    font-size: clamp(52px, 4vw, 72px);
    line-height: .98;
    letter-spacing: -3.5px;
    font-weight: 900;
}

.rl-hero h1 span {
    color: var(--rl-pink);
}

.rl-hero-intro {
    max-width: 475px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.75;
}

.rl-hero-points {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 14px 23px;
    margin-top: 32px;
}

.rl-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .94);
    font-size: 12px;
    font-weight: 700;
}

.rl-hero-points svg {
    width: 17px;
    height: 17px;
    color: var(--rl-pink);
}

/* Product screenshot */

.rl-hero-product {
    position: relative;
    min-height: 495px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rl-product-screen {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    background: #171222;
    box-shadow:
        0 40px 80px rgba(0,0,0,.42),
        0 0 0 1px rgba(255,255,255,.02);
}

.rl-product-screen::before {
    content: "";
    display: block;
    height: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #0d0d16;
}

.rl-product-screen img {
    display: block;
    width: 100%;
    min-height: 430px;
    max-height: 485px;
    object-fit: cover;
    object-position: top center;
}

.rl-product-phone {
    position: absolute;
    z-index: 5;
    left: -38px;
    bottom: -12px;
    width: 142px;
    height: 292px;
    overflow: hidden;
    border: 5px solid #15131d;
    border-radius: 28px;
    background: #15131d;
    box-shadow: 0 24px 45px rgba(0,0,0,.42);
}

.rl-product-phone::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 4px;
    left: 50%;
    width: 48px;
    height: 11px;
    border-radius: 0 0 8px 8px;
    background: #15131d;
    transform: translateX(-50%);
}

.rl-product-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Waitlist */

.rl-waitlist-card {
    position: relative;
    margin-top: 55px;
    padding: 34px 28px 28px;
    border-radius: 14px;
    background: #fff;
    color: var(--rl-text);
    box-shadow: 0 30px 65px rgba(0,0,0,.25);
}

.rl-waitlist-card h2 {
    margin: 0;
    font-size: 36px;
    line-height: .97;
    letter-spacing: -1.7px;
    font-weight: 900;
}

.rl-waitlist-card h2 span {
    color: var(--rl-pink);
}

.rl-waitlist-card > p {
    margin: 19px 0 23px;
    color: #5d5c69;
    font-size: 12px;
    line-height: 1.6;
}

.rl-waitlist-card form {
    display: grid;
    gap: 10px;
}

.rl-waitlist-card input {
    width: 100%;
    height: 43px;
    padding: 0 13px;
    border: 1px solid #e3e2e8;
    border-radius: 5px;
    background: #fff;
    color: var(--rl-text);
    font-size: 12px;
    outline: none;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.rl-waitlist-card input::placeholder {
    color: #9695a0;
}

.rl-waitlist-card input:focus {
    border-color: var(--rl-pink);
    box-shadow: 0 0 0 3px rgba(255,47,146,.09);
}

.rl-waitlist-card button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin-top: 4px;
    border: 0;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--rl-pink-2), var(--rl-pink));
    color: white;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
    cursor: pointer;
}

.rl-waitlist-card button svg {
    width: 18px;
    height: 18px;
}

.rl-message {
    margin: 0 0 14px;
    padding: 11px 13px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.rl-message ul {
    margin: 5px 0 0;
    padding-left: 17px;
}

.rl-message-success {
    background: #dcfce7;
    color: #166534;
}

.rl-message-error {
    background: #fee2e2;
    color: #991b1b;
}

/* decorative broadcast lines */

.rl-radio-lines {
    position: absolute;
    z-index: 1;
    left: -3%;
    bottom: -76px;
    width: 56%;
    height: 270px;
    opacity: .30;
    transform: rotate(-5deg);
}

.rl-radio-lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 90px;
    border-top: 1px solid rgba(255,47,146,.55);
    border-radius: 50%;
}

.rl-radio-lines span:nth-child(1) {
    bottom: 0;
}

.rl-radio-lines span:nth-child(2) {
    bottom: 33px;
}

.rl-radio-lines span:nth-child(3) {
    bottom: 66px;
}

.rl-radio-lines span:nth-child(4) {
    bottom: 99px;
}

/* -------------------------------------------------------
   Trust
------------------------------------------------------- */

.rl-trust-strip {
    padding: 29px 0 34px;
    border-bottom: 1px solid var(--rl-line);
    background: #fff;
}

.rl-trust-kicker {
    text-align: center;
}

.rl-trust-grid {
    max-width: 910px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.rl-trust-grid article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 66px;
    padding: 0 25px;
}

.rl-trust-grid article + article {
    border-left: 1px solid #ecebf1;
}

.rl-trust-grid svg {
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
    color: var(--rl-pink);
}

.rl-trust-grid strong {
    font-size: 13px;
    line-height: 1.35;
}

/* -------------------------------------------------------
   General section
------------------------------------------------------- */

.rl-section {
    padding: 78px 0;
}

.rl-section h2,
.rl-themes h2,
.rl-pricing h2,
.rl-faq h2 {
    margin: 13px 0 0;
    font-size: clamp(38px, 3vw, 54px);
    line-height: 1.02;
    letter-spacing: -2.3px;
    font-weight: 900;
}

/* -------------------------------------------------------
   Features
------------------------------------------------------- */

.rl-features {
    background: #fff;
}

.rl-feature-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 42px 52px;
}

.rl-feature-card {
    min-width: 0;
}

.rl-feature-card > svg {
    width: 41px;
    height: 41px;
    color: var(--rl-pink);
}

.rl-feature-card h3 {
    margin: 14px 0 5px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.25px;
}

.rl-feature-card p {
    max-width: 205px;
    margin: 0;
    color: var(--rl-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* -------------------------------------------------------
   CMS showcase
------------------------------------------------------- */

.rl-showcase {
    border-top: 1px solid var(--rl-line);
    background: var(--rl-soft);
}

.rl-showcase-grid {
    display: grid;
    grid-template-columns: minmax(330px, .72fr) minmax(600px, 1.4fr);
    gap: 85px;
    align-items: center;
}

.rl-showcase-copy > p:not(.rl-section-label) {
    max-width: 440px;
    margin: 25px 0 0;
    color: var(--rl-muted);
    font-size: 14px;
    line-height: 1.72;
}

.rl-showcase-copy ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.rl-showcase-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3a3947;
    font-size: 13px;
    font-weight: 650;
}

.rl-showcase-copy li svg {
    width: 17px;
    height: 17px;
    color: var(--rl-pink);
}

.rl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 48px;
    margin-top: 30px;
    padding: 0 23px;
    border-radius: 5px;
    background: var(--rl-pink);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rl-showcase-images {
    min-width: 0;
}

.rl-showcase-main,
.rl-showcase-small-grid > div {
    overflow: hidden;
    border: 1px solid #e2e1e8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(23,17,45,.06);
}

.rl-showcase-main img {
    display: block;
    width: 100%;
    max-height: 455px;
    object-fit: cover;
    object-position: top center;
}

.rl-showcase-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.rl-showcase-small-grid img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: top center;
}

/* placeholders */

.rl-image-placeholder {
    width: 100%;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 25px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255,47,146,.07), rgba(115,37,206,.09)),
        #100b24;
    color: rgba(255,255,255,.72);
}

.rl-image-placeholder span {
    color: var(--rl-pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.rl-image-placeholder strong {
    color: #fff;
    font-size: 20px;
}

.rl-image-placeholder small {
    font-size: 11px;
}

.rl-image-placeholder-light {
    min-height: 190px;
    background: #f7f6fa;
    color: var(--rl-muted);
}

.rl-image-placeholder-light strong {
    color: var(--rl-text);
}

.rl-showcase-main .rl-image-placeholder-light {
    min-height: 420px;
}

.rl-image-placeholder-dark {
    min-height: 240px;
    background:
        radial-gradient(circle at 50% 10%, rgba(255,47,146,.18), transparent 35%),
        #0d0924;
}

/* -------------------------------------------------------
   Themes
------------------------------------------------------- */

.rl-themes {
    padding: 80px 0 75px;
    border-top: 1px solid var(--rl-line);
    background: #fff;
}

.rl-themes-heading {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: end;
}

.rl-themes-heading > p {
    margin: 0 0 5px;
    color: var(--rl-muted);
    font-size: 14px;
    line-height: 1.7;
}

.rl-theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.rl-theme-card {
    overflow: hidden;
    border: 1px solid #dedde5;
    border-radius: 10px;
    background: #f8f7fb;
    box-shadow: 0 12px 25px rgba(15,10,35,.05);
}

.rl-theme-card img {
    display: block;
    width: 100%;
    height: 315px;
    object-fit: cover;
    object-position: top center;
}

.rl-theme-placeholder {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background:
        linear-gradient(130deg, #eeeaf6, #fbf9fd);
}

.rl-theme-placeholder span {
    color: var(--rl-pink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
}

.rl-theme-placeholder strong {
    font-size: 19px;
}

.rl-theme-note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #777683;
    font-size: 12px;
}

.rl-theme-note a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rl-pink);
    font-weight: 900;
}

/* -------------------------------------------------------
   Apps / Alexa
------------------------------------------------------- */

.rl-digital {
    border-top: 1px solid var(--rl-line);
    background: #faf9fc;
}

.rl-digital-heading {
    max-width: 760px;
}

.rl-digital-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.rl-digital-card {
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    overflow: hidden;
    border-radius: 13px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,47,146,.18), transparent 30%),
        linear-gradient(135deg, #0c0921, #170731);
    color: #fff;
}

.rl-digital-copy {
    z-index: 2;
    padding: 38px 0 38px 38px;
}

.rl-digital-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,47,146,.42);
    border-radius: 50%;
    color: var(--rl-pink);
}

.rl-digital-icon svg {
    width: 23px;
    height: 23px;
}

.rl-digital-card h3 {
    margin: 21px 0 10px;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.rl-digital-card p {
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 12px;
    line-height: 1.7;
}

.rl-digital-media {
    min-width: 0;
    align-self: end;
    padding: 30px 25px 0;
}

.rl-digital-media img {
    display: block;
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    object-position: center bottom;
}

/* -------------------------------------------------------
   Pricing
------------------------------------------------------- */

.rl-pricing {
    padding: 75px 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(116,27,198,.22), transparent 30%),
        linear-gradient(110deg, #0a0820, #10072b 70%, #180733);
    color: white;
}

.rl-pricing-grid {
    display: grid;
    grid-template-columns: 1.15fr .72fr .72fr .72fr;
    gap: 18px;
    align-items: stretch;
}

.rl-pricing-intro {
    padding: 15px 52px 0 0;
}

.rl-pricing-intro > p:last-child {
    max-width: 350px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 13px;
    line-height: 1.7;
}

.rl-plan-card {
    position: relative;
    padding: 30px 27px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    background: rgba(255,255,255,.025);
}

.rl-plan-card-featured {
    border-color: rgba(255,47,146,.35);
    background: linear-gradient(180deg, rgba(255,47,146,.08), rgba(255,255,255,.02));
}

.rl-plan-name {
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .6px;
}

.rl-price {
    margin-top: 12px;
    font-size: 35px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.rl-price small {
    color: rgba(255,255,255,.64);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
}

.rl-plan-card > p {
    margin: 13px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 11px;
}

.rl-plan-card ul {
    display: grid;
    gap: 9px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.rl-plan-card li {
    position: relative;
    padding-left: 17px;
    color: rgba(255,255,255,.83);
    font-size: 11px;
}

.rl-plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rl-pink);
    font-weight: 900;
}

.rl-pricing-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 8px 32px 32px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.rl-pricing-more strong {
    font-size: 20px;
    line-height: 1.3;
}

.rl-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 45px;
    margin-top: 24px;
    padding: 0 20px;
    border: 1px solid var(--rl-pink);
    border-radius: 5px;
    color: var(--rl-pink);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

/* -------------------------------------------------------
   FAQ
------------------------------------------------------- */

.rl-faq {
    padding: 78px 0 85px;
    border-bottom: 1px solid var(--rl-line);
    background: #fff;
}

.rl-faq > .rl-shell > h2 {
    max-width: 750px;
}

.rl-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.rl-faq-grid article {
    padding-top: 20px;
    border-top: 2px solid var(--rl-pink);
}

.rl-faq-grid h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
}

.rl-faq-grid p {
    margin: 12px 0 0;
    color: var(--rl-muted);
    font-size: 12px;
    line-height: 1.7;
}

/* -------------------------------------------------------
   Final CTA
------------------------------------------------------- */

.rl-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #f3187d 0%, #ff3094 58%, #fc438f 100%);
    color: #fff;
}

.rl-final-cta::after {
    content: "";
    position: absolute;
    right: 4%;
    top: -80px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
}

.rl-final-cta-inner {
    position: relative;
    z-index: 2;
    min-height: 112px;
    display: grid;
    grid-template-columns: 68px 1fr auto;
    align-items: center;
    gap: 28px;
}

.rl-final-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
}

.rl-final-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.rl-final-icon svg {
    width: 28px;
    height: 28px;
}

.rl-final-cta h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.rl-final-cta p {
    margin: 5px 0 0;
    color: rgba(255,255,255,.84);
    font-size: 12px;
}

.rl-final-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-width: 205px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 5px;
    background: #fff;
    color: var(--rl-pink);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */

.rl-footer {
    padding: 50px 0 24px;
    background:
        radial-gradient(circle at 95% 0%, rgba(255,47,146,.06), transparent 25%),
        #08071d;
    color: #fff;
}

.rl-footer-grid {
    display: grid;
    grid-template-columns: 1.55fr .7fr .7fr 1fr;
    gap: 55px;
}

.rl-footer .rl-logo img {
    height: 48px;
}

.rl-footer-brand > p {
    max-width: 310px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.7;
}

.rl-footer-grid > div:not(.rl-footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rl-footer h3 {
    margin: 0 0 16px;
    color: rgba(255,255,255,.92);
    font-size: 11px;
    font-weight: 900;
}

.rl-footer-grid > div:not(.rl-footer-brand) > a {
    margin: 0 0 9px;
    color: rgba(255,255,255,.56);
    font-size: 10px;
    transition: color .18s ease;
}

.rl-footer-grid > div:not(.rl-footer-brand) > a:hover {
    color: var(--rl-pink);
}

.rl-footer-grid > div:last-child > p {
    max-width: 235px;
    margin: 0;
    color: rgba(255,255,255,.56);
    font-size: 10px;
    line-height: 1.6;
}

.rl-footer-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    margin-top: 17px !important;
    padding: 0 17px;
    border: 1px solid var(--rl-pink);
    border-radius: 4px;
    color: var(--rl-pink) !important;
    font-weight: 900 !important;
}

.rl-footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.35);
    font-size: 9px;
}

/* -------------------------------------------------------
   Responsive
------------------------------------------------------- */

@media (max-width: 1280px) {
    .rl-header-inner {
        grid-template-columns: 260px 1fr 165px;
    }

    .rl-nav {
        gap: 27px;
    }

    .rl-hero-grid {
        grid-template-columns: minmax(320px, .92fr) minmax(410px, 1.15fr) minmax(280px, .72fr);
        gap: 27px;
    }

    .rl-hero h1 {
        font-size: 57px;
    }

    .rl-hero-points {
        grid-template-columns: repeat(2, max-content);
    }

    .rl-feature-grid {
        gap: 38px 30px;
    }
}

@media (max-width: 1080px) {
    .rl-shell {
        width: min(var(--rl-shell), calc(100% - 40px));
    }

    .rl-header-inner {
        grid-template-columns: 1fr auto;
    }

    .rl-nav {
        display: none;
    }

    .rl-hero {
        padding-top: 130px;
    }

    .rl-hero-grid {
        grid-template-columns: 1fr 360px;
    }

    .rl-hero-copy {
        grid-column: 1;
    }

    .rl-waitlist-card {
        grid-column: 2;
        grid-row: 1;
    }

    .rl-hero-product {
        grid-column: 1 / -1;
        min-height: auto;
        margin-top: 15px;
        padding: 0 65px;
    }

    .rl-product-screen img {
        min-height: 0;
        max-height: 500px;
    }

    .rl-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rl-showcase-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .rl-themes-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rl-digital-card {
        grid-template-columns: 1fr;
    }

    .rl-digital-copy {
        padding-right: 38px;
    }

    .rl-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rl-pricing-intro {
        padding-right: 20px;
    }

    .rl-pricing-more {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
        padding-left: 0;
    }

    .rl-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .rl-shell {
        width: min(100% - 30px, var(--rl-shell));
    }

    .rl-header {
        min-height: 82px;
    }

    .rl-header-inner {
        min-height: 82px;
        gap: 15px;
    }

    .rl-logo img {
        height: 43px;
        max-width: 185px;
    }

    .rl-logo-copy strong {
        font-size: 20px;
    }

    .rl-header-cta {
        min-width: 122px;
        min-height: 41px;
        padding: 0 13px;
        font-size: 10px;
    }

    .rl-hero {
        min-height: 0;
        padding: 115px 0 65px;
    }

    .rl-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .rl-hero-copy {
        order: 1;
        padding-top: 0;
    }

    .rl-hero-product {
        order: 2;
        width: 100%;
        padding: 0 6px 0 31px;
    }

    .rl-waitlist-card {
        order: 3;
        width: 100%;
        margin-top: 0;
    }

    .rl-hero h1 {
        font-size: clamp(47px, 13vw, 62px);
        letter-spacing: -2.5px;
    }

    .rl-hero-intro {
        font-size: 14px;
    }

    .rl-hero-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .rl-hero-points span {
        font-size: 11px;
    }

    .rl-product-phone {
        left: -2px;
        bottom: -15px;
        width: 94px;
        height: 195px;
        border-width: 4px;
        border-radius: 21px;
    }

    .rl-product-screen img {
        min-height: 260px;
        max-height: 360px;
    }

    .rl-waitlist-card {
        padding: 30px 22px 24px;
    }

    .rl-waitlist-card h2 {
        font-size: 33px;
    }

    .rl-radio-lines {
        width: 100%;
    }

    .rl-trust-strip {
        padding-bottom: 20px;
    }

    .rl-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rl-trust-grid article {
        min-height: 92px;
        justify-content: flex-start;
        padding: 15px 13px;
    }

    .rl-trust-grid article + article {
        border-left: 0;
    }

    .rl-trust-grid article:nth-child(even) {
        border-left: 1px solid #ecebf1;
    }

    .rl-trust-grid article:nth-child(n+3) {
        border-top: 1px solid #ecebf1;
    }

    .rl-section,
    .rl-themes,
    .rl-faq {
        padding: 58px 0;
    }

    .rl-section h2,
    .rl-themes h2,
    .rl-pricing h2,
    .rl-faq h2 {
        font-size: 39px;
        letter-spacing: -1.7px;
    }

    .rl-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
        margin-top: 40px;
    }

    .rl-feature-card p {
        max-width: none;
    }

    .rl-showcase-main img,
    .rl-showcase-main .rl-image-placeholder-light {
        min-height: 0;
        max-height: 340px;
    }

    .rl-showcase-small-grid {
        grid-template-columns: 1fr;
    }

    .rl-theme-grid {
        grid-template-columns: 1fr;
    }

    .rl-theme-card img,
    .rl-theme-placeholder {
        height: auto;
        min-height: 230px;
    }

    .rl-theme-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .rl-digital-grid {
        grid-template-columns: 1fr;
    }

    .rl-digital-card {
        min-height: 0;
    }

    .rl-digital-copy {
        padding: 30px 28px 10px;
    }

    .rl-digital-media {
        padding: 20px 28px 0;
    }

    .rl-pricing {
        padding: 58px 0;
    }

    .rl-pricing-grid {
        grid-template-columns: 1fr;
    }

    .rl-pricing-intro {
        padding: 0 0 20px;
    }

    .rl-pricing-more {
        padding-top: 28px;
    }

    .rl-faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 38px;
    }

    .rl-final-cta-inner {
        min-height: 0;
        grid-template-columns: 58px 1fr;
        gap: 18px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .rl-final-cta a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .rl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 28px;
    }

    .rl-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 460px) {
    .rl-header-cta {
        min-width: 105px;
    }

    .rl-header-cta svg {
        display: none;
    }

    .rl-logo img {
        height: 37px;
        max-width: 160px;
    }

    .rl-hero-points {
        grid-template-columns: 1fr;
    }

    .rl-feature-grid {
        grid-template-columns: 1fr;
    }

    .rl-trust-grid article {
        gap: 11px;
    }

    .rl-trust-grid svg {
        width: 31px;
        height: 31px;
    }

    .rl-trust-grid strong {
        font-size: 11px;
    }

    .rl-footer-grid {
        grid-template-columns: 1fr;
    }

    .rl-footer-brand {
        grid-column: auto;
    }

    .rl-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
