/*
Theme Name: Tooth Fairy Caught On Camera v3
Theme URI: https://toothfairycaughtoncamera.com
Author: Sing Me Happy Birthday Ltd
Author URI: https://toothfairycaughtoncamera.com
Description: The v3 dark-magic theme for Tooth Fairy Caught On Camera, preserving the original site's content and features while matching the iOS app identity.
Version: 3.0.3
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: toothfairy-theme
Tags: custom-background, custom-logo, custom-menu, featured-images
*/

/* ========================================================================== 
   Local brand type — no render-blocking third-party font request
   ========================================================================== */
@font-face {
    font-family: 'Cookie';
    src: url('assets/fonts/Cookie-Regular.ttf') format('truetype');
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
    --font-display: 'Cookie', Georgia, serif;
    --font-body: Avenir, 'Avenir Next', 'Trebuchet MS', sans-serif;

    --fairy-pink: #6bb8e8;
    --fairy-pink-light: #b8dcf5;
    --fairy-pink-dark: #3a8fc7;
    --fairy-purple: #8396ed;
    --fairy-blue: #6bb8e8;
    --fairy-gold: #c9a84c;
    --fairy-gold-light: #e0c873;
    --fairy-dark: #000724;
    --fairy-bg: #000724;

    --color-text: #edf7ff;
    --color-text-secondary: #b8dcf5;
    --color-text-muted: #8db4d1;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.5);

    --transition-fast: 0.15s ease;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;

    --container-max: 1200px;
    --container-narrow: 900px;
    --header-height: 72px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--fairy-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.font-display {
    font-family: var(--font-display);
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }
}

/* ==========================================================================
   Navigation — Sticky
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    background: var(--fairy-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1.1;
}

.header__logo-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    color: var(--fairy-pink);
    margin: 0;
    line-height: 1;
}

.header__logo-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* Desktop Navigation */
.header__nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .header__nav {
        display: flex;
    }
}

.header__nav .header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav li {
    list-style: none;
    position: relative;
}

.header__nav .submenu-toggle {
    display: none;
}

.header__nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.header__nav a:hover {
    color: var(--fairy-pink);
}

/* Desktop dropdowns */
.header__nav li > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 100;
}

.header__nav li:hover > .sub-menu {
    display: block;
}

.header__nav li:focus-within > .sub-menu {
    display: block;
}

.header__nav .sub-menu li {
    display: block;
}

.header__nav .sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.header__nav .sub-menu a:hover {
    background: rgba(255, 123, 156, 0.08);
    color: var(--fairy-pink);
}

.header__nav .sub-menu .sub-menu {
    top: -8px;
    left: 100%;
    transform: none;
}

/* Nav CTA */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(to right, var(--fairy-gold-light), var(--fairy-gold));
    color: var(--color-text) !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav-cta:hover {
    box-shadow: 0 4px 16px rgba(255, 207, 77, 0.4);
    transform: scale(1.05);
    color: var(--color-text) !important;
}

/* Mobile Toggle */
.header__mobile-toggle {
    display: flex;
}

@media (min-width: 768px) {
    .header__mobile-toggle {
        display: none;
    }
}

.header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.header__burger:hover {
    background: rgba(0, 0, 0, 0.04);
}

.header__burger svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.header__mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: white;
}

.header__mobile-nav.is-open {
    display: flex;
}

@media (min-width: 768px) {
    .header__mobile-nav {
        display: none !important;
    }
}

.header__mobile-nav .header__mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__mobile-nav li {
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__mobile-nav li:last-child {
    border-bottom: none;
}

.header__mobile-nav .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
}

.header__mobile-nav .menu-item-has-children > a {
    flex: 1;
}

.header__mobile-nav a {
    display: block;
    padding: 14px 0;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.header__mobile-nav a:hover {
    color: var(--fairy-pink);
}

.header__mobile-nav .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0;
}

.header__mobile-nav .submenu-toggle svg {
    transition: transform var(--transition);
}

.header__mobile-nav .submenu-open > .submenu-toggle svg {
    transform: rotate(180deg);
}

.header__mobile-nav .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
    width: 100%;
}

.header__mobile-nav .submenu-open > .sub-menu {
    display: block;
}

