@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
    --bg: #07080d;
    --bg-soft: #0e1018;
    --card: rgba(255, 255, 255, .055);
    --card-strong: rgba(255, 255, 255, .085);
    --border: rgba(255, 255, 255, .105);
    --border-strong: rgba(255, 255, 255, .22);
    --text: #f6f7fb;
    --muted: #9da3b4;
    --muted-strong: #c4cad8;
    --accent: #8b5cf6;
    --accent-2: #38bdf8;
    --accent-3: #22c55e;
    --danger: #fb7185;
    --shadow: 0 24px 90px rgba(0, 0, 0, .45);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 10%, rgba(139, 92, 246, .16), transparent 36rem),
        radial-gradient(circle at 80% 0%, rgba(56, 189, 248, .12), transparent 34rem),
        radial-gradient(circle at 50% 100%, rgba(34, 197, 94, .075), transparent 32rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -4;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
    pointer-events: none;
}

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

button {
    font: inherit;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: .07;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-glow {
    position: fixed;
    z-index: -1;
    width: 440px;
    height: 440px;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(139, 92, 246, .14), transparent 64%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .25s ease;
}

.navbar {
    position: sticky;
    top: 16px;
    z-index: 40;
    width: min(1160px, calc(100% - 32px));
    margin: 16px auto 0;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(7, 8, 13, .68);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .26);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -.04em;
    color: var(--text);
}

.brand-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 28px rgba(139, 92, 246, .9);
}

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

.nav-links a {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 700;
    transition: .22s ease;
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, .08);
}

.nav-panel {
    color: white !important;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .13);
}

.menu-button {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: white;
}

.hero,
.section,
.footer {
    width: min(1160px, calc(100% - 32px));
    margin-inline: auto;
}

.hero {
    position: relative;
    padding: 112px 0 58px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
}

.label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.label::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    color: var(--text);
}

h1 {
    max-width: 860px;
    font-size: clamp(46px, 7vw, 86px);
    line-height: .93;
    letter-spacing: -.075em;
    font-weight: 700;
}

h2 {
    font-size: clamp(32px, 4.6vw, 58px);
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 700;
}

h3 {
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 700;
}

.hero-text {
    max-width: 720px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 19px;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.button-row.center {
    justify-content: center;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 850;
    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, rgba(139, 92, 246, .95), rgba(56, 189, 248, .85));
    box-shadow: 0 18px 46px rgba(139, 92, 246, .22);
}

.btn-soft {
    color: var(--text);
    background: rgba(255, 255, 255, .07);
    border-color: var(--border);
}

.btn-soft:hover,
.btn-ghost:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, .10);
}

.btn-ghost {
    color: var(--muted-strong);
    background: transparent;
    border-color: var(--border);
}

.micro-stack {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.micro-stack span {
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
    font-size: 13px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 470px;
}

.glass-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
        rgba(8, 10, 18, .78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    animation: floatWindow 7s ease-in-out infinite;
}

.glass-window::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(139, 92, 246, .6), transparent 30%, rgba(56, 189, 248, .35));
    opacity: .32;
}

.window-top {
    display: flex;
    gap: 8px;
    padding: 17px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .035);
}

.window-top span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
}

.window-content {
    padding: 26px;
}

.status-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #bbf7d0;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .10);
    border: 1px solid rgba(34, 197, 94, .20);
    font-size: 13px;
    font-weight: 800;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-3);
    box-shadow: 0 0 18px rgba(34, 197, 94, .8);
    animation: pulse 1.8s ease-in-out infinite;
}

.terminal-block {
    margin-top: 26px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(0, 0, 0, .26);
    border: 1px solid rgba(255, 255, 255, .08);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
}

.terminal-block span {
    color: var(--accent-2);
}

.terminal-block .muted {
    margin-top: 9px;
    color: var(--muted);
}

.mini-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mini-grid div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
}

.mini-grid strong,
.mini-grid span {
    display: block;
}

.mini-grid strong {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 24px;
}

.mini-grid span {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.floating-card {
    position: absolute;
    padding: 12px 15px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(7, 8, 13, .72);
    backdrop-filter: blur(14px);
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
}

.card-a {
    top: 42px;
    right: -10px;
    animation: floatSmall 5s ease-in-out infinite;
}

.card-b {
    bottom: 52px;
    left: -18px;
    animation: floatSmall 6s ease-in-out infinite reverse;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(28px);
    opacity: .45;
    pointer-events: none;
}

.orb-one {
    width: 210px;
    height: 210px;
    right: 12%;
    top: 80px;
    background: rgba(139, 92, 246, .24);
    animation: orbMove 10s ease-in-out infinite;
}

.orb-two {
    width: 180px;
    height: 180px;
    right: 34%;
    bottom: 20px;
    background: rgba(56, 189, 248, .17);
    animation: orbMove 12s ease-in-out infinite reverse;
}

.section {
    padding: 70px 0;
}

.about-section {
    padding-top: 42px;
}

.section-kicker {
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 46px;
    align-items: start;
}

.about-text {
    display: grid;
    gap: 18px;
    color: var(--muted);
    font-size: 18px;
}

.section-head {
    margin-bottom: 28px;
}

.cards {
    display: grid;
    gap: 18px;
}

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

.card,
.highlight-card,
.timeline-item,
.final-cta {
    border: 1px solid var(--border);
    background: var(--card);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
}

.card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: auto 20px 0 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .65), transparent);
    opacity: 0;
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background: var(--card-strong);
}

.card:hover::after {
    opacity: 1;
}

.card-index {
    color: var(--accent-2);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 66px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
}

.project-highlight {
    padding-top: 48px;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 32px;
    padding: 34px;
    border-radius: var(--radius-xl);
}

