/* ============================================================
   CAPTURE IT LANDING PAGE — Dark Theme Styles
   ============================================================ */

/* Reset & Base */
.cil-landing {
    --navy: #0B0D1F;
    --navy-mid: #0F1233;
    --navy-light: #151840;
    --blue: #2563EB;
    --blue-glow: #3B82F6;
    --blue-soft: #1E3A6E;
    --green: #22C55E;
    --red: #EF4444;
    --purple: #A855F7;
    --yellow: #FACC15;
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-sm: 10px;

    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.cil-landing *, .cil-landing *::before, .cil-landing *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.cil-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.cil-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.cil-reveal.cil-active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero fades in immediately */
.cil-reveal--hero {
    opacity: 0;
    transform: translateY(0) scale(0.97);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.cil-reveal--hero.cil-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ============================================================
   SECTION TITLE
   ============================================================ */

.cil-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   HERO
   ============================================================ */

.cil-hero {
    position: relative;
    text-align: center;
    padding: 120px 24px 100px;
    background: linear-gradient(180deg, #0B1030 0%, #111750 40%, #0F1233 100%);
    overflow: hidden;
}

.cil-hero__glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: cil-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes cil-glow-pulse {
    from { opacity: 0.6; transform: translateX(-50%) scale(1); }
    to   { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.cil-hero__icon {
    width: 120px;
    height: 120px;
    border-radius: 27px;
    margin-bottom: 24px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cil-hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cil-hero__tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.cil-hero__subtitle {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.cil-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.cil-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
    color: #fff;
}

.cil-apple-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================================
   HOOK SECTION
   ============================================================ */

.cil-hook {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0F1233 0%, var(--navy) 100%);
}

.cil-hook__intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cil-hook__speech {
    max-width: 700px;
    margin: 0 auto 32px;
    padding: 24px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cil-hook__mic-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text);
    display: flex;
    align-items: center;
}

.cil-hook__speech p {
    font-size: 1.05rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
}

.cil-hook__result-label {
    text-align: center;
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.cil-hook__results {
    max-width: 600px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cil-hook__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
}

.cil-hook__card--money  { background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.15); }
.cil-hook__card--task   { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.15); }
.cil-hook__card--health { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.15); }

.cil-hook__card-icon {
    flex-shrink: 0;
    color: var(--text);
    display: flex;
    align-items: center;
}

.cil-hook__card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.cil-hook__card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cil-hook__punchline {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.cil-hook__punchline strong {
    color: var(--text);
}

/* ============================================================
   HERO FEATURES
   ============================================================ */

.cil-features-hero {
    padding: 100px 24px;
    background: var(--navy);
}

.cil-features-hero__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cil-feature-hero {
    padding: 36px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    transition: border-color 0.3s, transform 0.3s;
}

.cil-feature-hero:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.cil-feature-hero__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.cil-feature-hero__icon-wrap--voice   { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.cil-feature-hero__icon-wrap--recall  { background: linear-gradient(135deg, #A855F7, #7C3AED); }
.cil-feature-hero__icon-wrap--drafts  { background: linear-gradient(135deg, #22C55E, #16A34A); }
.cil-feature-hero__icon-wrap--privacy  { background: linear-gradient(135deg, #F59E0B, #D97706); }
.cil-feature-hero__icon-wrap--language { background: linear-gradient(135deg, #4ECDC4, #0EA5E9); }

.cil-feature-hero h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

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

/* ============================================================
   SHARED ROOMS / FAMILY SYNCING
   ============================================================ */

.cil-rooms {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--navy) 0%, #0E1340 50%, #0F1233 100%);
    position: relative;
    overflow: hidden;
}

.cil-rooms::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cil-rooms__badge {
    text-align: center;
    margin-bottom: 16px;
}

.cil-rooms__badge-text {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), #7C3AED);
    border-radius: 50px;
}

.cil-rooms__intro {
    text-align: center;
    max-width: 700px;
    margin: -24px auto 56px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.cil-rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.cil-rooms__card {
    padding: 36px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.cil-rooms__card:hover {
    border-color: rgba(168, 85, 247, 0.25);
    transform: translateY(-4px);
}

.cil-rooms__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.cil-rooms__card-icon--create { background: linear-gradient(135deg, #A855F7, #7C3AED); }
.cil-rooms__card-icon--join   { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.cil-rooms__card-icon--sync   { background: linear-gradient(135deg, #22C55E, #16A34A); }

.cil-rooms__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.cil-rooms__card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cil-rooms__highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 24px 28px;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
}

.cil-rooms__highlight-icon {
    flex-shrink: 0;
    color: var(--purple);
    display: flex;
    align-items: center;
}

.cil-rooms__highlight strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.cil-rooms__highlight p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cil-rooms__screenshots {
    margin-top: 8px;
}

/* ============================================================
   SCREENSHOTS
   ============================================================ */

.cil-screenshots {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--navy) 0%, #0F1233 100%);
}

.cil-screenshots__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-soft) transparent;
}

.cil-screenshots__scroll::-webkit-scrollbar {
    height: 6px;
}

.cil-screenshots__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.cil-screenshots__scroll::-webkit-scrollbar-thumb {
    background: var(--blue-soft);
    border-radius: 3px;
}

.cil-screenshot {
    flex-shrink: 0;
    scroll-snap-align: center;
    text-align: center;
}

.cil-screenshot__img {
    height: 447px !important;
    max-height: 447px !important;
    width: auto !important;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cil-screenshot__img:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cil-screenshot__caption {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ============================================================
   DUAL TIMELINE SECTION
   ============================================================ */

.cil-timeline-section {
    padding: 100px 24px;
    background: #0F1233;
}

.cil-timeline-section__intro {
    text-align: center;
    max-width: 650px;
    margin: -24px auto 48px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.cil-timeline-demo {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cil-timeline-demo__lane {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.cil-timeline-demo__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.cil-timeline-demo__items {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.cil-timeline-demo__card {
    flex-shrink: 0;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.cil-timeline-demo__bubble {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.cil-timeline-demo__bubble--money  { background: rgba(34, 197, 94, 0.12); color: #86EFAC; }
.cil-timeline-demo__bubble--health { background: rgba(239, 68, 68, 0.12); color: #FCA5A5; }
.cil-timeline-demo__bubble--idea   { background: rgba(148, 163, 184, 0.12); color: #CBD5E1; }

/* ============================================================
   FEATURE GRID
   ============================================================ */

.cil-features-grid-section {
    padding: 100px 24px;
    background: var(--navy);
}

.cil-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cil-feature-cell {
    padding: 28px 22px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.cil-feature-cell:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.cil-feature-cell__icon {
    margin-bottom: 14px;
    color: var(--text);
    display: flex;
    justify-content: center;
}

.cil-feature-cell h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ============================================================
   PRICING
   ============================================================ */

.cil-pricing {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--navy) 0%, #0F1233 100%);
}

.cil-pricing__card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cil-pricing__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cil-pricing__price {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cil-pricing__once {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.cil-pricing__comparison {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cil-pricing .cil-hero__cta {
    display: inline-flex;
}

/* ============================================================
   FOOTER
   ============================================================ */

.cil-footer {
    padding: 60px 24px;
    text-align: center;
    background: var(--navy);
    border-top: 1px solid var(--card-border);
}

.cil-footer__tagline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cil-footer__credit {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.cil-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.cil-lightbox.cil-lightbox--open {
    display: flex;
    opacity: 1;
}

.cil-lightbox__close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    z-index: 10;
}

.cil-lightbox__close:hover {
    opacity: 1;
}

.cil-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    cursor: default;
}

/* ============================================================
   SUPPORT / FEEDBACK FORM
   ============================================================ */

.cil-support {
    padding: 100px 24px;
    background: var(--navy);
}

.cil-support__intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: -24px;
    margin-bottom: 40px;
}

.cil-support__form {
    max-width: 600px;
    margin: 0 auto;
}

.cil-support__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cil-support__field {
    margin-bottom: 16px;
}

.cil-support__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.cil-support__field input,
.cil-support__field select,
.cil-support__field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.cil-support__field input::placeholder,
.cil-support__field textarea::placeholder {
    color: var(--text-dim);
}

.cil-support__field input:focus,
.cil-support__field select:focus,
.cil-support__field textarea:focus {
    border-color: var(--blue);
}

.cil-support__field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.cil-support__field select option {
    background: #1a1a2e;
    color: var(--text);
}

.cil-support__field textarea {
    resize: vertical;
    min-height: 120px;
}

.cil-support__submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.cil-support__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.cil-support__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cil-support__status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 24px;
}

.cil-support__status--success {
    color: var(--green);
}

.cil-support__status--error {
    color: var(--red);
}

@media (max-width: 480px) {
    .cil-support__row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .cil-hero {
        padding: 80px 20px 60px;
    }

    .cil-hero__icon {
        width: 88px;
        height: 88px;
    }

    .cil-features-hero__grid {
        grid-template-columns: 1fr;
    }

    .cil-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .cil-screenshot__img {
        height: 356px !important;
        max-height: 356px !important;
    }

    .cil-rooms__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cil-rooms__highlight {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .cil-hook,
    .cil-features-hero,
    .cil-screenshots,
    .cil-rooms,
    .cil-timeline-section,
    .cil-features-grid-section,
    .cil-pricing {
        padding: 70px 16px;
    }

    .cil-pricing__card {
        padding: 40px 24px;
    }

    .cil-timeline-demo__items {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .cil-features-grid {
        grid-template-columns: 1fr;
    }

    .cil-screenshot__img {
        height: 309px !important;
        max-height: 309px !important;
    }

    .cil-hook__results {
        gap: 10px;
    }

    .cil-hook__card {
        padding: 12px 14px;
    }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.cil-privacy-hero {
    text-align: center;
    padding: 100px 24px 60px;
    background: linear-gradient(180deg, #0B1030 0%, #111750 40%, #0F1233 100%);
}

.cil-privacy__date {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 8px;
}

.cil-privacy-content {
    padding: 60px 24px 100px;
    background: var(--navy);
}

.cil-privacy__body {
    max-width: 750px;
    margin: 0 auto;
}

.cil-privacy__body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text);
}

.cil-privacy__body h2:first-child {
    margin-top: 0;
}

.cil-privacy__body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.cil-privacy__body strong {
    color: var(--text);
}

.cil-privacy__body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.cil-privacy__body li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cil-privacy__body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.cil-privacy__body li strong {
    color: var(--text);
}

.cil-privacy__badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
}

.cil-privacy__badge-icon {
    flex-shrink: 0;
    color: var(--text);
    display: flex;
    align-items: center;
}

.cil-privacy__badge strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.cil-privacy__badge span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================================
   HOW TO GUIDE
   ============================================================ */

.cil-guide .cil-privacy__body a {
    color: #60A5FA;
    text-decoration: none;
    transition: color 0.2s;
}

.cil-guide .cil-privacy__body a:hover {
    color: #93C5FD;
}

.cil-guide__toc {
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.cil-guide__toc h2 {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    font-size: 1.1rem !important;
}

.cil-guide__toc ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}

.cil-guide__toc li {
    padding-left: 0;
}

.cil-guide__toc li::before {
    display: none;
}

.cil-guide__toc a {
    color: #60A5FA;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.cil-guide__toc a:hover {
    color: #93C5FD;
}

@media (max-width: 480px) {
    .cil-guide__toc ul {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   WORDPRESS OVERRIDES
   Force dark theme even if WP theme has light styles
   ============================================================ */

.cil-landing a { color: inherit; text-decoration: none; }
.cil-landing h1, .cil-landing h2, .cil-landing h3, .cil-landing h4 { color: var(--text); }
.cil-landing section { margin: 0; }
.cil-landing img { max-width: 100%; height: auto; }
.cil-landing .cil-screenshot__img { height: 447px !important; max-height: 447px !important; width: auto !important; }

/* Hide WP theme header/footer padding interference */
.page-template-default .cil-landing {
    margin: -20px -20px 0;
    padding: 0;
}
