/* =============================================
   LON COMING SOON — PAGE STYLES
   ============================================= */

/* =============================================
   SHARED SECTION BASE
   ============================================= */

section {
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 0 4rem;
    background: var(--bg);
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.22);
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay on top of video */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

/* Logo */
.logo-section {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.logo-section > *,
.logo-section a,
.logo-section figure,
.logo-section .custom-logo-link,
.logo-section .wp-block-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.site-logo {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .site-logo { max-width: 180px; }
}

@media (max-width: 480px) {
    .site-logo { max-width: 150px; }
}

.logo-text-fallback {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text);
}

.logo-text-fallback--small {
    font-size: 1.25rem;
}

/* Hero Heading */
.hero-heading {
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-subheading {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* =============================================
   COUNTDOWN
   ============================================= */

.countdown-section {
    margin-bottom: 2.5rem;
}

.countdown-grid {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

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

.countdown-value {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.countdown-sep {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1.2rem;
    align-self: flex-start;
    padding-top: 0.75rem;
}

/* =============================================
   NEWSLETTER FORM
   ============================================= */

.newsletter-section {
    width: 100%;
    max-width: 520px;
}

.newsletter-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.form-group input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 1.25rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
}

.form-group input[type="email"]::placeholder {
    color: #555;
}

.form-group input[type="email"]:focus {
    border-color: var(--accent);
    background-color: #161616;
}

.btn-primary {
    flex-shrink: 0;
    padding: 0.9rem 1.75rem;
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    background-color: var(--accent-dark);
}

.form-note {
    font-size: 0.8rem;
    color: #555;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
}

.form-message {
    display: none;
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.form-message.success {
    display: block;
    background-color: #0d2e0d;
    color: #6ee66e;
    border: 1px solid #1e4d1e;
}

.form-message.error {
    display: block;
    background-color: #2e0d0d;
    color: #ff7070;
    border: 1px solid #4d1e1e;
}

/* =============================================
   AD ZONES
   ============================================= */

.ad-zone {
    text-align: center;
    overflow: hidden;
}

.ad-zone--banner {
    padding: 1.5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-height: 90px;
}

.ad-zone--content {
    padding: 2rem 0;
    background: var(--bg);
    min-height: 120px;
}

.ad-zone--sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.features-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

/* City Tools Strip */
.city-tools-strip {
    margin-top: 3rem;
    text-align: center;
}

.city-tools-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 1rem;
}

.city-tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
}

.city-tool {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.city-tool svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--accent);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

/* =============================================
   VISION SECTION
   ============================================= */

.vision-section {
    padding: 6rem 0;
    background: var(--bg);
}

.vision-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: center;
}

.vision-text h2 {
    margin-bottom: 1.5rem;
}

.vision-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.vision-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.vision-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 500;
}

.vision-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
    stroke: var(--accent);
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   SEO CONTENT SECTION
   ============================================= */

.seo-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.seo-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.seo-section h3 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0.875rem;
    color: var(--text);
}

.seo-section p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.seo-section strong {
    color: var(--text-dim);
    font-weight: 600;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    padding: 7rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Subtle glow behind CTA */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(200, 16, 46, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form--cta .form-group {
    max-width: 520px;
    margin: 0 auto;
}

/* Social Links (in CTA) */
.social-links {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-label {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0;
    width: 100%;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.25s ease;
}

.social-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--text);
    opacity: 1;
}

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

.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

.footer-logo {
    max-height: 36px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #444;
    margin: 0.4rem 0 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.5rem;
}

.footer-nav a {
    font-size: 0.875rem;
    color: #555;
}

.footer-nav a:hover {
    color: var(--text);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

.footer-social-link:hover {
    border-color: var(--accent);
    color: var(--text);
    opacity: 1;
}

.footer-copy {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    width: 100%;
}

.footer-copy p {
    font-size: 0.8rem;
    color: #444;
    margin-bottom: 0;
}

.footer-copy-sep {
    color: #333;
}

/* =============================================
   SKIP LINK (ACCESSIBILITY)
   ============================================= */

.skip-link.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link.screen-reader-text:focus {
    clip: auto;
    clip-path: none;
    height: auto;
    left: 6px;
    padding: 1rem 1.5rem;
    top: 6px;
    width: auto;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    z-index: 100000;
    border-radius: 0.25rem;
}

/* =============================================
   INNER SEO PAGES
   ============================================= */

.inner-hero {
    position: relative;
    padding: 3.5rem 0 4rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(200,16,46,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.inner-hero .container { position: relative; z-index: 1; }

.inner-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.inner-logo a { display: flex; align-items: center; }
.inner-logo .site-logo { max-width: 160px; }

.inner-page-title {
    text-align: center;
    font-size: 2.75rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.15;
}

.inner-content-wrap {
    padding: 5rem 0;
    background: var(--bg);
}

.inner-page-body h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.inner-page-body h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.inner-page-body p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.inner-page-body ul {
    margin: 1.25rem 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.inner-page-body ul li {
    font-size: 1rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.65;
}

.inner-page-body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.inner-page-body strong {
    color: var(--text-dim);
    font-weight: 600;
}

.inner-cta-wrap {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.inner-cta h2 { margin-bottom: 0.75rem; }
.inner-cta p  { color: var(--text-muted); margin-bottom: 2rem; }

.inner-cta-back {
    margin-top: 2rem !important;
    font-size: 0.875rem;
}

.inner-cta-back a {
    color: var(--text-muted);
}

.inner-cta-back a:hover {
    color: var(--text);
    opacity: 1;
}

@media (max-width: 768px) {
    .inner-page-title { font-size: 1.875rem; }
    .inner-content-wrap,
    .inner-cta-wrap   { padding: 3.5rem 0; }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeInUp 0.7s ease both;
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease both;
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .vision-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 160px;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: auto;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.05rem;
    }

    .features-section,
    .vision-section,
    .seo-section,
    .cta-section {
        padding: 4rem 0;
    }

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

    .form-group {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }

    .countdown-grid {
        gap: 0.35rem;
    }

    .countdown-value {
        font-size: 2rem;
        padding: 0.6rem 0.75rem;
    }

    .countdown-unit {
        min-width: 60px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

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

    .countdown-value {
        font-size: 1.75rem;
    }

    .stat-card {
        padding: 1.25rem 1.5rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        gap: 0.5rem 1rem;
    }
}