.highlight-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, .18), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, .12), transparent 30rem);
    z-index: -1;
}

.highlight-card p {
    max-width: 680px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

.feature-stack {
    display: grid;
    gap: 12px;
}

.feature-stack div {
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    background: rgba(0, 0, 0, .18);
}

.feature-stack span,
.feature-stack strong {
    display: block;
}

.feature-stack span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.feature-stack strong {
    margin-top: 5px;
    font-size: 15px;
    color: var(--text);
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: .24s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
    border-color: var(--border-strong);
    background: var(--card-strong);
}

.timeline-item > span {
    color: var(--accent-2);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}

.timeline-item p {
    color: var(--muted);
    margin-top: 7px;
}

.final-cta {
    text-align: center;
    padding: 52px 28px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(139, 92, 246, .18), transparent 34rem),
        radial-gradient(circle at 90% 30%, rgba(56, 189, 248, .12), transparent 30rem),
        var(--card);
}

.final-cta h2 {
    max-width: 800px;
    margin-inline: auto;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 34px 0 44px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    font-size: 14px;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.7);
        opacity: .42;
    }
}

@keyframes floatWindow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(.4deg);
    }
}

@keyframes floatSmall {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes orbMove {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(22px, -18px);
    }
}

@media (max-width: 940px) {
    .navbar {
        align-items: center;
        border-radius: 24px;
    }

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

    .nav-links {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: rgba(7, 8, 13, .94);
        backdrop-filter: blur(18px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        text-align: center;
    }

    .hero-grid,
    .about-grid,
    .cards-3,
    .highlight-card {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 74px;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 560px) {
    .navbar,
    .hero,
    .section,
    .footer {
        width: min(100% - 22px, 1160px);
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 35px;
    }

    .hero-text,
    .about-text {
        font-size: 16px;
    }

    .hero-actions,
    .button-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .micro-stack span {
        font-size: 12px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.compact-hero {
    padding-bottom: 34px;
}

.project-list {
    display: grid;
    gap: 18px;
}

.project-wide {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, .10), transparent 30rem),
        var(--card);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
    transition: .25s ease;
}

.project-wide:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, .16), transparent 30rem),
        var(--card-strong);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.project-meta span {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-wide-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

.project-wide h2 {
    font-size: clamp(34px, 4vw, 56px);
}

.project-wide p {
    max-width: 760px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
}

.project-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
}

.muted-project {
    opacity: .78;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-pill.live {
    color: #bbf7d0;
    background: rgba(34, 197, 94, .11);
    border-color: rgba(34, 197, 94, .22);
}

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

.bot-product-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, .09), transparent 26rem),
        var(--card);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
    transition: .25s ease;
}

.bot-product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, .13), transparent 26rem),
        var(--card-strong);
}

.bot-product-card.inactive {
    opacity: .78;
}

.bot-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 34px;
}

.bot-icon-small {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    font-size: 26px;
}

.bot-product-card h2 {
    font-size: 38px;
}

.bot-product-card p {
    margin-top: 16px;
    color: var(--muted);
}

.bot-product-card .button-row {
    margin-top: auto;
}

.section-subtitle {
    max-width: 760px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
}

.pricing-section {
    scroll-margin-top: 120px;
}

.pricing-containers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 34px;
}

.pricing-container {
    position: relative;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035)),
        var(--card);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .22);
    transition: .25s ease;
}

.pricing-container:hover {
    transform: translateY(-7px);
    border-color: var(--border-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .045)),
        var(--card-strong);
}

.premium-plan {
    border-color: rgba(139, 92, 246, .38);
    background:
        radial-gradient(circle at top, rgba(139, 92, 246, .20), transparent 27rem),
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)),
        var(--card);
}

.elite-plan {
    border-color: rgba(56, 189, 248, .25);
    background:
        radial-gradient(circle at top, rgba(56, 189, 248, .13), transparent 27rem),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .04)),
        var(--card);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, rgba(139, 92, 246, .95), rgba(56, 189, 248, .8));
    box-shadow: 0 16px 36px rgba(139, 92, 246, .22);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-container-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 30px;
}

.plan-name {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.05em;
}

.plan-tag {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.plan-price {
    margin-bottom: 18px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -.075em;
    font-weight: 700;
}

.plan-price span {
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 700;
}

.plan-desc {
    min-height: 78px;
    color: var(--muted);
    font-size: 15px;
}

.plan-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 26px 0 28px;
}

.plan-list li {
    position: relative;
    padding-left: 25px;
    color: var(--muted-strong);
    font-size: 15px;
}

.plan-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #86efac;
    font-weight: 950;
}

.pricing-container .btn {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 940px) {
    .project-wide-grid,
    .bot-grid,
    .pricing-containers {
        grid-template-columns: 1fr;
    }

    .project-actions {
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-container {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .project-wide,
    .bot-product-card,
    .pricing-container {
        padding: 22px;
    }

    .project-actions {
        flex-direction: column;
    }

    .popular-badge {
        position: static;
        width: fit-content;
        margin-bottom: 18px;
    }

    .plan-desc {
        min-height: auto;
    }
}

.contact-section {
    padding-top: 40px;
}

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

.contact-card {
    position: relative;
    min-height: 330px;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, .11), transparent 26rem),
        var(--card);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
    transition: .25s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, .16), transparent 26rem),
        var(--card-strong);
}

.contact-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    font-size: 30px;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-card h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.contact-card p {
    max-width: 520px;
    margin: 14px 0 24px;
    color: var(--muted);
}

.contact-note {
    max-width: 720px;
    margin: 24px auto 0;
    color: var(--muted);
}

.message-preview {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(0, 0, 0, .18);
    color: var(--muted-strong);
    text-align: left;
}

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

@media (max-width: 560px) {
    .contact-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 22px;
    }
}
