﻿@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg: #14161b;
    --bg-alt: #1b1f27;
    --accent: #f07a1f;
    --accent-strong: #ffb36a;
    --mint: #ffc38a;
    --text: #f2f4f8;
    --muted: #b5bfcd;
    --card: #1e2430;
    --card-outline: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 60px rgba(5, 8, 15, 0.45);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

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

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 14px 0;
    isolation: isolate;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(20, 22, 27, 0.95), rgba(20, 22, 27, 0.78));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(5, 8, 15, 0.45);
    backdrop-filter: blur(14px);
    z-index: -1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: transparent;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.logo-text {
    font-size: 1.05rem;
}

.nav {
    display: flex;
    gap: 24px;
    font-weight: 500;
}

.nav a {
    position: relative;
    padding-bottom: 6px;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    align-items: center;
    margin-bottom: 12px;
}

.hero-media {
    perspective: 1200px;
    display: flex;
    justify-content: center;
}

.hero-frame {
    width: min(680px, 100%);
    aspect-ratio: 16 / 9;
    border-radius: 0;
    background: transparent;
    box-shadow: 0 32px 80px rgba(255, 255, 255, 0.16), 0 10px 30px rgba(5, 8, 15, 0.35);
    transform: rotateX(10deg) rotateY(-18deg) skewY(-1.5deg);
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
}

.hero-copy h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 12px 0 16px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent);
    margin: 0;
}

.lead {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--accent);
    color: #1a0d05;
    box-shadow: 0 12px 24px rgba(240, 122, 31, 0.25);
}

.btn.ghost {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent-strong);
}

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

.hero-card {
    background: var(--card);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--card-outline);
    box-shadow: var(--shadow);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.pill {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 179, 106, 0.2);
    color: var(--accent);
    font-weight: 600;
}

.line {
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin-bottom: 12px;
}

.line.short {
    width: 70%;
}

.invoice-total {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    font-size: 1.05rem;
}

.story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    background: var(--bg-alt);
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--card-outline);
    box-shadow: var(--shadow);
}

.story h2 {
    font-family: 'Fraunces', serif;
    margin: 0 0 10px;
}

.story-copy .story-tagline {
    margin-top: 0;
    font-weight: 600;
    color: var(--accent-strong);
}

.story-copy p,
.story-list p {
    color: var(--muted);
    line-height: 1.6;
}

.story-copy .story-em {
    color: var(--text);
    font-weight: 600;
}

.story-list h3 {
    margin-top: 0;
}

.story-list ul {
    margin: 0 0 16px 18px;
    padding: 0;
    color: var(--muted);
    display: grid;
    gap: 10px;
}

.story-list .story-signoff {
    color: var(--text);
    font-weight: 600;
}

.features {
    padding: 20px 0 0;
}

.features,
.story {
    scroll-margin-top: 110px;
}

.features h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 26px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-grid article {
    background: var(--bg-alt);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--card-outline);
}

.feature-grid h3 {
    margin-top: 0;
}

.feature-grid p {
    color: var(--muted);
    line-height: 1.5;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--card-outline);
    color: var(--muted);
}

.site-footer strong {
    color: var(--text);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.page-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.page-hero {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--card-outline);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    font-family: 'Fraunces', serif;
    margin-top: 0;
}

.page-hero p {
    color: var(--muted);
    max-width: 600px;
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.plan {
    background: var(--card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--card-outline);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan .btn {
    margin-top: auto;
    align-self: flex-start;
}

.plan-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-strong);
}

.plan.featured {
    border-color: rgba(226, 181, 127, 0.4);
    box-shadow: 0 18px 38px rgba(226, 181, 127, 0.18);
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.tutorial-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.tutorial-card,
.support-grid article {
    background: var(--card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--card-outline);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tutorial-card p,
.support-grid p {
    color: var(--muted);
}

.tutorial-card .btn,
.support-grid .btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 800px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .page {
        padding: 20px 18px 32px;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
.website-bubble{
    max-width:900px;
    margin:60px auto 0 auto;
    padding:28px 30px;
    background:#ff7a00;
    color:white;
    border-radius:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
    transform:scale(1.03);
}

.bubble-text{
    font-size:20px;
    line-height:1.4;
}

.bubble-btn{
    background:white;
    color:#ff7a00;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;
}

.bubble-btn:hover{
    background:#f4f4f4;
}