:root {
    --bg:   #05080F;
    --s1:   #080D17;
    --s2:   #0D1420;
    --s3:   #121B2A;
    --s4:   #182235;

    --border:      #1A2840;
    --border-2:    #243650;
    --border-cyan: rgba(0, 194, 255, 0.20);

    --cyan:      #00C2FF;
    --cyan-10:   rgba(0, 194, 255, 0.10);
    --cyan-glow: 0 0 60px rgba(0, 194, 255, 0.12), 0 0 120px rgba(0, 194, 255, 0.05);
    --violet:    #7B61FF;
    --violet-10: rgba(123, 97, 255, 0.10);

    --crit:    #F05252; --crit-bg:  rgba(240,  82,  82, 0.12);
    --high:    #F5A623; --high-bg:  rgba(245, 166,  35, 0.12);
    --med:     #7B61FF; --med-bg:   rgba(123,  97, 255, 0.12);
    --low:     #22C55E; --low-bg:   rgba( 34, 197,  94, 0.12);

    --text:   #E8EEF8;
    --text-2: #8A9BBF;
    --text-3: #637ba7;

    --inset:       inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

    --section-y:    64px;
    --section-y-sm: 64px;
    --container:    1200px;
    --prose:        640px;
}

@media (min-width: 768px) {
    :root { --section-y: 120px; }
}

/* -------------------------------------------------------------
   RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; }

/* -------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------- */
.r72-wrap {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}
@media (min-width: 1024px) { .r72-wrap { padding-inline: 48px; } }

.r72-section { padding-block: var(--section-y); }

/* -------------------------------------------------------------
   TYPOGRAPHY COMPONENTS
   ------------------------------------------------------------- */
.r72-overline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}
.r72-overline::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--cyan);
    flex-shrink: 0;
}
.r72-footer-logo {
    width: 150px;
    height: auto;
}
.r72-overline-center {
    justify-content: center;
}

.r72-h1 {
    font-weight: 800;
    font-size: 56px;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--text);
}

.r72-h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.r72-subhead {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.72;
    max-width: var(--prose);
}

.r72-section-header {
    max-width: var(--prose);
    margin-inline: auto;
    text-align: center;
}
.r72-section-header .r72-subhead { margin-inline: auto; margin-top: 16px; }

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 200ms ease, box-shadow 200ms ease,
    background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn-primary {
    background: var(--cyan);
    color: var(--bg);
}
.btn-primary:hover {
    box-shadow: 0 0 32px rgba(4, 164, 212, 0.4);
    background: linear-gradient(135deg, #ff6b35 0%, #f72585 100%);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border-2);
}
.btn-ghost:hover {
    color: var(--text);
    background: var(--s3);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }

/* -------------------------------------------------------------
   CARDS
   ------------------------------------------------------------- */
.card {
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--inset), var(--card-shadow);
}
.card-hover {
    transition: background 200ms ease, border-color 200ms ease,
                transform 200ms ease;
}
.card-hover:hover {
    background: var(--s3);
    border-color: var(--border-2);
}
.card-featured {
    border-color: var(--border-cyan);
    box-shadow: var(--inset), var(--cyan-glow), var(--card-shadow);
}
.card-accent {
    position: relative;
    padding-left: 38px;
}
.card-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    width: 3px;
    height: 36px;
    background: var(--cyan);
    border-radius: 0 3px 3px 0;
}

/* -------------------------------------------------------------
   SEVERITY BADGES
   ------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}
.badge-crit   { color: var(--crit); background: var(--crit-bg); }
.badge-high   { color: var(--high); background: var(--high-bg); }
.badge-med    { color: var(--med);  background: var(--med-bg);  }
.badge-low    { color: var(--low);  background: var(--low-bg);  }

/* -------------------------------------------------------------
   DIVIDER
   ------------------------------------------------------------- */
.r72-hr { border: none; border-top: 1px solid var(--border); }

/* -------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------- */
.r72-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.r72-reveal.is-visible { opacity: 1; transform: none; }
.r72-d1 { transition-delay: 80ms; }
.r72-d2 { transition-delay: 160ms; }
.r72-d3 { transition-delay: 240ms; }
.r72-d4 { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
    .r72-reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------
   NAV
   ------------------------------------------------------------- */
.r72-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.r72-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}
@media (min-width: 1024px) { .r72-nav-inner { padding-inline: 48px; } }

.r72-nav-logo {
    width: 150px;
    height: auto;
}

