

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rails — Digital Infrastructure</title>
    <link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
    <meta name="description" content="Digital infrastructure and the software that runs on it: Rails Cloud, Rails Books, Cane Planner, Fi Terra, and Agro Pro.">
    <link rel="canonical" href="https://railscloud.co">
    <meta name="robots" content="index, follow">

    
    <meta property="og:type" content="website">
    <meta property="og:site_name" content="Rails Cloud">
    <meta property="og:title" content="Rails — Digital Infrastructure">
    <meta property="og:description" content="Digital infrastructure and the software that runs on it: Rails Cloud, Rails Books, Cane Planner, Fi Terra, and Agro Pro.">
    <meta property="og:url" content="https://railscloud.co">

    
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:title" content="Rails — Digital Infrastructure">
    <meta name="twitter:description" content="Digital infrastructure and the software that runs on it: Rails Cloud, Rails Books, Cane Planner, Fi Terra, and Agro Pro.">

    <script defer src="/static/js/alpine.min.js"></script>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
    <style>
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --bg: #FFFFFF;
            --text: #17181C;
            --text-2: #55565E;
            --text-3: #8E8F98;
            --border: #EBEBEF;
            --border-strong: #DCDCE2;
            --panel-2: #F6F6F8;
            --accent: #4F46E5;
            --accent-hover: #4338CA;
            --accent-soft: #EEF2FF;
            --ink: #17181C;
            --c-launchpad: #F59E0B;
            --c-sites: #EC4899;
            --c-api: #8B5CF6;
            --c-baserock: #10B981;
            --c-registry: #3B82F6;
            --c-storage: #06B6D4;
        }
        html { scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
        html, body { overflow-x: clip; }
        html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; }
        :root {
            --grad: linear-gradient(120deg, #4F46E5 0%, #8B5CF6 45%, #06B6D4 100%);
            --grad-soft: linear-gradient(120deg, rgba(79,70,229,0.08), rgba(139,92,246,0.07) 45%, rgba(6,182,212,0.08));
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-feature-settings: 'liga' 1, 'calt' 1, 'cv11' 1;
            background-color: var(--bg);
            color: var(--text);
            min-height: 100vh;
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }

         
        .navbar-wrap {
            position: sticky; top: 0; z-index: 60;
            background: color-mix(in srgb, #FFFFFF 85%, transparent);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.875rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: sticky; top: 0; z-index: 60;
            background: color-mix(in srgb, #FFFFFF 85%, transparent);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            max-width: none;
        }
        .navbar-inner { max-width: 1200px; margin: 0 auto; }
        .navbar-brand { display: flex; align-items: center; gap: 0.5rem; }
        .navbar-brand svg { width: 1.625rem; height: 1.625rem; color: var(--text); }
        .navbar-brand span { font-size: 1.0625rem; font-weight: 800; letter-spacing: -0.025em; color: var(--text); }
        .navbar-links { display: flex; align-items: center; gap: 1.5rem; }
        .navbar-links a {
            font-size: 0.8438rem;
            font-weight: 500;
            color: var(--text-2);
            transition: color 0.15s;
        }
        .navbar-links a:hover { color: var(--text); }
        .navbar-links a.navbar-cta,
        .navbar-mobile-menu a.navbar-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.4688rem 1rem;
            background-color: var(--ink);
            color: #FFFFFF;
            border-radius: 8px;
            font-size: 0.8125rem;
            font-weight: 600;
            transition: opacity 0.15s;
        }
        .navbar-links a.navbar-cta:hover,
        .navbar-mobile-menu a.navbar-cta:hover { opacity: 0.85; color: #FFFFFF; }

         
        .grad-text {
            background: var(--grad);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-grad {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.625rem;
            background: var(--grad);
            background-size: 160% 160%;
            color: #FFFFFF;
            border-radius: 10px;
            font-size: 0.9375rem;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.6s ease;
            box-shadow: 0 4px 20px rgba(79, 70, 229, 0.28);
        }
        .btn-grad:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(79, 70, 229, 0.38);
            background-position: 100% 50%;
            color: #FFFFFF;
        }

         
        .hero {
            text-align: center;
            padding: 6.5rem 2rem 4.5rem;
            max-width: 860px;
            margin: 0 auto;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: -8rem -20rem 0;
            z-index: -1;
            pointer-events: none;
            background:
                radial-gradient(38rem 24rem at 24% 12%, rgba(79, 70, 229, 0.13), transparent 60%),
                radial-gradient(30rem 22rem at 78% 6%, rgba(6, 182, 212, 0.11), transparent 60%),
                radial-gradient(26rem 20rem at 55% 42%, rgba(139, 92, 246, 0.09), transparent 65%);
            animation: mesh-drift 16s ease-in-out infinite alternate;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: -4rem 0 30%;
            z-index: -2;
            pointer-events: none;
            background-image: radial-gradient(rgba(23, 24, 28, 0.07) 1px, transparent 1px);
            background-size: 22px 22px;
            -webkit-mask-image: radial-gradient(60% 60% at 50% 35%, #000 30%, transparent 100%);
            mask-image: radial-gradient(60% 60% at 50% 35%, #000 30%, transparent 100%);
        }
        @keyframes mesh-drift {
            from { transform: translate3d(0, 0, 0) scale(1); }
            to { transform: translate3d(2rem, 1.25rem, 0) scale(1.06); }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3438rem 0.875rem;
            background: var(--bg);
            border: 1px solid var(--border);
            color: var(--text-2);
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1.75rem;
        }
        .hero-badge::before {
            content: '';
            width: 0.4375rem; height: 0.4375rem; border-radius: 50%;
            background: var(--accent);
        }
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.04;
            margin-bottom: 1.375rem;
            color: var(--text);
        }
        .hero p {
            font-size: 1.125rem;
            color: var(--text-2);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            line-height: 1.65;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.625rem;
            background-color: var(--ink);
            color: #FFFFFF;
            border-radius: 10px;
            font-size: 0.9375rem;
            font-weight: 600;
            transition: opacity 0.15s, transform 0.15s;
        }
        .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.625rem;
            background-color: var(--bg);
            border: 1px solid var(--border-strong);
            color: var(--text-2);
            border-radius: 10px;
            font-size: 0.9375rem;
            font-weight: 600;
            transition: background-color 0.15s, border-color 0.15s;
        }
        .btn-secondary:hover { background-color: var(--panel-2); color: var(--text); }

         
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.875rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 2rem 3rem;
        }
        .feature-card {
            padding: 1.75rem;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: var(--bg);
            transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
        }
        .feature-card:hover {
            border-color: rgba(79, 70, 229, 0.35);
            box-shadow: 0 8px 32px rgba(79, 70, 229, 0.09);
            transform: translateY(-2px);
        }
        .feature-icon { width: 1.5rem; height: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
        .feature-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.375rem; }
        .feature-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

         
        .footer {
            border-top: 1px solid var(--border);
            padding: 2.5rem 2rem;
            text-align: center;
        }
        .footer p { font-size: 0.75rem; color: var(--text-3); }
        .footer-links {
            display: flex; align-items: center; justify-content: center;
            gap: 1.5rem; margin-bottom: 0.875rem;
        }
        .footer-links a {
            font-size: 0.8125rem; font-weight: 500; color: var(--text-2);
            transition: color 0.15s;
        }
        .footer-links a:hover { color: var(--text); }

         
        .cta { text-align: center; padding: 5rem 2rem; max-width: 640px; margin: 0 auto; }
        .cta h2 {
            font-size: 2.375rem; font-weight: 800; letter-spacing: -0.035em;
            line-height: 1.15; margin-bottom: 0.875rem; color: var(--text);
        }
        .cta p { font-size: 1.0313rem; color: var(--text-2); margin-bottom: 2rem; line-height: 1.65; }

         
        .navbar-toggle {
            display: none;
            align-items: center; justify-content: center;
            width: 2.5rem; height: 2.5rem;
            border: none; background: transparent; cursor: pointer;
            color: var(--text); border-radius: 8px;
        }
        .navbar-toggle:hover { background: var(--panel-2); }
        .navbar-toggle svg { width: 1.375rem; height: 1.375rem; }

        .navbar-mobile-menu {
            display: none;
            position: absolute;
            top: 100%; left: 0; right: 0;
            background: var(--bg);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
            padding: 0.5rem 1.25rem 1rem;
            z-index: 50;
            flex-direction: column;
            gap: 0.125rem;
        }
        .navbar-mobile-menu.open { display: flex; }
        .navbar-mobile-menu a {
            display: block;
            padding: 0.75rem 0.75rem;
            font-size: 0.9375rem; font-weight: 500;
            color: var(--text-2); border-radius: 8px;
            transition: background 0.15s, color 0.15s;
        }
        .navbar-mobile-menu a:hover { background: var(--panel-2); color: var(--text); }
        .navbar-mobile-menu a.navbar-cta { margin-top: 0.5rem; }

         
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.375rem; }
            .features { grid-template-columns: 1fr; max-width: 420px; }
            .navbar-links { display: none; }
            .navbar-toggle { display: flex; }
            .navbar { padding: 0.75rem 1.25rem; }
            .cta h2 { font-size: 1.625rem; }
            .hero { padding: 3.5rem 1.5rem 2.5rem; }
            .hero-actions { flex-direction: column; }
            .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
            .footer-links { flex-wrap: wrap; }
        }

         
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero > * { animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
        .hero > *:nth-child(1) { animation-delay: 0.05s; }
        .hero > *:nth-child(2) { animation-delay: 0.15s; }
        .hero > *:nth-child(3) { animation-delay: 0.25s; }
        .hero > *:nth-child(4) { animation-delay: 0.35s; }
        .hero > *:nth-child(5) { animation-delay: 0.45s; }

        .rv {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
            transition-delay: var(--rv-delay, 0s);
        }
        .rv.in-view { opacity: 1; transform: translateY(0); }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation: none !important; transition: none !important; }
            .rv { opacity: 1; transform: none; }
        }
    </style>
