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

:root {
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --zinc-50: #fafafa;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #050505;
    color: var(--zinc-50);
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: rgba(249, 115, 22, 0.3);
}

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

/* Background orbs */
.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(234, 88, 12, 0.2);
    filter: blur(120px);
    animation: blob 15s infinite;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: rgba(249, 115, 22, 0.2);
    filter: blur(120px);
    animation: blob-reverse 18s infinite;
}

.orb-3 {
    top: 40%;
    left: 60%;
    width: 30vw;
    height: 30vw;
    background: rgba(194, 65, 12, 0.2);
    filter: blur(100px);
    animation: blob 15s infinite;
}

@keyframes blob {
    0% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(50px, -50px) scale(1.1)
    }

    66% {
        transform: translate(-40px, 20px) scale(0.9)
    }

    100% {
        transform: translate(0, 0) scale(1)
    }
}

@keyframes blob-reverse {
    0% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(-50px, 50px) scale(1.2)
    }

    66% {
        transform: translate(40px, -20px) scale(0.8)
    }

    100% {
        transform: translate(0, 0) scale(1)
    }
}

/* Container */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:640px) {
    .container {
        padding: 0 1.5rem
    }
}

@media(min-width:1024px) {
    .container {
        padding: 0 2rem
    }
}

/* Header */
header {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0 1rem;
}

@media(min-width:640px) {
    header {
        padding: 0 1.5rem
    }
}

@media(min-width:1024px) {
    header {
        padding: 0 2rem
    }
}

.header-inner {
    max-width: 80rem;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    box-shadow: var(--glass-shadow);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-wrap img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: #fff;
}

nav {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-300);
}

@media(min-width:768px) {
    nav {
        display: flex
    }
}

nav a:hover {
    color: var(--orange-400);
    transition: color 0.2s;
}

.cta-btn {
    background: linear-gradient(to right, var(--orange-500), var(--orange-600));
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    transition: all 0.2s;
}

.cta-btn:hover {
    filter: brightness(1.1);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-label {
    color: var(--orange-500);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media(min-width:768px) {
    .section-title {
        font-size: 2.25rem
    }
}

.section-desc {
    font-size: 1.125rem;
    color: var(--zinc-400);
    line-height: 1.6;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

/* Glass card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width:768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

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

@media(min-width:768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

.grid-2-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width:768px) {
    .grid-2-3 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .grid-2-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* Icon box */
.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
}

.icon-box-orange {
    background: rgba(249, 115, 22, 0.2);
    color: var(--orange-400);
    box-shadow: inset 0 0 15px rgba(249, 115, 22, 0.2);
}

.icon-box-red {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    box-shadow: inset 0 0 15px rgba(239, 68, 68, 0.2);
}

.icon-box-outline {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--orange-400);
    box-shadow: inset 0 0 15px rgba(249, 115, 22, 0.2);
}

.icon-box svg,
.icon-box i {
    width: 1.75rem;
    height: 1.75rem;
}

/* Hero */
#hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: var(--orange-400);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--orange-500);
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media(min-width:768px) {
    .hero-title {
        font-size: 4rem
    }
}

.hero-gradient {
    background: linear-gradient(to right, var(--orange-400), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.3));
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--zinc-300);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media(min-width:640px) {
    .hero-actions {
        flex-direction: row
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--orange-500), var(--orange-600));
    color: #000;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
    transition: all 0.2s;
    width: 100%;
}