.r72-nav-links {
    display: none;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
@media (min-width: 768px) { .r72-nav-links { display: flex; } }

.r72-nav-link {
    font-size: 14px;
    color: var(--text-2);
    padding: .75rem 1rem .85rem 1rem;
    border-radius: 2px;
    transition: color 150ms, background 150ms;
}
.r72-nav-link:hover { 
    color: var(--text); 
    background: var(--s3); 
    background: linear-gradient(135deg, #ff6b35 0%, #f72585 100%);
}

/* Dropdown trigger */
.r72-nav-drop-wrap { position: relative; }

.r72-nav-drop-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-2);
    padding: .75rem 1rem .85rem 1rem;
    border-radius: 2px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 150ms, background 150ms;
}
.r72-nav-drop-btn:hover,
.r72-nav-drop-btn[aria-expanded="true"] { 
    color: var(--text); background: var(--s3); 
    background: linear-gradient(135deg, #ff6b35 0%, #f72585 100%);
}

.r72-nav-caret {
    width: 12px;
    height: 12px;
    transition: transform 200ms ease;
    flex-shrink: 0;
}
.r72-nav-drop-btn[aria-expanded="true"] .r72-nav-caret { transform: rotate(180deg); }

/* Dropdown panel */
.r72-nav-drop-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 460px;
    background: var(--s4);
    border: 1px solid var(--border-cyan);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    z-index: 200;
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
}
.r72-nav-drop-panel.is-open {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.r72-drop-col-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 0 8px;
    margin-bottom: 4px;
    display: block;
}

.r72-drop-col { display: flex; flex-direction: column; gap: 2px; }

.r72-drop-item {
    display: block;
    padding: 9px 8px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    text-decoration: none;
    transition: background 150ms, border-color 150ms;
}
.r72-drop-item:hover,
.r72-drop-item:focus-visible {
    background: var(--s3);
    border-left-color: var(--cyan);
    outline: none;
}
.r72-drop-item-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}
.r72-drop-item-desc {
    display: block;
    font-size: 12px;
    color: var(--text-2);
    margin-top: 2px;
    line-height: 1.4;
}

/* Nav right actions */
.r72-nav-actions {
    display: none;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
@media (min-width: 768px) { .r72-nav-actions { display: flex; } }

.r72-nav-login {
    font-size: 14px;
    color: var(--text-2);
    transition: color 150ms;
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid var(--border-2);
}
.r72-nav-login:hover { color: var(--text); }

/* Hamburger */
.r72-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
@media (min-width: 768px) { .r72-hamburger { display: none; } }
.r72-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 200ms, opacity 200ms;
}

/* Mobile overlay */
.r72-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}
.r72-mobile-nav.is-open { display: flex; }

.r72-mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.r72-mob-close {
    font-size: 28px;
    color: var(--text);
    line-height: 1;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.r72-mob-links { display: flex; flex-direction: column; gap: 2px; }
.r72-mob-link {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    min-height: 48px;
}
.r72-mob-sublabel {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 18px 0 8px;
    display: block;
}
.r72-mob-sublink {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--text-2);
    padding: 10px 16px;
    border-radius: 8px;
    min-height: 48px;
    transition: color 150ms, background 150ms;
}
.r72-mob-sublink:hover { color: var(--text); background: var(--s2); }
.r72-mob-actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.r72-footer {
    background: var(--s1);
    border-top: 1px solid var(--border);
    padding-top: 80px;
}
.r72-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 640px) { .r72-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .r72-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }

.r72-footer-wordmark {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    display: block;
    margin-bottom: 10px;
}
.r72-footer-tagline {
    font-size: 14px;
    color: var(--text-2);
    max-width: 220px;
    line-height: 1.55;
    display: block;
    margin-bottom: 24px;
}
.r72-footer-meta {
    font-size: 12px;
    color: var(--text-3);
    display: block;
    line-height: 1.7;
}
.r72-footer-col-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    display: block;
    margin-bottom: 16px;
}
.r72-footer-links { display: flex; flex-direction: column; gap: 10px; }
.r72-footer-link {
    font-size: 14px;
    color: var(--text-2);
    transition: color 150ms;
}
.r72-footer-link:hover { color: var(--text); }

