/* Z-DataWorks — editorial / fashion landing */

:root {
    --noir: #0a0908;
    --ink: #141110;
    --charcoal: #1c1917;
    --mist: #a8a29e;
    --bone: #e7e5e4;
    --cream: #faf7f2;
    --gold: #c9a86c;
    --gold-bright: #e8d5b0;
    --gold-deep: #8b7355;
    --wine: #5c2c2f;
    --wine-glow: rgba(92, 44, 47, 0.35);
    --champagne: rgba(201, 168, 108, 0.12);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-ui: "Syne", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    background: var(--noir);
    color: var(--bone);
    overflow-x: hidden;
    line-height: 1.65;
    font-weight: 400;
}

.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ink);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-deep);
    border-radius: 4px;
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-deep) var(--ink);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
    z-index: 10001;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.12s ease-out;
}

/* Nav */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.landing-nav.scrolled {
    background: rgba(10, 9, 8, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 108, 0.12);
    padding: 0.75rem 0;
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    border: 1px solid rgba(201, 168, 108, 0.45);
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.logo-mark--footer {
    font-size: 1.35rem;
    width: 2rem;
    height: 2rem;
}

.logo-text {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-nav {
    padding: 0.65rem 1.25rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-nav.btn-secondary {
    color: var(--mist);
    background: transparent;
    border: 1px solid rgba(231, 229, 228, 0.14);
}

.btn-nav.btn-secondary:hover {
    color: var(--cream);
    border-color: rgba(201, 168, 108, 0.4);
}

.btn-nav.btn-primary {
    color: var(--noir);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border: 1px solid transparent;
}

.btn-nav.btn-primary:hover {
    filter: brightness(1.06);
    box-shadow: 0 0 24px rgba(201, 168, 108, 0.22);
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    padding: 6.5rem 1.75rem 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(92, 44, 47, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 168, 108, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, var(--ink) 0%, var(--noir) 45%, var(--noir) 100%);
}

.hero-diagonal {
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 140%;
    background: linear-gradient(
        155deg,
        transparent 40%,
        rgba(201, 168, 108, 0.03) 50%,
        transparent 60%
    );
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 1.1rem;
    background: rgba(28, 25, 23, 0.65);
    border: 1px solid rgba(201, 168, 108, 0.18);
    max-width: 11rem;
    animation: float 7s ease-in-out infinite;
}

.floating-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 700;
}

.floating-card span:last-child {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--mist);
    line-height: 1.35;
}

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

.hero-layout {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy {
    text-align: left;
}

.hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 4.15rem);
    font-weight: 600;
    line-height: 1.02;
    margin-bottom: 1.5rem;
    color: var(--cream);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.9s ease 0.05s both;
}

.hero-title-em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-bright);
}

.hero-description {
    font-size: 1.02rem;
    color: var(--mist);
    max-width: 34rem;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.75rem;
    animation: fadeInUp 0.9s ease 0.25s both;
}

.btn-hero {
    padding: 0.95rem 1.65rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-hero.btn-primary {
    color: var(--noir);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border: none;
    box-shadow: 0 12px 40px rgba(201, 168, 108, 0.18);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(201, 168, 108, 0.28);
}

.btn-hero.btn-secondary {
    color: var(--bone);
    background: transparent;
    border: 1px solid rgba(231, 229, 228, 0.2);
}

.btn-hero.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--cream);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.35s both;
}

.stat-item { text-align: left; }
.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-bright);
    line-height: 1;
}
.stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mist);
    margin-top: 0.35rem;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 2.25rem;
    background: rgba(201, 168, 108, 0.2);
}

