@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");

.rk-home {
    --rk-red: #ef2938;
    --rk-red-bright: #ff5360;
    --rk-cream: #fff6f1;
    --rk-muted: #c6aeb0;
    --rk-panel: rgba(18, 7, 8, 0.88);
    position: relative;
    isolation: isolate;
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 28px 18px 64px;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

.rk-home-glow {
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
}

.rk-home-glow-one {
    top: 10px;
    right: -260px;
    background: rgba(192, 18, 31, 0.2);
}

.rk-home-glow-two {
    top: 700px;
    left: -360px;
    background: rgba(116, 9, 18, 0.18);
}

.rk-hero {
    overflow: hidden;
    border: 1px solid rgba(255, 78, 88, 0.2);
    border-radius: 30px;
    background:
        linear-gradient(115deg, rgba(15, 5, 6, 0.98), rgba(9, 3, 4, 0.96)),
        radial-gradient(circle at 78% 18%, rgba(239, 41, 56, 0.2), transparent 38%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rk-promo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(255, 78, 88, 0.16);
    background: rgba(255, 255, 255, 0.025);
    color: #d9c3c4;
    font-size: 11px;
    letter-spacing: 0.02em;
}

.rk-promo-bar strong {
    color: var(--rk-cream);
    font-weight: 800;
}

.rk-promo-bar a {
    margin-left: 4px;
    color: #ff7a84;
    font-weight: 800;
    text-underline-offset: 3px;
}

.rk-promo-dot,
.rk-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rk-red-bright);
    box-shadow: 0 0 12px rgba(255, 83, 96, 0.8);
}

.rk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: clamp(34px, 5vw, 84px);
    align-items: center;
    padding: clamp(36px, 6vw, 86px);
}

.rk-hero-copy {
    min-width: 0;
}

.rk-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: #ff7781;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rk-eyebrow span {
    width: 24px;
    height: 1px;
    background: currentColor;
}

.rk-hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--rk-cream);
    font-size: clamp(44px, 6.2vw, 86px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.rk-hero h1 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1px rgba(255, 164, 170, 0.78);
    text-shadow: 0 0 34px rgba(239, 41, 56, 0.12);
}

.rk-hero-intro {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--rk-muted);
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.75;
}

.rk-search {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    max-width: 650px;
    min-height: 60px;
    margin-top: 28px;
    padding: 6px 7px 6px 18px;
    border: 1px solid rgba(255, 89, 99, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 36px rgba(0, 0, 0, 0.18);
}

.rk-search:focus-within {
    border-color: rgba(255, 107, 117, 0.62);
    box-shadow: 0 0 0 3px rgba(239, 41, 56, 0.1), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.rk-search svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #b99598;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.rk-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: 600 14px/1.2 "Montserrat", sans-serif;
}

.rk-search input::placeholder {
    color: #987d80;
}

.rk-search button {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #ff4755, #c91424);
    box-shadow: 0 10px 25px rgba(201, 20, 36, 0.3);
    color: #fff;
    cursor: pointer;
    font: 800 11px/1 "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rk-hero-actions,
.rk-community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.rk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 19px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rk-button:hover {
    transform: translateY(-2px);
}

.rk-button-primary {
    border: 1px solid rgba(255, 116, 125, 0.7);
    background: linear-gradient(135deg, #f23846, #b70e1c);
    box-shadow: 0 12px 28px rgba(183, 14, 28, 0.25);
    color: #fff;
}

.rk-button-primary:hover {
    box-shadow: 0 15px 34px rgba(210, 22, 38, 0.34);
}

.rk-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: #f8e9e9;
}

.rk-button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.rk-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #ab9193;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rk-trust-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rk-trust-list li span {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border: 1px solid rgba(255, 89, 99, 0.35);
    border-radius: 50%;
    color: #ff6873;
    font-size: 9px;
}

.rk-visual {
    position: relative;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rk-visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 23, 38, 0.22), transparent 66%);
    filter: blur(12px);
}

.rk-spreadsheet-card {
    align-self: center;
}

.rk-spreadsheet-intro {
    margin: 2px 4px 12px;
    color: #f7d9d9;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.rk-spreadsheet-card .seo-promo-card {
    min-width: 0;
}

.rk-spreadsheet-card .seo-promo-shell {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(177, 22, 33, 0.52);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 241, 0.97));
    color: #111;
    box-shadow: 0 0 18px rgba(145, 15, 23, 0.22);
}

.rk-spreadsheet-card .seo-promo-image-link {
    display: block;
    text-decoration: none;
}