.r72-footer-bottom {
    margin-top: 64px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
@media (min-width: 640px) {
    .r72-footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.r72-footer-copy { font-size: 12px; color: var(--text-3); }
.r72-footer-legal { display: flex; gap: 16px; }
.r72-footer-legal-link { font-size: 12px; color: var(--text-3); transition: color 150ms; }
.r72-footer-legal-link:hover { color: var(--text-2); }

/* -------------------------------------------------------------
   PAGE HERO (inner pages)
   ------------------------------------------------------------- */
.r72-page-hero {
    background: var(--s1);
    border-bottom: 1px solid var(--border);
    padding: var(--section-y) 0;
    text-align: center;
}
.r72-page-hero .r72-subhead {
    margin-inline: auto;
    margin-top: 16px;
}

/* Enhanced split hero for inner pages */
.r72-inner-hero {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.r72-inner-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.r72-inner-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    .r72-inner-hero-grid {
        grid-template-columns: 55fr 45fr;
        gap: 80px;
    }
}
.r72-inner-hero-copy {}
.r72-inner-hero-copy .r72-h1 {
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-top: 8px;
}
.r72-inner-hero-copy .r72-hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.72;
    max-width: 500px;
    margin-top: 20px;
}
.r72-inner-hero-copy .r72-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}
.r72-inner-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 899px) {
    .r72-inner-hero-visual { display: none; }
}

/* Shared panel styles used by hero visuals */
.r72-hero-panel {
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    width: 100%;
    max-width: 420px;
    font-size: 13px;
}
.r72-hero-panel-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 20px;
    display: block;
}

/* Stat grid used on How It Works hero */
.r72-hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.r72-hero-stat-cell {
    background: var(--s3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
}
.r72-hero-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: -0.04em;
    line-height: 1;
}
.r72-hero-stat-lbl {
    display: block;
    font-size: 11px;
    color: var(--text-3);
    margin-top: 6px;
    line-height: 1.4;
}

/* Checklist used on solutions heroes */
.r72-hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.r72-hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.5;
}
.r72-hero-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0,194,255,0.12);
    border: 1px solid var(--border-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.r72-hero-check svg { display: block; }

/* Terminal block used on pricing hero */
.r72-hero-terminal {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
}
.r72-hero-terminal-bar {
    background: var(--s3);
    border-bottom: 1px solid var(--border);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.r72-hero-terminal-dot {
    width: 8px; height: 8px; border-radius: 50%;
}
.r72-hero-terminal-body {
    padding: 16px;
    font-family: var(--f-mono);
    font-size: 12px;
    line-height: 1.8;
    color: var(--text-3);
}
.r72-hero-terminal-body .t-cyan  { color: var(--cyan); }
.r72-hero-terminal-body .t-green { color: #4ade80; }
.r72-hero-terminal-body .t-amber { color: #fbbf24; }
.r72-hero-terminal-body .t-dim   { color: var(--text-3); opacity: 0.5; }

/* Compliance badges used on regulated hero */
.r72-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.r72-hero-badge {
    background: var(--s3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 0.02em;
}
.r72-hero-badge.active {
    border-color: var(--border-cyan);
    color: var(--cyan);
    background: rgba(0,194,255,0.06);
}

/* Timeline mini used on about hero */
.r72-hero-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.r72-hero-tl-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    position: relative;
}
.r72-hero-tl-item:last-child { padding-bottom: 0; }
.r72-hero-tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.r72-hero-tl-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    border: 2px solid rgba(0,194,255,0.3);
    flex-shrink: 0;
    margin-top: 4px;
}
.r72-hero-tl-line {
    width: 1px;
    flex: 1;
    background: var(--border);
    margin-top: 4px;
}
.r72-hero-tl-item:last-child .r72-hero-tl-line { display: none; }
.r72-hero-tl-year {
    font-size: 11px;
    font-family: var(--f-mono);
    color: var(--cyan);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.r72-hero-tl-text {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.5;
}

/* Contact info panel */
.r72-hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.r72-hero-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.r72-hero-contact-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(0,194,255,0.08);
    border: 1px solid var(--border-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.r72-hero-contact-label {
    font-size: 11px;
    color: var(--text-3);
    display: block;
    margin-bottom: 2px;
}
.r72-hero-contact-val {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* MSP tier bars */
.r72-hero-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}
.r72-hero-tier-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}
.r72-hero-tier-label {
    width: 80px;
    color: var(--text-3);
    flex-shrink: 0;
}
.r72-hero-tier-bar-wrap {
    flex: 1;
    height: 6px;
    background: var(--s3);
    border-radius: 3px;
    overflow: hidden;
}
.r72-hero-tier-bar {
    height: 100%;
    border-radius: 3px;
    background: var(--cyan);
    opacity: 0.7;
}
.r72-hero-tier-val {
    color: var(--text-2);
    font-family: var(--f-mono);
    font-size: 11px;
    width: 48px;
    text-align: right;
}

/* -------------------------------------------------------------
   HOME — HERO
   ------------------------------------------------------------- */
.r72-hero {
    background: var(--bg);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.r72-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 194, 255, 0.07) 0%, transparent 60%);
    pointer-events: none;
}
.r72-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    .r72-hero-grid {
        grid-template-columns: 55fr 45fr;
        gap: 80px;
    }
}

.r72-hero-copy {}
.r72-hero-h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-top: 4px;
}
.r72-hero-h1 .accent { color: var(--cyan); }

