/* ===== The Kingdom System — Global Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a88b3a;
    --dark: #0d1520;
    --dark-card: #111d2c;
    --dark-surface: #1a2535;
    --navy: #1a2535;
    --cream: #F5F0E8;
    --text-muted: #8a9ab5;
    --text-light: #c4cedb;
}

body {
    font-family: 'Carlito', 'Calibri', sans-serif;
    background-color: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-weight: 700;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(13, 21, 32, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 600;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

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

.nav-cta {
    padding: 0.5rem 1.2rem !important;
    background: var(--gold) !important;
    color: var(--dark) !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s !important;
    letter-spacing: 0.03em !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: 0.2s;
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13, 21, 32, 0.97);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }
    .nav-links.open { display: flex; }
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-tagline {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-products {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-product-tag {
    padding: 0.6rem 1.5rem;
    background: var(--dark-surface);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.hero-product-tag:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    color: var(--cream);
}

.hero-product-tag strong { color: var(--gold); }

/* ===== Countdown Section ===== */
.countdown-section {
    padding: 4rem 2rem 5rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 37, 53, 0.6) 50%, transparent 100%);
}

.countdown-inner {
    max-width: 700px;
    margin: 0 auto;
}

.countdown-section h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-num {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 700;
}

.countdown-sep {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.3);
    margin-top: -1.2rem;
}

.countdown-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 480px) {
    .countdown { gap: 0.4rem; }
    .countdown-unit { min-width: 60px; }
    .countdown-sep { font-size: 1.6rem; margin-top: -0.8rem; }
}

/* ===== Section Divider ===== */
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.4;
}

/* ===== Products Section ===== */
.products {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.products h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.15;
    max-width: 600px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.product-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    display: block;
}

.product-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::after { opacity: 1; }

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.product-price-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.product-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-card .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.product-card .tag {
    padding: 0.3rem 0.8rem;
    background: rgba(26, 37, 53, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--gold-light);
}

.card-cta {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
}

/* ===== Features Grid ===== */
.features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 37, 53, 0.4) 50%, transparent 100%);
}

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.features h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.features-subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.feature-item {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.feature-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--cream);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== Email Capture / Notify ===== */
.notify {
    padding: 6rem 2rem;
    background: var(--dark-surface);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.notify-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.notify h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.notify-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.notify-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-row input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    color: var(--cream);
    font-size: 1rem;
    font-family: 'Carlito', 'Calibri', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.form-row input[type="email"]:focus {
    border-color: var(--gold);
}

.form-row input[type="email"]::placeholder {
    color: var(--text-muted);
}

.form-row button {
    padding: 0.85rem 1.8rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Carlito', 'Calibri', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.form-row button:hover { background: var(--gold-light); }
.form-row button:disabled { opacity: 0.6; cursor: wait; }

.form-select-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.radio-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: var(--gold);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.4em;
}

.form-message.success { color: #4ade80; }
.form-message.error { color: #f87171; }

.subscriber-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.proof-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

@media (max-width: 520px) {
    .form-row {
        flex-direction: column;
    }
    .form-row button {
        width: 100%;
    }
}

/* ===== Vision / Quote Block ===== */
.vision {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.vision::before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.vision-quote {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    max-width: 750px;
    margin: 0 auto 2rem;
    position: relative;
    color: var(--cream);
}

.vision-quote span { color: var(--gold); }

.vision-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Footer ===== */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

footer p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ===== Product Detail Page Styles ===== */
.page-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: radial-gradient(ellipse at 50% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.page-hero .hero-badge { margin-top: 0; }

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.page-hero h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    line-height: 1.3;
}

.cta-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.cta-btn:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-1px);
}

/* ===== Detail Sections ===== */
.detail-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.detail-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.detail-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 14px;
    padding: 2rem;
    transition: border-color 0.3s;
}

.detail-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.detail-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--cream);
}

.detail-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.detail-card .card-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Who It's For */
.audience-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(26, 37, 53, 0.3), transparent);
}

.audience-inner {
    max-width: 800px;
    margin: 0 auto;
}

