:root {
            --bg: #0a0a0b;
            --card: #111113;
            --card-h: #18181b;
            --t1: #fafafa;
            --t2: #a1a1aa;
            --t3: #71717a;
            --acc: #e07850;
            --acc2: #f97066;
            --acc3: #fb7185;
            --bdr: #27272a;
            --grad: linear-gradient(135deg, #e07850, #f97066, #fb7185)
        }

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

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--t1);
            line-height: 1.6
        }

        .serif {
            font-family: 'Instrument Serif', serif;
            font-style: italic
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, var(--bg), transparent);
            backdrop-filter: blur(10px)
        }

        .logo {
            display: flex;
            align-items: center;
            gap: .75rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--t1);
            text-decoration: none
        }

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

        .logo-icon svg {
            width: 20px;
            height: 20px;
            fill: white
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none
        }

        .nav-links a {
            color: var(--t2);
            text-decoration: none;
            transition: color .3s
        }

        .nav-links a:hover {
            color: var(--t1)
        }

        .nav-cta {
            background: var(--grad);
            color: white;
            padding: .75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: transform .3s, box-shadow .3s
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(224, 120, 80, .3)
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150%;
            height: 100%;
            background: radial-gradient(ellipse at 50% 0%, rgba(224, 120, 80, .15), transparent 60%);
            pointer-events: none
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: var(--card);
            border: 1px solid var(--bdr);
            padding: .5rem 1rem;
            border-radius: 100px;
            font-size: .85rem;
            color: var(--t2);
            margin-bottom: 2rem;
            animation: fadeUp .8s
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--acc);
            border-radius: 50%;
            animation: pulse 2s infinite
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .5
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

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

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            max-width: 900px;
            animation: fadeUp .8s .1s backwards
        }

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

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--t2);
            max-width: 600px;
            margin-bottom: 3rem;
            animation: fadeUp .8s .2s backwards
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            animation: fadeUp .8s .3s backwards
        }

        .btn-primary {
            background: var(--grad);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: transform .3s, box-shadow .3s
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(224, 120, 80, .35)
        }

        .btn-secondary {
            background: var(--card);
            border: 1px solid var(--bdr);
            color: var(--t1);
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            transition: all .3s
        }

        .btn-secondary:hover {
            background: var(--card-h);
            border-color: var(--t3)
        }

        section {
            padding: 6rem 4rem
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem
        }

        .section-label {
            font-size: .85rem;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: var(--acc);
            margin-bottom: 1rem;
            display: block
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            margin-bottom: 1rem
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--t2);
            max-width: 600px;
            margin: 0 auto
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto
        }

        .service-card {
            background: var(--card);
            border: 1px solid var(--bdr);
            border-radius: 16px;
            padding: 2rem;
            transition: all .4s;
            cursor: pointer;
            position: relative;
            overflow: hidden
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--grad);
            opacity: 0;
            transition: opacity .4s
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--t3);
            background: var(--card-h)
        }

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

        .service-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(224, 120, 80, .15), rgba(251, 113, 133, .1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--acc)
        }

        .expand-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(224, 120, 80, .1);
            display: flex;
            align-items: center;
            justify-content: center
        }

        .expand-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--acc)
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: .75rem
        }

        .service-card>p {
            color: var(--t2);
            font-size: .95rem;
            line-height: 1.7
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin-top: 1.5rem
        }

        .service-tag {
            background: rgba(224, 120, 80, .1);
            color: var(--acc);
            padding: .35rem .75rem;
            border-radius: 6px;
            font-size: .8rem
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, .85);
            backdrop-filter: blur(10px);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all .4s
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible
        }

        .modal-content {
            background: var(--card);
            border: 1px solid var(--bdr);
            border-radius: 24px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(50px);
            transition: transform .4s
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0)
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--card-h);
            border: 1px solid var(--bdr);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .3s;
            z-index: 10
        }

        .modal-close:hover {
            background: var(--acc)
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            stroke: var(--t1)
        }

        .modal-header {
            padding: 3rem;
            border-bottom: 1px solid var(--bdr)
        }

        .modal-header h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem
        }

        .modal-header p {
            color: var(--t2);
            font-size: 1.1rem;
            line-height: 1.8
        }

        .modal-body {
            padding: 2rem 3rem 3rem
        }

        .modal-section {
            margin-bottom: 2.5rem
        }

        .modal-section h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--acc)
        }

        .modal-section p {
            color: var(--t2);
            line-height: 1.8
        }

        .arch-diagram {
            background: var(--bg);
            border: 1px solid var(--bdr);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 1rem
        }

        .arch-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem
        }

        .arch-node {
            background: var(--card);
            border: 1px solid var(--bdr);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            text-align: center;
            min-width: 120px;
            transition: all .3s
        }

        .arch-node:hover {
            border-color: var(--acc);
            transform: translateY(-4px)
        }

        .arch-node-label {
            font-size: .85rem;
            font-weight: 500
        }

        .arch-node-sub {
            font-size: .7rem;
            color: var(--t3);
            margin-top: .25rem
        }

        .arch-arrow {
            color: var(--t3);
            font-size: 1.5rem
        }

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

        .feature-item {
            display: flex;
            align-items: center;
            gap: .5rem;
            padding: .75rem;
            background: var(--bg);
            border-radius: 8px;
            border: 1px solid var(--bdr)
        }

        .feature-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--acc);
            flex-shrink: 0
        }

        .feature-item span {
            font-size: .9rem;
            color: var(--t2)
        }

        .process {
            background: var(--card)
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto
        }

        .process-step {
            text-align: center
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--bg);
            border: 2px solid var(--bdr);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--acc);
            transition: all .3s
        }

        .process-step:hover .step-number {
            border-color: var(--acc);
            box-shadow: 0 0 30px rgba(224, 120, 80, .3)
        }

        .process-step h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: .5rem
        }

        .process-step p {
            color: var(--t2);
            font-size: .9rem
        }

        .templates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto
        }

        .template-card {
            background: var(--card);
            border: 1px solid var(--bdr);
            border-radius: 16px;
            overflow: hidden;
            transition: all .4s;
            text-decoration: none;
            display: block
        }

        .template-card:hover {
            transform: translateY(-5px);
            border-color: var(--acc)
        }

        .template-preview {
            height: 160px;
            background: linear-gradient(135deg, rgba(224, 120, 80, .1), rgba(251, 113, 133, .05));
            display: flex;
            align-items: center;
            justify-content: center
        }

        .template-preview svg {
            width: 50px;
            height: 50px;
            stroke: var(--acc)
        }

        .template-content {
            padding: 1.5rem
        }

        .template-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: .5rem;
            color: var(--t1)
        }

        .template-card p {
            color: var(--t2);
            font-size: .9rem
        }

        .template-link {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            margin-top: 1rem;
            color: var(--acc);
            font-size: .9rem;
            font-weight: 500
        }

        .template-link svg {
            width: 16px;
            height: 16px;
            stroke: var(--acc);
            transition: transform .3s
        }

        .template-card:hover .template-link svg {
            transform: translateX(4px)
        }

        .about {
            background: linear-gradient(to bottom, var(--card), var(--bg))
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            line-height: 1.2
        }

        .about-text p {
            color: var(--t2);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem
        }

        .about-graphic {
            width: 100%;
            aspect-ratio: 1;
            background: var(--card);
            border: 1px solid var(--bdr);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden
        }

        .about-graphic::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(224, 120, 80, .1), transparent, rgba(251, 113, 133, .1), transparent);
            animation: rotate 20s linear infinite
        }

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

            to {
                transform: rotate(360deg)
            }
        }

        .heart-icon {
            width: 120px;
            height: 120px;
            position: relative;
            z-index: 1
        }

        .heart-icon svg {
            width: 100%;
            height: 100%;
            fill: var(--acc)
        }

        .contact {
            text-align: center
        }

        .contact-box {
            background: var(--card);
            border: 1px solid var(--bdr);
            border-radius: 24px;
            padding: 4rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden
        }

        .contact-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--grad)
        }

        .contact-box h2 {
            font-size: 2rem;
            margin-bottom: 1rem
        }

        .contact-box>p {
            color: var(--t2);
            margin-bottom: 2rem;
            font-size: 1.1rem
        }

        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: .75rem;
            font-size: 1.25rem;
            color: var(--acc);
            text-decoration: none;
            transition: all .3s
        }

        .contact-email:hover {
            color: var(--acc2)
        }

        footer {
            padding: 3rem 4rem;
            border-top: 1px solid var(--bdr);
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 2rem
        }

        .footer-links {
            display: flex;
            gap: 1.5rem
        }

        .footer-links a {
            color: var(--t3);
            text-decoration: none;
            font-size: .9rem;
            transition: color .3s
        }

        .footer-links a:hover {
            color: var(--t1)
        }

        .footer-right {
            color: var(--t3);
            font-size: .9rem
        }

        @media(max-width:1024px) {
            nav {
                padding: 1rem 2rem
            }

            .nav-links {
                display: none
            }

            section {
                padding: 4rem 2rem
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr)
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem
            }

            .arch-flow {
                flex-direction: column
            }

            .arch-arrow {
                transform: rotate(90deg)
            }
        }

        @media(max-width:768px) {
            .hero h1 {
                font-size: 2.5rem
            }

            .hero-ctas {
                flex-direction: column
            }

            .services-grid,
            .templates-grid {
                grid-template-columns: 1fr
            }

            .process-steps {
                grid-template-columns: 1fr
            }

            footer {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center
            }

            .footer-left {
                flex-direction: column
            }
        }
