﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #ffffff;
    --bg2: #efeae2;
    --ink: #1a1714;
    --ink2: #6b6560;
    --ink3: #b8b0a6;
    --gold: #b8913a;
    --gold-light: #e8d5a3;
    --gold-pale: #f5edd8;
    --line: rgba(26,23,20,0.1);
    --line2: rgba(26,23,20,0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Figtree", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 1000;
    }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    backdrop-filter: blur(12px);
    background: var(--bg);
    border-bottom: 0.5px solid var(--line2);
}

.nav-logo {
    font-family: "Figtree", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.02em;
    font-weight:bold;
}

    .nav-logo span {
        color: var(--gold);
    }

    .nav-logo img {
        width: 35px;
        vertical-align: middle;
        padding-right: 5px;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

    .nav-links a {
        font-size: 13px;
        font-weight: 400;
        color: var(--ink2);
        text-decoration: none;
        letter-spacing: 0.03em;
        transition: color 0.18s;
    }

        .nav-links a:hover {
            color: var(--ink);
        }

.nav-cta {
    padding: 8px 20px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink) !important;
    transition: all 0.2s !important;
}

    .nav-cta:hover {
        background: var(--ink) !important;
        color: var(--bg) !important;
    }

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero-deco {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Figtree", sans-serif;
    font-size: clamp(320px, 38vw, 520px);
    font-weight: 300;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(184,145,58,0.12);
    user-select: none;
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.1s forwards;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--gold);
    }

.hero-h1 {
    font-family: "Figtree", sans-serif;
    font-size: clamp(52px, 7.5vw, 110px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 780px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.25s forwards;
}

    .hero-h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink2);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.55s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--ink);
    color: var(--bg);
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.22s;
    border: none;
}

    .btn-primary:hover {
        background: var(--gold);
        transform: translateY(-1px);
    }

    .btn-primary svg {
        transition: transform 0.2s;
    }

    .btn-primary:hover svg {
        transform: translateX(3px);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: var(--ink2);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.18s;
}

    .btn-ghost:hover {
        color: var(--ink);
    }

.hero-proof {
    margin-top: 72px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.proof-avatars {
    display: flex;
}

.proof-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background: var(--bg2);
    margin-left: -8px;
    font-family: "Figtree", sans-serif;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink2);
}

    .proof-av:first-child {
        margin-left: 0;
    }

.proof-text {
    font-size: 12px;
    color: var(--ink3);
}

    .proof-text strong {
        color: var(--ink2);
        font-weight: 500;
    }

.rule {
    border: none;
    border-top: 0.5px solid var(--line);
    margin: 0 48px;
}

.section {
    padding: 100px 48px;
}

/* Sopra 1440px: blocca hero/section/demo/quote/cta a 1440px e centra (header/footer restano full-width). */
@media (min-width: 1440px) {
    .hero,
    .section,
    .demo-section,
    .quote-section,
    .cta-section {
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 48px;
}

    .section-label::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--ink3);
    }

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 0.5px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
}

.how-step {
    background: var(--bg);
    padding: 40px 36px;
    transition: background 0.25s;
}

    .how-step:hover {
        background: var(--gold-pale);
    }

.step-num {
    font-family: "Figtree", sans-serif;
    font-size: 68px;
    font-weight: 300;
    color: var(--line);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    transition: color 0.25s;
}

.how-step:hover .step-num {
    color: var(--gold-light);
}

.step-title {
    font-family: "Figtree", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
}

.step-body {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--ink2);
    line-height: 1.7;
}

.demo-section {
    padding: 0 48px 100px;
}

.demo-wrap {
    background: #16140f;
    border-radius: 16px;
    overflow: hidden;
    border: 0.5px solid rgba(255,255,255,0.06);
}

.demo-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    background: #0f0e0a;
}

.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
}

    .demo-url span {
        color: rgba(255,255,255,0.5);
    }

.demo-inner {
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.demo-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.demo-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184,145,58,0.15);
    border: 1px solid rgba(184,145,58,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Figtree", sans-serif;
    font-size: 18px;
    color: #c4a96d;
}
    .demo-av img {
        width: 100%;
        border-radius: 25px;
    }

.demo-name {
    font-size: 14px;
    font-weight: 500;
    color: #f0ede8;
}

.demo-role {
    font-size: 11px;
    color: #5a5753;
    margin-top: 1px;
}

