@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Inter:wght@100..900&display=swap');

:root {
    --bg: #07111f;
    --bg-soft: #0b1728;
    --card: rgba(255, 255, 255, 0.05);
    --card-strong: rgba(255, 255, 255, 0.08);
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.12);
    --text: #f8f3ea;
    --muted: rgba(248, 243, 234, 0.68);
    --line: rgba(255, 255, 255, 0.09);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --container: 1240px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #091321 100%);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(7, 17, 31, 0.8);
    transition: 0.3s ease;
}

.nav-wrap {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--gold);
    line-height: 1;
}

.brand-subtitle {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(248, 243, 234, 0.4);
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    color: rgba(248, 243, 234, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.nav a:hover {
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: #07111f;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(212, 175, 55, 0.35);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 17, 31, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    z-index: 100;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.mobile-nav .btn {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-heading);
    margin: 0;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
    background: linear-gradient(to bottom right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    margin: 32px 0 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.stats {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--card);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(248, 243, 234, 0.5);
    font-weight: 500;
}

/* Panel Design */
.hero-panel-wrap {
    position: relative;
    perspective: 1000px;
}

.hero-panel {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    box-shadow: var(--shadow);
    padding: 16px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-panel:hover {
    transform: rotateX(2deg) rotateY(-2deg) translateY(-8px);
}

.hero-panel-inner {
    border-radius: calc(var(--radius-xl) - 8px);
    background: #091423;
    border: 1px solid var(--line);
    padding: 32px;
}

.panel-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.panel-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(248, 243, 234, 0.4);
    font-weight: 700;
}

.panel-title {
    font-family: var(--font-heading);
    margin-top: 10px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.badge {
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}

.panel-stack {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.story-box,
.output-box {
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--card);
}

.story-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(248, 243, 234, 0.8);
    font-style: italic;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.meta-box {
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--card);
}

.meta-value {
    font-family: var(--font-heading);
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
}

.output-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.play-icon {
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s;
}

.play-icon:hover {
    transform: scale(1.1);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.chip {
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(7, 17, 31, 0.6);
    color: rgba(248, 243, 234, 0.7);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.floating-note {
    position: absolute;
    left: -20px;
    bottom: -30px;
    border-radius: 24px;
    background: #0c1a2b;
    border: 1px solid var(--line);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    min-width: 260px;
    z-index: 5;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-note .small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(248, 243, 234, 0.35);
    font-weight: 700;
}

.floating-note .big {
    font-family: var(--font-heading);
    margin-top: 8px;
    font-weight: 800;
    font-size: 22px;
    color: var(--gold);
}

/* Sections Common */
.section {
    padding: 80px 0;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 60px;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    font-weight: 800;
}

.section h2 {
    font-family: var(--font-heading);
    margin: 16px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 900;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-no {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.3em;
}

.feature-title {
    font-family: var(--font-heading);
    margin-top: 24px;
    font-size: 24px;
    font-weight: 800;
}

.feature-desc {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(248, 243, 234, 0.6);
}

/* Two Columns Detail */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.detail-card {
    border-radius: 34px;
    padding: 50px;
    border: 1px solid var(--line);
    background: var(--card);
}

.detail-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.info-box {
    border-radius: 20px;
    padding: 20px 24px;
    background: rgba(7, 17, 31, 0.5);
    color: rgba(248, 243, 234, 0.6);
    line-height: 1.8;
    font-size: 15px;
    border: 1px solid var(--line);
}

/* Pricing */
.price-stack {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    border-radius: 24px;
    padding: 32px;
    background: rgba(7, 17, 31, 0.4);
    border: 1px solid var(--line);
    transition: 0.3s;
}

.price-card.featured {
    border-color: rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #0a1625, #0d1d30);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.price-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.price-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
}

.price-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(248, 243, 234, 0.5);
    max-width: 400px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    text-align: right;
}

.price-tag {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(248, 243, 234, 0.4);
    text-align: right;
    font-weight: 700;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill {
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 8px 16px;
    font-size: 12px;
    color: rgba(248, 243, 234, 0.6);
    background: rgba(255, 255, 255, 0.03);
}

/* Final CTA */
.final-cta {
    padding: 60px 0 120px;
}

.final-card {
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.final-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.final-card p {
    margin: 24px 0 0;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(248, 243, 234, 0.6);
}

/* Footer */
.footer {
    padding-bottom: 60px;
    color: rgba(248, 243, 234, 0.3);
    font-size: 13px;
    text-align: center;
    border-top: 1px solid var(--line);
    padding-top: 60px;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .container {
        width: min(var(--container), calc(100% - 64px));
    }

    .hero {
        padding-top: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .final-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-grid .btn {
        margin: 0 auto;
    }

    .floating-note {
        display: none;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 40px));
    }

    .hide-mobile {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .site-header.menu-open .menu-toggle .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle .bar:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-header.menu-open .mobile-nav {
        display: flex;
    }

    .nav {
        display: none;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand-logo {
        height: 38px;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand {
        gap: 12px;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
        margin-top: 20px;
    }

    .stats {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .stat-card {
        padding: 20px;
        border-radius: 16px;
    }

    .stat-value {
        font-size: 24px;
    }

    .hero-panel {
        padding: 10px;
        border-radius: 24px;
    }

    .hero-panel-inner {
        padding: 20px;
        border-radius: 16px;
    }

    .panel-title {
        font-size: 22px;
    }

    .output-box, .story-box {
        padding: 18px;
        border-radius: 14px;
    }

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

    .meta-box {
        padding: 16px;
    }

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

    .feature-card {
        padding: 30px;
        border-radius: 20px;
    }

    .detail-card, .final-card {
        padding: 28px;
        border-radius: 24px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
    }

    .price-top,
    .output-top,
    .panel-header {
        flex-direction: column;
        gap: 12px;
    }

    .price-value,
    .price-tag {
        text-align: left;
    }

    .section {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section h2 {
        font-size: 32px;
    }
}