</head>
<body data-authenticated="false">
    
<style>
     
    .section-head {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: 0 2rem;
    }
    .section-head .kicker {
        display: inline-block;
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 0.625rem;
    }
    .section-head h2 {
        font-size: 1.75rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: var(--text);
        margin-bottom: 0.625rem;
        line-height: 1.2;
    }
    .section-head p {
        font-size: 0.9375rem;
        color: var(--text-2);
        line-height: 1.6;
    }

     
    .capabilities .rv { transform: none; }

     
    .capabilities {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.25rem;
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem 2rem 3rem;
    }
    .capabilities .feature-card {
        border: 1px solid var(--border);
        padding: 1.5rem;
        min-width: 0;
    }

    @media (max-width: 900px) {
        .capabilities { padding: 1.5rem 1.25rem 2rem; }
        .section-head { padding: 0 1.25rem; }
        .section-head h2 { font-size: 1.375rem; }
    }
</style>


<nav class="navbar">
    <a href="/" class="navbar-brand">
        <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
        <span>Rails Cloud</span>
    </a>
    <div class="navbar-links">
        <a href="https://cloud.railscloud.co">Cloud</a>
        <a href="/launchpad">Launchpad</a>
        <a href="/sites">Sites</a>
        <a href="/about">About</a>
        <a href="/login">Sign in</a>
        <a href="/register" class="navbar-cta">Request access</a>
    </div>
