:root {
    --bg-color: #F8F3FA;
    --text-color: #29212F;
    --card-bg: #FFFFFF;
    --border-color: #DED2E4;
    --primary: #7C3AED;
    --primary-hover: #6929D1;
    --secondary: #F0E5F7;
    --shadow: rgba(70, 35, 85, 0.10);
    --input-bg: #FCFAFD;
    --success: #3F8F6B;
    --warning: #D58A32;
    --error: #D04F68;
    --muted: rgba(41, 33, 47, 0.65);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

h1, h2, h3, .display {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

img, svg {
    display: block;
    max-width: 100%;
}

@media (max-width: 640px) {
    .wrap {
        padding: 0 20px;
    }
}

@media (max-width: 400px) {
    .wrap {
        padding: 0 16px;
    }
}

.grain-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 8%, rgba(124, 58, 237, 0.10), transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(124, 58, 237, 0.08), transparent 40%),
        var(--bg-color);
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 243, 250, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1.5px solid var(--border-color);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 32px;
    max-width: 1180px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-logo {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 19px;
    white-space: nowrap;
}

.brand-tag {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    font-family: 'IBM Plex Mono', monospace;
    margin-top: 1px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .nav-inner {
        padding: 12px 20px;
    }

    .brand-logo {
        height: 32px;
        width: 32px;
    }

    .brand-name {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .brand-tag {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a.section-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-links a.section-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (max-width: 400px) {
    .nav-actions {
        gap: 6px;
    }

    .nav-actions .btn {
        padding: 8px 12px;
        font-size: 12.5px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #5b21b6);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.38);
}

.btn-ghost {
    background: var(--input-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: var(--secondary);
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }
}

.hero {
    padding: 104px 0 56px;
}

@media (max-width: 760px) {
    .hero {
        padding: 40px 0 40px;
    }
}

@media (max-width: 400px) {
    .hero {
        padding: 28px 0 32px;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: var(--secondary);
    border: 1.5px solid var(--border-color);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 26px;
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(63, 143, 107, 0.18);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 760px) {
    .hero-grid {
        gap: 36px;
    }
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.06;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 14px 26px;
    font-size: 14.5px;
}

@media (max-width: 480px) {
    .hero-sub {
        font-size: 15.5px;
        margin-bottom: 24px;
    }

    .hero-ctas {
        margin-bottom: 32px;
    }

    .hero-ctas .btn-lg {
        flex: 1 1 100%;
    }
}

.hero-panel {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 20px 50px var(--shadow);
    position: relative;
}

.hero-panel::before {
    content: 'PIPELINE';
    position: absolute;
    top: -11px;
    left: 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    background: var(--bg-color);
    padding: 0 8px;
    color: var(--muted);
}

.pipe-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--border-color);
}

.pipe-row:last-child {
    border-bottom: none;
}

.pipe-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #5b21b6);
}

.pipe-icon svg {
    width: 16px;
    height: 16px;
}

.pipe-label {
    font-weight: 600;
}

.pipe-desc {
    color: var(--muted);
    font-size: 12px;
}

.pipe-arrow {
    margin-left: auto;
    color: var(--border-color);
    font-family: 'IBM Plex Mono', monospace;
}

@media (max-width: 480px) {
    .hero-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .pipe-row {
        gap: 8px;
        font-size: 12px;
        padding: 9px 0;
    }

    .pipe-icon {
        width: 26px;
        height: 26px;
    }

    .pipe-desc {
        font-size: 11px;
    }
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin-top: 20px;
}

.stat-cell {
    padding: 26px 20px;
    text-align: center;
    border-right: 1.5px solid var(--border-color);
}

.stat-cell:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--primary);
}

.stat-cap {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

@media (max-width: 760px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 420px) {
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .stat-cell {
        border-right: none;
        border-bottom: 1.5px solid var(--border-color);
        padding: 18px 12px;
    }

    .stat-cell:last-child {
        border-bottom: none;
    }
}

section {
    padding: 86px 0;
}

@media (max-width: 760px) {
    section {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 44px 0;
    }
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

@media (max-width: 480px) {
    .section-head {
        margin-bottom: 32px;
    }
}

.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-head h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.15;
}

.section-head p {
    color: var(--muted);
    font-size: 15.5px;
    margin-top: 14px;
}

.divider {
    height: 2px;
    background: var(--border-color);
    border: none;
}

.problem-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 4px 16px var(--shadow);
}

@media (max-width: 480px) {
    .problem-card {
        padding: 22px;
        border-radius: 14px;
    }
}

.problem-card p {
    font-size: 15.5px;
    color: var(--text-color);
    margin-bottom: 14px;
}

.problem-card p:last-child {
    margin-bottom: 0;
}

.problem-card b {
    color: var(--primary);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 26px;
    transition: all 0.25s ease;
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 26px var(--shadow);
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #5b21b6);
    color: #fff;
    margin-bottom: 16px;
}

.feat-icon svg {
    width: 21px;
    height: 21px;
}

.feat-card h3 {
    font-size: 16.5px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 13.5px;
    color: var(--muted);
}

@media (max-width: 860px) {
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }
}

