/* ============================================
   SWER HOMEPAGE — RETRO 3 / VIBRANT / GSAP
   Bold colored sections, GSAP ScrollTrigger
   animations, Syne + Outfit fonts, maximalist.
   ============================================ */

/* ── Custom Font ── */
@font-face {
    font-family: 'Stay Funky';
    src: url('/fonts/Stay-Funky.woff2') format('woff2'),
         url('/fonts/Stay-Funky.woff') format('woff');
    font-weight: 1 999;
    font-style: normal;
    font-display: swap;
}

/* ── Tokens ── */
:root {
    --r3-brand: #FE69B3;
    --r3-accent: #a5529a;
    --r3-accent2: #F2A541;
    --r3-accent3: #fefd69;
    --r3-success: #4CE0B3;
    --r3-danger: #A30000;
    --r3-dark: #1a1a1a;
    --r3-cream: #f3bbd7;
    --r3-white: #ffffff;
    --r3-max-w: 1200px;
    --r3-hero-size: clamp(5.5rem, 15vw, 14rem);
    --r3-title-size: clamp(2.4rem, 6vw, 4.5rem);
    --r3-section-pad: clamp(80px, 12vw, 160px);
    --r3-font-display: 'Stay Funky', 'Syne', sans-serif;
    --r3-font-body: 'Outfit', sans-serif;
}

/* ── Section Themes ── */
.r3-theme-1 { background: var(--r3-cream);   color: var(--r3-dark);  --r3-heading-color: var(--r3-brand); }
.r3-theme-2 { background: var(--r3-dark);    color: var(--r3-white); --r3-heading-color: var(--r3-accent3); }
.r3-theme-3 { background: var(--r3-brand);  color: var(--r3-white); --r3-heading-color: var(--r3-cream); }
.r3-theme-4 { background: var(--r3-success); color: var(--r3-dark);  --r3-heading-color: var(--r3-dark); }
.r3-theme-5 { background: var(--r3-accent);  color: var(--r3-white); --r3-heading-color: var(--r3-white); }
.r3-theme-6 { background: var(--r3-white);   color: var(--r3-dark);  --r3-heading-color: var(--r3-accent); }

[class*="r3-theme-"] :is(h1, h2, h3, h4, h5, h6) {
    color: var(--r3-heading-color);
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--r3-font-body);
    font-size: 1.5rem;
    line-height: 1.6;
    background: var(--r3-dark);
    color: var(--r3-white);
    overflow-x: hidden;
    margin: 0;
    cursor: default;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--r3-font-display);
    font-synthesis: none;
    font-weight: normal;
    letter-spacing: -0.03em;
}

body.r3-grabbing, body.r3-grabbing * {
    cursor: grabbing !important;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */
.r3-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
}
.r3-nav__inner {
    max-width: var(--r3-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.r3-nav__logo {
    display: flex;
    align-items: center;
}
.r3-nav__logo-img {
    height: 32px;
    width: auto;
}
.r3-nav__pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 6px 8px 6px 20px;
}
.r3-nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.r3-nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.r3-nav__link:hover { opacity: 1; }
.r3-nav__cta {
    background: var(--r3-brand);
    color: var(--r3-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}
.r3-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(237, 162, 200, 0.4);
}
.r3-nav__burger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.r3-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--r3-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.r3-btn:hover { transform: translateY(-2px); }
.r3-btn--primary {
    background: var(--r3-brand);
    color: var(--r3-dark);
}
.r3-btn--primary:hover { box-shadow: 0 6px 30px rgba(237, 162, 200, 0.5); }
.r3-btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--r3-white);
}
.r3-btn--ghost:hover { border-color: rgba(255,255,255,0.6); }
.r3-btn--outline {
    background: transparent;
    border-color: currentColor;
}
.r3-btn--outline:hover { background: rgba(255,255,255,0.08); }
.r3-btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.r3-btn--disabled:hover { transform: none; }
.r3-btn--lg { padding: 16px 36px; }
.r3-btn--full { width: 100%; justify-content: center; }

/* ============================================
   SCROLL REVEAL UTILITY
   ============================================ */
.r3-scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.r3-scroll-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   1. HERO — Jello Stretchy
   Background: Brand pink gradient
   ============================================ */
