/*
Theme Name: OEVO - One Evolution
Theme URI: https://oevo.com
Author: OEVO Team
Author URI: https://oevo.com
Description: A nostalgic showcase website for OEVO, the 7-second video competition platform. Built with a warm, retro design to celebrate the app's legacy.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oevo
Tags: one-column, custom-menu, featured-images, full-width-template
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --warm-cream: #FFF8F0;
    --warm-peach: #FFE8D6;
    --warm-orange: #FF6B35;
    --warm-coral: #FF4444;
    --deep-brown: #2C1810;
    --soft-brown: #8B6F47;
    --vintage-gold: #D4A843;
    --film-grain: rgba(0,0,0,0.03);
    --shadow-warm: rgba(44, 24, 16, 0.1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-cream);
    color: var(--deep-brown);
    overflow-x: hidden;
}

/* Film grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ============================================
   INLINE SVG LOGO
   ============================================ */
.oevo-logo-svg {
    display: inline-block;
    vertical-align: middle;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

.site-nav.scrolled {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px var(--shadow-warm);
}

.site-nav.always-solid {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px var(--shadow-warm);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo .oevo-logo-svg {
    height: 36px;
    width: auto;
    transition: transform 0.3s;
}

.nav-logo:hover .oevo-logo-svg {
    transform: scale(1.05);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--deep-brown);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-orange);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.current {
    color: var(--warm-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--deep-brown);
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212,168,67,0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    display: block;
    margin: 0 auto 2rem;
}

.hero-logo .oevo-logo-svg {
    height: clamp(60px, 10vw, 100px);
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(255,107,53,0.2));
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1.5px solid var(--vintage-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vintage-gold);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--warm-orange);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--soft-brown);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-orange);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--soft-brown);
    margin-top: 0.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--soft-brown);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: var(--soft-brown);
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    padding: 6rem 2rem;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--warm-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* ============================================
   ORIGIN STORY
   ============================================ */
.origin {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.origin-text {
    padding-right: 2rem;
}

.origin-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--soft-brown);
    margin-bottom: 1.5rem;
}

.origin-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow-warm);
    position: relative;
    overflow: hidden;
}

.origin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-orange), var(--vintage-gold));
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--warm-orange);
    white-space: nowrap;
    min-width: 50px;
    padding-top: 2px;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--warm-orange);
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 4px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: var(--warm-peach);
}

.timeline-item:last-child .timeline-dot::after {
    display: none;
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--deep-brown);
}

/* ============================================
   WHAT WAS OEVO (DARK SECTION)
   ============================================ */
.what-section {
    background: var(--deep-brown);
    color: var(--warm-cream);
    position: relative;
    overflow: hidden;
}

.what-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,107,53,0.1), transparent 60%);
}

.what-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.what-section .section-label {
    color: var(--vintage-gold);
}

.what-section .section-title {
    color: var(--warm-cream);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,248,240,0.7);
}

/* ============================================
   APP SHOWCASE (PHONE MOCKUPS)
   ============================================ */
.showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.showcase-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--soft-brown);
}

.phone-mockups {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.phone-frame {
    width: 240px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transition: transform 0.4s;
}

.phone-frame:hover {
    transform: translateY(-10px) scale(1.02);
}

.phone-frame:nth-child(2) {
    transform: translateY(30px);
}

.phone-frame:nth-child(2):hover {
    transform: translateY(20px) scale(1.02);
}

.phone-screen {
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    position: relative;
}

.phone-screen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    color: white;
}