.flow-track {
    position: relative;
    padding-left: 26px;
}

.flow-track::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border-color);
}

.flow-step {
    position: relative;
    padding-bottom: 34px;
    padding-left: 26px;
}

.flow-step:last-child {
    padding-bottom: 0;
}

.flow-step::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid var(--primary);
}

.flow-step.done::before {
    background: var(--primary);
}

.flow-idx {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--primary);
}

.flow-step h3 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin: 2px 0 5px;
}

.flow-step p {
    font-size: 13.5px;
    color: var(--muted);
    max-width: 520px;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.chart-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 18px;
    padding: 26px 26px 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

.chart-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.chart-card .note {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.chart-legend {
    display: flex;
    gap: 18px;
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

.legend-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: middle;
}

@media (max-width: 860px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

.chart-card canvas {
    max-width: 100%;
}

@media (max-width: 480px) {
    .chart-card {
        padding: 18px 18px 10px;
    }
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.benefit-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
}

.benefit-num {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 26px;
    color: var(--primary);
}

.benefit-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

@media (max-width: 960px) {
    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.kpi-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.kpi-table th, .kpi-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 13.5px;
    border-bottom: 1.5px solid var(--border-color);
}

@media (max-width: 480px) {
    .kpi-table th, .kpi-table td {
        padding: 11px 14px;
        font-size: 12.5px;
    }
}

.kpi-table th {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    background: var(--secondary);
}

.kpi-table tr:last-child td {
    border-bottom: none;
}

.kpi-target {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    color: var(--primary);
}

.tech-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-chip {
    border: 1.5px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 100px;
    padding: 9px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 7px;
}

.tech-chip .tdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.sdg-card {
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
}

.sdg-num {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    color: var(--primary);
    font-size: 13px;
}

.sdg-title {
    font-size: 11.5px;
    font-weight: 700;
    margin: 6px 0 4px;
}

.sdg-desc {
    font-size: 10.5px;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 860px) {
    .sdg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 360px) {
    .sdg-grid {
        grid-template-columns: 1fr;
    }
}

.feas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feas-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 22px;
}

.feas-card h3 {
    font-size: 14.5px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    color: var(--primary);
}

.feas-card p {
    font-size: 12.5px;
    color: var(--muted);
}

@media (max-width: 860px) {
    .feas-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .feas-grid {
        grid-template-columns: 1fr;
    }
}

.cta-band {
    background: linear-gradient(135deg, var(--primary), #5b21b6);
    border-radius: 24px;
    padding: 56px 48px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .cta-band {
        padding: 36px 22px;
        border-radius: 18px;
    }
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 12px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 auto 28px;
    font-size: 15px;
}

.cta-band .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.cta-band .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cta-band .btn-white {
    background: #fff;
    color: var(--primary);
}

.cta-band .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

footer {
    padding: 64px 0 40px;
    border-top: 2px solid var(--border-color);
    margin-top: 20px;
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 28px;
    }
}

.foot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}

.foot-meta-row {
    display: flex;
    gap: 28px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.foot-meta-item .k {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.foot-meta-item .v {
    font-weight: 700;
    font-size: 15px;
    margin-top: 3px;
}

.team-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 14px;
    padding: 10px 14px;
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
}

.team-list .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.team-list .role {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted);
    font-family: 'IBM Plex Mono', monospace;
}

.lead-badge {
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 100px;
    margin-left: 8px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.04em;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1.5px dashed var(--border-color);
    font-size: 12.5px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 760px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.demo-access {
    position: fixed;
    top: 76px;
    right: 24px;
    z-index: 200;
}

.demo-toggle {
    display: none;
}

.demo-toggle:hover {
    border-color: var(--primary);
    background: var(--secondary);
    transform: translateY(-1px);
}

.demo-toggle svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
    flex-shrink: 0;
}

.demo-chevron {
    display: none;
}

.demo-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: calc(100vw - 32px);
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow);
    padding: 16px;

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.demo-access.open .demo-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.demo-panel-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1.5px dashed var(--border-color);
}

.demo-panel-head span:first-child {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 15px;
}

.demo-panel-sub {
    font-size: 11.5px;
    color: var(--muted);
}

.demo-group-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 12px 0 6px;
}

.demo-group-label:first-of-type {
    margin-top: 0;
}

.demo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--bg-color);
    border: 1.5px solid var(--border-color);
    margin-bottom: 6px;
}

.demo-row-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.demo-row-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.demo-row-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.demo-row-link {
    color: var(--primary);
}

a.demo-row-link:hover {
    text-decoration: underline;
}

.demo-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1.5px solid var(--border-color);
    background: var(--card-bg);
    color: var(--muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.demo-copy:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--secondary);
}

.demo-copy svg {
    width: 14px;
    height: 14px;
}

.demo-copy.copied {
    border-color: var(--success);
    color: var(--success);
    background: rgba(63, 143, 107, 0.1);
}

@media (max-width: 640px) {
    .demo-access {
        top: 64px;
        right: 16px;
    }

    .demo-panel {
        width: 300px;
        max-width: calc(100vw - 32px);
    }
}