.rk-spreadsheet-card .seo-promo-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.rk-spreadsheet-card .seo-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.rk-spreadsheet-card .seo-promo-grid-link {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.rk-spreadsheet-card .seo-promo-grid-link:hover {
    border-color: rgba(217, 31, 40, 0.5);
    transform: translateY(-1px);
}

.rk-spreadsheet-card .seo-promo-grid-logo {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    padding: 2px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.rk-spreadsheet-card .seo-promo-grid-link span {
    min-width: 0;
}

.rk-visual-head,
.rk-visual-head > div {
    display: flex;
    align-items: center;
}

.rk-visual-head {
    justify-content: space-between;
    gap: 16px;
    padding: 4px 4px 14px;
}

.rk-visual-head > div {
    gap: 8px;
}

.rk-visual-head small {
    color: #d6bfc1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rk-visual-head a {
    color: #ff7d86;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.rk-product-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.rk-mosaic-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(30, 11, 13, 0.98), rgba(11, 5, 6, 0.98));
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rk-mosaic-card:hover {
    z-index: 1;
    transform: translateY(-3px);
    border-color: rgba(255, 83, 96, 0.4);
}

.rk-mosaic-image {
    display: grid;
    aspect-ratio: 1.45 / 1;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, rgba(139, 18, 28, 0.24), transparent 58%),
        rgba(6, 3, 3, 0.88);
}

.rk-mosaic-image img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rk-mosaic-card:hover img {
    transform: scale(1.045);
}

.rk-mosaic-image > span,
.rk-mosaic-empty span {
    color: #876f72;
    font-size: 11px;
}

.rk-mosaic-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 11px 11px;
}

.rk-mosaic-meta strong {
    min-width: 0;
    overflow: hidden;
    color: #f7eeee;
    font-size: 10px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rk-mosaic-meta span {
    flex: 0 0 auto;
    color: #ff6974;
    font-size: 10px;
    font-weight: 800;
}

.rk-mosaic-empty {
    display: grid;
    grid-column: 1 / -1;
    gap: 7px;
    min-height: 280px;
    place-content: center;
    padding: 24px;
    text-align: center;
}

.rk-mosaic-empty strong {
    color: var(--rk-cream);
}

.rk-discovery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.rk-discovery > a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    min-width: 0;
    min-height: 78px;
    padding: 12px;
    border: 1px solid rgba(255, 80, 90, 0.14);
    border-radius: 18px;
    background: rgba(17, 6, 7, 0.8);
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rk-discovery > a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 80, 90, 0.38);
    background: rgba(27, 8, 10, 0.9);
}

.rk-discovery-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 90, 100, 0.2);
    border-radius: 13px;
    background: rgba(239, 41, 56, 0.08);
    color: #ff6873;
    font-size: 13px;
    font-weight: 900;
}

.rk-discovery > a > span:nth-child(2) {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.rk-discovery small {
    color: #8d7477;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.rk-discovery strong {
    overflow: hidden;
    color: #f6eaea;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rk-discovery b {
    color: #8f7477;
    font-size: 15px;
    transition: color 0.18s ease, transform 0.18s ease;
}

.rk-discovery > a:hover b {
    color: #ff6873;
    transform: translateX(2px);
}

.rk-featured,
.rk-how,
.rk-community,
.rk-home-legal {
    margin-top: 72px;
}

.rk-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
}

.rk-section-head .rk-eyebrow {
    margin-bottom: 10px;
}

.rk-section-head h2,
.rk-how h2,
.rk-community h2 {
    margin: 0;
    color: var(--rk-cream);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.rk-section-head > a,
.rk-how-intro > a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #d9bec0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.rk-section-head > a:hover,
.rk-how-intro > a:hover {
    color: #ff707b;
}

.rk-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.rk-featured-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 76, 88, 0.15);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(23, 8, 9, 0.94), rgba(9, 4, 4, 0.96));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rk-featured-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 84, 95, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28), 0 0 30px rgba(166, 16, 28, 0.08);
}

.rk-featured-image {
    position: relative;
    display: grid;
    aspect-ratio: 1 / 1;
    place-items: center;
    margin: 8px;
    overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 32%, rgba(139, 18, 28, 0.22), transparent 58%),
        #080303;
    color: #8b7476;
    font-size: 11px;
    text-decoration: none;
}

.rk-featured-image img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rk-featured-card:hover .rk-featured-image img {
    transform: scale(1.05);
}

.rk-featured-image b {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 109, 119, 0.24);
    border-radius: 999px;
    background: rgba(15, 4, 5, 0.82);
    backdrop-filter: blur(8px);
    color: #ff7d86;
    font-size: 8px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rk-featured-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 14px 16px;
}

.rk-featured-info > div {
    min-width: 0;
}

.rk-featured-info h3 {
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rk-featured-info h3 a {
    color: #f7eeee;
    text-decoration: none;
}

.rk-featured-info p {
    margin: 6px 0 0;
    color: #ff6873;
    font-size: 13px;
    font-weight: 800;
}

.rk-card-arrow {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 85, 96, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    color: #d9bfc1;
    text-decoration: none;
}

.rk-card-arrow:hover {
    border-color: rgba(255, 85, 96, 0.48);
    color: #ff707b;
}

.rk-how {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
    gap: clamp(36px, 7vw, 100px);
    align-items: center;
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid rgba(255, 76, 88, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 0% 100%, rgba(148, 14, 25, 0.17), transparent 38%),
        rgba(13, 5, 5, 0.82);
}

.rk-how-intro > p:not(.rk-eyebrow) {
    max-width: 470px;
    margin: 18px 0 24px;
    color: #b89ea0;
    font-size: 14px;
    line-height: 1.75;
}

.rk-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rk-steps li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rk-steps li:first-child {
    padding-top: 0;
}

.rk-steps li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.rk-steps > li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 82, 93, 0.24);
    border-radius: 15px;
    background: rgba(239, 41, 56, 0.07);
    color: #ff6873;
    font-size: 11px;
    font-weight: 900;
}

