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

        :root {
            --bg-deep: #050b18;
            --bg-soft: #071225;
            --surface: #0a1274;
            --surface2: #12713a;
            --primary: #4f46e5;
            --primary-soft: #818cf8;
            --accent: #9333ea;
            --text-high: #f8fafc;
            --text-mid: #cbd5e1;
            --text-low: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;

            --m-bg: #f5f8fc;
            --m-soft: #f8fbff;
            --m-white: #ffffff;
            --m-blue: #3b82f6;
            --m-indigo: #6366f1;
            --m-purple: #8b5cf6;
            --m-cyan: #06b6d4;
            --m-text-main: #18233a;
            --m-text-muted: #64748b;
            --m-border: #e5edf7;
            --m-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
            --m-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.055);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background:
                radial-gradient(circle at top left, rgba(79, 70, 229, 0.30), transparent 34rem),
                radial-gradient(circle at top right, rgba(147, 51, 234, 0.22), transparent 34rem),
                var(--bg-deep);
            color: var(--text-high);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1270px;
            margin: 0 auto;
            padding: 0 24px;
        }

        nav {
            background: rgba(10, 19, 36, 0.86);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo-nav {
            font-size: 1.8rem;
            font-weight: 900;
            padding: 5px;
            letter-spacing: -2.5px;
            background: linear-gradient(135deg, #fff, #a5b4fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero {
            padding: 120px 0 96px;
            text-align: center;
            position: relative;
        }

        .hero:before {
            content: "";
            position: absolute;
            inset: 80px auto auto 50%;
            width: 760px;
            height: 760px;
            transform: translateX(-50%);
            border-radius: 999px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 66%);
            pointer-events: none;
            z-index: -1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 22px;
            background: rgba(79, 70, 229, 0.12);
            border: 1px solid rgba(129, 140, 248, 0.36);
            border-radius: 9999px;
            color: #c7d2fe;
            font-weight: 700;
            margin-bottom: 28px;
            box-shadow: 0 10px 28px rgba(79, 70, 229, 0.14);
        }

        .hero h1 {
            font-size: clamp(3.2rem, 8vw, 5.9rem);
            font-weight: 900;
            line-height: 1.02;
            padding: 5px;
            letter-spacing: -4px;
            margin-bottom: 28px;
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 45%, #e879f9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            max-width: 780px;
            margin: 0 auto 34px;
            font-size: 1.28rem;
            color: #91a1b7;
        }

        /* ---------------- FULL DEMO SCREEN ---------------- */
        .demo-frame {
            margin: 72px auto 0;
            width: min(100%, 1280px);
            border-radius: 26px;
            padding: 10px;
            background: linear-gradient(135deg, rgba(99, 102, 241, .5), rgba(6, 182, 212, .18), rgba(236, 72, 153, .35));
            box-shadow:
                0 44px 120px rgba(0, 0, 0, .58),
                0 0 0 1px rgba(255, 255, 255, .08) inset;
        }

        .demo-container {
            position: relative;
            background: #f4f8fd;
            border-radius: 20px;
            overflow: hidden;
            text-align: left;
            color: var(--m-text-main);
            min-height: 724px;
            box-shadow: 0 1px 0 rgba(255, 255, 255, .85) inset;
        }

        .demo-app {
            display: grid;
            grid-template-columns: 170px minmax(0, 1fr);
            min-height: 724px;
        }

        .demo-sidebar {
            background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
            border-right: 1px solid #e8eef8;
            padding: 12px 8px 14px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: 10px 0 26px rgba(15, 23, 42, .035);
            z-index: 2;
        }

        .demo-logo {
            height: 34px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 4px 0 2px;
        }

        .demo-logo-mark {
            width: 27px;
            height: 27px;
            border-radius: 8px;
            background: linear-gradient(135deg, #f97316 0%, #ec4899 38%, #3b82f6 100%);
            box-shadow: 0 7px 15px rgba(79, 70, 229, .22);
            position: relative;
        }

        .demo-logo-mark:before {
            content: "m";
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            color: white;
            font-weight: 900;
            font-size: 17px;
            line-height: 1;
        }

        .demo-logo-text strong {
            display: block;
            font-size: 18px;
            letter-spacing: -1px;
            color: #26334d;
            line-height: .9;
        }

        .demo-logo-text span {
            display: block;
            font-size: 4.9px;
            letter-spacing: .4px;
            color: #77849a;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .demo-collapse {
            margin-left: auto;
            width: 23px;
            height: 23px;
            display: grid;
            place-items: center;
            border-radius: 7px;
            border: 1px solid #e5edf7;
            color: #72839e;
            font-size: 11px;
            background: #fff;
        }

        .demo-menu {
            display: grid;
            gap: 7px;
        }

        .demo-menu-item {
            position: relative;
            display: grid;
            grid-template-columns: 34px 1fr 12px;
            gap: 8px;
            align-items: center;
            min-height: 44px;
            padding: 8px 8px;
            border-radius: 15px;
            border: 1px solid #eef3fa;
            background: rgba(255, 255, 255, .82);
            color: #26334d;
            box-shadow: 0 5px 16px rgba(15, 23, 42, .035);
        }

        .demo-menu-item.active {
            background: linear-gradient(135deg, #eef2ff, #f8fbff);
            border-color: #dfe7ff;
            box-shadow: 0 10px 26px rgba(99, 102, 241, .12);
        }

        .demo-menu-icon {
            width: 31px;
            height: 31px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            font-size: 14px;
        }

        .demo-menu-icon.home {
            background: linear-gradient(135deg, #6875ff, #8976ff);
            color: #fff;
        }

        .demo-menu-icon.support {
            background: #fff1f2;
            color: #fb7185;
        }

        .demo-menu-icon.project {
            background: #eef2ff;
            color: #6366f1;
        }

        .demo-menu-icon.sales {
            background: #fff7ed;
            color: #f59e0b;
        }

        .demo-menu-icon.manage {
            background: #ecfdf5;
            color: #10b981;
        }

        .demo-menu-icon.portal {
            background: #f5f3ff;
            color: #8b5cf6;
        }

        .demo-menu-icon.report {
            background: #ecfeff;
            color: #06b6d4;
        }

        .demo-menu-icon.integration {
            background: #eff6ff;
            color: #0ea5e9;
        }

        .demo-menu-icon.system {
            background: #eef2ff;
            color: #64748b;
        }

        .demo-menu-text b {
            display: block;
            font-size: 10px;
            letter-spacing: .35px;
            line-height: 1.1;
        }

        .demo-menu-text small {
            display: block;
            font-size: 7px;
            color: #6b7a90;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 92px;
            margin-top: 2px;
        }

        .demo-menu-arrow {
            color: #a8b3c5;
            font-size: 14px;
        }

        .demo-workspace {
            min-width: 0;
            display: grid;
            grid-template-rows: 43px minmax(0, 1fr) 25px;
            background:
                radial-gradient(circle at 40% 0%, rgba(59, 130, 246, .08), transparent 28rem),
                #f5f8fc;
        }

        .demo-topbar {
            height: 43px;
            background: rgba(255, 255, 255, .82);
            border-bottom: 1px solid #e8eef8;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0 12px;
            gap: 8px;
            backdrop-filter: blur(12px);
        }

        .demo-switch {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            height: 19px;
            padding: 2px 7px 2px 3px;
            border: 1px solid #e5edf7;
            border-radius: 99px;
            background: #fff;
            color: #8b98ad;
            font-size: 8px;
            font-weight: 700;
        }

        .demo-switch:before {
            content: "";
            width: 12px;
            height: 12px;
            background: #eef2f7;
            border-radius: 50%;
        }

        .demo-icon-btn {
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border: 1px solid #e7eef8;
            border-radius: 8px;
            background: #fff;
            color: #637088;
            font-size: 12px;
            box-shadow: 0 5px 12px rgba(15, 23, 42, .035);
        }

        .demo-page-select {
            height: 28px;
            min-width: 104px;
            padding: 0 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #e7eef8;
            border-radius: 9px;
            background: #fff;
            font-size: 9px;
            font-weight: 800;
            color: #26334d;
        }

        .demo-user {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-left: 4px;
        }

        .demo-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e5e7eb, #f8fafc);
            border: 1px solid #e7eef8;
        }

        .demo-user span {
            font-size: 9px;
            font-weight: 800;
            color: #334155;
            white-space: nowrap;
        }

        .demo-content {
            min-width: 0;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 313px;
            gap: 12px;
            padding: 12px 12px 8px;
        }

        .demo-main {
            min-width: 0;
        }

        .demo-page-header {
            background: rgba(255, 255, 255, .76);
            border: 1px solid #e8eef8;
            height: 44px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px;
            margin-bottom: 9px;
            box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
        }

        .demo-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: .4px;
            color: #1f2937;
        }

        .demo-title:before {
            content: "";
            width: 3px;
            height: 18px;
            border-radius: 10px;
            background: linear-gradient(180deg, #8b5cf6, #60a5fa);
        }

        .demo-date-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            height: 29px;
            padding: 0 13px;
            border: 1px solid #e5edf7;
            border-radius: 11px;
            background: #fff;
            color: #475569;
            font-size: 10px;
            box-shadow: 0 5px 14px rgba(15, 23, 42, .035);
        }

        .demo-card {
            background: rgba(255, 255, 255, .88);
            border: 1px solid #e6edf7;
            border-radius: 14px;
            box-shadow: var(--m-shadow-soft);
            overflow: hidden;
        }

        .section-heading {
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px 0 18px;
            border-bottom: 1px solid #edf2f8;
            background: linear-gradient(180deg, rgba(248, 251, 255, .96), rgba(255, 255, 255, .86));
        }

        .section-heading h3 {
            font-size: 12px;
            font-weight: 900;
            color: #26334d;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-heading h3:before {
            content: "";
            width: 3px;
            height: 16px;
            border-radius: 5px;
            background: linear-gradient(180deg, #f43f5e, #a855f7);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
            padding: 9px;
        }

        .stat-box {
            background: #fff;
            border: 1px solid #e8eef8;
            border-radius: 9px;
            min-height: 42px;
            padding: 8px 10px;
            position: relative;
            overflow: hidden;
        }

        .stat-box:after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 2px;
            background: #eef2f7;
        }

        .stat-box.active:after {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
        }

        .stat-box.mail:after {
            background: linear-gradient(90deg, #ef4444, #fb7185);
        }

        .stat-box span {
            display: block;
            color: #6b7a90;
            font-size: 8px;
            font-weight: 800;
        }

        .stat-box strong {
            display: block;
            color: #28344a;
            font-size: 17px;
            line-height: 1.1;
            font-weight: 900;
            margin-top: 2px;
        }

        .demo-table-wrap {
            margin: 0 9px 9px;
            border: 1px solid #e8eef8;
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
        }

        .demo-table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        .demo-table th {
            background: #fbfdff;
            color: #6b7a90;
            font-size: 8px;
            font-weight: 900;
            padding: 8px 9px;
            border-bottom: 1px solid #e8eef8;
            text-align: left;
            white-space: nowrap;
        }

        .demo-table td {
            padding: 7px 9px;
            border-bottom: 1px solid #f1f5f9;
            font-size: 8.2px;
            color: #354158;
            vertical-align: middle;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .demo-table tbody tr:nth-child(even) {
            background: #fbfdff;
        }

        .demo-table tbody tr.active-row {
            background: #eefaff;
            box-shadow: inset 0 0 0 1px rgba(14, 165, 233, .28);
        }

        .col-icons {
            width: 42px;
        }

        .col-code {
            width: 127px;
        }

        .col-status {
            width: 98px;
        }

        .col-owner {
            width: 104px;
        }

        .col-priority {
            width: 235px;
        }

        .col-date {
            width: 70px;
        }

        .row-icons {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tiny-circle {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 7px;
        }

        .tiny-circle.blue {
            color: #3b82f6;
            background: #eff6ff;
            border: 1px solid #dbeafe;
        }

        .tiny-circle.yellow {
            color: #f59e0b;
            background: #fffbeb;
            border: 1px solid #fef3c7;
        }

        .code-link {
            color: #0891b2;
            font-weight: 900;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            height: 18px;
            padding: 0 7px;
            border-radius: 5px;
            background: #f8fafc;
            border: 1px solid #e8eef8;
            color: #475569;
            font-size: 7.5px;
            font-weight: 800;
        }

        .status-wait {
            background: #fff7ed;
            color: #b45309;
            border-color: #fed7aa;
        }

        .priority-pill {
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            height: 18px;
            padding: 0 8px;
            border-radius: 5px;
            font-size: 7.4px;
            font-weight: 900;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .p-low {
            background: #dcfce7;
            color: #047857;
        }

        .p-info {
            background: #f1f5f9;
            color: #334155;
        }

        .p-mid {
            background: #ffedd5;
            color: #c2410c;
        }

        .p-high {
            background: #fee2e2;
            color: #b91c1c;
        }

        .table-footer {
            height: 31px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
            color: #64748b;
            font-size: 8px;
            background: #fbfdff;
        }

        .pagination {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .page-no {
            width: 19px;
            height: 19px;
            display: grid;
            place-items: center;
            border: 1px solid #e2e8f0;
            border-radius: 7px;
            color: #475569;
            background: #fff;
            font-weight: 800;
        }

        .page-no.active {
            background: #eff6ff;
            color: #2563eb;
            border-color: #bfdbfe;
        }

        .demo-right {
            min-width: 0;
            display: grid;
            gap: 10px;
            align-content: start;
        }

        .quick-grid {
            padding: 10px 10px 9px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 7px;
        }

        .quick-item {
            height: 25px;
            border-radius: 6px;
            border: 1px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 7.7px;
            font-weight: 900;
        }

        .q-green {
            color: #059669;
            background: #ecfdf5;
            border-color: #bbf7d0;
        }

        .q-blue {
            color: #2563eb;
            background: #eff6ff;
            border-color: #bfdbfe;
        }

        .q-orange {
            color: #ea580c;
            background: #fff7ed;
            border-color: #fed7aa;
        }

        .q-red {
            color: #e11d48;
            background: #fff1f2;
            border-color: #fecdd3;
        }

        .q-purple {
            color: #7c3aed;
            background: #f5f3ff;
            border-color: #ddd6fe;
        }

        .q-teal {
            color: #0f766e;
            background: #f0fdfa;
            border-color: #99f6e4;
        }

        .task-card .section-heading {
            height: 34px;
        }

        .list-count {
            display: inline-grid;
            place-items: center;
            min-width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #38bdf8;
            color: white;
            font-size: 8px;
            margin-left: 4px;
        }

        .mini-select {
            height: 20px;
            border: 1px solid #e5edf7;
            border-radius: 8px;
            background: #fff;
            color: #64748b;
            padding: 0 10px;
            font-size: 7.5px;
            font-weight: 800;
        }

        .task-input-row {
            display: grid;
            grid-template-columns: 1fr 48px;
            gap: 6px;
            padding: 9px 10px 5px;
        }

        .fake-input {
            height: 24px;
            border: 1px solid #e8eef8;
            background: #fff;
            color: #a3adbd;
            border-radius: 7px;
            display: flex;
            align-items: center;
            padding: 0 9px;
            font-size: 8px;
        }

        .fake-add {
            height: 24px;
            border-radius: 7px;
            background: #0e7490;
            color: white;
            display: grid;
            place-items: center;
            font-size: 8px;
            font-weight: 900;
            box-shadow: 0 8px 18px rgba(14, 116, 144, .18);
        }

        .todo-list {
            padding: 0 10px 8px;
            display: grid;
            gap: 4px;
        }

        .todo-row {
            min-height: 22px;
            display: grid;
            grid-template-columns: 13px 1fr 18px;
            align-items: center;
            gap: 5px;
            font-size: 8px;
            color: #334155;
        }

        .todo-check {
            width: 10px;
            height: 10px;
            border: 1px solid #dbe3ef;
            background: #fff;
            border-radius: 2px;
        }

        .todo-trash {
            width: 16px;
            height: 16px;
            border-radius: 5px;
            background: #fb7185;
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 8px;
            justify-self: end;
        }

        .calendar-card .section-heading {
            height: 36px;
        }

        .plan-badge {
            height: 18px;
            padding: 0 8px;
            background: #eff6ff;
            color: #2563eb;
            border: 1px solid #dbeafe;
            border-radius: 8px;
            display: flex;
            align-items: center;
            font-size: 7.4px;
            font-weight: 900;
        }

        .calendar-toolbar {
            padding: 9px 10px 0;
            display: grid;
            grid-template-columns: 24px 1fr 24px;
            align-items: center;
            gap: 8px;
        }

        .cal-nav {
            height: 22px;
            border: 1px solid #e5edf7;
            background: #fff;
            border-radius: 7px;
            display: grid;
            place-items: center;
            color: #94a3b8;
            font-weight: 900;
            font-size: 10px;
        }

        .today-chip {
            justify-self: center;
            height: 22px;
            padding: 0 14px;
            border-radius: 7px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #fff;
            display: flex;
            align-items: center;
            font-size: 8px;
            font-weight: 900;
            box-shadow: 0 8px 18px rgba(37, 99, 235, .20);
        }

        .calendar-month {
            text-align: right;
            padding: 7px 13px 1px;
            font-size: 8px;
            font-weight: 900;
            color: #334155;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            padding: 0 12px 10px;
        }

        .cal-head,
        .cal-day {
            height: 18px;
            display: grid;
            place-items: center;
            font-size: 7.6px;
            color: #64748b;
            font-weight: 800;
            position: relative;
        }

        .cal-head {
            color: #64748b;
            font-size: 7px;
            height: 16px;
            font-weight: 900;
        }

        .cal-day.muted {
            color: #b7c0ce;
        }

        .cal-day.selected {
            background: #2563eb;
            color: #fff;
            border-radius: 6px;
            font-weight: 900;
            box-shadow: 0 5px 12px rgba(37, 99, 235, .24);
        }

        .cal-day.has-dot:after {
            content: "";
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #f59e0b;
            position: absolute;
            right: 6px;
            top: 3px;
        }

        .cal-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px;
            padding: 0 10px 10px;
        }

        .cal-action {
            height: 24px;
            border-radius: 7px;
            display: grid;
            place-items: center;
            font-size: 8px;
            font-weight: 900;
            border: 1px solid #e5edf7;
            background: #fff;
            color: #334155;
        }

        .cal-action.primary {
            background: #0e7490;
            color: #fff;
            border-color: #0e7490;
            box-shadow: 0 8px 18px rgba(14, 116, 144, .18);
        }

        .demo-statusbar {
            height: 25px;
            background: #ffffff;
            border-top: 1px solid #e8eef8;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 11px;
            color: #64748b;
            font-size: 8px;
        }

        .status-left {
            display: flex;
            align-items: center;
            gap: 11px;
            min-width: 0;
        }

        .online-dot {
            width: 5px;
            height: 5px;
            background: #10b981;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(16, 185, 129, .08);
        }

        .status-text {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            max-width: 690px;
        }

        .status-company {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .tiny-logo {
            width: 14px;
            height: 14px;
            border-radius: 4px;
            background: linear-gradient(135deg, #f97316, #ec4899 45%, #3b82f6);
        }

        /* ---------------- SECTIONS ---------------- */
        .section {
            padding: 126px 0;
        }

        .section-tag {
            color: var(--primary-soft);
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 2.5px;
            font-size: 0.84rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 28px;
            margin-top: 56px;
        }

        .feature-card {
            background: linear-gradient(180deg, rgba(15, 23, 42, .86), rgba(10, 19, 36, .92));
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 24px;
            padding: 46px 38px;
            transition: all 0.35s;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
        }

        .feature-card:hover {
            border-color: rgba(129, 140, 248, .42);
            transform: translateY(-10px);
        }

        .feature-card h3 {
            font-size: 1.33rem;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: #8fa0b8;
        }

        .icon-circle {
            width: 68px;
            height: 68px;
            background: rgba(79, 70, 229, 0.13);
            border: 1px solid rgba(129, 140, 248, .18);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 28px;
        }

        .automation-block {
            background:
                radial-gradient(circle at 80% 20%, rgba(79, 70, 229, .18), transparent 28rem),
                linear-gradient(to bottom, rgba(5, 11, 24, .2), #0f1f3a);
        }

        .code-snippet {
            background: #101827;
            padding: 38px;
            border-radius: 22px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.95rem;
            line-height: 1.8;
            border: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
        }

        footer {
            background: #050b18;
            border-top: 1px solid #1e2937;
            padding: 110px 0 56px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 56px;
        }

        .footer-logo-desc p {
            margin-top: 24px;
            color: var(--text-low);
            max-width: 300px;
        }

        .footer-col h4 {
            margin-bottom: 22px;
            font-size: 1.03rem;
            color: #fff;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            color: var(--text-low);
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        @media (max-width: 1200px) {
            .demo-frame {
                overflow-x: auto;
            }

            .demo-container {
                min-width: 1180px;
            }
        }

        @media (max-width: 900px) {
            .hero {
                padding-top: 86px;
            }

            .hero h1 {
                letter-spacing: -2px;
            }

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

/* =========================================================
   DELUXE SCROLL ANIMATION PACK
   Aşağı kaydırırken premium geçiş, reveal, parallax ve glow efektleri
   ========================================================= */

:root {
    --ease-deluxe: cubic-bezier(.16, 1, .3, 1);
    --ease-bounce-soft: cubic-bezier(.2, 1.35, .35, 1);
}

body {
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background:
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 20%), rgba(129, 140, 248, .16), transparent 28rem),
        radial-gradient(circle at calc(100% - var(--glow-x, 50%)) 70%, rgba(236, 72, 153, .08), transparent 24rem);
    opacity: .75;
    transition: opacity .35s ease;
    mix-blend-mode: screen;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform-origin: left;
    transform: scaleX(0);
    z-index: 10001;
    background: linear-gradient(90deg, #ef3348, #8b5cf6, #06b6d4, #ff9b3d);
    box-shadow: 0 0 22px rgba(129, 140, 248, .75);
}

nav {
    transition: all .45s var(--ease-deluxe);
}

nav.nav-scrolled {
    background: rgba(5, 11, 24, .74);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
    border-bottom-color: rgba(129, 140, 248, .22);
}

.page-loaded .hero h1,
.page-loaded .hero p,
.page-loaded .logo-nav {
    animation: luxuryFadeUp .95s var(--ease-deluxe) both;
}

.page-loaded .hero p {
    animation-delay: .12s;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom,
.reveal-blur {
    opacity: 0;
    transform: translate3d(0, 72px, 0) scale(.985);
    filter: blur(16px);
    transition:
        opacity .95s var(--ease-deluxe),
        transform .95s var(--ease-deluxe),
        filter .95s var(--ease-deluxe);
    transition-delay: var(--delay, 0ms);
    will-change: transform, opacity, filter;
}

.reveal-left {
    transform: translate3d(-86px, 34px, 0) rotate(-2deg);
}

.reveal-right {
    transform: translate3d(86px, 34px, 0) rotate(2deg);
}

.reveal-zoom {
    transform: translate3d(0, 56px, 0) scale(.86);
}

.reveal-blur {
    transform: translate3d(0, 30px, 0);
    filter: blur(24px);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible,
.reveal-blur.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
}

.section {
    position: relative;
    overflow: hidden;
}

.section::before,
.section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    pointer-events: none;
    opacity: .26;
    filter: blur(8px);
    transform: translate3d(0, calc(var(--section-parallax, 0px) * .18), 0);
}

.section::before {
    top: 8%;
    left: -160px;
    background: radial-gradient(circle, rgba(79, 70, 229, .45), transparent 68%);
}

.section::after {
    right: -180px;
    bottom: 8%;
    background: radial-gradient(circle, rgba(6, 182, 212, .32), transparent 68%);
}

.feature-card,
.code-snippet,
.demo-card {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-card::before,
.code-snippet::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(129, 140, 248, .38), transparent 32%, rgba(6, 182, 212, .28), transparent 72%, rgba(236, 72, 153, .26));
    opacity: 0;
    transition: opacity .45s ease;
    z-index: -1;
}

.feature-card:hover::before,
.code-snippet:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-14px) scale(1.015);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34), 0 0 34px rgba(129, 140, 248, .10);
}

.icon-circle {
    transition: transform .55s var(--ease-bounce-soft), box-shadow .45s ease, border-color .45s ease;
}

.feature-card:hover .icon-circle {
    transform: translateY(-6px) rotate(-8deg) scale(1.12);
    border-color: rgba(129, 140, 248, .44);
    box-shadow: 0 18px 42px rgba(79, 70, 229, .22);
}

.code-snippet {
    overflow: hidden;
}

.code-snippet::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -35%;
    width: 44%;
    height: 220%;
    transform: rotate(28deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
    animation: codeShine 4.6s ease-in-out infinite;
}

.float-soft {
    animation: floatSoft 6.5s ease-in-out infinite;
}

.magnetic-hover {
    transition: transform .2s ease-out;
}

@keyframes luxuryFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px) scale(.98);
        filter: blur(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes codeShine {
    0% {
        left: -60%;
        opacity: 0;
    }
    22% {
        opacity: .9;
    }
    52%, 100% {
        left: 126%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-zoom,
    .reveal-blur {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #f97316);
    z-index: 9999;
    will-change: transform;
}

.reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
}

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

.feature-card {
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.icon-circle {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 14px 34px rgba(79, 70, 229, 0.22);
}

.code-snippet {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.code-snippet:hover {
    transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   FINAL DÜZENLEME
   - Kartlar masaüstünde 3'e 3 dizilir
   - Tablet görünümünde 2 kolon
   - Mobilde tek kolon
   - Yatay sağa kayma / boşluk engellenir
   Bu blok style.css dosyasının EN ALTINDA kalmalıdır.
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    position: relative;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Özellik kartları: 3 üstte, 3 altta */
.feature-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px;
}

.feature-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Uzun metinlerin/kodların yatay taşmasını engeller */
.feature-card,
.code-snippet,
.automation-block,
.section,
.container {
    max-width: 100%;
}

.code-snippet {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* 1200px altında 2 kolon */
@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .demo-frame {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .demo-container {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}

/* Mobil görünüm */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    nav {
        backdrop-filter: blur(8px);
    }

    .nav-content {
        height: 64px;
    }

    .logo-nav {
        font-size: 1.55rem;
        letter-spacing: -1.6px;
    }

    .hero {
        padding: 82px 0 62px;
    }

    .hero::before {
        width: 420px;
        height: 420px;
        top: 40px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
        letter-spacing: -2px;
        line-height: 1.04;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .section {
        padding: 72px 0;
        overflow: hidden;
    }

    .section::before,
    .section::after {
        width: 240px;
        height: 240px;
        opacity: .18;
    }

    .section-tag {
        font-size: .76rem;
        letter-spacing: 1.8px;
    }

    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-top: 38px;
    }

    .feature-card {
        padding: 32px 24px;
        border-radius: 20px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .icon-circle {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 1.7rem;
        margin-bottom: 22px;
    }

    /* HTML'de inline style olan otomasyon gridini mobilde tek kolona düşürür */
    .automation-block .container > div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: start !important;
    }

    .automation-block h2 {
        font-size: 2rem !important;
        line-height: 1.15;
    }

    .automation-block p {
        font-size: 1rem !important;
        max-width: 100%;
        margin-bottom: 0 !important;
    }

    .code-snippet {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 22px 16px;
        border-radius: 18px;
        font-size: 0.76rem;
        line-height: 1.75;
        overflow-x: hidden;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
        box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
    }

    .code-snippet span {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .code-snippet::after {
        display: none;
    }

    footer {
        padding: 72px 0 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .footer-logo-desc p {
        max-width: 100%;
    }

    .demo-frame {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .demo-container {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .demo-app,
    .demo-content {
        grid-template-columns: 1fr;
    }
}

/* Çok küçük telefonlar */
@media (max-width: 420px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 2.85rem;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .code-snippet {
        font-size: 0.70rem;
        padding: 20px 14px;
    }
}

/* Hareket azaltma tercihi olan cihazlar için */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-zoom,
    .reveal-blur,
    .reveal-item {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* =========================================================
   FINAL YAZILARI DOKUNULMAZ / SEÇİLEMEZ YAP
   Mobil dahil tüm cihazlarda yazı seçimini ve dokunma vurgusunu kapatır.
   Bu blok style.css dosyasının EN ALTINDA kalmalıdır.
   ========================================================= */

body,
body * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* İleride link, buton veya form alanı eklenirse çalışmaya devam etsin */
a,
button,
input,
textarea,
select,
[role="button"] {
    -webkit-user-select: auto;
    user-select: auto;
    pointer-events: auto;
}