.r72-hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.72;
    max-width: 460px;
    margin-top: 24px;
}
.r72-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 44px;
}
.r72-hero-trust {
    display: flex;
    border-top: 1px solid var(--border);
    margin-top: 52px;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 0;
}
.r72-trust-item {
    padding: 0 28px;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}
.r72-trust-item:first-child { padding-left: 0; }
.r72-trust-item:last-child { border-right: none; }
.r72-trust-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    display: block;
    margin-bottom: 4px;
}
.r72-trust-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    display: block;
}

/* Widget */
.r72-widget-wrap {
    display: flex;
    justify-content: center;
}
.r72-widget {
    width: 100%;
    max-width: 480px;
    background: var(--s2);
    border: 1px solid var(--border-cyan);
    border-radius: 16px;
    box-shadow: var(--inset), var(--cyan-glow), var(--card-shadow);
    overflow: hidden;
}
.r72-widget-chrome {
    background: var(--s3);
    height: 44px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}
.r72-widget-dots { display: flex; gap: 7px; flex-shrink: 0; }
.r72-widget-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.dot-red    { background: #FF5F57; }
.dot-amber  { background: #FEBC2E; }
.dot-green  { background: #28C840; }

.r72-widget-url-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}
.r72-widget-url-bar {
    background: var(--s2);
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--text-3);
}
.r72-widget-live {
    background: var(--low-bg);
    color: var(--low);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.r72-widget-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--low);
    animation: r72-pulse 2s ease-in-out infinite;
}
@keyframes r72-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.r72-widget-body { padding: 24px; }
.r72-widget-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.r72-widget-report-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    display: block;
    margin-bottom: 4px;
}
.r72-widget-company {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}
.r72-widget-date {
    font-size: 12px;
    color: var(--text-3);
}

/* Score ring */
.r72-score-ring {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.r72-score-svg-wrap {
    position: relative;
    width: 80px;
    height: 80px;
}
.r72-score-svg-wrap svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.r72-score-track { fill: none; stroke: var(--s4); stroke-width: 6; }
.r72-score-fill  {
    fill: none;
    stroke: var(--crit);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 188.5;
    stroke-dashoffset: 110;
}
.r72-score-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.r72-score-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--crit);
    line-height: 1;
}
.r72-score-denom {
    font-size: 10px;
    color: var(--text-3);
}
.r72-score-label {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
}

.r72-widget-findings-label {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 8px;
    display: block;
}
.r72-widget-findings { display: flex; flex-direction: column; gap: 6px; }
.r72-finding-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--s3);
    border-radius: 6px;
}
.r72-finding-count {
    font-size: 12px;
    color: var(--text-2);
}

.r72-widget-prog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 6px;
}
.r72-widget-prog-label { font-size: 12px; color: var(--text-3); }
.r72-widget-prog-pct {
    font-size: 11px;
    color: var(--cyan);
}
.r72-prog-track {
    width: 100%;
    height: 4px;
    background: var(--s4);
    border-radius: 2px;
    overflow: hidden;
}
.r72-prog-fill {
    height: 100%;
    width: 0;
    background: var(--cyan);
    border-radius: 2px;
    transition: width 1.5s ease;
}
.r72-prog-fill.loaded { width: 23%; }
.r72-widget-report-link {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--cyan);
    margin-top: 10px;
}

/* -------------------------------------------------------------
   AUDIENCE STRIP
   ------------------------------------------------------------- */
.r72-audience {
    background: var(--s1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
}
.r72-audience-headline {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
    text-align: center;
    margin-bottom: 48px;
}
.r72-audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px)  { .r72-audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .r72-audience-grid { grid-template-columns: repeat(5, 1fr); } }