.r3-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dot grid texture overlay */
.r3-hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.r3-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.r3-hero__title {
    display: flex;
    justify-content: center;
    gap: 0;
    line-height: 1;
    margin-bottom: 24px;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}
@media (pointer: coarse) {
    .r3-hero__title { cursor: grab; }
}

.r3-char {
    font-family: var(--r3-font-display);
    font-size: var(--r3-hero-size);
    font-weight: 800;
    color: var(--r3-dark);
    display: inline-block;
    will-change: transform;
    text-shadow: 4px 4px 0 rgba(255,255,255,0.2);
    letter-spacing: -0.04em;
    padding: 0 2px;
    cursor: default;
}
@media (pointer: coarse) {
    .r3-char { cursor: grab; }
}

/* SVG logo char */
.r3-char--svg {
    position: relative;
    display: inline-block;
    height: calc(var(--r3-hero-size) * 1.3);
    padding: 0;
    vertical-align: middle;
}
.r3-char__svg {
    height: 100%;
    width: auto;
    display: block;
    overflow: visible;
}
.r3-char__blob-mover {
    will-change: transform;
}

.r3-hero__tagline {
    font-family: var(--r3-font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--r3-dark);
    opacity: 0.85;
    margin-bottom: 36px;
}
/* ── Magical text sparkle effect ── */
@keyframes r3-magic-bg-pan {
    from { background-position: 0% center; }
    to { background-position: -200% center; }
}
@keyframes r3-magic-scale {
    from, to { transform: scale(0); }
    50% { transform: scale(1); }
}
@keyframes r3-magic-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
}

.r3-magic {
    position: relative;
    display: inline-block;
}
.r3-magic__text {
    animation: r3-magic-bg-pan 3s linear infinite;
    background: linear-gradient(
        to right,
        var(--r3-brand),
        var(--r3-accent),
        var(--r3-success),
        var(--r3-brand)
    );
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.r3-magic__star {
    --size: clamp(14px, 1.2vw, 22px);
    animation: r3-magic-scale 700ms ease forwards;
    display: block;
    position: absolute;
    top: var(--star-top, 0%);
    left: var(--star-left, 0%);
    width: var(--size);
    height: var(--size);
}
.r3-magic__star svg {
    animation: r3-magic-rotate 1000ms linear infinite;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    fill: var(--r3-brand);
}
.r3-magic__star:nth-child(2) svg { fill: var(--r3-accent); }
.r3-magic__star:nth-child(3) svg { fill: var(--r3-success); }

.r3-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.r3-hero .r3-btn--primary {
    background: var(--r3-dark);
    color: var(--r3-brand);
}
.r3-hero .r3-btn--primary:hover {
    box-shadow: 0 6px 30px rgba(26, 26, 26, 0.4);
}
.r3-hero .r3-btn--ghost {
    color: var(--r3-dark);
    border-color: rgba(26, 26, 26, 0.3);
}
.r3-hero .r3-btn--ghost:hover { border-color: var(--r3-dark); }

/* Title wrapper for doodle positioning */
.r3-hero__title-wrap {
    position: relative;
    display: inline-block;
}

/* Title sits above doodle so doodle passes underneath */
.r3-hero__title--logo {
    position: relative;
    z-index: 2;
}

/* Hand-drawn doodle annotation — above-right of title */
.r3-hero__doodle {
    position: absolute;
    bottom: 90%;
    left: 65%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transform: rotate(8deg);
    pointer-events: none;
    opacity: 0;
    animation: r3-doodle-appear 0.3s ease forwards 2.4s;
}

.r3-hero__doodle-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: rgba(26, 26, 26, 0.7);
    white-space: nowrap;
    line-height: 1;
}

.r3-dchar {
    display: inline-block;
    overflow: visible;
    opacity: 0;
    transform: translateY(6px) scale(0.7);
}
.r3-dchar--animate {
    animation: r3-char-write 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.07s);
}

.r3-dchar--space {
    width: 0.2em;
}

.r3-hero__doodle-svg {
    width: 40px;
    height: 65px;
    margin-top: -2px;
}

.r3-hero__doodle-line {
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
    animation: r3-draw-stroke 0.6s ease forwards 3.5s;
}