</nav>


<section class="hero" style="padding-bottom:1rem;">
    <h1>Digital <span class="grad-text">infrastructure</span>, and the software that runs on it</h1>
    <p>Rails builds Zimbabwe's cloud platform and the products on top of it — from deploy-in-seconds primitives to business finance and national-scale agriculture. Infrastructure you control, data that stays yours.</p>
    <div class="hero-actions">
        <a href="/register" class="btn-grad">
            Request access
            <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m12 5 7 7-7 7"/></svg>
        </a>
        <a href="/login" class="btn-secondary">Sign in</a>
    </div>
</section>
<section style="text-align:center;padding:0 2rem 2rem;overflow:hidden;">
    <div style="margin-top:3.5rem;position:relative;">
        <div style="position:absolute;inset:-2rem -3rem auto;height:70%;background:var(--grad-soft);filter:blur(40px);z-index:-1;border-radius:50%;"></div>
        <img src="/static/images/console-hero.png" alt="Apps running on Launchpad in the Rails Cloud console"
             style="width:980px;max-width:100%;height:auto;border-radius:14px;border:1px solid var(--border);box-shadow:0 24px 80px rgba(23,24,28,0.12), 0 4px 16px rgba(23,24,28,0.05);">
    </div>
</section>


<section id="platform" style="padding-top:1.5rem;">
    <div class="section-head">
        <span class="kicker">The platform underneath</span>
        <h2>Cloud primitives, hosted in-country</h2>
        <p>Every Rails product runs on the same foundation — and it's the same foundation you can build on.</p>
    </div>
    <div class="capabilities">
        <div class="feature-card">
            <h3>Launchpad</h3>
            <p>Deploy container apps in seconds. SSL, custom domains, scaling and monitoring handled for you.</p>
        </div>
        <div class="feature-card">
            <h3>Sites</h3>
            <p>Static hosting with free SSL. Publish landing pages, docs, and web apps on your own domain.</p>
        </div>
        <div class="feature-card">
            <h3>Baserock</h3>
            <p>Managed PostgreSQL, MySQL and Redis — production databases without the operational burden.</p>
        </div>
        <div class="feature-card">
            <h3>Object Storage</h3>
            <p>S3-compatible storage for backups, media, and datasets. Works with the S3 tooling you already use.</p>
        </div>
        <div class="feature-card">
            <h3>Container Registry</h3>
            <p>A private registry for your images, close to where they run. Push, tag, and deploy from one place.</p>
        </div>
        <div class="feature-card">
            <h3>Developer APIs</h3>
            <p>Drive deployments, databases, and storage from your own tools and pipelines.</p>
        </div>
    </div>