.r72-audience-card {
    display: flex;
    flex-direction: column;
    background: var(--s2);
    border: 1px solid var(--border);
    border-left: 2px solid transparent;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: var(--inset);
    text-decoration: none;
    transition: background 200ms, border-color 200ms, transform 200ms;
}
.r72-audience-card:hover {
    background: var(--s3);
    border-color: var(--border-2);
    border-left-color: var(--cyan);
    transform: translateY(-2px);
}
.r72-audience-role {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    display: block;
    margin-bottom: 8px;
}
.r72-audience-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
    display: block;
}
.r72-audience-desc {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.6;
    flex: 1;
}
.r72-audience-learn {
    font-size: 12px;
    color: var(--cyan);
    margin-top: 14px;
    display: block;
}

/* -------------------------------------------------------------
   PROBLEM SECTION
   ------------------------------------------------------------- */
.r72-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 900px) {
    .r72-problem-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.r72-stat-num {
    font-size: 44px;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    letter-spacing: -0.04em;
}
.r72-stat-desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 300px;
}
.r72-stat-cards { display: flex; flex-direction: column; gap: 14px; }
.r72-stat-card {
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: var(--inset), var(--card-shadow);
    transition: border-color 200ms;
}
.r72-stat-card:hover { border-color: var(--border-2); }

.r72-problem-text { display: flex; flex-direction: column; gap: 0; }
.r72-problem-body { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.r72-problem-body p { font-size: 16px; color: var(--text-2); line-height: 1.75; }
.r72-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--cyan);
    margin-top: 28px;
    text-decoration: none;
    transition: gap 200ms;
}
.r72-text-link:hover { gap: 10px; }

/* -------------------------------------------------------------
   HOW IT WORKS SUMMARY (home)
   ------------------------------------------------------------- */
.r72-steps-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 64px;
    position: relative;
}
@media (min-width: 768px) {
    .r72-steps-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    .r72-steps-row::before {
        content: '';
        position: absolute;
        top: 23px;
        left: calc(12.5% + 4px);
        right: calc(12.5% + 4px);
        height: 1px;
        border-top: 1px dashed var(--border-2);
    }
}
.r72-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px;
}
@media (min-width: 768px) { .r72-step { align-items: center; text-align: center; } }
.r72-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--s2);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.r72-step-num.active {
    background: var(--cyan-10);
    border-color: var(--border-cyan);
    color: var(--cyan);
}
.r72-step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}
.r72-step-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* -------------------------------------------------------------
   DELIVERABLES
   ------------------------------------------------------------- */
.r72-deliverables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}
@media (min-width: 640px) { .r72-deliverables-grid { grid-template-columns: 1fr 1fr; } }
.r72-deliv-title { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.r72-deliv-body { font-size: 14px; color: var(--text-2); line-height: 1.72; }

/* -------------------------------------------------------------
   PRICING CARDS (home preview + pricing page)
   ------------------------------------------------------------- */
.r72-pricing-scroll {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}
.r72-pricing-scroll::-webkit-scrollbar { height: 4px; }
.r72-pricing-scroll::-webkit-scrollbar-track { background: transparent; }
.r72-pricing-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── Pricing cards ─────────────────────────────────────────── */
.r72-pricing-card {
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 56px 28px 28px;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    position: relative;
    scroll-snap-align: start;
    transition: transform 220ms ease, box-shadow 220ms ease;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
.r72-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.38);
}
.r72-pricing-card--featured {
    background: var(--s2);
    border: 1px solid rgba(0,194,255,0.45);
    border-radius: 16px;
    padding: 56px 28px 28px;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    position: relative;
    scroll-snap-align: start;
    transition: transform 220ms ease, box-shadow 220ms ease;
    overflow: visible;
    box-shadow:
        0 0 0 1px rgba(0,194,255,0.2),
        0 0 40px rgba(0,194,255,0.15),
        0 4px 32px rgba(0,0,0,0.3);
    transform: scale(1.03);
}
.r72-pricing-card--featured:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow:
        0 0 0 1px rgba(0,194,255,0.35),
        0 0 60px rgba(0,194,255,0.25),
        0 16px 48px rgba(0,0,0,0.4);
}

/* ── 50% OFF badge ─────────────────────────────────────────── */
.r72-discount-badge {
    position: absolute;
    top: -22px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f72585 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 22px 7px;
    border-radius: 10px;
    white-space: nowrap;
    z-index: 10;
    box-shadow:
        0 0 0 1px rgba(255,107,53,0.4),
        0 0 24px rgba(247,37,133,0.7),
        0 4px 14px rgba(0,0,0,0.4);
    animation: r72-badge-pulse 2.5s ease-in-out infinite;
}
.r72-discount-badge-pct {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
}
.r72-discount-badge-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    opacity: 0.9;
    margin-top: 2px;
}
@keyframes r72-badge-pulse {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(255,107,53,0.4), 0 0 24px rgba(247,37,133,0.7), 0 4px 14px rgba(0,0,0,0.4);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(255,107,53,0.6), 0 0 40px rgba(247,37,133,1), 0 4px 20px rgba(0,0,0,0.5);
    }
}