.r3-hero__doodle-tip {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: r3-draw-stroke 0.2s ease forwards 4.1s;
}

@keyframes r3-doodle-appear {
    to { opacity: 1; }
}
@keyframes r3-char-write {
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes r3-draw-stroke {
    to { stroke-dashoffset: 0; }
}

.r3-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--r3-dark);
    opacity: 0.5;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.r3-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--r3-dark);
    animation: r3-scroll-pulse 2s ease-in-out infinite;
}
@keyframes r3-scroll-pulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.4); opacity: 0.2; }
}

/* ── Hero facade — the visible surface that splits open ── */
.r3-hero__facade {
    position: absolute;
    inset: 0;
    background: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    will-change: clip-path;
}

/* ── Hero reveal — dark content behind facade ── */
.r3-hero__reveal {
    position: absolute;
    inset: 0;
    background: var(--r3-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 0 20px;
}

.r3-hero__reveal-inner {
    max-width: 550px;
    text-align: center;
    will-change: transform, opacity;
}

.r3-hero__reveal-title {
    font-family: var(--r3-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--r3-brand);
    margin-bottom: 20px;
}

.r3-hero__reveal-desc {
    opacity: 0.8;
    margin-bottom: 32px;
}

.r3-hero__reveal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.r3-hero__reveal-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.r3-hero__reveal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--r3-brand);
    display: inline-block;
}

/* ============================================
   3. FEATURE CARDS — Pinned Mask Reveal
   Background: Light (near-white)
   ============================================ */