/* Mockup / reel */
.hero-visual {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-mockup {
    position: relative;
}

.mockup-window {
    background: rgba(20, 17, 16, 0.85);
    border: 1px solid rgba(201, 168, 108, 0.2);
    overflow: hidden;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid rgba(201, 168, 108, 0.12);
    background: rgba(28, 25, 23, 0.9);
}

.mockup-dots {
    display: flex;
    gap: 0.45rem;
}
.mockup-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.mockup-dots span:nth-child(1) { background: #6b4c3d; }
.mockup-dots span:nth-child(2) { background: var(--gold-deep); }
.mockup-dots span:nth-child(3) { background: #3d3532; }

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 600;
}

.mockup-content {
    padding: 1.5rem 1.25rem 1.75rem;
}

.film-reel {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.film-frame {
    flex: 1;
    min-width: 0;
    aspect-ratio: 9 / 16;
    max-height: 140px;
    background: linear-gradient(180deg, #2a2523 0%, #1a1816 100%);
    border: 1px solid rgba(201, 168, 108, 0.15);
    position: relative;
}

.film-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.15) 3px,
        rgba(0, 0, 0, 0.15) 4px
    );
    opacity: 0.4;
    pointer-events: none;
}

.film-frame--accent {
    border-color: rgba(201, 168, 108, 0.45);
    box-shadow: 0 0 20px rgba(201, 168, 108, 0.08);
}

.mockup-tagline {
    font-size: 0.75rem;
    color: var(--mist);
    line-height: 1.55;
    margin-bottom: 1.35rem;
    font-style: italic;
    font-family: var(--font-display);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.mockup-stat-card {
    padding: 1rem 0.65rem;
    text-align: center;
    border: 1px solid rgba(201, 168, 108, 0.12);
    background: rgba(201, 168, 108, 0.04);
    animation: fadeInUp 0.55s ease backwards;
}

.mockup-stat-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-bright);
    margin-bottom: 0.25rem;
}

.mockup-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features */
.features {
    padding: 6.5rem 1.75rem 7rem;
    background: linear-gradient(180deg, var(--noir) 0%, var(--charcoal) 35%, var(--noir) 100%);
    border-top: 1px solid rgba(201, 168, 108, 0.08);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-bright);
}

.section-description {
    font-size: 1.05rem;
    color: var(--mist);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.25rem;
}

.feature-card {
    padding: 2rem 1.75rem;
    background: rgba(20, 17, 16, 0.5);
    border: 1px solid rgba(231, 229, 228, 0.06);
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card--visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(201, 168, 108, 0.22);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(201, 168, 108, 0.2);
}

.feature-icon.wine { color: #d4a5a8; background: var(--wine-glow); }
.feature-icon.gold { color: var(--gold-bright); background: var(--champagne); }
.feature-icon.champagne { color: #f5e6d3; background: rgba(201, 168, 108, 0.08); }
.feature-icon.noir { color: var(--bone); background: rgba(255, 255, 255, 0.04); }
.feature-icon.rose { color: #c9a8a8; background: rgba(201, 168, 150, 0.06); }
.feature-icon.pearl { color: var(--cream); background: rgba(250, 247, 242, 0.05); }

.feature-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--cream);
}

.feature-description {
    font-size: 0.92rem;
    color: var(--mist);
    line-height: 1.65;
}

/* CTA */
.cta {
    padding: 5rem 1.75rem 6rem;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

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

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.cta-shape-1 {
    width: 320px;
    height: 320px;
    background: var(--wine);
    top: -120px;
    left: -80px;
}

.cta-shape-2 {
    width: 280px;
    height: 280px;
    background: var(--gold-deep);
    bottom: -100px;
    right: -60px;
    opacity: 0.15;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-illustration {
    max-width: 260px;
    margin: 0 auto 2rem;
    color: var(--cream);
}

.cta-illustration svg {
    width: 100%;
    height: auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw,2.85rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.cta-title em {
    font-style: italic;
    color: var(--gold-bright);
}

.cta-description {
    font-size: 1.05rem;
    color: var(--mist);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
    margin-bottom: 2.25rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--mist);
}

.cta-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-cta {
    padding: 1rem 2rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--noir);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(201, 168, 108, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 36px rgba(201, 168, 108, 0.15);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(201, 168, 108, 0.25);
}

/* Footer */
.footer {
    padding: 2.5rem 1.75rem;
    border-top: 1px solid rgba(201, 168, 108, 0.1);
    background: var(--noir);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.logo-text-footer {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
}

.footer-text {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--mist);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-copy {
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .stat-item {
        text-align: center;
    }
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 5.5rem;
    }
    .hero-title {
        font-size: 2.35rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .stat-divider {
        width: 3rem;
        height: 1px;
    }
    .mockup-stats {
        grid-template-columns: 1fr;
    }
    .film-frame {
        max-height: 100px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}
