    /* ─── RESET & TOKENS ─────────────────────────────── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --ink: #0c0e14;
        --ink-2: #3b4054;
        --ink-3: #6b7185;
        --surface: #ffffff;
        --surface-2: #f4f5f8;
        --surface-3: #eef0f6;
        --indigo: #4461f2;
        --indigo-dark: #2d46cc;
        --indigo-light: #eef1fe;
        --cyan: #06b6d4;
        --purple: #7c3aed;
        --grad: linear-gradient(135deg, #4461f2 0%, #7c3aed 100%);
        --grad-soft: linear-gradient(135deg, #eef1fe 0%, #f3effe 100%);
        --shadow-sm: 0 1px 3px rgba(68, 97, 242, .08), 0 1px 2px rgba(0, 0, 0, .04);
        --shadow-md: 0 4px 24px rgba(68, 97, 242, .12), 0 1px 4px rgba(0, 0, 0, .06);
        --shadow-lg: 0 16px 64px rgba(68, 97, 242, .16), 0 4px 16px rgba(0, 0, 0, .08);
        --radius: 16px;
        --radius-sm: 10px;
        --radius-lg: 24px;
        --font-display: 'Calibri', sans-serif;
        --font-body: 'DM Sans', sans-serif;
        --ease: cubic-bezier(.4, 0, .2, 1);
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: var(--font-body);
        color: var(--ink);
        background: var(--surface);
        line-height: 1.6;
        overflow-x: hidden
    }

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

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

    button {
        cursor: pointer;
        border: none;
        outline: none;
        font-family: var(--font-body)
    }

    /* ─── UTILS ──────────────────────────────────────── */
    .text-start {
        text-align: left !important;
    }

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

    .tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--indigo-light);
        color: var(--indigo);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 99px
    }

    .d-none {
        display: none;
    }

    .tag svg {
        width: 14px;
        height: 14px
    }

    .badge {
        display: inline-block;
        background: var(--grad);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 9px;
        border-radius: 99px;
        letter-spacing: .04em
    }

    .section-head {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 64px
    }

    .section-head h2 {
        font-family: var(--font-display);
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        line-height: 1.15;
        margin: 14px 0 16px;
        letter-spacing: -.02em
    }

    .section-head p {
        color: var(--ink-2);
        font-size: 15px;
        /* font-size: 17px; */
        line-height: 1.7
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 26px;
        border-radius: 99px;
        font-size: 15px;
        font-weight: 500;
        transition: all .22s var(--ease)
    }

    .btn-primary {
        padding: 8px 12px;
        background: var(--grad);
        color: #fff;
        box-shadow: 0 4px 20px rgba(68, 97, 242, .35)
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(68, 97, 242, .45)
    }

    .btn-outline {
        background: transparent;
        color: var(--indigo);
        border: 1.5px solid rgba(68, 97, 242, .3)
    }

    .btn-outline:hover {
        background: var(--indigo-light);
        border-color: var(--indigo)
    }

    .btn-sm {
        padding: 9px 18px;
        font-size: 13.5px
    }

    /* Display */
    .flex {
        display: flex;
    }

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

    /* Direction */
    .flex-row {
        flex-direction: row;
    }

    .flex-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-col {
        flex-direction: column;
    }

    .flex-col-reverse {
        flex-direction: column-reverse;
    }

    /* Wrap */
    .flex-wrap {
        flex-wrap: wrap;
    }

    .flex-nowrap {
        flex-wrap: nowrap;
    }

    .flex-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    /* Justify Content */
    .justify-start {
        justify-content: flex-start;
    }

    .justify-end {
        justify-content: flex-end;
    }

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

    .justify-between {
        justify-content: space-between;
    }

    .justify-around {
        justify-content: space-around;
    }

    .justify-evenly {
        justify-content: space-evenly;
    }

    /* Align Items */
    .items-start {
        align-items: flex-start;
    }

    .items-end {
        align-items: flex-end;
    }

    .items-center {
        align-items: center;
    }

    .items-baseline {
        align-items: baseline;
    }

    .items-stretch {
        align-items: stretch;
    }

    /* Align Content */
    .content-start {
        align-content: flex-start;
    }

    .content-center {
        align-content: center;
    }

    .content-end {
        align-content: flex-end;
    }

    .content-between {
        align-content: space-between;
    }

    .content-around {
        align-content: space-around;
    }

    .content-evenly {
        align-content: space-evenly;
    }

    /* Align Self */
    .self-auto {
        align-self: auto;
    }

    .self-start {
        align-self: flex-start;
    }

    .self-end {
        align-self: flex-end;
    }

    .self-center {
        align-self: center;
    }

    .self-stretch {
        align-self: stretch;
    }

    /* Flex Grow */
    .grow {
        flex-grow: 1;
    }

    .grow-0 {
        flex-grow: 0;
    }

    /* Flex Shrink */
    .shrink {
        flex-shrink: 1;
    }

    .shrink-0 {
        flex-shrink: 0;
    }

    /* Flex */
    .flex-1 {
        flex: 1 1 0%;
    }

    .flex-auto {
        flex: 1 1 auto;
    }

    .flex-initial {
        flex: 0 1 auto;
    }

    .flex-none {
        flex: none;
    }

    /* Gap */
    .gap-1 {
        gap: 0.25rem;
    }

    .gap-2 {
        gap: 0.5rem;
    }

    .gap-3 {
        gap: 0.75rem;
    }

    .gap-4 {
        gap: 1rem;
    }

    .gap-5 {
        gap: 1.25rem;
    }

    .gap-6 {
        gap: 1.5rem;
    }

    .gap-8 {
        gap: 2rem;
    }

    .gap-10 {
        gap: 2.5rem;
    }

    /* Common */
    .center-all {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ─── NAV ────────────────────────────────────────── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        background: rgba(255, 255, 255, .82);
        border-bottom: 1px solid rgba(68, 97, 242, .08);
        transition: box-shadow .3s
    }

    nav.scrolled {
        box-shadow: var(--shadow-md)
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 3px;
        font-family: var(--font-display);
        font-weight: 700;
        letter-spacing: -.02em;
        flex-shrink: 0
    }

    .logo .logo-text {
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        color: #232D68;
        font-size: 14px;
    }

    .logo .gradient-text {
        color: #7235FF;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        background: var(--grad);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .logo-mark svg {
        width: 18px;
        height: 18px;
        fill: #fff
    }

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

    .nav-links a {
        padding: 7px 14px;
        border-radius: 8px;
        font-size: 14px;
        color: var(--ink-2);
        font-weight: 500;
        transition: all .18s
    }

    .nav-links a:hover {
        color: var(--indigo);
        background: var(--indigo-light)
    }

    /* ─── NAV DROPDOWN ────────────────────────────────── */
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 7px 14px;
        border-radius: 8px;
        font-size: 14px;
        color: var(--ink-2);
        font-weight: 500;
        font-family: var(--font-body);
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all .18s;
    }

    .nav-dropdown-toggle:hover {
        color: var(--indigo);
        background: var(--indigo-light);
    }

    .nav-dropdown-chevron {
        transition: transform .25s var(--ease);
        flex-shrink: 0;
    }

    .nav-dropdown:hover .nav-dropdown-chevron,
    .nav-dropdown.open .nav-dropdown-chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(6px);
        min-width: 220px;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(68, 97, 242, .1);
        border-radius: 14px;
        box-shadow: 0 8px 32px rgba(68, 97, 242, .12), 0 2px 8px rgba(0, 0, 0, .06);
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all .22s var(--ease);
        z-index: 200;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        height: 8px;
    }

    .nav-dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--ink-2);
        background: transparent;
        transition: all .18s var(--ease);
    }

    .nav-dropdown-menu a:hover {
        color: var(--indigo);
        background: var(--indigo-light);
    }

    .nav-dropdown-menu a svg {
        flex-shrink: 0;
        opacity: .6;
        transition: opacity .18s;
    }

    .nav-dropdown-menu a:hover svg {
        opacity: 1;
        color: var(--indigo);
    }

    [data-theme="dark"] .nav-dropdown-toggle {
        color: #94a3b8;
    }

    [data-theme="dark"] .nav-dropdown-toggle:hover {
        color: #818cf8;
        background: rgba(68, 97, 242, .12);
    }

    [data-theme="dark"] .nav-dropdown-menu {
        background: rgba(26, 29, 36, .98);
        border-color: rgba(68, 97, 242, .15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, .4), 0 2px 8px rgba(0, 0, 0, .2);
    }

    [data-theme="dark"] .nav-dropdown-menu a {
        color: #94a3b8;
    }

    [data-theme="dark"] .nav-dropdown-menu a:hover {
        color: #818cf8;
        background: rgba(68, 97, 242, .12);
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .nav-mobile-btn {
        display: none;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--surface-2)
    }

    /* ─── MOBILE NAV MENU ─────────────────────────────── */
    .nav-mobile-menu {
        display: none;
        border-top: 1px solid var(--surface-3);
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 16px 0;
        animation: slideDown .25s var(--ease)
    }

    .nav-mobile-menu.open {
        display: block
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .nav-mobile-menu a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--ink-2);
        transition: color .18s
    }

    .nav-mobile-menu a:hover {
        color: var(--indigo)
    }

    /* ─── MOBILE DROPDOWN ─────────────────────────────── */
    .nav-mobile-dropdown {
        border-bottom: 1px solid var(--surface-3);
    }

    .nav-mobile-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--ink-2);
        background: transparent;
        border: none;
        font-family: var(--font-body);
        cursor: pointer;
        transition: color .18s;
    }

    .nav-mobile-dropdown-toggle:hover {
        color: var(--indigo);
    }

    .nav-mobile-chevron {
        transition: transform .25s var(--ease);
    }

    .nav-mobile-dropdown.open .nav-mobile-chevron {
        transform: rotate(180deg);
    }

    .nav-mobile-submenu {
        display: none;
        padding: 0 0 8px 16px;
        animation: slideDown .25s var(--ease);
    }

    .nav-mobile-dropdown.open .nav-mobile-submenu {
        display: block;
    }

    .nav-mobile-submenu a {
        padding: 8px 0;
        font-size: 14px;
        color: var(--ink-3);
    }

    .nav-mobile-submenu a:hover {
        color: var(--indigo);
    }

    [data-theme="dark"] .nav-mobile-dropdown-toggle {
        color: #94a3b8;
    }

    [data-theme="dark"] .nav-mobile-dropdown-toggle:hover {
        color: #818cf8;
    }

    [data-theme="dark"] .nav-mobile-submenu a {
        color: #64748b;
    }

    [data-theme="dark"] .nav-mobile-submenu a:hover {
        color: #818cf8;
    }

    .nav-mobile-actions {
        display: flex;
        gap: 10px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--surface-3)
    }

    .nav-mobile-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center
    }

    .nav-desktop-only {
        display: inline-flex
    }

    /* ─── HERO ───────────────────────────────────────── */
    .hero {
        padding: 140px 0 80px;
        position: relative;
        overflow: hidden
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        pointer-events: none
    }

    .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: .22
    }

    .hero-blob-1 {
        width: 600px;
        height: 600px;
        background: var(--grad);
        top: -200px;
        right: -100px
    }

    .hero-blob-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, #06b6d4, #4461f2);
        bottom: -100px;
        left: -100px;
        opacity: .15
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center
    }

    .hero-text .tag {
        margin-bottom: 20px
    }

    .hero-text h1 {
        font-family: var(--font-display);
        font-size: clamp(36px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -.03em;
        margin-bottom: 20px
    }

    .hero-text h1 span {
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .hero-text p {
        font-size: 15px;
        /* font-size: 18px; */
        color: var(--ink-2);
        line-height: 1.7;
        margin-bottom: 36px;
        max-width: 440px
    }

    .hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap
    }

    .hero-stats {
        display: flex;
        gap: 32px;
        margin-top: 48px
    }

    .hero-stat strong {
        display: block;
        font-family: var(--font-display);
        font-size: 26px;
        font-weight: 800;
        color: var(--indigo)
    }

    .hero-stat span {
        font-size: 13px;
        color: var(--ink-3)
    }

    .hero-visual {
        position: relative
    }

    .editor-card {
        background: #fff;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(68, 97, 242, .1);
        overflow: hidden;
        animation: float 5s ease-in-out infinite
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0)
        }

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

    .editor-topbar {
        display: flex;
        align-items: center;
        padding: 14px 18px;
        border-bottom: 1px solid var(--surface-3);
        gap: 8px
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%
    }

    .dot-r {
        background: #ff5f57
    }

    .dot-y {
        background: #febc2e
    }

    .dot-g {
        background: #28c840
    }

    .editor-title {
        flex: 1;
        text-align: center;
        font-size: 13px;
        color: var(--ink-3);
        font-weight: 500
    }

    .editor-tools {
        display: flex;
        gap: 4px
    }

    .tool-chip {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: var(--surface-2);
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tool-chip svg {
        width: 14px;
        height: 14px;
        stroke: var(--ink-3)
    }

    .editor-body {
        display: flex;
        min-height: 320px
    }

    .editor-sidebar {
        width: 180px;
        border-right: 1px solid var(--surface-3);
        padding: 12px
    }

    .note-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 8px;
        margin-bottom: 4px;
        font-size: 13px;
        cursor: pointer;
        transition: background .18s
    }

    .note-item:hover,
    .note-item.active {
        background: var(--indigo-light);
        color: var(--indigo)
    }

    .note-item.active {
        font-weight: 600
    }

    .note-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: currentColor;
        opacity: .5;
        flex-shrink: 0
    }

    .note-item.active .note-dot {
        background: var(--indigo);
        opacity: 1
    }

    .editor-main {
        flex: 1;
        padding: 20px 24px
    }

    .editor-toolbar {
        display: flex;
        gap: 4px;
        margin-bottom: 16px;
        flex-wrap: wrap
    }

    .tb-btn {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: var(--surface-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        color: var(--ink-2);
        transition: all .18s
    }

    .tb-btn:hover {
        background: var(--indigo-light);
        color: var(--indigo)
    }

    .tb-sep {
        width: 1px;
        background: var(--surface-3);
        margin: 0 4px
    }

    .editor-content h3 {
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--ink)
    }

    .editor-line {
        height: 11px;
        border-radius: 99px;
        background: var(--surface-2);
        margin-bottom: 9px
    }

    .editor-line.w-90 {
        width: 90%
    }

    .editor-line.w-70 {
        width: 70%
    }

    .editor-line.w-80 {
        width: 80%
    }

    .editor-line.w-55 {
        width: 55%
    }

    .editor-line.accent {
        background: linear-gradient(90deg, var(--indigo-light), var(--surface-2))
    }

    .cursor-blink {
        display: inline-block;
        width: 2px;
        height: 16px;
        background: var(--indigo);
        border-radius: 1px;
        animation: blink .9s ease-in-out infinite;
        vertical-align: middle
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: 0
        }
    }

    .float-chip {
        position: absolute;
        background: #fff;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        padding: 10px 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid rgba(68, 97, 242, .1);
        animation: float 5s ease-in-out infinite
    }

    .chip-1 {
        bottom: 30px;
        left: -30px;
        animation-delay: .5s
    }

    .chip-2 {
        top: 30px;
        right: -20px;
        animation-delay: 1.2s
    }

    .chip-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .ci-green {
        background: #d1fae5;
        color: #059669
    }

    .ci-blue {
        background: var(--indigo-light);
        color: var(--indigo)
    }

    /* ─── FEATURES ───────────────────────────────────── */
    .features {
        padding: 100px 0;
        background: var(--surface)
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px
    }

    .feat-card {
        background: var(--surface);
        border: 1px solid var(--surface-3);
        border-radius: var(--radius);
        padding: 28px;
        transition: all .25s var(--ease);
        position: relative;
        overflow: hidden
    }

    .feat-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--grad-soft);
        opacity: 0;
        transition: opacity .25s
    }

    .feat-card:hover {
        border-color: rgba(68, 97, 242, .25);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md)
    }

    .feat-card:hover::before {
        opacity: 1
    }

    .feat-card>* {
        position: relative;
        z-index: 1
    }

    .feat-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--indigo-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        color: var(--indigo);
        transition: background .25s
    }

    .feat-card:hover .feat-icon {
        background: var(--grad);
        color: #fff
    }

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

    .feat-card h3 {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px
    }

    .feat-card p {
        font-size: 14px;
        color: var(--ink-3);
        line-height: 1.6
    }

    /* ─── EDITOR PREVIEW ─────────────────────────────── */
    .preview {
        padding: 100px 0;
        background: var(--surface-2)
    }

    .preview-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center
    }

    .preview-text .tag {
        margin-bottom: 20px
    }

    .preview-text h2 {
        font-family: var(--font-display);
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -.02em;
        margin: 14px 0 18px
    }

    .preview-text p {
        color: var(--ink-2);
        font-size: 15px;
        /* font-size: 16px; */
        line-height: 1.7;
        margin-bottom: 28px
    }

    .check-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px
    }

    .check-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: var(--ink-2)
    }

    .check-item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        color: var(--indigo);
        margin-top: 2px
    }

    .dark-card {
        background: #0f1117;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg)
    }

    .dark-topbar {
        display: flex;
        align-items: center;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        gap: 8px
    }

    .dark-title {
        flex: 1;
        text-align: center;
        font-size: 13px;
        color: rgba(255, 255, 255, .35)
    }

    .dark-body {
        display: flex;
        min-height: 280px
    }

    .dark-sidebar {
        width: 170px;
        border-right: 1px solid rgba(255, 255, 255, .07);
        padding: 12px
    }

    .dark-note {
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 12px;
        margin-bottom: 4px;
        color: rgba(255, 255, 255, .45);
        transition: .18s
    }

    .dark-note:hover,
    .dark-note.active {
        background: rgba(68, 97, 242, .25);
        color: rgba(255, 255, 255, .9)
    }

    .dark-note.active {
        font-weight: 600;
        color: #818cf8
    }

    .dark-editor {
        flex: 1;
        padding: 20px
    }

    .dark-h {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
        color: rgba(255, 255, 255, .9);
        margin-bottom: 12px
    }

    .dark-line {
        height: 9px;
        border-radius: 99px;
        background: rgba(255, 255, 255, .07);
        margin-bottom: 8px
    }

    .dark-line.w-85 {
        width: 85%
    }

    .dark-line.w-65 {
        width: 65%
    }

    .dark-line.w-75 {
        width: 75%
    }

    .dark-line.w-50 {
        width: 50%
    }

    .dark-line.hl {
        background: rgba(68, 97, 242, .4)
    }

    .dark-badge {
        display: inline-block;
        background: rgba(68, 97, 242, .25);
        color: #818cf8;
        font-size: 11px;
        padding: 2px 8px;
        border-radius: 4px;
        margin-bottom: 12px;
        font-family: monospace
    }

    /* ─── SEO TOOLS ──────────────────────────────────── */
    .tools {
        padding: 100px 0
    }

    .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px
    }

    .tool-card {
        background: var(--surface-2);
        border: 1px solid var(--surface-3);
        border-radius: var(--radius);
        padding: 24px 20px;
        text-align: center;
        cursor: pointer;
        transition: all .22s var(--ease)
    }

    .tool-card:hover {
        background: #fff;
        border-color: rgba(68, 97, 242, .25);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md)
    }

    .tool-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        font-size: 22px
    }

    .tool-card h3 {
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px
    }

    .tool-card p {
        font-size: 12px;
        color: var(--ink-3)
    }

    /* ─── WHY US ─────────────────────────────────────── */
    .why {
        padding: 100px 0;
        background: var(--ink);
        color: #fff
    }

    .why .section-head h2 {
        color: #fff
    }

    .why .section-head p {
        color: rgba(255, 255, 255, .55)
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px
    }

    .why-card {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: var(--radius);
        padding: 32px 24px;
        text-align: center;
        transition: all .25s
    }

    .why-card:hover {
        background: rgba(68, 97, 242, .15);
        border-color: rgba(68, 97, 242, .4);
        transform: translateY(-4px)
    }

    .why-icon {
        font-size: 36px;
        margin-bottom: 16px;
        display: block
    }

    .why-card h3 {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px
    }

    .why-card p {
        font-size: 13px;
        color: rgba(255, 255, 255, .5);
        line-height: 1.6
    }

    /* ─── TESTIMONIALS ───────────────────────────────── */
    .testimonials {
        padding: 100px 0;
        background: var(--surface)
    }

    .testimonials-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px
    }

    .review-card {
        background: var(--surface-2);
        border: 1px solid var(--surface-3);
        border-radius: var(--radius);
        padding: 28px;
        transition: all .25s
    }

    .review-card:hover {
        background: #fff;
        box-shadow: var(--shadow-md);
        border-color: rgba(68, 97, 242, .15);
        transform: translateY(-3px)
    }

    .stars {
        color: #f59e0b;
        font-size: 14px;
        margin-bottom: 14px;
        letter-spacing: 2px
    }

    .review-text {
        font-size: 15px;
        color: var(--ink-2);
        line-height: 1.7;
        margin-bottom: 20px
    }

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

    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 15px;
        color: #fff;
        flex-shrink: 0
    }

    .reviewer-name {
        font-weight: 600;
        font-size: 14px
    }

    .reviewer-title {
        font-size: 12px;
        color: var(--ink-3)
    }

    /* ─── FAQ ────────────────────────────────────────── */
    .faq {
        padding: 100px 0;
        background: var(--surface-2)
    }

    .faq-list {
        max-width: 720px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .faq-item {
        background: #fff;
        border: 1px solid var(--surface-3);
        border-radius: var(--radius-sm);
        overflow: hidden;
        transition: border-color .2s
    }

    .faq-item.open {
        border-color: rgba(68, 97, 242, .25)
    }

    .faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        gap: 16px
    }

    .faq-chevron {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
        transition: all .25s
    }

    .faq-item.open .faq-chevron {
        background: var(--indigo);
        color: #fff;
        transform: rotate(180deg)
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s var(--ease), padding .35s
    }

    .faq-a-inner {
        padding: 0 24px 20px;
        font-size: 15px;
        color: var(--ink-2);
        line-height: 1.7
    }

    .faq-item.open .faq-a {
        max-height: 200px
    }

    /* ─── CTA STRIP ──────────────────────────────────── */
    .cta-strip {
        padding: 80px 0;
        background: var(--grad);
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden
    }

    .cta-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, .12), transparent 60%)
    }

    .cta-strip h2 {
        font-family: var(--font-display);
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        margin-bottom: 14px;
        position: relative
    }

    .cta-strip p {
        font-size: 17px;
        opacity: .85;
        margin-bottom: 36px;
        position: relative
    }

    .cta-strip .btn-white {
        background: #fff;
        color: var(--indigo);
        font-weight: 600;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
    }

    .cta-strip .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, .22)
    }

    .cta-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative
    }

    .btn-ghost-white {
        background: rgba(255, 255, 255, .15);
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, .35)
    }

    .btn-ghost-white:hover {
        background: rgba(255, 255, 255, .25)
    }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
        background: var(--ink);
        color: #fff;
        padding: 64px 0 32px
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 260px repeat(3, 1fr);
        gap: 48px;
        margin-bottom: 48px
    }

    .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, .45);
        line-height: 1.7;
        margin: 14px 0 24px
    }

    .social-links {
        display: flex;
        gap: 10px
    }

    .social-btn {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: rgba(255, 255, 255, .06);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s;
        color: rgba(255, 255, 255, .6);
        font-size: 14px
    }

    .social-btn:hover {
        background: rgba(68, 97, 242, .35);
        color: #fff
    }

    .footer-col h4 {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .35);
        margin-bottom: 16px
    }

    .footer-col a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, .55);
        margin-bottom: 10px;
        transition: color .18s
    }

    .footer-col a:hover {
        color: #fff
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .07);
        padding-top: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 13px;
        color: rgba(255, 255, 255, .3)
    }

    .footer-bottom a {
        color: rgba(255, 255, 255, .4);
        margin-left: 16px;
        transition: color .18s
    }

    .footer-bottom a:hover {
        color: #fff
    }

    .spin {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .errors {
        color: #ff7777;
    }

    /* ─── SCROLL REVEAL ──────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s var(--ease), transform .7s var(--ease)
    }

    .reveal.visible {
        opacity: 1;
        transform: none
    }

    /* ─── RESPONSIVE ─────────────────────────────────── */
    @media(max-width:900px) {

        .hero-content,
        .preview-inner {
            grid-template-columns: 1fr
        }

        .hero-visual {
            display: none
        }

        .hero-text p {
            max-width: 100%
        }

        .testimonials-track {
            grid-template-columns: 1fr
        }

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

        .nav-links {
            display: none
        }

        .nav-desktop-only {
            display: none
        }

        .nav-mobile-btn {
            display: flex
        }
    }

    @media(max-width:768px) {

        .hero {
            padding: 100px 0 60px
        }

        .hero-text h1 {
            font-size: clamp(28px, 8vw, 42px)
        }

        .hero-text p {
            font-size: 16px
        }

        .features,
        .preview,
        .tools,
        .why,
        .testimonials,
        .faq {
            padding: 64px 0
        }

        .cta-strip {
            padding: 56px 0
        }

        .section-head {
            margin: 0 auto 40px
        }

        .preview-text h2 {
            font-size: clamp(24px, 5vw, 36px)
        }

        footer {
            padding: 48px 0 24px
        }

        .footer-grid {
            gap: 32px
        }
    }

    @media (max-widh:576px) {
        .feedback-option span {
            display: none !important;
        }
    }

    @media(max-width:600px) {

        .hero {
            padding: 88px 0 48px
        }

        .hero-stats {
            gap: 20px;
            flex-wrap: wrap
        }

        .hero-stat strong {
            font-size: 22px
        }

        .hero-actions {
            flex-direction: column
        }

        .hero-actions .btn {
            width: 100%;
            justify-content: center
        }

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

        .features-grid,
        .why-grid,
        .tools-grid {
            grid-template-columns: 1fr 1fr
        }

        .check-list {
            margin-bottom: 24px
        }

        .dark-card {
            border-radius: var(--radius)
        }

        .dark-sidebar {
            width: 130px
        }

        .cta-strip p {
            font-size: 15px
        }

        .container {
            padding: 0 16px
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 8px
        }
    }

    @media(max-width:400px) {

        .features-grid,
        .why-grid,
        .tools-grid {
            grid-template-columns: 1fr
        }

        .hero-stats {
            flex-direction: column;
            gap: 16px
        }

        .feat-card {
            padding: 20px
        }

        .why-card {
            padding: 24px 16px
        }

        /* .logo-img {
            height: 32px
        } */
    }