:root {
    --bg: #0a0e17;
    --bg-2: #111827;
    --ink: #e8ecf4;
    --ink-soft: #94a3b8;
    --panel: rgba(17, 24, 39, 0.85);
    --line: rgba(255, 255, 255, 0.08);
    --brand: #ff792e;
    --brand-2: #ff9a56;
    --accent: #f97316;
    --glow: rgba(255, 121, 46, 0.15);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Manrope, Segoe UI, Tahoma, sans-serif;
    color: var(--ink);
    background: var(--bg);
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Space Grotesk", Segoe UI, Tahoma, sans-serif;
    line-height: 1.1;
    margin: 0;
}

p {
    margin: 0;
    line-height: 1.6;
}

main,
.site-header,
.site-footer {
    width: min(1120px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 121, 46, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 121, 46, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.orb-a {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 121, 46, 0.18) 0%, rgba(255, 121, 46, 0) 70%);
}

.orb-b {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0) 70%);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 8px;
}

.brand-badge {
    display: inline-block;
    border: 1px solid var(--line);
    background: rgba(255, 121, 46, 0.1);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.brand h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
}

.hero {
    margin-top: 22px;
    padding: 40px;
    border-radius: 22px;
    background: linear-gradient(170deg, rgba(17, 24, 39, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    transform: translateY(16px);
    opacity: 0;
    animation: rise 0.7s ease forwards;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--brand);
}

.hero h2 {
    margin-top: 14px;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    max-width: 860px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy {
    margin-top: 16px;
    color: var(--ink-soft);
    max-width: 780px;
    font-size: 1.05rem;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #64748b;
}

.panel {
    margin-top: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.7s ease forwards;
}

.panel:nth-of-type(2) {
    animation-delay: 0.08s;
}

.panel:nth-of-type(3) {
    animation-delay: 0.15s;
}

.panel:nth-of-type(4) {
    animation-delay: 0.22s;
}

.panel h3 {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    margin-bottom: 16px;
    color: #fff;
}

.feature-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 121, 46, 0.3);
    transform: translateY(-3px);
}

.feature-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #fff;
}

.feature-card p {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

code {
    font-family: "Consolas", "Courier New", monospace;
    background: rgba(255, 121, 46, 0.12);
    color: var(--brand);
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.9em;
}

.use-cases ul {
    margin: 0;
    padding-left: 20px;
    color: var(--ink-soft);
    display: grid;
    gap: 10px;
}

.use-cases li::marker {
    color: var(--brand);
}

.pricing-panel {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr 0.8fr;
}

.pricing-copy ol {
    margin-top: 14px;
    padding-left: 20px;
    display: grid;
    gap: 7px;
    color: var(--ink-soft);
}

.price-card {
    border: 1px solid rgba(255, 121, 46, 0.2);
    border-radius: 16px;
    padding: 24px;
    background: linear-gradient(140deg, rgba(255, 121, 46, 0.08) 0%, rgba(255, 121, 46, 0.03) 100%);
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
}

.price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.price-detail {
    margin: 8px 0 18px;
    color: var(--ink-soft);
}

.small-note {
    margin-top: 10px;
    font-size: 0.82rem;
    color: #64748b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    padding: 12px 20px;
    color: #fff;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
    box-shadow: 0 8px 24px rgba(255, 121, 46, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(255, 121, 46, 0.5);
}

.btn-secondary {
    padding: 12px 20px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-header {
    padding: 10px 16px;
    color: var(--brand);
    border: 1px solid rgba(255, 121, 46, 0.3);
    background: rgba(255, 121, 46, 0.08);
}

.btn-header:hover {
    background: rgba(255, 121, 46, 0.15);
}

.site-footer {
    margin: 24px auto 34px;
    padding: 14px 0;
    color: var(--ink-soft);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--brand);
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .pricing-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero,
    .panel {
        padding: 22px;
        border-radius: 16px;
    }

    .hero h2 {
        font-size: clamp(1.45rem, 7vw, 2.2rem);
    }

    .showcase-flow {
        gap: 32px;
    }

    .showcase-step {
        padding: 0;
    }
}

/* ================================================================
   Hero Preview Image
   ================================================================ */
.hero-preview {
    margin-top: 28px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 121, 46, 0.08);
    position: relative;
}

.hero-preview::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 121, 46, 0.2), rgba(99, 102, 241, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.hero-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* ================================================================
   Showcase Section — "See It In Action"
   ================================================================ */
.showcase-panel {
    overflow: visible;
}

.showcase-intro {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 640px;
}

.showcase-flow {
    display: grid;
    gap: 40px;
}

.showcase-step {
    position: relative;
    padding-left: 48px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", Segoe UI, Tahoma, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(255, 121, 46, 0.35);
    flex-shrink: 0;
}

.showcase-img-wrap {
    margin: 12px 0 16px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 121, 46, 0.15);
}

.showcase-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.showcase-step h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 6px;
}

.showcase-step p {
    color: var(--ink-soft);
    font-size: 0.96rem;
    max-width: 720px;
}