</section>


<section class="cta">
    <h2>Build on solid ground</h2>
    <p>Registration is currently by request. Tell us what you're building and we'll set you up on Rails Cloud.</p>
    <a href="/register" class="btn-primary">
        Request access
        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m12 5 7 7-7 7"/></svg>
    </a>
</section>


<footer class="footer">
    <div class="footer-links">
        <a href="https://cloud.railscloud.co">Cloud</a>
        <a href="/launchpad">Launchpad</a>
        <a href="/sites">Sites</a>
        <a href="/about">About</a>
        <a href="/careers">Careers</a>
        <a href="/legal">Legal</a>
    </div>
    <p>&copy; 2026 Rails Net. All rights reserved.</p>
</footer>

    <script>
    
    document.addEventListener('DOMContentLoaded', function() {
        var navbar = document.querySelector('.navbar');
        var links = document.querySelector('.navbar-links');
        if (!navbar || !links) return;

        var isAuth = document.body.getAttribute('data-authenticated') === 'true';

        
        var standardLinks = '<a href="/features">Features</a>'
            + '<a href="/launchpad">Launchpad</a>'
            + '<a href="/sites">Sites</a>'
            + '<a href="/pricing">Pricing</a>'
            + '<a href="/about">About</a>'
            + '<a href="/legal">Legal</a>';

        if (isAuth) {
            standardLinks += '<a href="/dashboard" class="navbar-cta">Dashboard</a>';
        } else {
            standardLinks += '<a href="/login">Sign in</a>'
                + '<a href="/register" class="navbar-cta">Request access</a>';
        }

        links.innerHTML = standardLinks;

        
        var brand = navbar.querySelector('.navbar-brand');
        if (brand) {
            brand.href = '/';
            brand.innerHTML = '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">'
                + '<path d="M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"/>'
                + '</svg><span>Rails Cloud</span>';
        }

        
        var toggle = document.createElement('button');
        toggle.className = 'navbar-toggle';
        toggle.setAttribute('aria-label', 'Toggle menu');
        toggle.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></svg>';
        navbar.appendChild(toggle);

        
        var menu = document.createElement('div');
        menu.className = 'navbar-mobile-menu';
        menu.innerHTML = links.innerHTML;
        navbar.appendChild(menu);

        toggle.addEventListener('click', function() {
            var open = menu.classList.toggle('open');
            toggle.innerHTML = open
                ? '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12"/></svg>'
                : '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></svg>';
        });

        
        var footerLinks = document.querySelector('.footer-links');
        if (footerLinks) {
            footerLinks.innerHTML = '<a href="/features">Features</a>'
                + '<a href="/launchpad">Launchpad</a>'
                + '<a href="/sites">Sites</a>'
                + '<a href="/pricing">Pricing</a>'
                + '<a href="/about">About</a>'
                + '<a href="/legal">Legal</a>'
                + '<a href="/status">Status</a>';
        }
        var footerCopy = document.querySelector('.footer p');
        if (footerCopy) {
            footerCopy.textContent = '\u00A9 2026 Rails Cloud. All rights reserved.';
        }

        
        
        if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches && 'IntersectionObserver' in window) {
            var selectors = '.feature-card, .product-card, .section-head, .cta, section > h2, .pr-card, .pr-table-wrap, .doc-card';
            var nodes = Array.prototype.slice.call(document.querySelectorAll(selectors));
            var siblingIndex = new Map();
            nodes.forEach(function (el) {
                if (el.closest('.hero')) return; 
                var parent = el.parentElement;
                var idx = siblingIndex.get(parent) || 0;
                siblingIndex.set(parent, idx + 1);
                el.classList.add('rv');
                el.style.setProperty('--rv-delay', Math.min(idx * 0.07, 0.42) + 's');
            });
            var io = new IntersectionObserver(function (entries) {
                entries.forEach(function (e) {
                    if (e.isIntersecting) {
                        e.target.classList.add('in-view');
                        io.unobserve(e.target);
                    }
                });
            }, { threshold: 0.12, rootMargin: '0px 0px -5% 0px' });
            document.querySelectorAll('.rv').forEach(function (el) { io.observe(el); });
        }
    });
    </script>

    
    <div x-data="{ show: !localStorage.getItem('rc_cookies') }" x-show="show" x-transition
         style="position:fixed;bottom:1rem;left:1rem;right:1rem;z-index:999;pointer-events:none;">
        <div style="pointer-events:auto;max-width:640px;margin:0 auto;background:#FFFFFF;border:1px solid var(--border);border-radius:14px;padding:0.875rem 1.125rem;box-shadow:0 12px 40px rgba(0,0,0,0.1);display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;">
            <p style="font-size:0.8125rem;color:var(--text-2);line-height:1.5;flex:1;min-width:240px;">
                We use cookies to improve your experience. See our
                <a href="/legal" style="color:var(--accent);font-weight:500;">Cookie Policy</a>.
            </p>
            <div style="display:flex;align-items:center;gap:0.5rem;flex-shrink:0;">
                <button @click="localStorage.setItem('rc_cookies','accepted'); show=false"
                        style="padding:0.4375rem 1rem;background:var(--ink);color:#fff;border:none;border-radius:8px;font-size:0.8125rem;font-weight:600;cursor:pointer;font-family:inherit;">Accept</button>
                <button @click="localStorage.setItem('rc_cookies','dismissed'); show=false"
                        style="padding:0.4375rem 1rem;background:var(--panel-2);color:var(--text-2);border:none;border-radius:8px;font-size:0.8125rem;font-weight:600;cursor:pointer;font-family:inherit;">Dismiss</button>
            </div>
        </div>
    </div>
</body>
</html>

