/* ═══════════════════════════════════════════════
   AskRoux by PerryLabs — Design System
   Palette: Violet Punch
   ═══════════════════════════════════════════════ */

:root {
    --violet:       #7F77DD;
    --violet-light: #AFA9EC;
    --violet-pale:  #EEEDFE;
    --violet-deep:  #26215C;
    --violet-mid:   #534AB7;
    --red:          #E24B4A;
    --red-pale:     #FCEBEB;
    --amber:        #EF9F27;
    --amber-pale:   #FAEEDA;
    --teal:         #1D9E75;
    --teal-pale:    #E1F5EE;

    --bg:           #FAFAFF;
    --paper:        #FFFFFF;
    --text:         #26215C;
    --text-soft:    #5A5580;
    --text-muted:   #9490B0;
    --border:       #E5E2F0;
    --border-dark:  #CCC8E0;

    --pl-red:       #E63946;
    --pl-aqua:      #00B4D8;

    --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;

    --max-w:  1200px;
    --gutter: 48px;

    --site-color: #7F77DD;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; transition: all 0.15s; }
a:hover { opacity: 0.85; }
input::placeholder { color: var(--text-muted); }

.text-muted { color: var(--text-muted); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    border: none; border-radius: 10px; cursor: pointer;
    font-family: var(--font-body); font-weight: 800; font-size: 14px;
    padding: 10px 22px; transition: all 0.15s;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn--violet { background: linear-gradient(135deg, var(--violet), var(--violet-mid)); color: #fff; }
.btn--violet-deep { background: var(--violet-deep); color: #fff; }
.btn--red { background: var(--red); color: #fff; }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }
.btn--pill { border-radius: 999px; padding: 8px 20px; font-size: 13px; }
.btn--outline-violet {
    background: transparent; color: var(--violet);
    border: 2px solid var(--violet);
}
.btn--outline-violet:hover { background: var(--violet-pale); }
.btn--ghost { background: transparent; color: var(--violet); border: none; }
.btn--ghost:hover { background: var(--violet-pale); }


/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.roux-nav {
    padding: 14px var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
}
.roux-nav__inner {
    display: flex; justify-content: space-between; align-items: center;
}
.roux-nav__brand {
    display: flex; align-items: center; gap: 8px;
}

/* Roux logo */
.roux-logo {
    display: flex; align-items: center; gap: 8px;
}
.roux-logo__icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, var(--violet), var(--violet-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900; color: #fff;
}
.roux-logo__text {
    font-size: 18px; font-weight: 800;
    font-family: var(--font-display); color: var(--violet-deep);
}

.roux-nav__links {
    display: flex; gap: 24px; align-items: center;
}
.roux-nav__links a:not(.btn) {
    font-size: 14px; font-weight: 700; color: var(--text-soft);
}
.roux-nav__links a:not(.btn):hover { color: var(--violet); opacity: 1; }
.roux-nav__toggle { display: none; }

/* PerryLabs mark */
.pl-mark {
    display: flex; gap: 3px; align-items: flex-end;
}
.pl-mark__bar {
    display: block; width: 6px; border-radius: 2px;
}
.pl-mark__bar--1 { height: 18px; background: var(--pl-red); }
.pl-mark__bar--2 { height: 18px; background: var(--pl-aqua); opacity: 0.8; }
.pl-mark__bar--3 { height: 14px; background: var(--pl-red); opacity: 0.6; }
.pl-mark__bar--4 { height: 10px; background: var(--pl-aqua); opacity: 0.4; }
.pl-mark--sm .pl-mark__bar { width: 5px; }
.pl-mark--sm .pl-mark__bar--1 { height: 14px; }
.pl-mark--sm .pl-mark__bar--2 { height: 14px; opacity: 0.7; }
.pl-mark--sm .pl-mark__bar--3 { height: 10px; opacity: 0.5; }
.pl-mark__label {
    font-size: 13px; font-weight: 600; color: var(--text-muted);
    letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════════ */
.section {
    padding: 80px var(--gutter);
}
.section__inner {
    max-width: var(--max-w); margin: 0 auto;
}
.section__inner--narrow {
    max-width: 900px; margin: 0 auto;
}
.section__header {
    text-align: center; margin-bottom: 48px;
}
.section__header h2 {
    font-size: 36px; font-family: var(--font-display);
    font-weight: 700; color: var(--violet-deep); margin-bottom: 8px;
}
.section__header p {
    font-size: 15px; color: var(--text-muted); font-weight: 600;
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    padding: 80px var(--gutter) 48px;
    max-width: 800px; margin: 0 auto;
    text-align: center;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--violet-pale); border-radius: 100px;
    padding: 6px 16px; margin-bottom: 28px;
}
.hero__badge span {
    font-size: 12px; font-weight: 800; color: var(--violet-mid);
    letter-spacing: 0.5px;
}
.hero__badge::before {
    content: ''; width: 8px; height: 8px; border-radius: 4px;
    background: var(--violet); display: inline-block;
}
.hero__title {
    font-size: 56px; font-weight: 700; line-height: 1.1;
    font-family: var(--font-display); color: var(--violet-deep);
    margin-bottom: 20px;
}
.hero__title em {
    background: linear-gradient(135deg, var(--violet), var(--red));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-style: normal;
}
.hero__subtitle {
    font-size: 19px; color: var(--text-soft); line-height: 1.7;
    max-width: 560px; margin: 0 auto 36px; font-weight: 600;
}
.hero__actions {
    display: flex; gap: 12px; align-items: center;
    justify-content: center; flex-wrap: wrap;
}
.hero__note {
    font-size: 13px; color: var(--text-muted);
}

/* Stats bar */
.stats-bar {
    max-width: 700px; margin: 0 auto;
    padding: 0 var(--gutter) 48px;
}
.stats-bar__inner {
    display: flex; justify-content: space-around; text-align: center;
    background: var(--paper); border-radius: 16px; padding: 24px 16px;
    border: 1.5px solid var(--border);
}
.stats-bar__num {
    font-size: 28px; font-weight: 800;
    font-family: var(--font-display); color: var(--violet);
}
.stats-bar__label {
    font-size: 12px; color: var(--text-muted); font-weight: 700; margin-top: 2px;
}


/* ═══════════════════════════════════════════════
   DEMO (homepage)
   ═══════════════════════════════════════════════ */
.demo-section { padding-top: 48px; padding-bottom: 64px; }

.demo__tabs {
    display: flex; gap: 6px; margin-bottom: -1px; position: relative; z-index: 2;
}
.demo__tab {
    background: transparent;
    border: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    border-radius: 10px 10px 0 0;
    padding: 9px 14px; cursor: pointer;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    color: var(--text-muted); transition: all 0.15s;
}
.demo__tab--active {
    background: var(--paper); font-weight: 800;
    border-color: var(--violet);
    border-bottom-color: var(--paper);
    color: var(--violet);
}
.demo__tab-pages {
    font-size: 10px; opacity: 0.5; margin-left: 6px;
}

.demo__search {
    background: var(--paper);
    border: 2px solid var(--violet);
    border-radius: 0 14px 14px 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(127,119,221,0.09);
}
.demo__input-row {
    display: flex; align-items: center;
}
.demo__roux-icon {
    width: 38px; height: 38px; margin: 10px 0 10px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--violet), var(--violet-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: #fff;
    flex-shrink: 0;
}
.demo__input {
    flex: 1; border: none; outline: none;
    font-size: 16px; padding: 18px 14px;
    font-family: var(--font-body); color: var(--text);
    background: transparent;
}
.demo__submit {
    background: linear-gradient(135deg, var(--violet), var(--violet-mid));
    color: #fff;
    padding: 11px 24px; margin: 8px; border-radius: 10px;
    font-size: 14px; font-weight: 800; white-space: nowrap;
}
.demo__result {
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    background: rgba(238,237,254,0.37);
}
.demo__result p {
    font-size: 15px; line-height: 1.8; color: var(--text);
}
.demo__result .demo__searching {
    font-size: 14px; color: var(--violet); font-weight: 700;
}
.demo__samples {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.demo__sample {
    background: var(--paper); border: 1.5px solid var(--border);
    border-radius: 100px; padding: 8px 16px;
    color: var(--text-soft); font-size: 13px; cursor: pointer;
    font-family: var(--font-body); font-weight: 600; transition: all 0.2s;
}
.demo__sample:hover {
    border-color: var(--violet); color: var(--violet);
    background: var(--violet-pale);
}

/* Pulse animation for searching */
@keyframes roux-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.demo__searching::before {
    content: ''; display: inline-block;
    width: 8px; height: 8px; border-radius: 4px;
    background: var(--violet); margin-right: 8px;
    animation: roux-pulse 1s ease-in-out infinite;
    vertical-align: middle;
}


/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.step {
    background: var(--paper); border-radius: 20px; padding: 32px 28px;
    border: 1.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover {
    transform: translateY(-6px);
}
.step--violet { border-top: 4px solid var(--violet); }
.step--violet:hover { box-shadow: 0 16px 40px rgba(127,119,221,0.1); }
.step--red { border-top: 4px solid var(--red); }
.step--red:hover { box-shadow: 0 16px 40px rgba(226,75,74,0.1); }
.step--amber { border-top: 4px solid var(--amber); }
.step--amber:hover { box-shadow: 0 16px 40px rgba(239,159,39,0.1); }
.step__icon {
    font-size: 32px; margin-bottom: 16px;
}
.step__title {
    font-size: 20px; font-weight: 800;
    font-family: var(--font-body); color: var(--violet-deep);
    margin-bottom: 10px;
}
.step__desc {
    font-size: 15px; color: var(--text-soft); line-height: 1.7; font-weight: 600;
}


/* ═══════════════════════════════════════════════
   VERTICALS
   ═══════════════════════════════════════════════ */
.verticals-section { padding-top: 48px; padding-bottom: 60px; }
.verticals {
    background: linear-gradient(135deg, var(--violet-deep), var(--violet-mid));
    border-radius: 28px; padding: 52px 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    color: #fff;
}
.verticals__copy h2 {
    font-size: 30px; font-family: var(--font-display);
    font-weight: 700; color: var(--amber-pale); margin-bottom: 14px;
}
.verticals__copy em { color: var(--amber); font-style: italic; }
.verticals__copy p {
    font-size: 15px; color: var(--violet-light); line-height: 1.7; font-weight: 600;
}
.verticals__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.vertical-card {
    background: rgba(255,255,255,0.1); border-radius: 12px;
    padding: 14px 16px; display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 700;
    transition: background 0.2s;
}
.vertical-card:hover { background: rgba(255,255,255,0.18); }
.vertical-card__icon { font-size: 20px; }


/* ═══════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════ */

/* Billing toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.pricing-toggle__label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s;
}
.pricing-toggle__label--active {
    color: var(--violet);
}
.pricing-toggle__switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
}
.pricing-toggle__switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing-toggle__slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 26px;
    transition: background 0.3s;
}
.pricing-toggle__slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}
.pricing-toggle__switch input:checked + .pricing-toggle__slider {
    background: var(--violet);
}
.pricing-toggle__switch input:checked + .pricing-toggle__slider::before {
    transform: translateX(22px);
}
.pricing-toggle__badge {
    background: var(--amber);
    color: var(--violet-deep);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
}

.pricing-card__price {
    font-size: 38px; font-weight: 800;
    font-family: var(--font-display); color: var(--violet-deep);
}

.pricing-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.price-card {
    background: var(--paper); border-radius: 20px; padding: 30px 24px;
    border: 1.5px solid var(--border); position: relative;
    height: 100%;
}
.price-card--pop {
    border: 2.5px solid var(--violet);
    box-shadow: 0 12px 40px rgba(127,119,221,0.12);
    transform: scale(1.04);
}
.price-card__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--violet), var(--red));
    color: #fff; font-size: 11px; font-weight: 800;
    padding: 5px 18px; border-radius: 100px;
    letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap;
}
.price-card__tier {
    font-size: 13px; font-weight: 800; color: var(--text-muted);
    letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase;
}
.price-card--pop .price-card__tier { color: var(--violet); }
.price-card__price {
    margin-bottom: 22px;
}
.price-card__amount {
    font-size: 38px; font-weight: 800;
    font-family: var(--font-display); color: var(--violet-deep);
}
.price-card__period {
    font-size: 14px; color: var(--text-muted); margin-left: 4px; font-weight: 600;
}
.price-card__feature {
    font-size: 14px; color: var(--text-soft); padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.price-card__check { color: var(--violet); font-size: 16px; font-weight: 900; }
.price-card .btn {
    width: 100%; margin-top: 22px; padding: 12px 0;
}


/* ═══════════════════════════════════════════════
   CTA / CONTACT
   ═══════════════════════════════════════════════ */
.cta-section { padding-bottom: 64px; }
.cta-card {
    max-width: 600px; margin: 0 auto; background: var(--paper);
    border-radius: 24px; padding: 44px 40px;
    border: 1.5px solid var(--border);
    box-shadow: 0 8px 32px rgba(127,119,221,0.06);
}
.cta-card__icon {
    width: 48px; height: 48px; border-radius: 14px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--violet), var(--violet-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; color: #fff;
}
.cta-card h2 {
    font-size: 28px; font-family: var(--font-display);
    font-weight: 700; color: var(--violet-deep); margin-bottom: 8px;
    text-align: center;
}
.cta-card p {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 28px; text-align: center; font-weight: 600;
}
.cta-card__form {
    min-height: 200px;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.roux-footer {
    padding: 28px var(--gutter);
    max-width: var(--max-w); margin: 0 auto;
    border-top: 1.5px solid var(--border);
}
.roux-footer__inner {
    display: flex; justify-content: space-between; align-items: center;
}
.roux-footer__left {
    display: flex; align-items: center; gap: 12px;
}
.roux-footer__brand { font-size: 13px; font-weight: 700; }
.roux-footer__brand strong { color: var(--violet-deep); }
.roux-footer__brand a { color: var(--pl-red); font-weight: 800; }
.roux-footer__links {
    display: flex; gap: 16px; align-items: center;
}
.roux-footer__links a {
    font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.roux-footer__links a:hover { color: var(--violet); opacity: 1; }
.roux-footer__location { color: var(--text-muted); font-size: 12px; }
.roux-footer__tagline {
    font-size: 13px; color: var(--text-muted);
    font-family: var(--font-display); font-style: italic;
}
.roux-footer__legal {
    text-align: center; font-size: 11px; color: var(--text-muted);
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.roux-footer__legal a { color: var(--text-soft); }
.roux-footer__legal a:hover { color: var(--violet); }


/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
.anim-fade {
    opacity: 0; transform: translateY(20px);
    transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade--visible {
    opacity: 1; transform: none;
}


/* ═══════════════════════════════════════════════
   DEMO PAGES (per-tenant branded)
   ═══════════════════════════════════════════════ */
.demo-page {
    background: var(--bg);
}

.demo-hero {
    color: #fff;
    padding: 0 var(--gutter);
}
.demo-hero__inner {
    max-width: var(--max-w); margin: 0 auto;
    padding: 32px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.demo-hero__site {
    display: flex; align-items: center; gap: 16px;
}
.demo-hero__favicon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; color: #fff;
}
.demo-hero__name {
    font-size: 24px; font-weight: 700;
    font-family: var(--font-display); margin: 0;
}
.demo-hero__domain { font-size: 14px; opacity: 0.8; margin: 0; }
.demo-hero__badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px; padding: 8px 18px;
    font-size: 13px; font-weight: 600;
}
.demo-hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #48BB78;
}

.demo-banner {
    background: var(--demo-color-light, var(--violet-pale));
    border-bottom: 1px solid var(--border);
    padding: 16px var(--gutter);
}
.demo-banner__inner { max-width: var(--max-w); margin: 0 auto; }
.demo-banner p { font-size: 14px; color: var(--text-soft); margin: 0; }
.demo-banner a {
    color: var(--demo-color, var(--violet));
    font-weight: 600; text-decoration: underline;
}

.demo-main { padding: 48px var(--gutter) 80px; }
.demo-main__inner { max-width: 800px; margin: 0 auto; }

.demo-widget {
    background: var(--paper); border-radius: 20px;
    border: 1px solid var(--border); padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    min-height: 300px;
}

.demo-samples { margin-top: 24px; }
.demo-samples__label {
    font-size: 13px; font-weight: 700; color: var(--text-muted);
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.demo-samples__list { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-samples__btn {
    background: var(--paper); border: 1px solid var(--border);
    border-radius: 100px; padding: 8px 18px;
    color: var(--text-soft); font-size: 13px;
    font-family: var(--font-body); cursor: pointer;
    transition: all 0.15s;
}
.demo-samples__btn:hover {
    border-color: var(--demo-color, var(--violet));
    color: var(--demo-color, var(--violet));
    background: var(--demo-color-light, var(--violet-pale));
}

.demo-about { margin-top: 56px; }
.demo-about h2 {
    font-size: 28px; font-family: var(--font-display);
    font-weight: 700; color: var(--violet-deep); margin-bottom: 28px;
}
.demo-about__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.demo-about__item {
    background: var(--paper); border-radius: 16px;
    padding: 28px 24px; border: 1px solid var(--border);
}
.demo-about__num {
    font-size: 36px; font-weight: 700;
    font-family: var(--font-display); opacity: 0.3;
    line-height: 1; margin-bottom: 12px;
}
.demo-about__item h3 {
    font-size: 16px; font-weight: 700; color: var(--violet-deep); margin-bottom: 8px;
}
.demo-about__item p {
    font-size: 14px; color: var(--text-soft); line-height: 1.6;
}

.demo-cta { margin-top: 56px; text-align: center; }
.demo-cta__card {
    background: var(--paper); border-radius: 24px;
    padding: 48px 40px; border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.demo-cta__icon {
    width: 48px; height: 48px; border-radius: 14px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--violet), var(--violet-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; color: #fff;
}
.demo-cta__card h2 {
    font-size: 26px; font-family: var(--font-display);
    font-weight: 700; color: var(--violet-deep); margin-bottom: 10px;
}
.demo-cta__card p {
    font-size: 15px; color: var(--text-soft);
    line-height: 1.7; margin-bottom: 24px;
}


/* ═══════════════════════════════════════════════
   DEMOS LISTING PAGE
   ═══════════════════════════════════════════════ */
.demos-page {
    padding: 0 var(--gutter) 80px;
    max-width: var(--max-w); margin: 0 auto;
}
.demos-page__header {
    text-align: center; padding: 60px 0 48px;
}
.demos-page__header h1 {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 800; margin-bottom: 12px;
    color: var(--violet-deep);
}
.demos-page__header p {
    font-size: 18px; color: var(--text-soft);
    max-width: 540px; margin: 0 auto;
}
.demos-page__category { margin-bottom: 48px; }
.demos-page__cat-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    margin-bottom: 16px; padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
    color: var(--violet-deep);
}
.demos-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.demo-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--paper); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 20px;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-decoration: none;
}
.demo-card:hover {
    border-color: var(--card-color, var(--violet));
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    opacity: 1;
}
.demo-card__favicon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 18px;
}
.demo-card__info { flex: 1; min-width: 0; }
.demo-card__name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.demo-card__domain { font-size: 13px; color: var(--text-muted); }
.demo-card__tagline {
    font-size: 12px; color: var(--text-soft); margin-top: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.demo-card__arrow {
    flex-shrink: 0; font-size: 18px; color: var(--text-muted);
    transition: transform 0.15s;
}
.demo-card:hover .demo-card__arrow {
    transform: translateX(3px);
    color: var(--card-color, var(--violet));
}
.demos-page__cta {
    text-align: center; padding: 40px 0;
    font-size: 16px; color: var(--text-soft);
}
.demos-page__cta-link {
    color: var(--violet) !important; font-weight: 700;
}


/* ═══════════════════════════════════════════════
   MOBILE NAV TOGGLE
   ═══════════════════════════════════════════════ */
.roux-nav__toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative;
    flex-direction: column; justify-content: space-between;
}
.roux-nav__toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--violet-deep); border-radius: 2px;
    transition: all 0.3s;
}


/* ═══════════════════════════════════════════════
   DOWNLOADS
   ═══════════════════════════════════════════════ */
.downloads-section { background: var(--paper); }
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
}
.download-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.download-card:hover {
    border-color: var(--violet);
    box-shadow: 0 4px 16px rgba(83, 74, 183, 0.1);
}
.download-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--violet-pale);
    color: var(--violet-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}
.download-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.download-card__info strong { font-size: 15px; }
.download-card__info span { font-size: 12px; color: var(--muted); }
.downloads-note {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 20px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    :root { --gutter: 32px; }
    .hero__title { font-size: 42px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card--pop { transform: none; }
}

@media (max-width: 900px) {
    .verticals { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .demo-about__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --gutter: 20px; }

    .roux-nav__toggle { display: flex; }
    .roux-nav__links {
        display: none;
        position: absolute; top: 60px; left: 0; right: 0;
        background: var(--paper); padding: 24px var(--gutter);
        flex-direction: column; gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 100;
    }
    .roux-nav__links--open { display: flex; }
    .roux-nav__inner { position: relative; }

    .hero { padding-top: 48px; }
    .hero__title { font-size: 34px; }
    .hero__subtitle { font-size: 16px; }

    .stats-bar__inner { flex-direction: column; gap: 16px; }

    .demo__tab { padding: 8px 12px; font-size: 11px; }
    .demo__input { font-size: 14px; padding: 14px 10px; }
    .demo__submit { padding: 10px 18px; font-size: 13px; }

    .verticals { padding: 36px 24px; }
    .verticals__copy h2 { font-size: 24px; }

    .pricing-grid { grid-template-columns: 1fr; }
    .downloads-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 36px 24px; }

    .roux-footer__inner { flex-direction: column; gap: 12px; text-align: center; }
    .roux-footer__left { flex-wrap: wrap; justify-content: center; }
    .roux-footer__links { justify-content: center; }

    /* Demo page responsive */
    .demo-hero__inner { flex-direction: column; gap: 16px; text-align: center; }
    .demo-hero__site { flex-direction: column; gap: 8px; }
    .demo-widget { padding: 20px 16px; }

    /* Demos listing responsive */
    .demos-page__header h1 { font-size: 30px; }
    .demos-page__grid { grid-template-columns: 1fr; }

    /* Nav auth buttons stack */
    .roux-nav__links .btn--pill { width: 100%; text-align: center; }
}
