:root {
    --teal-dark: #0d2833;
    --teal: #1e5a6b;
    --teal-bright: #2a7a8f;
    --orange: #e85d24;
    --gold: #f5a623;
    --cyan: #38bdf8;
    --bg: #0a1628;
    --surface: #112236;
    --surface-elevated: #1a3048;
    --text: #e8f4f8;
    --text-muted: #94b8c8;
    --header-h: 72px;
    --radius: 10px;
    --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

body {
    margin: 0;
    font-family: "Exo 2", "Segoe UI", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--cyan);
}

/* —— Header —— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(13, 40, 51, 0.98) 0%, rgba(10, 22, 40, 0.95) 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.25rem;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
    color: var(--text);
}

.brand-logo {
    flex-shrink: 0;
    width: auto;
    height: 34px;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.brand-text {
    min-width: 0;
}

.brand-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--text) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--text);
    background: rgba(56, 189, 248, 0.12);
}

.nav-toggle {
    display: none;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 8px;
    background: var(--surface);
    cursor: pointer;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--cyan);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.site-header.nav-open .nav-toggle span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* —— Hero —— */
.hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 1.5rem 5rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(30, 90, 107, 0.55) 50%, rgba(10, 22, 40, 0.92) 100%),
        url("../images/hero-grid.svg") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 166, 35, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    background: rgba(232, 93, 36, 0.1);
}

.hero h1,
.hero h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.hero p {
    margin: 0 auto 1.75rem;
    max-width: 640px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    margin: 2rem auto 0;
    max-width: 960px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.55) 100%);
    pointer-events: none;
}

.hero-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.page-hero {
    padding: 3rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.page-hero p {
    margin: 0.75rem auto 0;
    max-width: 560px;
    color: var(--text-muted);
}

.page-hero-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.page-hero-link:hover {
    color: var(--gold);
}

/* —— Content —— */
.content {
    padding: 3rem 1.5rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.content h2,
.content h3 {
    color: var(--text);
    letter-spacing: 0.02em;
}

.content h2 {
    font-size: 1.75rem;
    margin-top: 0;
}

.content p {
    color: var(--text-muted);
}

.lead {
    font-size: 1.15rem;
    color: var(--text);
}

/* Feature grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-card {
    background: var(--surface);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: var(--shadow-glow);
}

.feature-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--cyan);
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Split section with image */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.split-section img {
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: var(--shadow-glow), 0 16px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.button {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 20px rgba(232, 93, 36, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.45);
}

/* Books */
.book-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

/* Cover-image tile (linked to the store listing) */
.book--cover {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-self: stretch;
}

.book--cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 8;
    object-fit: cover;
    object-position: center;
    margin: 0.5rem 0 1rem;
    border-radius: var(--radius);
}

.book--cover p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.book {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--teal-bright);
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.book::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent);
    pointer-events: none;
}

.book:hover {
    border-left-color: var(--gold);
    transform: translateY(-2px);
}

.book-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.book h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--text);
}

.book p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.contact-form-wrap {
    min-width: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    background: linear-gradient(160deg, var(--surface) 0%, var(--surface-elevated) 100%);
    padding: 2rem 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-top: 3px solid var(--cyan);
    box-shadow: var(--shadow-glow), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.contact-form-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.02em;
}

.contact-form-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.newsletter-layout {
    max-width: 680px;
    margin: 0 auto;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
}

.contact-input {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text);
    background: rgba(10, 22, 40, 0.65);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-input::placeholder {
    color: rgba(148, 184, 200, 0.55);
}

.contact-input:hover {
    border-color: rgba(56, 189, 248, 0.5);
}

.contact-input:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(10, 22, 40, 0.85);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.contact-input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(239, 68, 68, 0.55);
}

.contact-textarea {
    resize: vertical;
    min-height: 150px;
    max-height: 320px;
}