/* ── Most popular label ────────────────────────────────────── */
.r72-most-popular {
    position: absolute;
    top: -13px;
    left: 24px;
    background: var(--cyan);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ── Price anchoring ───────────────────────────────────────── */
.r72-tier-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 16px;
    display: block;
}
.r72-price-anchor {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.r72-orig-price {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.5);
    line-height: 1;
    letter-spacing: -0.01em;
}
.r72-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.r72-price {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.05em;
}
.r72-pricing-card--featured .r72-price {
    color: #00d4ff;
    text-shadow: 0 0 32px rgba(0,212,255,0.45);
}
.r72-period-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 4px;
}
.r72-period-mo {
    font-size: 14px;
    color: var(--text-2);
    font-weight: 500;
    line-height: 1;
}
.r72-period-save {
    font-size: 11px;
    color: #ff8c5a;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.r72-period {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 2px;
    margin-bottom: 20px;
    display: block;
}

/* ── Feature list ──────────────────────────────────────────── */
.r72-price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-top: 20px;
}
.r72-price-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}
.r72-check-icon { flex-shrink: 0; color: var(--cyan); margin-top: 1px; }
.r72-pricing-cta { margin-top: 24px; }
.r72-billing-note {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-2);
    margin-top: 8px;
    display: block;
}
.r72-note-annual { display: none; }
.r72-hr--spaced { margin-top: 20px; }

/* ── Plan CTA buttons ──────────────────────────────────────── */
.r72-plan-btn {
    display: block;
    width: 100%;
    padding: 15px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    letter-spacing: 0.01em;
}
.r72-plan-btn--primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0062ff 100%);
    color: #fff;
    box-shadow: 0 0 24px rgba(0,180,255,0.45), 0 4px 12px rgba(0,0,0,0.3);
}
.r72-plan-btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(0,212,255,0.65), 0 8px 24px rgba(0,0,0,0.35);
    filter: brightness(1.1);
}
.r72-plan-btn--secondary {
    background: linear-gradient(135deg, rgba(0,194,255,0.12) 0%, rgba(0,100,255,0.08) 100%);
    color: var(--cyan);
    border: 1px solid rgba(0,194,255,0.3);
    box-shadow: none;
}
.r72-plan-btn--secondary:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(0,194,255,0.6);
    box-shadow: 0 0 20px rgba(0,194,255,0.2), 0 4px 12px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* ── Price load animation ──────────────────────────────────── */
@keyframes r72-price-in {
    from { opacity: 0; transform: translateY(8px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.r72-plan-grid.is-visible .r72-price {
    animation: r72-price-in 0.45s cubic-bezier(0.22,1,0.36,1) both;
}
.r72-plan-grid.is-visible .r72-pricing-card--featured .r72-price {
    animation-delay: 0.1s;
}

.r72-promo-banner {
    background: linear-gradient(90deg, rgba(0,98,255,0.08) 0%, rgba(0,194,255,0.1) 50%, rgba(0,98,255,0.08) 100%);
    border-top: 1px solid var(--border-cyan);
    border-bottom: 1px solid var(--border-cyan);
    padding: 18px 0;
}
.r72-promo-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.r72-promo-badge-lg {
    background: linear-gradient(135deg, #00c2ff 0%, #006fff 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 7px 18px;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0,150,255,0.4);
}
.r72-promo-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    text-align: center;
}
.r72-promo-code {
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: 700;
    background: var(--s3);
    color: var(--cyan);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-cyan);
    letter-spacing: 0.06em;
}

.r72-pricing-compare {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-3);
    transition: color 150ms;
}
.r72-pricing-compare:hover { color: var(--cyan); }

/* Pricing page — one-time grid */
.r72-one-time-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}
@media (min-width: 640px) { .r72-one-time-grid { grid-template-columns: repeat(3, 1fr); } }

