:root {
    --bg: #eef2ff;
    --paper: #ffffff;
    --ink: #0f172a;
    --muted: #5b6479;
    --line: rgba(79, 70, 229, 0.14);
    --accent: #4f46e5;
    --accent-dark: #4338ca;
    --accent-soft: #eef2ff;
    --teal: #14b8a6;
    --gold: #f59e0b;
    --blue: #2563eb;
    --violet: #7c3aed;
    --shadow: 0 24px 80px rgba(79, 70, 229, 0.14);
}

@font-face {
    font-family: 'Everyday Sans';
    src:
        local('Everyday Sans'),
        local('EverydaySans'),
        local('Everyday Sans Regular'),
        local('EverydaySans-Regular');
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Everyday Sans', 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(129, 140, 248, 0.18), transparent 24%),
        radial-gradient(circle at 80% 75%, rgba(20, 184, 166, 0.12), transparent 18%),
        linear-gradient(180deg, #f8faff 0%, #eef2ff 100%);
}

.material-symbols-rounded {
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
    line-height: 1;
    font-size: 1.15rem;
}

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

.site-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 56px;
}

.topbar {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(28, 37, 54, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.18);
}

.brand-mark img {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 14px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 1.05rem;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.76rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.95rem;
}

.nav a:not(.nav-cta) {
    color: var(--muted);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.nav-cta.ghost {
    border: 1px solid var(--line);
}

.nav-cta.solid {
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: white;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    padding: 54px 0 28px;
}

.hero-copy,
.hero-panel {
    min-width: 0;
}

.eyebrow,
.section-kicker,
.mini-title {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    font-weight: 800;
    color: #6a7487;
}

.hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.65rem, 6vw, 5.5rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.hero-lead {
    max-width: 62ch;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--muted);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: white;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.28);
}

.button.secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.hero-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
}

.hero-points li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #818cf8);
    box-shadow: 0 0 0 5px rgba(12, 139, 131, 0.09);
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-card {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,250,243,0.9));
    box-shadow: var(--shadow);
}

.hero-card-main {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.95)),
        linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(37, 99, 235, 0.06));
}

.panel-brand {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.panel-brand img {
    width: 168px;
    max-width: 100%;
    object-fit: contain;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(14, 23, 38, 0.06);
    font-weight: 700;
    font-size: 0.84rem;
}

.hero-card h2 {
    margin: 16px 0 18px;
    font-size: 1.85rem;
    line-height: 1.1;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.score-grid article {
    position: relative;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.score-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.score-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(129, 140, 248, 0.2));
    color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
}

.score-icon .material-symbols-rounded {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
}

.score-grid span,
.contact-line span {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.score-grid strong {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 6px;
}

.score-grid small {
    color: var(--muted);
    line-height: 1.55;
}

.hero-mockups {
    display: grid;
    gap: 16px;
}

.ui-shot {
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(238,242,255,0.88));
    box-shadow: 0 18px 44px rgba(79, 70, 229, 0.1);
    overflow: hidden;
}

.shot-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(90deg, rgba(79,70,229,0.12), rgba(124,58,237,0.1));
    border-bottom: 1px solid rgba(79, 70, 229, 0.08);
}

.shot-top span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6366f1;
}

.shot-top strong {
    font-size: 0.95rem;
}

.shot-body,
.shot-stack,
.platform-metrics {
    padding: 18px;
}

.shot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    font-size: 0.82rem;
    font-weight: 700;
}

.pill.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-tile {
    padding: 14px;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.product-tile.muted {
    background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(37,99,235,0.08));
}

.tile-title,
.doc-line strong {
    display: block;
    font-weight: 800;
}

.tile-price,
.doc-line small {
    color: var(--muted);
    font-size: 0.85rem;
}

.shot-stack {
    display: grid;
    gap: 10px;
}

.doc-line {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.doc-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.doc-tag.draft {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.doc-tag.blue {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.doc-tag.green {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

.platforms-shot {
    background: linear-gradient(180deg, rgba(15,23,42,0.97), rgba(30,41,59,0.94));
    color: #fff;
}

.platforms-shot .shot-top {
    background: rgba(255,255,255,0.04);
    border-bottom-color: rgba(255,255,255,0.08);
}

.platforms-shot .shot-top span,
.platforms-shot .shot-top strong,
.platforms-shot .platform-line strong,
.platforms-shot .platform-metrics strong {
    color: #fff;
}

.platforms-shot small,
.platforms-shot .platform-metrics span {
    color: rgba(255,255,255,0.72);
}

.platform-line {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 18px 0;
}

.platform-line img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
}

.platform-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.platform-metrics > div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
}

.section {
    padding: 42px 0;
}

.section-head {
    max-width: 72ch;
    margin-bottom: 24px;
}

.section-head.narrow {
    max-width: 60ch;
}

.section-head h2 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-head p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.value-grid,
.modules-grid,
.sectors-grid {
    display: grid;
    gap: 18px;
}

.value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.module-card,
.sectors-grid article,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    padding: 24px;
    box-shadow: 0 12px 34px rgba(10, 15, 24, 0.05);
}

.tinted-green {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(236, 253, 245, 0.96), rgba(255, 255, 255, 0.98));
}