.demo-headline {
    font-family: "Figtree", sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: #f0ede8;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

    .demo-headline em {
        font-style: italic;
        color: #c4a96d;
    }

.demo-desc {
    font-size: 12px;
    color: #5a5753;
    font-weight: 300;
}

.demo-chat {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dchat-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .dchat-msg.user {
        flex-direction: row-reverse;
    }

.dchat-av {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 500;
    margin-top: 2px;
}

.dchat-msg.ai .dchat-av {
    background: rgba(184,145,58,0.12);
    border: 0.5px solid rgba(184,145,58,0.2);
    color: #c4a96d;
    font-family: "Figtree", sans-serif;
    font-size: 11px;
}

.dchat-msg.user .dchat-av {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
}

.dchat-bubble {
    max-width: 82%;
    padding: 9px 13px;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 300;
}

.dchat-msg.ai .dchat-bubble {
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(255,255,255,0.07);
    border-radius: 3px 12px 12px 12px;
    color: #d0ccc6;
}

.dchat-msg.user .dchat-bubble {
    background: rgba(184,145,58,0.08);
    border: 0.5px solid rgba(184,145,58,0.15);
    border-radius: 12px 3px 12px 12px;
    color: #c4a96d;
}

.dchat-input {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 8px 10px 8px 14px;
    margin-top: 6px;
}

    .dchat-input span {
        flex: 1;
        font-size: 11px;
        color: rgba(255,255,255,0.15);
        font-weight: 300;
    }

.dchat-send {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: #b8913a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--line);
    border: 0.5px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
}

.use-card {
    background: var(--bg);
    padding: 36px 32px;
    transition: background 0.2s;
}

    .use-card:hover {
        background: var(--gold-pale);
    }

.use-icon {
    font-size: 22px;
    margin-bottom: 16px;
    display: block;
}

.use-title {
    font-family: "Figtree", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}

.use-body {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink2);
    line-height: 1.7;
}

.quote-section {
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Figtree", sans-serif;
    font-size: clamp(120px, 20vw, 220px);
    font-weight: 300;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--line);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.big-quote {
    font-family: "Figtree", sans-serif;
    font-size: clamp(28px, 4.5vw, 58px);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    max-width: 760px;
    margin: 0 auto 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.quote-attribution {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.price-card {
    border: 0.5px solid var(--line);
    border-radius: 12px;
    padding: 32px 28px;
    background: var(--bg);
    transition: all 0.25s;
    position: relative;
}

    .price-card:hover {
        border-color: var(--gold);
        transform: translateY(-3px);
    }

    .price-card.featured {
        background: var(--ink);
        border-color: var(--ink);
    }

        .price-card.featured:hover {
            border-color: var(--gold);
        }

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-plan {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 16px;
}

.price-card.featured .price-plan {
    color: rgba(255,255,255,0.4);
}

.price-amount {
    font-family: "Figtree", sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}

.price-card.featured .price-amount {
    color: var(--bg);
}

.price-period {
    font-size: 12px;
    color: var(--ink3);
    margin-bottom: 24px;
}

.price-card.featured .price-period {
    color: rgba(255,255,255,0.3);
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

    .price-features li {
        font-size: 13px;
        font-weight: 300;
        color: var(--ink2);
        padding: 6px 0;
        border-bottom: 0.5px solid var(--line2);
        display: flex;
        align-items: center;
        gap: 8px;
    }

.price-card.featured .price-features li {
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.08);
}

.price-features li::before {
    content: '—';
    color: var(--ink3);
    font-size: 11px;
    flex-shrink: 0;
}

.price-card.featured .price-features li::before {
    color: var(--gold);
}

.price-btn {
    display: block;
    text-align: center;
    padding: 11px 20px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor:pointer;
}

    .price-btn.outline {
        border: 1px solid var(--line);
        color: var(--ink2);
    }

        .price-btn.outline:hover {
            border-color: var(--ink);
            color: var(--ink);
        }

    .price-btn.solid {
        background: var(--gold);
        color: white;
        border: 1px solid var(--gold);
        cursor: pointer;
    }

        .price-btn.solid:hover {
            background: var(--ink);
            border-color: var(--gold);
        }

.cta-section {
    padding: 100px 48px;
    text-align: center;
    background: var(--bg2);
    border-top: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
}

.cta-h2 {
    font-family: "Figtree", sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

    .cta-h2 em {
        font-style: italic;
        color: var(--gold);
    }

.cta-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--ink2);
    margin-bottom: 40px;
}

.cta-input-row {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid var(--ink);
    border-radius: 100px;
    overflow: hidden;
    background: white;
}

.cta-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 22px;
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--ink);
    background: transparent;
}

    .cta-input::placeholder {
        color: var(--ink3);
    }

.cta-submit {
    padding: 0 24px;
    background: var(--ink);
    color: var(--bg);
    border: none;
    font-family: "Figtree", sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    transition: background 0.2s;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

    .cta-submit:hover {
        background: var(--gold);
    }

footer {
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.5px solid var(--line);
    flex-direction: column;
    row-gap: 2px;
}
.footer-link {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink2);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.18s;
}
.footer-logo {
    font-family: "Figtree", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--ink2);
    text-decoration: none;
}

    .footer-logo span {
        color: var(--gold);
    }

.footer-copy {
    font-size: 11.5px;
    color: var(--ink3);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

@media (max-width: 900px) {
    nav {
        padding: 18px 24px;
    }

    .nav-links li {
        display: none;
    }

        .nav-links li:last-child {
            display: block;
        }

    .hero {
        padding: 60px 24px 60px;
    }

    .hero-deco {
        display: none;
    }

    .section, .demo-section, .quote-section, .cta-section {
        padding: 64px 24px;
    }

    .rule {
        margin: 0 24px;
    }

    .how-grid {
        grid-template-columns: 1fr 1fr;
    }

    .demo-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .use-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}