.audience-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 12px;
}

.audience-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.audience-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.audience-item strong {
    color: var(--cream);
}

/* Inline CTA */
.inline-cta {
    text-align: center;
    padding: 5rem 2rem;
}

.inline-cta p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* ===== Available Now Badge (gold pill) ===== */
.available-now-badge {
    display: inline-block;
    padding: 0.45rem 1.4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3), 0 0 60px rgba(201, 168, 76, 0.1);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.3), 0 0 60px rgba(201, 168, 76, 0.1); }
    50% { box-shadow: 0 0 25px rgba(201, 168, 76, 0.45), 0 0 80px rgba(201, 168, 76, 0.15); }
}

/* ===== Amazon CTA Button ===== */
.amazon-btn {
    display: inline-block;
    padding: 0.95rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
    letter-spacing: 0.02em;
}

.amazon-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
}

/* ===== Homepage Notebook Banner ===== */
.notebook-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--cream);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.notebook-banner:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--cream);
}

.notebook-banner .banner-pill {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Product card status labels */
.product-status-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.product-status-badge.available {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
}

.product-status-badge.coming-soon {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
}

/* Secondary CTA link */
.secondary-cta-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: var(--dark-surface);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.secondary-cta-link:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ===== Pull Quote Block ===== */
.pull-quote {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(26, 37, 53, 0.5), transparent);
    position: relative;
}

.pull-quote blockquote {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.4;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    color: var(--cream);
    position: relative;
}

.pull-quote blockquote::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: -1.5rem;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    font-weight: 700;
}

.pull-quote cite {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
}

/* ===== Ecosystem Section ===== */
.ecosystem {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.ecosystem h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.ecosystem p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ecosystem .closing-line {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
}

@media (max-width: 520px) {
    .notebook-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .pull-quote blockquote::before { display: none; }
}

/* ===== Hero Split Layout (Notebook Cover + Content) ===== */
.hero.hero-split {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 5rem;
    padding: 9rem 5rem 7rem;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 100vh;
    width: 100%;
}

.hero.hero-split::before { display: none; }

.hero-cover-col {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 520px;
}

.hero-content-col .notebook-banner {
    align-self: flex-start;
    margin-bottom: 2rem;
}

.hero-content-col .hero-tagline {
    text-align: left;
}

.hero-content-col .hero-sub {
    text-align: left;
}

.hero-content-col .hero-products {
    justify-content: flex-start;
}

@media (max-width: 960px) {
    .hero.hero-split {
        flex-direction: column;
        text-align: center;
        padding: 7rem 2rem 5rem;
        gap: 3rem;
        align-items: center;
    }
    .hero-content-col {
        align-items: center;
        max-width: 600px;
    }
    .hero-content-col .notebook-banner {
        align-self: center;
    }
    .hero-content-col .hero-tagline,
    .hero-content-col .hero-sub {
        text-align: center;
    }
    .hero-content-col .hero-products {
        justify-content: center;
    }
}

/* ===== CSS Notebook Cover ===== */
.notebook-cover {
    width: 240px;
    height: 340px;
    background: linear-gradient(160deg, #1e2e45 0%, #1a2535 45%, #121d2c 100%);
    border: 1.5px solid rgba(201, 168, 76, 0.55);
    position: relative;
    display: flex;
    padding: 14px 14px 14px 24px;
    border-radius: 1px 4px 4px 1px;
    flex-shrink: 0;
    box-shadow:
        -6px 5px 0 rgba(8, 14, 22, 0.9),
        -11px 9px 0 rgba(8, 14, 22, 0.55),
        -15px 12px 0 rgba(8, 14, 22, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 50px rgba(201, 168, 76, 0.05);
    animation: cover-float 6s ease-in-out infinite;
}

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

/* Book spine */
.notebook-cover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 12px;
    background: linear-gradient(to right, #06101a, #0d1824, #1a2535);
    border-right: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 1px 0 0 1px;
}

.cover-inner {
    flex: 1;
    border: 1px solid rgba(201, 168, 76, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 1.6rem 1.2rem;
    position: relative;
}

/* Corner bracket ornaments */
.cover-inner::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    width: 16px;
    height: 16px;
    border-top: 1.5px solid rgba(201, 168, 76, 0.55);
    border-left: 1.5px solid rgba(201, 168, 76, 0.55);
}

.cover-inner::after {
    content: '';
    position: absolute;
    bottom: 7px;
    right: 7px;
    width: 16px;
    height: 16px;
    border-bottom: 1.5px solid rgba(201, 168, 76, 0.55);
    border-right: 1.5px solid rgba(201, 168, 76, 0.55);
}

.cover-system-label {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 0.42rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.65);
    font-weight: 700;
}

.cover-divider-line {
    width: 85%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.45), transparent);
}