.contact-form-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.contact-submit.button {
    margin: 0;
    padding: 0.9rem 2rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-submit.button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-status {
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.contact-status--error {
    color: #fecaca;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.contact-success {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    color: #b8f5d0;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-top: 3px solid rgba(34, 197, 94, 0.75);
    box-shadow: 0 0 32px rgba(34, 197, 94, 0.15), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.contact-success-message {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* Mautic inline form embed (contact page) */
.contact-form--mautic .mauticform_wrapper {
    max-width: none;
    margin: 0;
}

.contact-form--mautic .mauticform-innerform,
.contact-form--mautic .mauticform-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form--mautic .mauticform-row {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0;
}

.contact-form--mautic .mauticform-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
}

.contact-form--mautic .mauticform-input,
.contact-form--mautic .mauticform-textarea,
.contact-form--mautic .mauticform-selectbox {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text);
    background: rgba(10, 22, 40, 0.65);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form--mautic .mauticform-input:focus,
.contact-form--mautic .mauticform-textarea:focus,
.contact-form--mautic .mauticform-selectbox:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(10, 22, 40, 0.85);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.contact-form--mautic .mauticform-button-wrapper {
    margin-top: 0.25rem;
}

.contact-form--mautic .mauticform-button,
.contact-form--mautic .mauticform-button.btn-ghost {
    display: inline-block;
    margin: 0;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--teal-dark);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(232, 93, 36, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.contact-form--mautic .mauticform-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.45);
}

.contact-form--mautic .mauticform-button[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-form--mautic .mauticform-message {
    margin: 0 0 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: #b8f5d0;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.contact-form--mautic .mauticform-error {
    margin: 0 0 0.5rem;
    color: #fecaca;
}

.contact-form--mautic .mauticform-errormsg {
    color: #fecaca;
    font-size: 0.9rem;
}

.contact-form--mautic .mauticform-message:empty,
.contact-form--mautic .mauticform-error:empty {
    display: none;
}

.contact-form--mautic .mauticform-row.mauticform-required .mauticform-label:after {
    content: " *";
    color: var(--orange);
}

/* On a successful submit, Mautic adds .mauticform-post-success to the wrapper.
   Hide the fields + button (leaving only the success message) so the form
   doesn't look unfilled. Applies to both the contact and newsletter forms. */
.mauticform-post-success .mauticform-innerform {
    display: none;
}

.mauticform-post-success .mauticform-message {
    margin: 0;
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #b8f5d0;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-top: 3px solid rgba(34, 197, 94, 0.75);
}

.contact-aside {
    display: grid;
    gap: 1.25rem;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}

.contact-card {
    background: var(--surface);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-left: 3px solid var(--orange);
}

.contact-card strong {
    display: block;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.contact-card a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    word-break: break-word;
}

.contact-card a:hover {
    color: var(--cyan);
}

.contact-card--lead {
    border-left-color: var(--cyan);
    background: linear-gradient(160deg, var(--surface) 0%, var(--surface-elevated) 100%);
}

.contact-steps {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-steps li::marker {
    color: var(--orange);
    font-weight: 700;
}

.contact-steps strong {
    display: inline;
    color: var(--text);
    text-transform: none;
    letter-spacing: normal;
    font-size: inherit;
}

/* Footer */
footer {
    background: var(--teal-dark);
    color: var(--text-muted);
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(56, 189, 248, 0.15);
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

/* ============================================================
   v2 additions — book detail pages, newsletter split, offer
   bands, FAQ, TOC, who-for, author strip, thanks cards.
   ============================================================ */

/* —— Trust strip (thin band under hero) —— */
.trust-strip {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(180deg, rgba(13, 40, 51, 0.7) 0%, rgba(10, 22, 40, 0.55) 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
    color: var(--text-muted);
    text-align: center;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.trust-strip strong {
    color: var(--text);
    font-weight: 600;
}

/* —— Breadcrumb —— */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* —— Book detail hero —— */
.book-hero {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2rem;
}

.book-hero-cover {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow), 0 16px 40px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.book-hero-content {
    min-width: 0;
}

.book-hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.book-hero-content h1 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: var(--text);
}

.book-hero-subtitle {
    margin: 0 0 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.4;
}

.book-hero-promise {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.book-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.book-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(56, 189, 248, 0.15);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.book-hero-meta strong {
    color: var(--text);
    font-weight: 600;
}

/* —— Secondary (outlined) button —— */
.button--secondary {
    background: transparent;
    color: var(--cyan);
    border: 1.5px solid var(--cyan);
    box-shadow: none;
}

.button--secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    color: var(--text);
    box-shadow: 0 6px 22px rgba(56, 189, 248, 0.25);
    border-color: var(--text);
}

/* —— Section heading helpers —— */
.section-heading {
    margin: 3rem 0 0.5rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: var(--text);
}

.section-sub {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* —— Outcome cards (book detail "what you'll do") —— */
.outcome-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 3rem;
}

.outcome-card {
    background: var(--surface);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-top: 3px solid var(--cyan);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.outcome-card:hover {
    transform: translateY(-3px);
    border-top-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.outcome-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.35;
}

.outcome-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* —— Who this book is for / not for —— */
.who-for {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 3rem;
}

.who-for-col {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(56, 189, 248, 0.18);
}

.who-for-col--for {
    border-left: 3px solid #22c55e;
}

.who-for-col--not {
    border-left: 3px solid var(--orange);
}

.who-for-col h3 {
    margin: 0 0 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.who-for-col--for h3 {
    color: #4ade80;
}

.who-for-col--not h3 {
    color: var(--orange);
}

.who-for-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.who-for-col li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.who-for-col li::before {
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-weight: 700;
}

.who-for-col--for li::before {
    content: "✓";
    color: #4ade80;
}

.who-for-col--not li::before {
    content: "✕";
    color: var(--orange);
}

/* —— Table of contents (collapsible) —— */
.toc {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.18);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0 3rem;
}

.toc summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.04em;
    padding: 0.25rem 0;
    list-style: none;
    font-size: 1rem;
}

.toc summary::-webkit-details-marker {
    display: none;
}

.toc summary::after {
    content: " ▼";
    font-size: 0.65em;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.toc[open] summary::after {
    content: " ▲";
}

.toc ol {
    margin: 1.25rem 0 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.toc ol li {
    padding: 0.2rem 0;
}

.toc-amazon {
    display: inline-block;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(56, 189, 248, 0.12);
    width: 100%;
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.toc-amazon:hover {
    color: var(--gold);
}

/* —— FAQ —— */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.5rem 0 3rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1.15rem 3rem 1.15rem 1.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    list-style: none;
    position: relative;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cyan);
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item summary:hover {
    background: rgba(56, 189, 248, 0.04);
}

.faq-item-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* —— Author strip (mid-page proof) —— */
.author-strip {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-left: 3px solid var(--orange);
    margin: 2.5rem 0;
}

.author-strip-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    border: 2px solid rgba(245, 166, 35, 0.4);
}

.author-strip-content {
    flex: 1;
    min-width: 0;
}

.author-strip-content p {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.author-strip-content a {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cyan);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.author-strip-content a:hover {
    color: var(--gold);
}

/* —— Offer band (full-width CTA strip) —— */
.offer-band {
    background:
        linear-gradient(135deg, rgba(232, 93, 36, 0.18) 0%, rgba(245, 166, 35, 0.08) 100%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 100%);
    border-top: 1px solid rgba(245, 166, 35, 0.25);
    border-bottom: 1px solid rgba(245, 166, 35, 0.25);
    padding: 3.5rem 1.5rem;
    text-align: center;
    margin: 3rem 0 0;
}

.offer-band-inner {
    max-width: 720px;
    margin: 0 auto;
}

.offer-band h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--text);
    line-height: 1.25;
}

.offer-band p {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.offer-band-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.offer-band-microcopy {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* —— Related books strip —— */
.related-books {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.related-books h2 {
    text-align: center;
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    color: var(--text);
}

.related-books-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* —— Three-book row (Home, "meet the first three") —— */
.three-books-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.three-books-row .book--cover {
    background: var(--surface);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: var(--radius);
    padding: 1rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.three-books-row .book--cover:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: var(--shadow-glow);
}

/* —— Newsletter page 2-column —— */
.newsletter-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-deal {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem 2rem 1.75rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-top: 3px solid var(--cyan);
}

.newsletter-deal > h2 {
    margin: 0 0 1.25rem;
    font-size: 1.4rem;
    color: var(--text);
}

.newsletter-deal h3 {
    margin: 1.5rem 0 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
}

.deal-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: deal;
}

.deal-list li {
    counter-increment: deal;
    position: relative;
    padding: 0.85rem 0 0.85rem 2.75rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.55;
    border-bottom: 1px solid rgba(56, 189, 248, 0.08);
}

.deal-list li:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
}

.deal-list li::before {
    content: counter(deal);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 1.85rem;
    height: 1.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--teal-dark);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
}

.deal-list strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.deal-perks,
.deal-anti {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.94rem;
    line-height: 1.55;
}

.deal-perks li,
.deal-anti li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.5rem;
    color: var(--text-muted);
}

.deal-perks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: #4ade80;
    font-weight: 700;
}

.deal-anti li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--orange);
    font-weight: 700;
}

.newsletter-microcopy {
    margin: 0.85rem 0 0;
    padding: 0.75rem 1rem;
    background: rgba(13, 40, 51, 0.4);
    border-radius: 8px;
    border-left: 2px solid var(--cyan);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* —— Thanks page cards —— */
.thanks-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 3rem;
}

.thanks-card {
    background: var(--surface);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.thanks-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: var(--shadow-glow);
}

.thanks-card h3 {
    margin: 0;
    color: var(--cyan);
    font-size: 1.1rem;
}

.thanks-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.thanks-card-link {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

/* —— Coming Soon list (Books page) —— */
.coming-soon-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 0;
}

.coming-soon-list .book {
    padding: 1.25rem 1.35rem;
}

.coming-soon-list .book-num {
    color: var(--text-muted);
}

/* ============================================================
   v3 additions — book-dominant featured hero, social proof,
   3D book tiles, demo (proof) section, Facebook community band.
   ============================================================ */

/* —— Featured (book-dominant) hero —— */
.hero--featured {
    text-align: left;
    padding: 3.5rem 1.5rem;
}

.hero-featured-inner {
    position: relative;
    z-index: 1;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

.hero--featured h1 {
    text-align: left;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    margin: 0 0 1.1rem;
}

.hero--featured .hero-badge {
    margin-bottom: 1.1rem;
}

.hero--featured p {
    margin: 0 0 1rem;
    max-width: 560px;
    text-align: left;
}

.social-proof-line {
    margin: 1.25rem 0 1.5rem !important;
    padding: 0.8rem 1rem 0.8rem 1.1rem;
    border-left: 3px solid var(--gold);
    background: rgba(245, 166, 35, 0.08);
    border-radius: 0 8px 8px 0;
    color: var(--text) !important;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.hero-microcopy {
    margin: 0 !important;
    font-size: 0.85rem;
    color: var(--text-muted) !important;
    letter-spacing: 0.02em;
}

/* Featured 3D book */
.hero-book {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text);
}

.hero-book img {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: none;
    transition: transform 0.3s ease;
}

.hero-book:hover img {
    transform: translateY(-6px) scale(1.02);
}

.hero-book-flag {
    position: absolute;
    top: 4%;
    right: 6%;
    z-index: 2;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(232, 93, 36, 0.45);
    transform: rotate(6deg);
}

.hero-stars {
    margin-top: 0.4rem;
    color: var(--gold);
    font-size: 1.35rem;
    letter-spacing: 0.15em;
}

.hero-book-title {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* —— 3D book tile (transparent PNG, no crop, large by default) —— */
.book--3d img {
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    filter: none;
    width: 100%;
    max-width: 520px;
    margin: 0.25rem auto 1rem;
}

/* —— Book detail hero with 3D cover —— */
.book-hero--3d {
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    align-items: stretch;
}

.book-hero-cover--3d {
    width: 100%;
    height: 100%;
    align-self: stretch;
    object-fit: contain;
    object-position: center;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    filter: none;
}

/* —— Demo / "see it in action" proof section —— */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 0;
}

.demo-card {
    margin: 0;
    background: var(--surface);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.demo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: var(--shadow-glow);
}

.demo-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.demo-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(30, 90, 107, 0.45), rgba(10, 22, 40, 0.65));
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.demo-card figcaption {
    padding: 0.9rem 1.1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* —— Facebook community band —— */
.community-band {
    background:
        linear-gradient(135deg, rgba(24, 119, 242, 0.2) 0%, rgba(56, 189, 248, 0.08) 100%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.25);
    border-bottom: 1px solid rgba(56, 189, 248, 0.25);
    padding: 3rem 1.5rem;
    text-align: center;
    margin-top: 3rem;
}

.community-band-inner {
    max-width: 640px;
    margin: 0 auto;
}

.community-band h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: var(--text);
}

.community-band p {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

/* The community band sits flush before the offer band — drop the double margin. */
.community-band + .offer-band {
    margin-top: 0;
}

/* —— Hero visual slot (Opportunity Scanner graphic / video) —— */
.hero-visual {
    position: relative;
    align-self: stretch;
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.3);
    background:
        linear-gradient(135deg, rgba(30, 90, 107, 0.45), rgba(10, 22, 40, 0.65));
    box-shadow: var(--shadow-glow), 0 16px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 280px;
}

.hero-visual img,
.hero-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-visual-label {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-visual-tag {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--teal-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

/* —— Reframe (not-this / but-this) reuses .who-for —— */
.reframe-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* —— Scanner human-in-the-loop reassurance —— */
.control-note {
    max-width: 720px;
    margin: 0 auto 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.control-note strong {
    color: var(--text);
}

/* —— OI video slots (promo clips) —— */
.oi-video {
    margin: 0;
}

.oi-video-step {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.7rem;
}

.oi-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.3);
    background:
        linear-gradient(135deg, rgba(30, 90, 107, 0.45), rgba(10, 22, 40, 0.7));
    box-shadow: var(--shadow-glow), 0 16px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.oi-video-frame video,
.oi-video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oi-video-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s;
}

.oi-video-play:hover {
    transform: scale(1.06);
}

.oi-video-play svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
}

.oi-video-note {
    position: absolute;
    bottom: 0.8rem;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.oi-video figcaption {
    margin-top: 0.9rem;
    color: var(--text);
    font-weight: 600;
    font-size: 1.02rem;
    text-align: center;
    line-height: 1.45;
}

.oi-video-wrap {
    max-width: 880px;
    margin: 0 auto 1rem;
}

.oi-video--hero {
    align-self: stretch;
}

.oi-video--hero .oi-video-frame {
    aspect-ratio: 1 / 1;
    min-height: 280px;
}

.oi-video--hero figcaption {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* —— OI defining statement —— */
.oi-statement {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    line-height: 1.5;
    color: var(--text);
}

.oi-statement .oi-mark {
    color: var(--gold);
    font-weight: 700;
}

/* —— OI tagline strip (used across subpages) —— */
.oi-strip {
    padding: 0.9rem 1.5rem;
    background:
        linear-gradient(180deg, rgba(13, 40, 51, 0.7) 0%, rgba(10, 22, 40, 0.55) 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
    color: var(--text-muted);
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.5;
}

.oi-strip strong {
    color: var(--text);
    font-weight: 700;
}

/* —— AutoLead AI vs OASIS comparison table —— */
.compare-wrap {
    max-width: 760px;
    margin: 1.75rem auto 0;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.22);
    box-shadow: var(--shadow-glow), 0 16px 40px rgba(0, 0, 0, 0.28);
}

.compare-table th,
.compare-table td {
    padding: 0.95rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
    width: 50%;
}

.compare-table thead th {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.compare-table thead .col-old {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.compare-table thead .col-oasis {
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
}

.compare-table td.col-old {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.compare-table td.col-oasis {
    color: var(--text);
    font-weight: 600;
    background: rgba(56, 189, 248, 0.06);
    border-left: 1px solid rgba(56, 189, 248, 0.16);
}

.compare-table thead .col-oasis {
    border-left: 1px solid rgba(245, 166, 35, 0.25);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table td.col-old::before {
    content: "\2715";
    color: #ef4444;
    font-weight: 700;
    margin-right: 0.6rem;
}

.compare-table td.col-oasis::before {
    content: "\2713";
    color: #22c55e;
    font-weight: 800;
    margin-right: 0.6rem;
}

/* —— Footer social line —— */
.footer-social {
    margin-top: 0.5rem !important;
    font-size: 0.85rem;
}

.footer-social a {
    color: var(--cyan);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--gold);
}
