:root {
    --background: #090909;
    --surface: #121212;
    --surface-light: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #f1d77a;
    --text: #f7f3ea;
    --muted: #aaa59a;
    --border: rgba(212, 175, 55, 0.22);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 30%),
        linear-gradient(180deg, #0d0d0d 0%, var(--background) 100%);
}

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

.nav {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.2s ease;
}

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

.page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: calc(100vh - 160px);
}

.hero {
    min-height: 68vh;
    padding: 110px 0 90px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "ELITE LEGACY MARKETING";
    display: inline-block;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.25em;
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        var(--gold-light) 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-buttons {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
    color: #111111;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.24);
}

.button.ghost {
    background: transparent;
    color: var(--gold-light);
}

.button.small {
    padding: 9px 14px;
    font-size: 0.9rem;
}

.features {
    padding: 20px 0 90px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        ),
        var(--surface);
    box-shadow: var(--shadow);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -50px;
    bottom: -50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.58);
}

.card h2,
.card h3 {
    margin-top: 0;
    color: var(--gold-light);
}

.card p {
    color: var(--muted);
    line-height: 1.7;
}

.auth-card,
.generator-form,
.price-card,
.stat,
.empty,
.notice {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.auth-card {
    max-width: 520px;
    margin: 70px auto;
    padding: 34px;
}

.form-stack {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.generator-form {
    padding: 28px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    background: #0d0d0d;
    color: var(--text);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.grid {
    display: grid;
    gap: 20px;
}

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

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-heading,
.section-title,
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.page-heading {
    padding: 55px 0 25px;
}

.page-heading h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    color: var(--gold-light);
}

.section {
    padding: 40px 0 70px;
}

.stat {
    padding: 24px;
}

.stat span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.stat strong {
    color: var(--gold-light);
    font-size: 2rem;
}

.pill,
.badge {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.muted {
    color: var(--muted);
}

.alert {
    margin-top: 12px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.delete-button {
    border: 0;
    background: transparent;
    color: #e67f7f;
    font-weight: 700;
    cursor: pointer;
}

footer {
    padding: 35px 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    color: var(--muted);
    text-align: center;
}

@media (max-width: 850px) {
    .features,
    .grid.three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .nav {
        align-items: flex-start;
    }

    .nav-links {
        justify-content: flex-end;
        gap: 10px;
        font-size: 0.88rem;
    }

    .hero {
        padding: 80px 0 65px;
    }

    .features,
    .grid.two,
    .grid.three,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .page-heading,
    .section-title {
        align-items: flex-start;
        flex-direction: column;
    }
}
.idea-card h4{
    margin-top:24px;
    margin-bottom:8px;
    color:var(--gold);
    font-size:15px;
}

.idea-card hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:20px 0;
}

.idea-card p{
    line-height:1.8;
    white-space:pre-wrap;
}

.idea-card{
    transition:.25s;
}

.idea-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.copy-btn{
    margin-top:10px;
    padding:8px 14px;
    border:none;
    border-radius:10px;
    background:var(--gold);
    color:#111;
    cursor:pointer;
    font-weight:600;
}
.content-section {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.content-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.content-section-heading h4 {
    margin: 0;
}

.copy-content {
    margin-bottom: 0;
}

.copy-btn {
    margin: 0;
    padding: 7px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
}

.copy-btn:hover {
    background: var(--gold);
    color: #111111;
}

.copy-btn.copied {
    background: var(--gold);
    color: #111111;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.calendar-card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.calendar-card h3 {
    margin: 18px 0;
    color: var(--gold-light);
}

.calendar-card p {
    color: var(--muted);
    line-height: 1.7;
}

.calendar-day {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.empty {
    padding: 45px;
    text-align: center;
}

@media (max-width: 900px) {
    .calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

.featured {
    border: 3px solid #f4d03f;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(244, 208, 63, 0.25);
    position: relative;
    z-index: 10;
}

.plan-name {
    margin: 12px 0 6px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-light);
}

.subtitle {
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.6;
}

.popular {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}