.cover-main-title {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
}

.cover-title-1 {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.75);
    font-weight: 700;
}

.cover-title-2 {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.05;
}

.cover-center-diamond {
    font-size: 0.5rem;
    color: rgba(201, 168, 76, 0.5);
    letter-spacing: 0.2em;
}

.cover-tagline-text {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 0.42rem;
    color: rgba(245, 240, 232, 0.45);
    letter-spacing: 0.12em;
    line-height: 1.9;
    text-transform: uppercase;
}

.cover-author-line {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 0.44rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.6);
    font-weight: 700;
}

.cover-glow {
    width: 180px;
    height: 18px;
    margin-top: 6px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
    filter: blur(6px);
    align-self: center;
}

/* ===== About the Author Section ===== */
.author-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 37, 53, 0.35) 50%, transparent 100%);
}

.author-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.author-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.author-bio p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.author-bio .author-closing {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
    font-style: italic;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding-top: 1.5rem;
}

/* ===== Product Specs Section ===== */
.specs-section {
    padding: 5rem 2rem;
    background: var(--dark-surface);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.specs-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.specs-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.spec-item {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.3s;
}

.spec-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.spec-icon {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.spec-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.01em;
}

/* ===== Footer Site URL ===== */
.footer-site {
    font-size: 0.75rem;
    color: rgba(201, 168, 76, 0.4);
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

/* ===== Shared Button Classes ===== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--dark) !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold) !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    border: 1px solid var(--gold);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.02em;
}
.btn-secondary:hover { background: rgba(201,168,76,0.1) !important; color: var(--gold-light) !important; }

/* ===== Share Bar (blog posts) ===== */
.share-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
}

.share-bar-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 7px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    font-family: 'Carlito', 'Calibri', sans-serif;
    letter-spacing: 0.02em;
}

.share-btn:hover { opacity: 0.85; }

.share-btn-x {
    background: #000;
    color: #fff !important;
}

.share-btn-fb {
    background: #1877f2;
    color: #fff !important;
}

.share-btn-copy {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold) !important;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.share-btn-copy:hover {
    background: rgba(201, 168, 76, 0.22) !important;
}

.share-btn-li {
    background: #0a66c2;
    color: #fff !important;
}

/* Mobile-only native share button */
.share-btn-native {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 700;
}

.share-btn-native:hover {
    background: var(--gold-light);
    opacity: 1;
}

/* Desktop: hide native share, show others */
@media (min-width: 641px) {
    .share-btn-native { display: none; }
}

/* Mobile: show native share button, hide desktop buttons */
@media (max-width: 640px) {
    .share-btn-desktop { display: none; }
}

/* ===================================================
   HOMEPAGE RESTYLE — 2026-05-10
   New sections: restyle-hero, tagline-bar, restyle-products,
   restyle-about, restyle-blog, restyle-final-cta, restyle-footer
   =================================================== */

/* ===== HERO ===== */
.restyle-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 2rem 5rem;
    background: var(--dark);
    overflow: hidden;
}

.restyle-hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.restyle-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
}

.restyle-hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 700;
}

.restyle-hero-h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.restyle-hero-h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.restyle-hero-sub1 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.restyle-hero-sub2 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.65;
}