.rk-steps h3 {
    margin: 1px 0 7px;
    color: #f7eeee;
    font-size: 16px;
}

.rk-steps p {
    margin: 0;
    color: #a78e90;
    font-size: 13px;
    line-height: 1.65;
}

.rk-community {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(255, 94, 104, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 80, 91, 0.19), transparent 38%),
        linear-gradient(120deg, rgba(33, 8, 11, 0.96), rgba(12, 4, 5, 0.97));
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.25);
}

.rk-community-copy {
    display: flex;
    align-items: center;
    gap: 22px;
}

.rk-community-mark {
    display: grid;
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 118, 127, 0.34);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(239, 41, 56, 0.2), rgba(109, 8, 17, 0.12));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 30px rgba(201, 20, 36, 0.14);
    color: #ff707a;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.rk-community-copy p {
    margin: 0 0 7px;
    color: #ff737e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rk-community-copy > div > span {
    display: block;
    max-width: 660px;
    margin-top: 12px;
    color: #bda4a6;
    font-size: 13px;
    line-height: 1.65;
}

.rk-community-actions {
    flex: 0 0 auto;
    margin: 0;
}

.rk-home-legal {
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 20px;
    background: rgba(9, 4, 4, 0.66);
}

.rk-home-legal p {
    margin: 0;
    color: #9d8587;
    font-size: 12px;
    line-height: 1.65;
}

.rk-home-legal > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #826d70;
    font-size: 11px;
}

.rk-home-legal a {
    color: #d9bec0;
    text-underline-offset: 3px;
}

@media (max-width: 1100px) {
    .rk-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
        padding: 48px 36px;
    }

    .rk-featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rk-discovery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rk-community {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .rk-home {
        padding: 14px 12px 48px;
    }

    .rk-hero-grid {
        grid-template-columns: 1fr;
        padding: 42px 24px 24px;
    }

    .rk-hero-copy {
        text-align: center;
    }

    .rk-eyebrow,
    .rk-hero-actions,
    .rk-trust-list {
        justify-content: center;
    }

    .rk-hero-intro,
    .rk-search {
        margin-right: auto;
        margin-left: auto;
    }

    .rk-how {
        grid-template-columns: 1fr;
    }

    .rk-how-intro {
        text-align: center;
    }

    .rk-how-intro .rk-eyebrow {
        justify-content: center;
    }

    .rk-how-intro > p:not(.rk-eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }

    .rk-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .rk-home {
        padding-right: 9px;
        padding-left: 9px;
    }

    .rk-hero {
        border-radius: 22px;
    }

    .rk-promo-bar {
        flex-wrap: wrap;
        gap: 5px 8px;
        text-align: center;
    }

    .rk-promo-bar > span:not(.rk-promo-dot) {
        display: none;
    }

    .rk-promo-bar a {
        width: 100%;
        margin: 0;
    }

    .rk-hero-grid {
        gap: 34px;
        padding: 36px 14px 14px;
    }

    .rk-hero h1 {
        font-size: clamp(40px, 13vw, 60px);
    }

    .rk-search {
        grid-template-columns: 20px minmax(0, 1fr);
        padding: 10px 12px;
    }

    .rk-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .rk-hero-actions .rk-button {
        width: 100%;
    }

    .rk-trust-list {
        display: grid;
        justify-content: start;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .rk-visual {
        padding: 9px;
        border-radius: 19px;
    }

    .rk-mosaic-card:nth-child(n + 5) {
        display: none;
    }

    .rk-mosaic-meta {
        display: grid;
        gap: 3px;
    }

    .rk-discovery {
        grid-template-columns: 1fr;
    }

    .rk-featured,
    .rk-how,
    .rk-community,
    .rk-home-legal {
        margin-top: 48px;
    }

    .rk-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .rk-featured-grid {
        gap: 9px;
    }

    .rk-featured-card {
        border-radius: 17px;
    }

    .rk-featured-image {
        margin: 5px;
        border-radius: 13px;
    }

    .rk-featured-info {
        align-items: flex-end;
        padding: 7px 9px 11px;
    }

    .rk-card-arrow {
        display: none;
    }

    .rk-how,
    .rk-community {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .rk-community-copy {
        align-items: flex-start;
        flex-direction: column;
    }

    .rk-community-actions,
    .rk-community-actions .rk-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rk-home *,
    .rk-home *::before,
    .rk-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