.r3-cards__inner {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    max-width: var(--r3-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.r3-cards__left {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    flex: 1;
}

.r3-cards__info {
    height: 100vh;
    display: grid;
    place-items: center;
}

.r3-cards__info-content {
    max-width: 380px;
}

.r3-cards__num {
    font-family: var(--r3-font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--r3-brand);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.r3-cards__info h2 {
    font-weight: 800;
    margin-bottom: 12px;
}

.r3-cards__info p {
    margin-bottom: 20px;
}



.r3-cards__right {
    flex-shrink: 1;
    height: 100vh;
    width: 100%;
    max-width: 540px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.r3-cards__panel {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 420px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    will-change: clip-path;
}

.r3-cards__panel-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--r3-white);
}
.r3-cards__panel-inner i {
    font-size: 5rem;
    opacity: 0.9;
}
.r3-cards__panel-inner span {
    font-family: var(--r3-font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Panel gradients — vibrant brand colors */
.r3-cards__panel--links {
    background: linear-gradient(135deg, var(--r3-brand) 0%, color-mix(in srgb, var(--r3-brand) 75%, black) 100%);
}
.r3-cards__panel--reviews {
    background: linear-gradient(135deg, var(--r3-accent) 0%, color-mix(in srgb, var(--r3-accent) 75%, black) 100%);
}
.r3-cards__panel--gallery {
    background: linear-gradient(135deg, var(--r3-success) 0%, color-mix(in srgb, var(--r3-success) 75%, black) 100%);
}
.r3-cards__panel--faqs {
    background: linear-gradient(135deg, color-mix(in srgb, var(--r3-danger) 75%, white) 0%, var(--r3-danger) 100%);
}

/* ── Hand-drawn sketch border — reusable utility ── */
/* Drop .r3-sketchy on any element with position:relative to get a flickering hand-drawn border.
   Uses SVG feTurbulence filters (#r3-sketch-a/b/c) defined in the HTML. */
.r3-sketchy {
    position: relative;
}
.r3-sketchy::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid var(--r3-brand);
    border-radius: inherit;
    pointer-events: none;
    z-index: 10;
    filter: url(#r3-sketch-a);
    animation: r3-sketch-jitter 0.5s steps(1, end) infinite;
}

@keyframes r3-sketch-jitter {
    0%        { filter: url(#r3-sketch-a); transform: translate(0px, 0px) rotate(0deg); }
    33.33%    { filter: url(#r3-sketch-b); transform: translate(0.8px, -0.6px) rotate(0.3deg); }
    66.66%    { filter: url(#r3-sketch-c); transform: translate(-0.5px, 0.4px) rotate(-0.25deg); }
}

/* ── Cards-specific: separate overlay so clip-path doesn't clip the border ── */
.r3-sketch-border {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 420px;
    width: 100%;
    pointer-events: none;
    z-index: 50;
    border-radius: 20px;
}

/* ── Hand-drawn doodle decorations — reusable ── */
/* Drop .r3-doodles on any section. JS auto-injects the SVG shapes. */
.r3-doodles {
    position: relative;
    overflow: hidden;
}
.r3-doodles__layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.r3-doodle {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
    color: var(--r3-heading-color, currentColor);
    will-change: transform;
}
/* Jitter + filter on the SVG so GSAP can control .r3-doodle transform for parallax */
.r3-doodle svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: url(#r3-sketch-a);
    animation: r3-doodle-jitter 0.6s steps(1, end) infinite;
}
/* Stagger so they don't all flicker in sync */
.r3-doodle:nth-child(3n+2) svg { animation-delay: -0.2s; }
.r3-doodle:nth-child(3n+3) svg { animation-delay: -0.4s; }
.r3-doodle:nth-child(5n) svg   { animation-delay: -0.1s; }
.r3-doodle:nth-child(7n) svg   { animation-delay: -0.35s; }

@keyframes r3-doodle-jitter {
    0%     { filter: url(#r3-sketch-a); transform: translate(0, 0); }
    33.33% { filter: url(#r3-sketch-b); transform: translate(1px, -0.8px); }
    66.66% { filter: url(#r3-sketch-c); transform: translate(-0.7px, 0.5px); }
}

/* ── Card sketch screenshots ── */
.r3-cards__sketch {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ============================================
   BOLD INTERSTITIAL
   Background: Danger (dark red)
   ============================================ */
.r3-bold {
    padding: clamp(60px, 10vw, 120px) 24px;
    text-align: center;
    overflow: hidden;
}

.r3-bold__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.r3-bold__line {
    font-family: var(--r3-font-display);
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    display: block;
}
.r3-bold__line--stroke {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--r3-heading-color);
    color: transparent;
}

/* ============================================
   TEMPLATES
   Background: Success green
   ============================================ */
.r3-templates {
    padding: var(--r3-section-pad) 24px;
}

.r3-templates__content {
    max-width: var(--r3-max-w);
    margin: 0 auto;
    text-align: center;
}

.r3-templates__title {
    font-family: var(--r3-font-display);
    font-size: var(--r3-title-size);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--r3-dark);
    margin-bottom: 12px;
}

.r3-templates__subtitle {
    opacity: 0.7;
    margin-bottom: 48px;
}

.r3-templates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.r3-templates__card {
    text-align: center;
}

.r3-templates__preview {
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 3px solid rgba(26, 26, 26, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.r3-templates__preview:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.r3-templates__preview--modern {
    background: linear-gradient(180deg, var(--r3-dark) 0%, color-mix(in srgb, var(--r3-dark) 85%, white) 100%);
}
.r3-templates__preview--bold {
    background: linear-gradient(180deg, var(--r3-brand) 0%, color-mix(in srgb, var(--r3-brand) 75%, black) 100%);
}
.r3-templates__preview--myface {
    background: linear-gradient(180deg, #000080 0%, #000040 50%, #c0c0c0 50%, #e0e0e0 100%);
}

.r3-templates__label {
    font-family: var(--r3-font-display);
    font-weight: 700;
}

/* ============================================
   4. SFW MODE — Gradient Mask Stack
   Background: Dark layers → Clean base
   ============================================ */
.r3-sfw {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.r3-sfw__layers {
    position: absolute;
    inset: 0;
}

.r3-sfw__base {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        color-mix(in srgb, var(--r3-accent) 8%, white) 0%,
        color-mix(in srgb, var(--r3-accent) 12%, white) 50%,
        color-mix(in srgb, var(--r3-accent) 18%, white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.r3-sfw__base-content {
    text-align: center;
    color: var(--r3-dark);
    z-index: 1;
}

.r3-sfw__mask-layer {
    position: absolute;
    inset: 0;
    z-index: var(--index);
    will-change: mask-image;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Opening "After Hours" slide — brand pink */
.r3-sfw__mask-layer:nth-child(2) {
    background: linear-gradient(160deg, color-mix(in srgb, var(--r3-brand) 40%, black) 0%, color-mix(in srgb, var(--r3-brand) 20%, black) 100%);
}
/* Inner image slides — dark, no red tint */
.r3-sfw__mask-layer:nth-child(3),
.r3-sfw__mask-layer:nth-child(4),
.r3-sfw__mask-layer:nth-child(5),
.r3-sfw__mask-layer:nth-child(6) {
    background: var(--r3-dark);
}

.r3-sfw__layer-content {
    text-align: center;
    color: var(--r3-white);
    z-index: 2;
}

.r3-sfw__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}
.r3-sfw__badge--spicy {
    background: rgba(237, 162, 200, 0.25);
    color: var(--r3-brand);
}
.r3-sfw__badge--safe {
    background: rgba(105, 135, 201, 0.2);
    color: var(--r3-accent);
}

.r3-sfw__name {
    font-family: var(--r3-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.r3-sfw__tagline-text {
    opacity: 0.7;
    margin-bottom: 32px;
}

.r3-sfw__link-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.r3-sfw__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}
.r3-sfw__base-content .r3-sfw__link {
    background: rgba(105, 135, 201, 0.15);
    color: var(--r3-accent);
}
.r3-sfw__layer-content .r3-sfw__link {
    background: rgba(237, 162, 200, 0.15);
    color: var(--r3-brand);
}

/* SFW layer visual content */
.r3-sfw__layer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}
.r3-sfw__layer-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    position: relative;
}
.r3-sfw__layer-label {
    font-weight: 600;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.03em;
}
.r3-sfw__layer-label i {
    font-size: 1.8rem;
    opacity: 0.5;
}

.r3-sfw__overlay-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 20;
    padding: 0 24px;
}
.r3-sfw__overlay-text p {
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   5a. ANALYTICS — Bar Chart (standalone)
   Background: White
   ============================================ */
.r3-analytics {
    position: relative;
    padding: clamp(60px, 10vw, 120px) 24px;
    overflow: hidden;
}

.r3-analytics__content {
    max-width: var(--r3-max-w);
    margin: 0 auto;
}

.r3-analytics__header {
    text-align: center;
    margin-bottom: 48px;
}

.r3-analytics__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(26, 26, 26, 0.06);
    color: var(--r3-dark);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.r3-analytics__title {
    font-family: var(--r3-font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.r3-analytics__desc {
    max-width: 55ch;
    margin: 0 auto;
    opacity: 0.55;
}

/* Chart area */
.r3-analytics__chart-wrap {
    position: relative;
    height: clamp(280px, 40vw, 420px);
    margin-bottom: 48px;
    padding: 0 40px 0 50px;
}

/* Horizontal grid lines — evenly spaced via nth-child */
.r3-analytics__gridlines {
    position: absolute;
    top: 0;
    left: 50px;
    right: 40px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 0;
    pointer-events: none;
}
.r3-analytics__gridline {
    width: 100%;
    height: 0;
    border-bottom: 1.5px dashed rgba(26, 26, 26, 0.08);
    position: relative;
}
.r3-analytics__gridline--base {
    border-bottom-style: solid;
    border-bottom-color: rgba(26, 26, 26, 0.12);
}
.r3-analytics__gridline em {
    position: absolute;
    right: calc(100% + 10px);
    top: -6px;
    font-size: 0.6rem;
    font-weight: 600;
    font-style: normal;
    color: rgba(26, 26, 26, 0.25);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Bars container */
.r3-analytics__bars {
    display: flex;
    align-items: flex-end;
    gap: clamp(4px, 0.8vw, 10px);
    height: calc(100% - 32px);
    position: relative;
    z-index: 1;
}

.r3-analytics__bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    min-width: 0;
}

.r3-analytics__bar {
    width: 100%;
    height: var(--h);
    background: var(--clr);
    border-radius: 8px 8px 3px 3px;
    transform: scaleY(0);
    transform-origin: bottom;
    will-change: transform;
    position: relative;
    min-height: 0;
}
/* Inner shine highlight */
.r3-analytics__bar::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 35%;
    height: 35%;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.r3-analytics__day {
    margin-top: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.22);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Average dashed line */
.r3-analytics__avg {
    position: absolute;
    left: 50px;
    right: 40px;
    bottom: calc(32px + (100% - 32px) * 0.73);
    z-index: 2;
    border-bottom: 2px dashed rgba(26, 26, 26, 0.12);
    opacity: 0;
}
.r3-analytics__avg-tag {
    position: absolute;
    right: -34px;
    top: -7px;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.25);
}

/* Floating sparkles */
.r3-analytics__sparkle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 1.1rem;
    color: var(--r3-brand);
    opacity: 0;
    pointer-events: none;
    animation: r3-sparkle-pulse 2.5s ease-in-out infinite;
    animation-delay: var(--d);
}
.r3-analytics__sparkle--sm {
    font-size: 0.65rem;
    color: var(--r3-accent);
}
@keyframes r3-sparkle-pulse {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(20deg); }
}

/* Stat counters row */
.r3-analytics__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    text-align: center;
}
.r3-analytics__stat-num {
    display: block;
    font-family: var(--r3-font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--r3-dark);
}
.r3-analytics__stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    display: block;
}

/* Feature pills */
.r3-analytics__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.r3-analytics__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.55);
    background: rgba(26, 26, 26, 0.04);
}
.r3-analytics__pill i {
    color: var(--r3-success);
    font-size: 0.75rem;
}

/* ============================================
   5b. HORIZONTAL SCROLL — Pinned Image Gallery
   Ref: horizontal-scroll-section
   ============================================ */
.r3-hscroll {
    overflow: hidden;
    background: var(--r3-dark);
}

.r3-hscroll__pin {
    display: flex;
    align-items: center;
    height: 100vh;
    width: max-content;
    gap: 0;
    padding: 0 5vw;
    will-change: transform;
}

.r3-hscroll__heading {
    font-family: var(--r3-font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 800;
    color: var(--r3-white);
    letter-spacing: -0.04em;
    line-height: 1;
    min-width: 40vw;
    padding-right: 5vw;
    flex-shrink: 0;
}

.r3-hscroll__item {
    min-width: 55vw;
    height: 75vh;
    padding: 0 2.5vw;
    flex-shrink: 0;
}

.r3-hscroll__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* ============================================
   PROGRESSIVE SCROLL — Sticky Word Spotlight
   Background: Dark with pink spotlight band
   Ref: progressive-scroll-tricks
   ============================================ */
.r3-progressive {
    position: relative;
}

.r3-progressive__sticky {
    --start: 50vh;
    position: sticky;
    top: calc((var(--count) - 1) * -1lh);
    line-height: 1.15;
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
}

.r3-progressive__word-wrap {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    padding-top: calc(var(--start) - 0.5lh);
}

.r3-progressive__prefix {
    position: sticky;
    top: calc(var(--start) - 0.5lh);
    font-family: var(--r3-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--r3-brand);
    margin: 0;
    display: inline-block;
    height: fit-content;
    white-space: nowrap;
    margin-right: 0.3em;
    text-shadow: 0 0 40px rgba(237, 162, 200, 0.3);
}

.r3-progressive__words {
    font-family: var(--r3-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    padding-inline: 0;
    margin: 0;
    list-style-type: none;
}

.r3-progressive__words li {
    --dimmed: color-mix(in srgb, var(--r3-white), transparent 75%);
    background: linear-gradient(
        180deg,
        var(--dimmed) 0 calc(var(--start) - 0.5lh),
        var(--r3-brand) calc(var(--start) - 0.55lh) calc(var(--start) + 0.55lh),
        var(--dimmed) calc(var(--start) + 0.5lh)
    );
    background-attachment: fixed;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    scroll-snap-align: center;
}

/* ============================================
   TEXT HIGHLIGHT — Scroll-Driven Span Glow
   Background: Dark
   Ref: text-highlight-boxes (text only)
   ============================================ */
.r3-highlight {
    padding: var(--r3-section-pad) 24px;
    overflow: hidden;
}

.r3-highlight__content {
    max-width: 900px;
    margin: 0 auto;
}

.r3-highlight__content p {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.r3-highlight__content span {
    color: rgba(255, 255, 255, 0.85);
    display: inline;
    transition: text-shadow 0.3s;
}

/* ============================================
   COPILOT
   Background: Accent blue
   ============================================ */
.r3-copilot {
    padding: var(--r3-section-pad) 24px;
}

.r3-copilot__content {
    max-width: var(--r3-max-w);
    margin: 0 auto;
    text-align: center;
}

.r3-copilot__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.r3-copilot__title {
    font-family: var(--r3-font-display);
    font-size: var(--r3-title-size);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.r3-copilot__subtitle {
    opacity: 0.8;
    max-width: 550px;
    margin: 0 auto 48px;
}

.r3-copilot__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.r3-copilot__card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s, background 0.3s;
}
.r3-copilot__card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.18);
}

.r3-copilot__card i {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}
.r3-copilot__card h3 {
    font-weight: 700;
    margin-bottom: 8px;
}
.r3-copilot__card p {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ============================================
   PRICING
   Background: Near-black
   ============================================ */
.r3-pricing {
    padding: var(--r3-section-pad) 24px;
}

.r3-pricing__content {
    max-width: var(--r3-max-w);
    margin: 0 auto;
    text-align: center;
}

.r3-pricing__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.r3-pricing__title {
    font-family: var(--r3-font-display);
    font-size: var(--r3-title-size);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.r3-pricing__subtitle {
    opacity: 0.6;
    margin-bottom: 48px;
}

.r3-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.r3-pricing__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.r3-pricing__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.r3-pricing__card--popular {
    border-color: var(--r3-brand);
    background: rgba(237, 162, 200, 0.08);
}

.r3-pricing__card--founders {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.04);
}

.r3-pricing__pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--r3-brand);
    color: var(--r3-dark);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.r3-pricing__card h3 {
    font-weight: 700;
    margin-bottom: 8px;
}

.r3-pricing__price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.r3-pricing__amount {
    font-family: var(--r3-font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.r3-pricing__period {
    font-size: 0.85rem;
    opacity: 0.5;
}

.r3-pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.r3-pricing__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}
.r3-pricing__features i {
    color: var(--r3-success);
    font-size: 0.8rem;
}

/* ============================================
   CTA
   Background: Multi-brand gradient
   ============================================ */
.r3-cta {
    background: linear-gradient(135deg, var(--r3-brand) 0%, var(--r3-accent) 50%, var(--r3-success) 100%);
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
    overflow: hidden;
}

.r3-cta__content {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.r3-cta__title {
    font-family: var(--r3-font-display);
    font-size: var(--r3-title-size);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--r3-dark);
    margin-bottom: 16px;
}

.r3-cta__subtitle {
    opacity: 0.7;
    max-width: 550px;
    margin: 0 auto 32px;
}
.r3-cta .r3-btn--primary {
    background: var(--r3-dark);
    color: var(--r3-brand);
}
.r3-cta .r3-btn--primary:hover {
    box-shadow: 0 6px 30px rgba(26, 26, 26, 0.4);
}

/* Marquee */
.r3-cta__marquee {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.r3-cta__marquee--reverse {
    margin-bottom: 0;
    margin-top: 40px;
}
.r3-cta__marquee-track {
    display: inline-flex;
    animation: r3-marquee 25s linear infinite;
}
.r3-cta__marquee--reverse .r3-cta__marquee-track {
    animation-direction: reverse;
}
.r3-cta__marquee-track span {
    font-weight: 800;
    color: rgba(26, 26, 26, 0.12);
    letter-spacing: 0.05em;
    padding-right: 0;
}

@keyframes r3-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.r3-footer {
    background: #111;
    padding: 48px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.r3-footer__inner {
    max-width: var(--r3-max-w);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.r3-footer__logo {
    font-family: var(--r3-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.r3-footer__tagline {
    font-size: 0.85rem;
    opacity: 0.4;
    margin-top: 4px;
}

.r3-footer__links {
    display: flex;
    gap: 24px;
}
.r3-footer__links a {
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.r3-footer__links a:hover { opacity: 0.9; }

.r3-footer__legal {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.3;
    margin-top: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .r3-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Nav */
    .r3-nav__pill {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 0;
        background: rgba(26,26,26,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: none;
    }
    .r3-nav__links {
        display: none;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    .r3-nav__links--open { display: flex; }
    .r3-nav__burger { display: block; }

    /* Hero */
    .r3-hero__title {
        gap: 0;
    }
    .r3-char {
        font-size: clamp(4rem, 16vw, 8rem);
    }
    .r3-hero__doodle { display: none; }

    /* Hero split — no split on mobile, reveal stacks below */
    .r3-hero__facade {
        position: relative;
    }
    .r3-hero__reveal {
        position: relative;
        padding: 60px 20px;
    }

    /* Cards — stacked on mobile */
    .r3-cards__inner {
        flex-direction: column;
        gap: 20px;
    }
    .r3-cards__left,
    .r3-cards__right {
        display: contents;
    }
    .r3-cards__left { min-width: 0; }
    .r3-cards__right {
        height: auto;
        max-width: 100%;
    }
    .r3-cards__info {
        height: auto;
        padding: 40px 0;
    }
    .r3-cards__panel {
        position: static;
        transform: none;
        height: 280px;
        margin-bottom: 16px;
    }
    .r3-sketch-border,
    .r3-doodles__layer {
        display: none;
    }

    /* Progressive scroll — simplified on mobile */
    .r3-progressive__sticky {
        position: relative;
        top: auto;
    }
    .r3-progressive__word-wrap {
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
    }
    .r3-progressive__prefix {
        position: static;
        margin-right: 0;
        margin-bottom: 16px;
        text-align: center;
    }
    .r3-progressive__words {
        text-align: center;
    }
    .r3-progressive__words li {
        background: none;
        background-clip: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        color: rgba(255, 255, 255, 0.3);
    }
    .r3-progressive__words li:nth-child(odd) {
        color: var(--r3-brand);
    }

    /* Highlight — smaller on mobile */
    .r3-highlight__content p {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }

    /* SFW — static on mobile */
    .r3-sfw {
        height: auto;
        min-height: 70vh;
    }
    .r3-sfw__mask-layer:not(:nth-child(2)) {
        display: none;
    }
    .r3-sfw__mask-layer:nth-child(2) {
        position: relative;
        min-height: 70vh;
    }

    /* Analytics bar chart — mobile */
    .r3-analytics { padding: 50px 16px; }
    .r3-analytics__chart-wrap {
        height: 220px;
        padding: 0 8px 0 36px;
        margin-bottom: 32px;
    }
    .r3-analytics__gridlines { left: 36px; right: 8px; }
    .r3-analytics__avg { left: 36px; right: 8px; }
    .r3-analytics__sparkle { display: none; }
    .r3-analytics__avg-tag { display: none; }
    .r3-analytics__gridline em { font-size: 0.5rem; right: calc(100% + 6px); }
    .r3-analytics__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .r3-analytics__bar { transform: scaleY(1); }

    /* Scroll UI — hidden on mobile (needs pin) */
    /* Horizontal scroll — stacked on mobile */
    .r3-hscroll { height: auto; }
    .r3-hscroll__pin {
        flex-direction: column;
        height: auto;
        padding: 60px 20px;
        gap: 24px;
    }
    .r3-hscroll__heading { min-width: 0; padding: 0; }
    .r3-hscroll__item {
        min-width: 0;
        width: 100%;
        height: 50vw;
        padding: 0;
    }

    /* Grids */
    .r3-templates__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .r3-copilot__grid { grid-template-columns: 1fr; }
    .r3-pricing__grid { grid-template-columns: 1fr; }

    /* Footer */
    .r3-footer__inner {
        flex-direction: column;
        text-align: center;
    }
    .r3-footer__links { justify-content: center; }

    /* Bold */
    .r3-bold__line {
        font-size: clamp(2.2rem, 9vw, 5rem);
    }
}

@media (max-width: 480px) {
    .r3-templates__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .r3-templates__preview { border-radius: 10px; border-width: 2px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .r3-scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .r3-hero__scroll-line { animation: none; }
    .r3-cta__marquee-track { animation: none; }
    .r3-hero__doodle { opacity: 1; animation: none; }
    .r3-dchar { opacity: 1; transform: none; animation: none; }
    .r3-hero__doodle-line,
    .r3-hero__doodle-tip { stroke-dashoffset: 0; animation: none; }
    .r3-analytics__bar { transform: none; }
    .r3-analytics__avg { opacity: 1; }
    .r3-analytics__sparkle { animation: none; }
    .r3-sketchy::before { animation: none; filter: url(#r3-sketch-a); }
    .r3-doodle svg { animation: none; filter: url(#r3-sketch-a); }
}