@media(min-width:640px) {
    .btn-primary {
        width: auto
    }
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-primary svg {
    transition: transform 0.2s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    box-shadow: var(--glass-shadow);
    transition: all 0.2s;
    width: 100%;
}

@media(min-width:640px) {
    .btn-secondary {
        width: auto
    }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-features {
    margin-top: 5rem;
}

.hero-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-feature-card .icon-box {
    margin-bottom: 0;
    width: 3rem;
    height: 3rem;
}

.hero-feature-card h3 {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.hero-feature-card p {
    font-size: 0.875rem;
    color: var(--zinc-400);
}

/* Cases / Metrics */
.metric-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.metric-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 8rem;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    filter: blur(50px);
    transition: background 0.3s;
}

.metric-card:hover .metric-glow {
    background: rgba(249, 115, 22, 0.3);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.metric-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--orange-400);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

/* Features section */
.features-wrap {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

@media(min-width:768px) {
    .features-wrap {
        padding: 3rem
    }
}

.features-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: rgba(234, 88, 12, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media(min-width:1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr
    }
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-item .icon-box {
    margin-bottom: 0;
    width: 3rem;
    height: 3rem;
}

.feature-item h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--zinc-400);
    font-size: 0.875rem;
}

.terminal-box {
    aspect-ratio: 1;
    border-radius: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.terminal-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.1), transparent);
    opacity: 0.5;
}

.terminal-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot-red {
    background: rgba(239, 68, 68, 0.8);
}

.dot-yellow {
    background: rgba(234, 179, 8, 0.8);
}

.dot-green {
    background: rgba(34, 197, 94, 0.8);
}

.terminal-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skel {
    height: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    animation: pulse 2s infinite;
}

.skel-75 {
    width: 75%;
}

.skel-50 {
    width: 50%;
}

.skel-83 {
    width: 83%;
}

.terminal-output {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 0.75rem;
    color: var(--orange-400);
    font-size: 0.875rem;
    font-family: monospace;
    box-shadow: inset 0 0 15px rgba(249, 115, 22, 0.1);
    line-height: 1.8;
}

/* Process */
.process-grid {
    position: relative;
}

.process-line {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    transform: translateY(-50%);
    z-index: 0;
}

@media(min-width:768px) {
    .process-line {
        display: block
    }
}

.process-card {
    position: relative;
    z-index: 10;
}

.process-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.process-icon {
    width: 4rem;
    height: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-400);
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 20px rgba(249, 115, 22, 0.2);
}

.process-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.process-cta {
    margin-top: 4rem;
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(40px);
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: all 0.3s;
}

.faq-item.active {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.faq-btn {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.faq-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--zinc-400);
    flex-shrink: 0;
}

.faq-item.active .faq-btn svg {
    color: var(--orange-500);
    filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.8));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 24rem;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--zinc-400);
    line-height: 1.6;
}

/* Contact */
.contact-wrap {
    background: var(--glass-bg);
    backdrop-filter: blur(60px);
    border-radius: 2.5rem;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
}

.contact-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: rgba(234, 88, 12, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 10;
}

@media(min-width:1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr
    }
}

.contact-info {
    padding: 2rem;
}

@media(min-width:768px) {
    .contact-info {
        padding: 3rem
    }
}

@media(min-width:1024px) {
    .contact-info {
        padding: 4rem
    }
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media(min-width:768px) {
    .contact-info h2 {
        font-size: 2.25rem
    }
}

.contact-info>p {
    font-size: 1.125rem;
    color: var(--zinc-400);
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-detail h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--zinc-400);
}

.contact-form-wrap {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border-left: none;
}

@media(min-width:768px) {
    .contact-form-wrap {
        padding: 3rem
    }
}

@media(min-width:1024px) {
    .contact-form-wrap {
        padding: 4rem;
        border-left: 1px solid var(--glass-border);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-400);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.3);
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, var(--orange-500), var(--orange-600));
    color: #000;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.submit-btn:hover {
    filter: brightness(1.1);
}

.submit-btn svg {
    transition: transform 0.2s;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.75rem;
    color: var(--zinc-500);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(60px);
    color: var(--zinc-400);
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 2rem;
    width: auto;
}

footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

footer a:hover {
    color: var(--orange-400);
    transition: color 0.2s;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@media(min-width:768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left
    }
}

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

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}