/* Pricing comparison table */
.r72-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.r72-comp-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}
.r72-comp-table th,
.r72-comp-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    color: var(--text-2);
}
.r72-comp-table th:first-child,
.r72-comp-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.r72-comp-table thead th {
    background: var(--s3);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-2);
    font-weight: 600;
}
.r72-comp-table thead th.col-featured {
    background: var(--cyan-10);
    border-left: 1px solid var(--border-cyan);
    border-right: 1px solid var(--border-cyan);
    color: var(--cyan);
}
.r72-comp-table td.col-featured {
    background: rgba(0, 194, 255, 0.03);
    border-left: 1px solid var(--border-cyan);
    border-right: 1px solid var(--border-cyan);
}
.r72-comp-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
.r72-comp-table tbody tr:nth-child(even) td.col-featured { background: rgba(0,194,255,0.05); }
.r72-comp-table tbody tr:last-child td { border-bottom: none; }
.r72-tbl-check { color: var(--cyan); }
.r72-tbl-dash  { color: var(--text-3); }

/* FAQ */
.r72-faq-list { max-width: 800px; margin-inline: auto; margin-top: 48px; }
.r72-faq-item { border-bottom: 1px solid var(--border); }
.r72-faq-item:first-child { border-top: 1px solid var(--border); }
.r72-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.r72-faq-q {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}
.r72-faq-icon {
    width: 18px;
    height: 18px;
    color: var(--text-3);
    flex-shrink: 0;
    transition: transform 200ms, color 200ms;
}
.r72-faq-trigger[aria-expanded="true"] .r72-faq-icon {
    transform: rotate(45deg);
    color: var(--cyan);
}
.r72-faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 300ms ease;
}
.r72-faq-panel-inner {
    padding-bottom: 20px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: var(--prose);
}

/* -------------------------------------------------------------
   INDUSTRIES
   ------------------------------------------------------------- */
.r72-industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 900px) {
    .r72-industries-grid { grid-template-columns: 400px 1fr; gap: 80px; }
}
.r72-industries-sticky {}
@media (min-width: 900px) {
    .r72-industries-sticky { position: sticky; top: 100px; }
}
.r72-industry-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 640px) { .r72-industry-cards { grid-template-columns: 1fr 1fr; } }
.r72-industry-card {
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--inset);
    transition: background 200ms, border-color 200ms;
}
.r72-industry-card:hover { background: var(--s3); border-color: var(--border-2); }
.r72-industry-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.r72-industry-pain { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* -------------------------------------------------------------
   WHY RISK72
   ------------------------------------------------------------- */
.r72-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}
@media (min-width: 768px) { .r72-why-grid { grid-template-columns: repeat(3, 1fr); } }
.r72-why-num {
    font-size: 11px;
    color: var(--text-3);
    margin-bottom: 16px;
    display: block;
}
.r72-why-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.r72-why-body  { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* -------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------- */
.r72-cta-banner {
    background: var(--s1);
    border-top: 1px solid var(--border);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.r72-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0,194,255,0.05) 0%,
        transparent 45%,
        rgba(123,97,255,0.03) 100%);
    pointer-events: none;
}
.r72-cta-inner {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.r72-cta-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.6;
    margin-top: 20px;
}
.r72-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 44px;
}

/* -------------------------------------------------------------
   TIMELINE (how-it-works page)
   ------------------------------------------------------------- */
.r72-timeline { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 0; }
.r72-timeline-item { display: flex; gap: 24px; position: relative; }
.r72-timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background: var(--border);
}
.r72-timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; padding-bottom: 40px; }
.r72-timeline-item:last-child .r72-timeline-left { padding-bottom: 0; }
.r72-tl-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--s2);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.r72-tl-circle.active { background: var(--cyan-10); border-color: var(--border-cyan); }
.r72-timeline-card { flex: 1; margin-bottom: 40px; }
.r72-timeline-item:last-child .r72-timeline-card { margin-bottom: 0; }
.r72-tl-time {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    display: block;
    margin-bottom: 8px;
}
.r72-tl-title { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.r72-tl-body { font-size: 16px; color: var(--text-2); line-height: 1.75; }
.r72-tl-body ul { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.r72-tl-body ul li {
    font-size: 14px;
    color: var(--text-2);
    padding-left: 14px;
    position: relative;
}
.r72-tl-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--cyan); }

/* -------------------------------------------------------------
   SOLUTIONS PAGES
   ------------------------------------------------------------- */
.r72-sol-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}
@media (min-width: 640px) { .r72-sol-features-grid { grid-template-columns: 1fr 1fr; } }

.r72-sol-pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
}
.r72-sol-pricing-card { max-width: 340px; flex: 1 1 280px; }