/* Hero Form */
.restyle-hero-form-wrap {
    background: rgba(26, 37, 53, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    max-width: 560px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.hero-form-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.restyle-hero-form,
.restyle-final-form {
    width: 100%;
}

.hero-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-form-fields input[type="text"],
.hero-form-fields input[type="email"] {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 10px;
    color: var(--cream);
    font-size: 1rem;
    font-family: 'Carlito', 'Calibri', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.hero-form-fields input[type="text"]:focus,
.hero-form-fields input[type="email"]:focus {
    border-color: var(--gold);
}

.hero-form-fields input::placeholder { color: var(--text-muted); }

.hero-form-btn {
    width: 100%;
    padding: 1rem 1.8rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Carlito', 'Calibri', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
}

.hero-form-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.hero-form-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

.hero-form-fine {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* ===== TAGLINE BAR ===== */
.tagline-bar {
    background: var(--gold);
    padding: 1.75rem 2rem;
    text-align: center;
}

.tagline-bar-main {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.01em;
    margin-bottom: 0.3rem;
}

.tagline-bar-sub {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(13, 21, 32, 0.7);
    font-weight: 600;
}

/* ===== PRODUCTS ===== */
.restyle-products {
    padding: 6rem 2rem;
    background: var(--dark);
}

.restyle-products-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.restyle-products-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--cream);
}

.restyle-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .restyle-product-grid { grid-template-columns: 1fr; }
}

.restyle-product-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 18px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.restyle-product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.restyle-product-card:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateY(-3px); }
.restyle-product-card:hover::after { opacity: 1; }

.restyle-product-card--featured {
    border-color: rgba(201, 168, 76, 0.2);
    background: linear-gradient(160deg, #13202f 0%, #111d2c 100%);
}

.restyle-product-card--featured::after { opacity: 0.5; }

.restyle-product-cover {
    margin: 1rem auto 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.restyle-product-cover img {
    width: 110px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.1);
    display: block;
}

.restyle-product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.restyle-product-subtitle {
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.restyle-product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.restyle-product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex: 1;
}

.restyle-product-btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-decoration: none;
    letter-spacing: 0.02em;
    align-self: stretch;
    text-align: center;
}

.restyle-product-btn:hover {
    background: rgba(201, 168, 76, 0.18);
    border-color: var(--gold);
    color: var(--gold-light);
}

.restyle-product-btn--primary {
    background: var(--gold);
    color: var(--dark) !important;
    border-color: var(--gold);
}

.restyle-product-btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--dark) !important;
}

.restyle-products-tagline {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ===== ABOUT BRENDON ===== */
.restyle-about {
    padding: 6rem 2rem;
    background: var(--dark-surface);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.restyle-about-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.restyle-about-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 2.5rem;
}

.restyle-about-quote {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 3rem;
    border-left: 3px solid rgba(201, 168, 76, 0.4);
    padding-left: 1.5rem;
    text-align: left;
}

.restyle-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .restyle-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .restyle-stats-grid { grid-template-columns: 1fr; }
}

.restyle-stat {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    padding: 1.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: border-color 0.3s;
}

.restyle-stat:hover { border-color: rgba(201, 168, 76, 0.3); }

.restyle-stat-num {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.restyle-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
}

.restyle-about-body {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.restyle-about-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.restyle-about-closing {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== BLOG SECTION ===== */
.restyle-blog {
    padding: 6rem 2rem;
    background: var(--dark);
}

.restyle-blog-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.restyle-blog-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--cream);
    text-align: center;
    margin-bottom: 3rem;
}

.restyle-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
    .restyle-blog-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
}

.restyle-blog-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.restyle-blog-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.restyle-blog-date {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.restyle-blog-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex: 1;
}

.restyle-blog-card h3 a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
}

.restyle-blog-card h3 a:hover { color: var(--gold); }

.restyle-blog-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.restyle-blog-read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: auto;
}

.restyle-blog-read-more:hover { color: var(--gold-light); }

.restyle-blog-footer {
    text-align: center;
}

.restyle-blog-all {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    letter-spacing: 0.03em;
}