.tinted-blue {
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(237, 233, 254, 0.96), rgba(255, 255, 255, 0.98));
}

.tinted-gold {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(255, 255, 255, 0.98));
}

.card-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: white;
    font-weight: 800;
    margin-bottom: 14px;
}

.value-card h3,
.module-card h3,
.timeline h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.value-card p,
.module-card p,
.timeline p,
.sectors-grid p,
.contact-copy p,
.contact-note {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card {
    position: relative;
    overflow: hidden;
}

.module-card::before,
.showcase-card::before,
.screen-frame::before,
.sectors-grid article::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
}

.module-card:nth-child(1) {
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(238, 242, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.module-card:nth-child(1)::before {
    background: linear-gradient(90deg, #4f46e5, #818cf8);
}

.module-card:nth-child(2) {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.module-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.module-card:nth-child(3) {
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(245, 243, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.module-card:nth-child(3)::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.module-card:nth-child(4) {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(255, 255, 255, 0.98));
}

.module-card:nth-child(4)::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.module-card:nth-child(5) {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(240, 253, 250, 0.96), rgba(255, 255, 255, 0.98));
}

.module-card:nth-child(5)::before {
    background: linear-gradient(90deg, #14b8a6, #2dd4bf);
}

.module-card:nth-child(6) {
    background:
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(253, 242, 248, 0.96), rgba(255, 255, 255, 0.98));
}

.module-card:nth-child(6)::before {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.module-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.module-card li {
    padding-top: 10px;
    border-top: 1px dashed rgba(14, 23, 38, 0.12);
    color: #2d3647;
}

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

.timeline article {
    position: relative;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(145deg, #312e81, #4338ca);
    color: white;
    overflow: hidden;
}

.timeline article::after {
    content: '';
    position: absolute;
    inset: auto -15% -30% auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.timeline span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.timeline p {
    color: rgba(255, 255, 255, 0.8);
}

.timeline-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        0 10px 24px rgba(10, 15, 24, 0.16);
}

.timeline-icon .material-symbols-rounded {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
}

.sectors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sectors-grid strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: stretch;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(145deg, #1e1b4b, #312e81);
    color: white;
    box-shadow: var(--shadow);
}

.contact-copy h2 {
    margin: 12px 0 14px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.04;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.contact-line + .contact-line {
    margin-top: 18px;
}

.contact-line strong {
    display: block;
    line-height: 1.55;
}


.contact-note {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1080px) {
    .hero,
    .contact-panel,
    .value-grid,
    .modules-grid,
    .timeline,
    .sectors-grid,
    .showcase-grid,
    .screens-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-shell {
        width: min(100% - 18px, 100%);
    }

    .topbar {
        top: 8px;
        padding: 12px 14px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 253, 248, 0.98);
        border: 1px solid rgba(14, 23, 38, 0.08);
        box-shadow: 0 18px 35px rgba(18, 25, 39, 0.14);
    }

    .nav.is-open {
        display: flex;
    }

    .nav-cta {
        text-align: center;
    }

    .hero,
    .value-grid,
    .modules-grid,
    .timeline,
    .sectors-grid,
    .contact-panel,
    .score-grid,
    .showcase-grid,
    .screens-grid,
    .product-grid,
    .platform-metrics {
        grid-template-columns: 1fr;
    }

    .screen-frame.large {
        grid-row: span 1;
    }

    .hero {
        padding-top: 28px;
    }

    .hero h1 {
        max-width: 100%;
    }

    .section {
        padding: 30px 0;
    }
}

@media (max-width: 520px) {
    .brand-copy small {
        display: none;
    }

    .hero-card,
    .value-card,
    .module-card,
    .sectors-grid article,
    .contact-card,
    .contact-panel {
        border-radius: 22px;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    padding: 22px;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.08);
}

.showcase-card:nth-child(1) {
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(245, 243, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.showcase-card:nth-child(1)::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.showcase-card:nth-child(2) {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.showcase-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.showcase-card:nth-child(3) {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(240, 253, 250, 0.96), rgba(255, 255, 255, 0.98));
}

.showcase-card:nth-child(3)::before {
    background: linear-gradient(90deg, #14b8a6, #5eead4);
}

.screens-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    margin-bottom: 18px;
}

.screen-frame {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(79, 70, 229, 0.12);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 44px rgba(79, 70, 229, 0.1);
}

.screen-frame:nth-child(1) {
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(241, 245, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.screen-frame:nth-child(1)::before {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.screen-frame:nth-child(2) {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(240, 253, 250, 0.95), rgba(255, 255, 255, 0.98));
}

.screen-frame:nth-child(2)::before {
    background: linear-gradient(90deg, #14b8a6, #5eead4);
}

.screen-frame:nth-child(3) {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.screen-frame:nth-child(3)::before {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.screen-frame.large {
    grid-row: span 2;
}

.screen-frame img {
    display: block;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.screen-frame figcaption {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.showcase-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.showcase-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.showcase-dot.violet { background: #7c3aed; }
.showcase-dot.blue { background: #2563eb; }
.showcase-dot.green { background: #14b8a6; }

.contact-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.18), rgba(255, 255, 255, 0.08));
}

.contact-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.18), rgba(255, 255, 255, 0.08));
}
