:root {
    --bg: #0a0e27;
    --bg-2: #0e1332;
    --bg-3: #141a3d;
    --gold: #c9a96e;
    --gold-bright: #e5c389;
    --silver: #e8e8f0;
    --silver-dim: #a8acc0;
    --text: #e8e8f0;
    --text-dim: #a8acc0;
    --border: rgba(201, 169, 110, 0.2);
    --border-bright: rgba(201, 169, 110, 0.5);
    --radius: 14px;
    --maxw: 1120px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(201, 169, 110, 0.08), transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(120, 140, 255, 0.06), transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 169, 110, 0.04), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

#stars-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow { max-width: 760px; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--silver);
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(10, 14, 39, 0.75);
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--silver);
    letter-spacing: 0.05em;
}
.logo-mark {
    color: var(--gold);
    font-size: 1.2em;
    text-shadow: 0 0 12px rgba(201, 169, 110, 0.6);
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--silver-dim);
    font-size: 0.92rem;
    font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }

@media (max-width: 760px) {
    .nav-links { display: none; }
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 140px;
    text-align: center;
    overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border-bright);
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 32px;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-title .accent {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 40px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-meta {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--silver-dim);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 620px;
    height: 620px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12), transparent 60%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all .25s;
    border: 1px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--bg);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
    color: var(--bg);
}
.btn-ghost {
    background: transparent;
    color: var(--silver);
    border-color: var(--border-bright);
}
.btn-ghost:hover {
    background: rgba(201, 169, 110, 0.08);
    color: var(--gold-bright);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}
.section-alt {
    background: linear-gradient(180deg, transparent, rgba(14, 19, 50, 0.6), transparent);
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 20px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 18px auto 0;
}
.section-lead {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    padding: 36px 28px;
    background: linear-gradient(180deg, rgba(20, 26, 61, 0.6), rgba(14, 19, 50, 0.3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s;
}
.card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
}
.card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* Feature list */
.feature-list {
    list-style: none;
}
.feature-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .bullet {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1.4;
}
.feature-list strong {
    color: var(--silver);
    font-weight: 500;
    font-size: 1rem;
}
.feature-list div { color: var(--text-dim); font-size: 0.92rem; }

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.step {
    padding: 40px 28px;
    background: rgba(14, 19, 50, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}
.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 12px;
    line-height: 1;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* Price */
.price-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 44px;
    background: linear-gradient(180deg, rgba(20, 26, 61, 0.8), rgba(14, 19, 50, 0.5));
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(201, 169, 110, 0.08);
    position: relative;
}
.price-card::before {
    content: '✦';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    padding: 0 14px;
    color: var(--gold);
    font-size: 1.4rem;
}
.price-head {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.price-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.price-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--silver);
    line-height: 1;
}
.price-amount span {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-left: 4px;
}
.price-note {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 12px;
}
.price-list {
    list-style: none;
    margin-bottom: 36px;
}
.price-list li {
    padding: 10px 0;
    color: var(--text);
    font-size: 0.97rem;
}

.simpleshop-wrapper {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.simpleshop-placeholder {
    padding: 36px 24px;
    border: 1px dashed var(--border-bright);
    border-radius: var(--radius);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}
.simpleshop-placeholder strong { color: var(--gold); display: block; margin-bottom: 8px; }
.simpleshop-placeholder code {
    background: rgba(0,0,0,0.3);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--gold-bright);
    font-size: 0.85rem;
}

/* FAQ */
.faq { margin-top: 40px; }
.faq details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 14px;
    background: rgba(14, 19, 50, 0.4);
    transition: border-color .2s;
}
.faq details[open] { border-color: var(--border-bright); }
.faq summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--silver);
    list-style: none;
    position: relative;
    padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.6rem;
    transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq p {
    margin-top: 14px;
    color: var(--text-dim);
    font-size: 0.97rem;
}

/* Contact form */
.contact-form {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}
.contact-form label {
    display: block;
}
.contact-form span {
    display: block;
    margin-bottom: 8px;
    color: var(--silver-dim);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(14, 19, 50, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.97rem;
    transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-form button { justify-self: start; }

/* Footer */
.site-footer {
    margin-top: 60px;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: rgba(10, 14, 39, 0.8);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-brand .logo-mark, .footer-brand .logo-text {
    display: inline;
}
.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 8px;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-col ul {
    list-style: none;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-dim); font-size: 0.92rem; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--silver-dim);
    font-size: 0.85rem;
}

@media (max-width: 760px) {
    .hero { padding: 80px 0 100px; }
    .section { padding: 70px 0; }
    .price-card { padding: 40px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero-meta { gap: 16px; font-size: 0.82rem; }
}