.restyle-blog-all:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ===== FINAL CTA ===== */
.restyle-final-cta {
    padding: 7rem 2rem;
    background: var(--dark-surface);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.restyle-final-cta::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.restyle-final-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.restyle-final-h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.restyle-final-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.restyle-final-form {
    background: rgba(13, 21, 32, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.restyle-final-closing {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
.restyle-footer {
    padding: 3.5rem 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    text-align: center;
    background: var(--dark);
}

.restyle-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.restyle-footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.restyle-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.restyle-social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

.restyle-footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ===== BOOK TESTIMONIAL ===== */
.book-testimonial {
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    padding: 2.5rem 2.5rem 2rem;
    margin: 2rem 0 0;
    position: relative;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.book-testimonial-quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    font-family: Georgia, serif;
    margin-bottom: -1rem;
    display: block;
}

.book-testimonial-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.book-testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.book-testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.book-testimonial-source {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== VALUE POINTS ===== */
.value-points {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 6px;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.value-point:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.value-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    line-height: 1;
}

.value-content {
    flex: 1;
}

.value-content strong {
    display: block;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.value-content p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 600px) {
    .book-testimonial {
        padding: 1.75rem 1.5rem 1.5rem;
    }
    .book-testimonial-text {
        font-size: 0.95rem;
    }
    .value-point {
        padding: 1.25rem;
        gap: 1rem;
    }
    .value-icon {
        font-size: 1.4rem;
    }
}

/* ===== HERO H1 MOBILE SIZING ===== */
@media (max-width: 480px) {
    .restyle-hero-h1 {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
}

/* ===================================================
   EXIT-INTENT / SCROLL-TRIGGER POPUP
   Navy background, Cream text, Gold button
   =================================================== */

.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(13, 21, 32, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.exit-popup-box {
  background: var(--dark-card, #111d2c);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 18px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(201, 168, 76, 0.08);
}

.exit-popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(245, 239, 224, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
  font-family: 'Carlito', sans-serif;
}

.exit-popup-close:hover { color: var(--cream, #F5F0E8); }

.exit-popup-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.exit-popup-headline {
  font-family: 'Carlito', 'Calibri', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--cream, #F5F0E8);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.exit-popup-sub {
  font-family: 'Carlito', 'Calibri', sans-serif;
  font-size: 0.95rem;
  color: rgba(245, 239, 224, 0.65);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.exit-popup-form {
  width: 100%;
}

.exit-popup-fields {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.exit-popup-fields input[type="text"],
.exit-popup-fields input[type="email"] {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--dark-surface, #1a2535);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  color: var(--cream, #F5F0E8);
  font-size: 1rem;
  font-family: 'Carlito', 'Calibri', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
}

.exit-popup-fields input[type="text"]:focus,
.exit-popup-fields input[type="email"]:focus {
  border-color: var(--gold, #c9a84c);
}

.exit-popup-fields input::placeholder {
  color: rgba(245, 239, 224, 0.35);
}

.exit-popup-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold, #c9a84c);
  color: var(--dark, #0d1520);
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Carlito', 'Calibri', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.exit-popup-btn:hover:not(:disabled) {
  background: var(--gold-light, #e8d48b);
  transform: translateY(-1px);
}

.exit-popup-btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.exit-popup-msg {
  font-size: 0.88rem;
  min-height: 1.3em;
  margin-top: 0.75rem;
  text-align: center;
}

.exit-popup-msg.success { color: #4ade80; }
.exit-popup-msg.error { color: #f87171; }

.exit-popup-dismiss {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: rgba(245, 239, 224, 0.35);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Carlito', 'Calibri', sans-serif;
  transition: color 0.2s;
}

.exit-popup-dismiss:hover { color: rgba(245, 239, 224, 0.6); }

/* Mobile responsive */
@media (max-width: 480px) {
  .exit-popup-box {
    padding: 2.5rem 1.75rem 2rem;
  }
  .exit-popup-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .exit-popup-box {
    border-radius: 18px 18px 0 0;
    max-width: 100%;
  }
}