.screen-feed { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.screen-profile { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.screen-contest { background: linear-gradient(135deg, #2C1810, #8B4513); }

.screen-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screen-desc {
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1.5;
}

.mock-header {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.mock-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.mock-nav-dots {
    display: flex;
    gap: 3px;
}

.mock-nav-dots span {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
}

.mock-video-card {
    width: 85%;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    backdrop-filter: blur(10px);
}

.mock-video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-coral));
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-play-btn {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid var(--warm-orange);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

.mock-username { font-size: 0.6rem; font-weight: 600; color: white; }
.mock-likes { font-size: 0.5rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

.mock-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-orange), var(--vintage-gold));
    margin-bottom: 0.6rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.mock-stat-row { display: flex; gap: 1.5rem; margin-top: 0.8rem; }
.mock-stat { text-align: center; }
.mock-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 700; color: white; }
.mock-stat-label { font-size: 0.45rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }

.mock-trophy { font-size: 2.5rem; margin-bottom: 0.5rem; }
.mock-prize { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--vintage-gold); margin-bottom: 0.3rem; }
.mock-contest-label { font-size: 0.6rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

.mock-timer { margin-top: 0.8rem; display: flex; gap: 0.5rem; }
.mock-timer-block { background: rgba(255,255,255,0.1); border-radius: 6px; padding: 0.3rem 0.5rem; text-align: center; }
.mock-timer-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; font-weight: 700; color: white; }
.mock-timer-label { font-size: 0.35rem; color: rgba(255,255,255,0.5); text-transform: uppercase; }

.mock-bottom-nav {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-around;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.mock-nav-item { width: 18px; height: 18px; border-radius: 4px; background: rgba(255,255,255,0.2); }
.mock-nav-item.active { background: var(--warm-orange); }

.mock-record-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--warm-coral);
    border: 3px solid rgba(255,255,255,0.5);
    margin-top: -8px;
}

/* ============================================
   CREATORS
   ============================================ */
.creators {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.creator-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px var(--shadow-warm);
    transition: transform 0.3s;
}

.creator-card:hover {
    transform: translateY(-5px);
}

.creator-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.creator-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.creator-label {
    font-size: 0.75rem;
    color: var(--soft-brown);
}

/* ============================================
   QUOTE
   ============================================ */
.quote-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.quote-section::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    color: var(--warm-peach);
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.quote-author {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--warm-orange);
    font-weight: 600;
}

/* ============================================
   FOUNDERS
   ============================================ */
.founders-section {
    background: linear-gradient(180deg, var(--warm-peach) 0%, var(--warm-cream) 100%);
}

.founders-content {
    max-width: 1200px;
    margin: 0 auto;
}

.founders-header {
    text-align: center;
    margin-bottom: 4rem;
}

.founders-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--soft-brown);
    line-height: 1.8;
}

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

.founder-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-warm);
    transition: transform 0.3s;
}

.founder-card:hover {
    transform: translateY(-8px);
}

.founder-photo {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.founder-photo::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.founder-initials {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.founder-info { padding: 2rem; }

.founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--warm-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--soft-brown);
}

/* ============================================
   LEGACY
   ============================================ */
.legacy {
    background: var(--deep-brown);
    color: var(--warm-cream);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.legacy::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 140%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,107,53,0.08), transparent 60%);
}

.legacy-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.legacy .section-label { color: var(--vintage-gold); }
.legacy .section-title { color: var(--warm-cream); margin-bottom: 2rem; }

.legacy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,248,240,0.7);
    margin-bottom: 2rem;
}

.legacy-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    position: absolute;
    bottom: -1rem;
    right: 5%;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a0f09;
    color: rgba(255,248,240,0.5);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .oevo-logo-svg {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logo:hover .oevo-logo-svg {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,248,240,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 0.8rem;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.privacy-hero .updated {
    font-size: 0.9rem;
    color: var(--soft-brown);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

.privacy-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--deep-brown);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--soft-brown);
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
    color: var(--soft-brown);
    line-height: 1.8;
}

.privacy-content ul li { margin-bottom: 0.3rem; }

.privacy-content a {
    color: var(--warm-orange);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-orange), var(--vintage-gold));
    border-radius: 2px;
    margin: 3rem 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .origin { grid-template-columns: 1fr; gap: 3rem; }
    .origin-text { padding-right: 0; }
    .what-grid { grid-template-columns: 1fr 1fr; }
    .creator-grid { grid-template-columns: repeat(2, 1fr); }
    .founders-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .site-nav { padding: 1rem 1.5rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(255,248,240,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px var(--shadow-warm);
    }

    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .what-grid { grid-template-columns: 1fr; }
    .phone-mockups { gap: 1rem; }
    .phone-frame { width: 180px; }
    .hero-stats { gap: 2rem; }
    .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .phone-frame { width: 150px; }
    .phone-frame:nth-child(2) { transform: translateY(20px); }
    .creator-grid { grid-template-columns: 1fr; max-width: 300px; margin: 3rem auto 0; }
}

/* ============================================
   WORDPRESS OVERRIDES
   ============================================ */
.wp-admin-bar .site-nav {
    top: 32px;
}

/* Remove default WP styles that conflict */
.entry-content,
.entry-title {
    margin: 0;
    padding: 0;
}