.r72-pain-points { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.r72-pain-point { display: flex; gap: 16px; align-items: flex-start; }
.r72-pain-num {
    font-size: 11px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 3px;
}
.r72-pain-text { font-size: 15px; color: var(--text-2); line-height: 1.72; }

/* MSP table */
.r72-msp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
}
.r72-msp-table th,
.r72-msp-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-2);
}
.r72-msp-table th { background: var(--s3); color: var(--text); font-weight: 600; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.r72-msp-table td:first-child { color: var(--text); font-weight: 500; }
.r72-msp-table tr:last-child td { border-bottom: none; }

/* Cyber insurance checklist */
.r72-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.r72-checklist-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: var(--inset);
}
.r72-checklist-icon { flex-shrink: 0; margin-top: 2px; }
.r72-checklist-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.r72-checklist-desc { font-size: 13px; color: var(--text-2); }

/* -------------------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------------------- */
.r72-about-origin {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 900px) { .r72-about-origin { grid-template-columns: 1fr 1fr; gap: 80px; } }
.r72-about-body p { font-size: 16px; color: var(--text-2); line-height: 1.75; }
.r72-about-body p + p { margin-top: 16px; }

/* -------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------- */
.r72-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}
@media (min-width: 900px) { .r72-contact-grid { grid-template-columns: 3fr 2fr; gap: 80px; } }

.r72-form { display: flex; flex-direction: column; gap: 20px; }
.r72-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.r72-form-group { display: flex; flex-direction: column; gap: 6px; }
.r72-form-label { font-size: 13px; font-weight: 500; color: var(--text-2); }
.r72-form-input,
.r72-form-select,
.r72-form-textarea {
    font-size: 14px;
    color: var(--text);
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    transition: border-color 200ms, box-shadow 200ms;
    appearance: none;
    -webkit-appearance: none;
}
.r72-form-input:focus,
.r72-form-select:focus,
.r72-form-textarea:focus {
    outline: none;
    border-color: var(--border-cyan);
    box-shadow: 0 0 0 3px var(--cyan-10);
}
.r72-form-input.err,
.r72-form-select.err,
.r72-form-textarea.err { border-color: var(--crit); }
.r72-form-error { font-size: 12px; color: var(--crit); display: none; margin-top: 4px; }
.r72-form-error.show { display: block; }
.r72-form-textarea { resize: vertical; min-height: 140px; }
.r72-select-wrap { position: relative; }
.r72-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-3);
    pointer-events: none;
}
.r72-contact-email {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyan);
    display: block;
    margin-bottom: 16px;
}
.r72-contact-meta { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.r72-contact-links { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.r72-contact-link-card {
    display: block;
    padding: 14px 20px;
    border: 1px solid var(--border-2);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-2);
    transition: background 150ms, color 150ms;
}
.r72-contact-link-card:hover { background: var(--s3); color: var(--text); }

/* -------------------------------------------------------------
   LEGAL
   ------------------------------------------------------------- */
.r72-legal-body { max-width: var(--prose); margin-inline: auto; font-size: 16px; color: var(--text-2); line-height: 1.75; }

/* -------------------------------------------------------------
   UTILITY
   ------------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mt-60 { margin-top: 60px; }

/* -------------------------------------------------------------
   BILLING TOGGLE
   ------------------------------------------------------------- */
.r72-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--s2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
    margin: 36px auto 40px;
}
.r72-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    background: none;
    border: none;
    border-radius: 7px;
    padding: 9px 20px;
    cursor: pointer;
    transition: background 150ms, color 150ms;
    white-space: nowrap;
}
.r72-toggle-btn:hover { color: var(--text); }
.r72-toggle-btn.active {
    background: var(--s4);
    color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.r72-toggle-save {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--low);
    background: var(--low-bg);
    padding: 2px 7px;
    border-radius: 4px;
}

.r72-price-wrap { display: flex; align-items: baseline; gap: 2px; }
.r72-price, .r72-orig-price { transition: opacity 150ms ease; }

/* Two-column plan grid */
.r72-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin-inline: auto;
    padding-top: 32px;
    align-items: start;
}
@media (max-width: 639px) {
    .r72-plan-grid { grid-template-columns: 1fr; }
}

/* ── Signup Modal (Bootstrap) ────────────────────────────────────────────── */
#signupModal .form-control {
    color: var(--text);
    background: var(--s1);
    border-color: var(--border);
}
#signupModal .form-control::placeholder { color: var(--text-3); }
#signupModal .form-control:focus {
    background: var(--s1);
    border-color: var(--cyan);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
}