.header__mobile-nav .sub-menu a {
    padding: 10px 0 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.header__mobile-nav .sub-menu .sub-menu a {
    padding-left: 40px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Main Content Wrapper
   ========================================================================== */
.site-main {
    flex-grow: 1;
}

/* ==========================================================================
   Hero Section — Dark overlay
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, #1a2a4b, #2b406b);
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.hero__inner {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 24px 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .hero__inner {
        padding: 96px 24px 120px;
        flex-direction: row;
        align-items: center;
    }
}


.hero__content {
    width: 100%;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .hero__content {
        width: 55%;
        text-align: left;
    }
}

.hero__title {
    font-family: var(--font-body);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero__title-accent {
    font-family: var(--font-display);
    color: var(--fairy-pink);
    font-weight: 400;
    display: block;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    margin-top: 8px;
}

.hero__title-brand,
.hero__title-tagline {
    display: block;
}

.hero__title-brand {
    color: white;
    font-family: var(--font-display);
    font-size: clamp(4.4rem, 8vw, 7rem);
    font-weight: 400;
    line-height: .82;
    text-shadow: 0 0 28px rgba(107, 184, 232, .36);
}

.hero__title-tagline {
    margin-top: .5em;
    color: var(--fairy-pink-light);
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.15;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.hero__subtitle-highlight {
    color: var(--fairy-gold);
    font-weight: 700;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: linear-gradient(to right, var(--fairy-gold-light), var(--fairy-gold));
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
    transition: all var(--transition);
}

.hero__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    color: var(--color-text);
}

/* ==========================================================================
   Trust Badges
   ========================================================================== */
.trust-badges {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-badges__inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .trust-badges__inner {
        flex-direction: row;
        justify-content: center;
        gap: 48px;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.trust-badge__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.trust-badge__icon--pink {
    background: rgba(255, 123, 156, 0.1);
}

.trust-badge__icon--blue {
    background: rgba(138, 132, 226, 0.1);
}

.trust-divider {
    display: none;
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .trust-divider {
        display: block;
    }
}

/* ==========================================================================
   Fairy Selection Section
   ========================================================================== */
.fairy-selection {
    padding: 80px 0;
    background: var(--fairy-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header__title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-header__sparkle {
    color: var(--fairy-gold);
    font-size: 1.5rem;
}

.fairy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .fairy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fairy-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}

.fairy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fairy-card--aurora {
    background: #fff7ed;
    border-color: #fed7aa;
}

.fairy-card--luna {
    background: #eff6ff;
}

.fairy-card--luna:hover {
    border-color: #bfdbfe;
}

.fairy-card--rosa {
    background: #fdf2f8;
}

.fairy-card--rosa:hover {
    border-color: #fbcfe8;
}

.fairy-card__selected {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: #fb923c;
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.fairy-card__image {
    width: 192px;
    height: 192px;
    margin: 0 auto 16px;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fairy-card__image--aurora {
    background: #ffedd5;
}

.fairy-card__image--luna {
    background: #dbeafe;
}

.fairy-card__image--rosa {
    background: #fce7f3;
}

.fairy-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    mix-blend-mode: multiply;
    transition: opacity var(--transition);
}

.fairy-card:hover .fairy-card__image img {
    opacity: 1;
}

.fairy-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.fairy-card__name--aurora { color: #fb923c; }
.fairy-card__name--luna { color: #3b82f6; }
.fairy-card__name--rosa { color: #f472b6; }

.fairy-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Carousel dots */
.fairy-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.fairy-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: #fbcfe8;
}

.fairy-dot--active {
    background: var(--fairy-pink);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.step__number {
    position: absolute;
    top: -12px;
    left: calc(50% - 52px);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--fairy-pink);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.step__icon {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2.5rem;
}

.step__icon--purple { background: #f3f0ff; }
.step__icon--orange { background: #fff7ed; }
.step__icon--blue { background: #eff6ff; }

.step__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.step__desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.step-arrow {
    display: none;
    color: #d1d5db;
    font-size: 1.5rem;
    font-weight: 300;
    padding-top: 36px;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
}

/* ==========================================================================
   Review & Guarantee Section
   ========================================================================== */
.social-proof {
    padding: 48px 0;
    background: var(--fairy-bg);
}

.social-proof__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Review card */
.review-card {
    background: #fdf2f8;
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
    .review-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.review-card__avatar {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__body {
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 640px) {
    .review-card__body {
        text-align: left;
    }
}

.review-card__quote-mark {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--fairy-pink);
    font-family: serif;
    margin-bottom: 4px;
}

.review-card__text {
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-card__text .heart {
    color: var(--fairy-pink);
}

.review-card__footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 640px) {
    .review-card__footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.review-card__author {
    font-weight: 600;
    color: var(--color-text-secondary);
}

.review-card__stars {
    color: var(--fairy-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Guarantee banner */
.guarantee {
    background: #1e1e3f;
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: white;
}

@media (min-width: 640px) {
    .guarantee {
        flex-direction: row;
        justify-content: space-between;
    }
}

.guarantee__content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.guarantee__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fde047, #ca8a04);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 4px 16px rgba(253, 224, 71, 0.3);
}

.guarantee__icon-inner {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e3f;
}

.guarantee__icon-heart {
    color: #fde047;
    font-size: 1.5rem;
}

.guarantee__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fde047;
    margin-bottom: 4px;
}

.guarantee__text {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.5;
}

.guarantee__text strong {
    color: white;
}

.guarantee__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: white;
    color: #1e1e3f;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.guarantee__btn:hover {
    background: #f3f4f6;
    color: #1e1e3f;
}

/* ==========================================================================
   What You Get Section
   ========================================================================== */
.what-you-get {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.what-you-get__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .what-you-get__grid {
        flex-direction: row;
        align-items: stretch;
    }
}

.what-you-get__card {
    flex: 1;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all var(--transition);
}

.what-you-get__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.what-you-get__card--featured {
    background: white;
    border-color: var(--fairy-pink);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.what-you-get__card--featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.what-you-get__icon {
    font-size: 2.5rem;
}

.what-you-get__title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.what-you-get__desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.what-you-get__badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    background: #eff6ff;
    color: var(--fairy-purple);
    border: 1px solid rgba(138, 132, 226, 0.2);
}

.what-you-get__badge--paid {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fed7aa;
}

/* ==========================================================================
   Free Image Form
   ========================================================================== */
.free-image {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto 64px;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.free-image__card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.free-image__intro {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.free-image__form {
    max-width: 24rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.free-image__label {
    display: block;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 4px;
}

.free-image__file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--color-text-secondary);
    background: var(--fairy-bg);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.free-image__file-label.has-file {
    border-color: var(--fairy-pink);
    color: var(--color-text);
}

.free-image__input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--fairy-bg);
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.free-image__input:focus {
    outline: none;
    border-color: var(--fairy-pink);
}

.free-image__input::placeholder {
    color: var(--color-text-muted);
}

.free-image__submit {
    padding: 14px 32px;
    background: linear-gradient(to right, var(--fairy-gold-light), var(--fairy-gold));
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 8px;
}

.free-image__submit:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.free-image__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.free-image__msg {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
}

.free-image__msg--error {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.free-image__msg--rate-limit {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.free-image__loading {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    color: var(--color-text-secondary);
}

.free-image__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 123, 156, 0.2);
    border-top-color: var(--fairy-pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.free-image__result {
    display: none;
    padding: 16px 0;
}

.free-image__result h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.free-image__result p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.free-image__upsell {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 10;
}

.pricing__grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}

@media (min-width: 768px) {
    .pricing__grid {
        flex-direction: row;
        gap: 32px;
    }
}

.pricing__grid--single {
    max-width: 400px;
    margin: 0 auto;
}

.pricing__card {
    flex: 1;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition);
}

.pricing__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing__card--featured {
    border-color: var(--fairy-pink);
    box-shadow: var(--shadow-md);
}

.pricing__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.pricing__features {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
    font-weight: 500;
    line-height: 1.8;
}

.pricing__features li {
    margin-bottom: 4px;
}

.pricing__features li::before {
    content: "- ";
}

.pricing__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
}

.pricing__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: linear-gradient(to right, var(--fairy-gold-light), var(--fairy-gold));
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.pricing__btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    color: var(--color-text);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 0;
}

.footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__links {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer__links a {
    color: var(--color-text-secondary);
}

.footer__links a:hover {
    color: var(--fairy-pink);
}

.footer__newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .footer__newsletter {
        align-items: flex-end;
    }
}

.footer__newsletter-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer__newsletter-form {
    display: flex;
    width: 100%;
    max-width: 320px;
}

.footer__newsletter-input {
    flex-grow: 1;
    padding: 8px 16px;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    outline: none;
    background: var(--fairy-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.footer__newsletter-input::placeholder {
    color: var(--color-text-muted);
}

.footer__newsletter-input:focus {
    border-color: var(--fairy-pink);
}

.footer__newsletter-btn {
    padding: 8px 20px;
    background: linear-gradient(to right, var(--fairy-gold-light), var(--fairy-gold));
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text);
    border: 1px solid rgba(255, 207, 77, 0.4);
    border-left: none;
    transition: background var(--transition-fast);
}

.footer__newsletter-btn:hover {
    background: linear-gradient(to right, var(--fairy-gold), #f5c030);
}

.footer__copyright {
    text-align: center;
    width: 100%;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer__lock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   WordPress Page Content
   ========================================================================== */
.page-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 48px auto;
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.page-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.page-content h2, .page-content h3 {
    font-weight: 700;
    color: var(--color-text);
    margin: 24px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.page-content a {
    color: var(--fairy-pink);
}

.page-content a:hover {
    color: var(--fairy-pink-dark);
}

/* ==========================================================================
   Utility Section Title (reused by multiple sections)
   ========================================================================== */
.section-title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 24px;
}

/* ==========================================================================
   WordPress Core
   ========================================================================== */
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { display: block; margin: 0 auto; }

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   v3 — Midnight app identity
   The v2 component vocabulary remains intact so existing page content keeps
   rendering; these rules reskin the shared shell without flattening each
   fairy's individual palette.
   ========================================================================== */

body {
    position: relative;
    background:
        radial-gradient(circle at 82% 10%, rgba(52, 118, 196, 0.22), transparent 34rem),
        radial-gradient(circle at 8% 62%, rgba(107, 184, 232, 0.08), transparent 30rem),
        var(--fairy-bg);
    color: var(--color-text);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: '';
    background-image:
        radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.35px),
        radial-gradient(circle, rgba(184,220,245,.72) 0 1px, transparent 1.35px),
        radial-gradient(circle, rgba(201,168,76,.72) 0 1.2px, transparent 1.55px);
    background-position: 0 0, 41px 59px, 91px 23px;
    background-size: 127px 137px, 179px 193px, 239px 223px;
    opacity: .21;
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 55%, transparent 92%);
    mask-image: linear-gradient(to bottom, #000 0, #000 55%, transparent 92%);
}

::selection { background: var(--fairy-gold); color: var(--fairy-dark); }

:where(a, button, input, textarea, select, summary):focus-visible {
    outline: 3px solid var(--fairy-gold);
    outline-offset: 4px;
}

.screen-reader-text:focus {
    clip: auto !important;
    width: auto;
    height: auto;
    top: 12px;
    left: 12px;
    z-index: 100000;
    padding: 10px 16px;
    border-radius: 8px;
    background: white;
    color: var(--fairy-dark);
}

.site-header {
    background: rgba(0, 7, 36, .82);
    border-bottom-color: rgba(184, 220, 245, .14);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header__inner { height: 92px; }

.header__logo {
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow: visible;
    color: white;
}

.header__logo:hover { color: white; }

.header__brand-mark {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    overflow: hidden;
    border: 1px solid rgba(184, 220, 245, .34);
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(107, 184, 232, .22);
}

.header__brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__brand-name {
    display: grid;
    line-height: 1.02;
}

.header__brand-name strong {
    color: white;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: .01em;
}

.header__brand-name span {
    color: var(--fairy-pink-light);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.header__nav a,
.header__burger { color: var(--fairy-pink-light); }

.header__burger .burger-icon[hidden],
.header__burger .close-icon[hidden] { display: none; }

.header__nav a:hover { color: white; }

.header__nav li > .sub-menu,
.header__mobile-nav {
    background: #06113b;
    border-color: rgba(107, 184, 232, .23);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.header__nav .sub-menu a,
.header__mobile-nav a { color: var(--fairy-pink-light); }

.header__nav .sub-menu a:hover,
.header__mobile-nav a:hover {
    background: rgba(107, 184, 232, .12);
    color: white;
}

.header__mobile-nav,
.header__mobile-nav li { border-color: rgba(107, 184, 232, .16); }
.header__mobile-nav .sub-menu a { color: var(--color-text-muted); }
.header__burger:hover { background: rgba(107, 184, 232, .12); }
.header__mobile-nav > .nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    text-align: center;
}

.nav-cta,
.hero__cta,
.pricing__btn,
.free-image__submit,
.footer__newsletter-btn {
    background: linear-gradient(135deg, var(--fairy-gold-light), var(--fairy-gold));
    color: var(--fairy-dark) !important;
    box-shadow: 0 10px 30px rgba(201, 168, 76, .22);
}

.nav-cta:hover,
.hero__cta:hover,
.pricing__btn:hover,
.free-image__submit:hover {
    background: linear-gradient(135deg, #ecd889, #c9a84c);
    color: var(--fairy-dark) !important;
}

.hero {
    min-height: 650px;
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 45%, rgba(55, 126, 207, .34), transparent 25rem),
        radial-gradient(circle at 18% 8%, rgba(107, 184, 232, .10), transparent 30rem),
        #000724;
    border-bottom: 1px solid rgba(107, 184, 232, .16);
}

.hero::after {
    position: absolute;
    inset: 0;
    content: '';
    background:
        radial-gradient(circle, rgba(255,255,255,.82) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(184,220,245,.62) 0 1px, transparent 1.5px),
        linear-gradient(0deg, #000724 0%, transparent 28%);
    background-position: 4px 7px, 53px 34px, 0 0;
    background-size: 151px 139px, 211px 197px, auto;
    opacity: .42;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: clamp(32px, 5vw, 80px);
    min-height: 650px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 650px;
}

.hero__icon-stage {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 460px);
    aspect-ratio: 1;
    place-items: center;
    justify-self: end;
    filter: drop-shadow(0 30px 55px rgba(0, 0, 0, .42));
}

.hero__icon-stage::before {
    position: absolute;
    inset: 7%;
    content: '';
    border-radius: 50%;
    background: rgba(107, 184, 232, .2);
    box-shadow:
        0 0 70px rgba(107, 184, 232, .42),
        0 0 140px rgba(55, 126, 207, .24);
    filter: blur(2px);
}

.hero__app-icon {
    position: relative;
    z-index: 2;
    width: 82%;
    height: 82%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 25%;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, .5),
        0 0 0 9px rgba(107, 184, 232, .08),
        inset 0 0 0 1px rgba(255, 255, 255, .16);
    animation: hero-float 5.5s ease-in-out infinite;
}

.hero__orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(184, 220, 245, .28);
    border-radius: 50%;
}

.hero__orbit--one {
    inset: 2%;
    transform: rotate(-14deg) scaleY(.82);
}

.hero__orbit--two {
    inset: 10% -3%;
    border-color: rgba(201, 168, 76, .24);
    transform: rotate(24deg) scaleY(.76);
}

.hero__sparkle {
    position: absolute;
    z-index: 3;
    color: white;
    line-height: 1;
    text-shadow: 0 0 16px currentColor;
    animation: twinkle 2.8s ease-in-out infinite;
}

.hero__sparkle--one { top: 4%; right: 10%; font-size: 2rem; }
.hero__sparkle--two { bottom: 13%; left: 0; color: var(--fairy-gold-light); font-size: 1.45rem; animation-delay: -.9s; }
.hero__sparkle--three { top: 24%; left: -2%; color: var(--fairy-pink-light); font-size: 1rem; animation-delay: -1.7s; }

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.hero__title { color: white; }
.hero__title-accent {
    color: var(--fairy-pink-light);
    font-size: clamp(3.8rem, 8vw, 6.8rem);
    line-height: .82;
    text-shadow: 0 0 28px rgba(107, 184, 232, .36);
}
.hero__subtitle { color: var(--fairy-pink-light); }

.hero__app-store {
    display: block;
    width: 180px;
    margin-top: 20px;
    border-radius: 8px;
    transition: transform var(--transition), filter var(--transition);
}

.hero__app-store img {
    display: block;
    width: 100%;
    height: auto;
}

.hero__app-store:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.trust-badges {
    background: rgba(5, 16, 55, .92);
    border-color: rgba(107, 184, 232, .16);
}
.trust-badge { color: var(--fairy-pink-light); }
.trust-badge__icon--pink,
.trust-badge__icon--blue { background: rgba(107, 184, 232, .12); }
.trust-divider { background: rgba(184, 220, 245, .18); }

.fairy-selection,
.social-proof { background: transparent; }
.how-it-works { background: rgba(5, 16, 55, .74); }
.section-header__title,
.section-title,
.step__title { color: white; }
.step__desc { color: var(--color-text-muted); }
.step__number { background: var(--fairy-blue); color: var(--fairy-dark); }
.step-arrow { color: var(--fairy-gold); }

.fairy-card {
    border-width: 1px;
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.fairy-card__image img { opacity: 1; mix-blend-mode: normal; }
.fairy-card__desc { color: #4a4a6a; }
.fairy-card--aurora { border-color: rgba(251,146,60,.58); }
.fairy-card--luna { border-color: rgba(59,130,246,.48); }
.fairy-card--rosa { border-color: rgba(244,114,182,.52); }

.review-card {
    background: linear-gradient(145deg, #fff6fa, #f8e8f1);
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.review-card__text,
.review-card__author { color: #3e3155; }
.guarantee {
    background: linear-gradient(145deg, #0d2059, #050f35);
    border: 1px solid rgba(201, 168, 76, .32);
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.what-you-get,
.pricing { background: rgba(5, 16, 55, .74); }
.what-you-get__card,
.what-you-get__card--featured,
.pricing__card,
.free-image__card {
    background: linear-gradient(145deg, rgba(14,34,84,.95), rgba(5,16,55,.96));
    border-color: rgba(107, 184, 232, .24);
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.what-you-get__card--featured,
.pricing__card--featured { border-color: rgba(201,168,76,.5); }
.what-you-get__title,
.pricing__card-title,
.free-image__label,
.free-image__result h3 { color: white; }
.what-you-get__desc,
.pricing__features,
.free-image__intro,
.free-image__result p { color: var(--color-text-secondary); }
.what-you-get__badge { background: rgba(107,184,232,.14); color: var(--fairy-pink-light); }
.what-you-get__badge--paid { background: rgba(201,168,76,.16); color: #e6cf87; }
.free-image__file-label,
.free-image__input,
.footer__newsletter-input {
    background: rgba(0,7,36,.72);
    border-color: rgba(107,184,232,.3);
    color: white;
}
.free-image__file-label:hover,
.free-image__input:focus,
.footer__newsletter-input:focus { border-color: var(--fairy-blue); }

.app-download-panel {
    display: flex;
    max-width: 28rem;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 28px auto 0;
    padding: 22px;
    border: 1px solid rgba(107, 184, 232, .24);
    border-radius: var(--radius-lg);
    background: rgba(0, 7, 36, .52);
    text-align: left;
}

.app-download-panel > img {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .34);
}

.app-download-panel__title {
    margin: 0 0 14px;
    color: white;
    font-size: 1.08rem;
    font-weight: 700;
}

.app-download-panel .free-image__submit {
    display: inline-flex;
    margin: 0;
    text-align: center;
}

.pricing__price--app {
    color: var(--fairy-pink-light);
    font-size: 1.5rem;
}

.site-footer {
    background: #00051b;
    border-color: rgba(107,184,232,.14);
}
.footer__inner { align-items: center; }
.footer__inner > * { min-width: 0; }
.footer__brand { display: block; width: min(330px, 100%); margin-bottom: 18px; }
.footer__brand img { width: 100%; }
.footer__links { flex-wrap: wrap; justify-content: center; }
.footer__links a,
.footer__newsletter-label { color: var(--fairy-pink-light); }
.footer__links a:hover { color: white; }
.footer__copyright { border-color: rgba(107,184,232,.13); color: #7599b6; }
.footer__apple-legal {
    max-width: 58rem;
    margin: 10px auto 0;
    padding: 0 24px;
    color: #55748f;
    font-size: .68rem;
    line-height: 1.5;
    text-align: center;
}

.yoast-breadcrumbs {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 22px 24px 0;
    color: var(--color-text-muted);
    font-size: .82rem;
}
.yoast-breadcrumbs a { color: var(--fairy-pink-light); }

.page-content {
    max-width: 64rem;
    background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(247,244,253,.99));
    border-color: rgba(184,220,245,.34);
    box-shadow: 0 24px 75px rgba(0,0,0,.35);
}
.page-content h1,
.page-content h2,
.page-content h3 { color: #2b2440; }
.page-content p,
.page-content li { color: #5a536c; }
.page-content a { color: #6b3a8a; text-decoration: underline; text-underline-offset: .18em; }
.page-content ul { list-style: disc; padding-left: 1.25rem; margin: 0 0 1.2rem; }
.page-content ol { list-style: decimal; padding-left: 1.25rem; margin: 0 0 1.2rem; }
.page-content img { border-radius: 16px; }

/* Existing SEO tools keep their markup and copy, but share one light v3 palette. */
.page-content .tfl-page,
.page-content .tfn-page {
    --purple: #173566;
    --purple-light: #507caf;
    --purple-soft: #edf5fc;
    --pink: #9a701e;
    --pink-soft: #fff9e9;
    --gold: #c9a84c;
    --text: #17223d;
    --text-body: #46516b;
    --text-muted: #6f7b94;
}

.page-content .tfl-page h1,
.page-content .tfl-page h2,
.page-content .tfn-page h1,
.page-content .tfn-page h2,
.page-content .tfl-cta__title,
.page-content .tfn-cta__title {
    color: #173566;
    font-family: var(--font-display);
}

.page-content :is(.tfl-step, .tfl-scenario, .tfl-feature, .tfl-crosslink, .tfn-note, .tfn-idea) {
    border-color: #d8e7f4;
}

.page-content :is(.tfl-cta, .tfn-cta) {
    border-color: #cbddec;
    background: linear-gradient(135deg, #edf5fc, #fff9e9);
}

.page-content :is(.tfl-cta__btn, .tfn-cta__btn, .sv-letter__btn--accent) {
    background: linear-gradient(135deg, #507caf, #173566);
    color: white;
}

.page-content .sv-letter__btn--primary {
    background: #173566;
    color: white;
}

.page-content .sv-letter__btn--secondary {
    background: #edf5fc;
    color: #173566;
}

.page-content .sv-letter__input {
    border-color: #cbddec;
}

.page-content .sv-letter__input:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201,168,76,.16);
}

.page-content .sv-letter__gate,
.page-content .sv-letter__upsell {
    border-color: #cbddec;
    background: #f3f8fc;
}

.page-content > .wrap {
    max-width: 44rem;
    margin: 0 auto;
}

.page-content .meta,
.page-content footer {
    color: #6f7b94;
    font-size: .88rem;
}

.page-content .contact,
.page-content .lede {
    margin: 0 0 2rem;
    padding: 18px 20px;
    border: 1px solid #d8e7f4;
    border-radius: 14px;
    background: #edf5fc;
}

.page-content .lede {
    border-left: 4px solid #c9a84c;
    border-radius: 0 14px 14px 0;
    font-size: 1.05rem;
}

.page-content details {
    padding: 14px 0;
    border-bottom: 1px solid #d8e7f4;
}

.page-content summary {
    color: #173566;
    font-weight: 700;
    cursor: pointer;
}

/* Shared in-article App Store prompt for the main WordPress menu pages. */
.page-content .tf-app-cta {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin: 28px 0 38px;
    padding: 22px;
    border: 1px solid #cbddec;
    border-radius: 18px;
    background: linear-gradient(135deg, #edf5fc, #fff9e9);
    box-shadow: 0 14px 34px rgba(23, 53, 102, .1);
}

.page-content .tf-app-cta__icon {
    width: 76px;
    height: 76px;
    border-radius: 19px;
    box-shadow: 0 10px 24px rgba(23, 53, 102, .22);
}

.page-content .tf-app-cta__copy { min-width: 0; }

.page-content .tf-app-cta__eyebrow {
    margin: 0 0 4px;
    color: #6f7b94;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.page-content .tf-app-cta__title {
    margin: 0 0 5px;
    color: #173566;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.08;
}

.page-content .tf-app-cta__text {
    margin: 0;
    color: #46516b;
    font-family: var(--font-body);
    font-size: .9rem;
    line-height: 1.55;
}

.page-content .tf-app-cta__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fairy-gold-light), var(--fairy-gold));
    box-shadow: 0 9px 22px rgba(201, 168, 76, .24);
    color: var(--fairy-dark);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.page-content .tf-app-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 168, 76, .32);
    color: var(--fairy-dark);
}

/* The retired browser editor's indexed page now leads into the iOS app. */
.pictures-hero .hero__title-accent {
    display: block;
    margin-top: .12em;
    font-size: clamp(3.15rem, 7vw, 6rem);
}

.pictures-page-content__lead {
    padding-left: 20px;
    border-left: 4px solid var(--fairy-gold);
    color: #2b2440 !important;
    font-size: clamp(1.08rem, 2vw, 1.25rem);
    font-weight: 600;
}

.pictures-steps {
    display: grid;
    gap: 12px;
    counter-reset: pictures-step;
    padding: 0 !important;
    list-style: none !important;
}

.pictures-steps li {
    position: relative;
    min-height: 58px;
    padding: 15px 18px 15px 68px;
    border: 1px solid #d8e7f4;
    border-radius: 14px;
    background: #f4f8fc;
}

.pictures-steps li::before {
    position: absolute;
    top: 12px;
    left: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #173566;
    color: white;
    content: counter(pictures-step);
    counter-increment: pictures-step;
    font-weight: 800;
}

.pictures-fairies {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pictures-fairy {
    overflow: hidden;
    border: 1px solid #d8e7f4;
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 25px rgba(23, 53, 102, .08);
}

.pictures-fairy--aurora { border-top: 4px solid #d99b3d; }
.pictures-fairy--luna { border-top: 4px solid #4d83ca; }
.pictures-fairy--rosa { border-top: 4px solid #d675a4; }

.pictures-fairy img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0;
    object-fit: cover;
}

.pictures-fairy div { padding: 4px 16px 12px; }
.pictures-fairy h3 { margin-top: 12px; }

.pictures-download {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid #cbddec;
    border-radius: 20px;
    background: linear-gradient(135deg, #edf5fc, #fff9e9);
}

.pictures-download > img {
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    border-radius: 25px;
    box-shadow: 0 12px 28px rgba(23, 53, 102, .22);
}

.pictures-download h2 { margin-top: 0; }
.pictures-download .hero__cta { text-decoration: none; }

@media (max-width: 720px) {
    .pictures-fairies { grid-template-columns: 1fr; }
    .pictures-fairy { display: grid; grid-template-columns: 112px 1fr; }
    .pictures-fairy img { height: 100%; min-height: 150px; }
    .pictures-download { align-items: flex-start; }
    .pictures-download > img { width: 76px; height: 76px; flex-basis: 76px; border-radius: 19px; }
}

@media (max-width: 480px) {
    .pictures-fairy { grid-template-columns: 92px 1fr; }
    .pictures-download { display: grid; }
}

.post-list { display: grid; gap: 20px; }
.post-card {
    padding: 26px;
    border: 1px solid rgba(107,184,232,.22);
    border-radius: var(--radius-lg);
    background: rgba(6,17,59,.92);
}
.post-card h2 { margin-bottom: 8px; color: white; }
.post-card p { color: var(--color-text-secondary); }
.post-card a { color: inherit; }

@media (max-width: 767px) {
    .site-main > .container {
        padding-inline: 10px;
    }
    .page-content {
        margin: 20px auto 32px;
        padding: 24px 16px;
        border-radius: 18px;
    }
    .page-content .tfl-page,
    .page-content .tfn-page {
        padding-inline: 0;
        padding-bottom: 36px;
    }
    .page-content :is(.tfl-step, .tfl-scenario, .tfl-feature, .tfl-crosslink, .tfn-note, .tfn-idea) {
        padding-inline: 16px;
    }
    .page-content .tf-app-cta {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
        margin: 22px 0 30px;
        padding: 16px;
    }
    .page-content .tf-app-cta__icon {
        width: 58px;
        height: 58px;
        border-radius: 15px;
    }
    .page-content .tf-app-cta__eyebrow {
        font-size: .61rem;
        letter-spacing: .06em;
    }
    .page-content .tf-app-cta__title {
        font-size: 1.28rem;
    }
    .page-content .tf-app-cta__button {
        grid-column: 1 / -1;
        width: 100%;
    }
    .header__inner { height: 76px; }
    .header__logo { width: auto; height: auto; }
    .header__brand-mark { width: 44px; height: 44px; flex-basis: 44px; border-radius: 12px; }
    .header__brand-name strong { font-size: 1.38rem; }
    .header__brand-name span { font-size: .55rem; letter-spacing: .12em; }
    .hero,
    .hero__inner { min-height: 0; }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 42px;
        padding-bottom: 60px;
    }
    .hero__icon-stage {
        grid-row: 1;
        width: min(82vw, 330px);
        justify-self: center;
    }
    .hero__content {
        grid-row: 2;
        max-width: 34rem;
        margin-inline: auto;
        text-align: center;
    }
    .hero__app-store { margin-inline: auto; }
    .hero__title { font-size: clamp(2.1rem, 10vw, 3rem); }
    .hero__title-accent { font-size: clamp(4rem, 19vw, 5.8rem); }
    .hero__title-brand { font-size: clamp(4rem, 19vw, 5.8rem); }
    .hero__title-tagline { font-size: clamp(.88rem, 4vw, 1.05rem); }
    .app-download-panel { flex-direction: column; text-align: center; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__inner > div:first-child { width: 100%; }
    .footer__brand { margin-inline: auto; }
    .footer__links { gap: 12px 20px; }
}
