/* ========================================
   SEGUIMIENTOAPOLITICOS — v3.0
   Professional Dark Theme
   ======================================== */

/* ---------- Variables ---------- */
:root {
    --gold: #E8E8E8;
    --gold-light: #FFFFFF;
    --gold-glow: rgba(255, 255, 255, 0.18);
    --gold-muted: rgba(255, 255, 255, 0.07);

    --bg: #080808;
    --bg-2: #0D0D0D;
    --bg-3: #111111;
    --surface: #161616;
    --surface-2: #1C1C1C;

    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(255, 255, 255, 0.18);

    --text-primary: #F0EDE6;
    --text-secondary: #9A9BA5;
    --text-muted: #5A5C68;

    --glass-bg: rgba(12, 13, 16, 0.72);
    --glass-blur: blur(20px);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    line-height: 1.25;
    color: var(--text-primary);
}

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

a:hover {
    color: var(--gold-light);
}

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

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 70px;
    background: transparent;
    transition: background var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
}

.navbar-brand i {
    color: var(--gold);
    font-size: 1.3rem;
}

.brand-accent {
    color: var(--gold);
}

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

.nav-link {
    display: block;
    padding: 0.45rem 0.85rem;
    color: rgba(240, 237, 230, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    color: var(--gold) !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--gold-glow) !important;
    color: var(--gold-light) !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.open {
    display: block;
    max-height: 400px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-link {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition), background var(--transition);
}

.mobile-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../Fondo.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

@media (max-width: 900px) {
    .hero-bg {
        background-size: 150%;
        background-position: center 15%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(7, 8, 12, 0.55) 0%,
            rgba(7, 8, 12, 0.45) 40%,
            rgba(7, 8, 12, 0.75) 75%,
            rgba(7, 8, 12, 1.0) 100%),
        radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 1.5rem 120px;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.title-accent {
    color: #FFFFFF;
    display: block;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.25);
}

/* Tagline */
.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(240, 237, 230, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-family: var(--font-sans);
    font-weight: 400;
}

.tagline-sub {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95em;
    color: rgba(240, 237, 230, 0.6);
    font-style: italic;
}

/* ========================================
   GLASS SEARCH
   ======================================== */
.glass-search-wrapper {
    position: relative;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.glass-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 1.25rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.glass-search:focus-within {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 0 3px var(--gold-muted),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.search-icon-wrap {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.glass-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-sans);
    padding: 0.75rem 0;
}

.glass-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.glass-search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #080808;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.glass-search-btn:hover {
    background: var(--gold-light);
    transform: scale(1.03);
    box-shadow: 0 4px 20px var(--gold-glow);
}

/* Search suggestions */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    display: none;
    overflow: hidden;
    z-index: 100;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: var(--surface);
    color: var(--text-primary);
}

/* Pillars */
.hero-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(240, 237, 230, 0.6);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pillar i {
    color: var(--gold);
    font-size: 0.75rem;
}

.pillar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.75rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce-arrow 2s infinite;
}

.scroll-indicator i {
    font-size: 0.85rem;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.35;
    }

    50% {
        transform: translateX(-50%) translateY(6px);
        opacity: 0.6;
    }
}

/* ========================================
   STATEMENT BAND
   ======================================== */
.statement-band {
    background: linear-gradient(90deg, var(--bg-2) 0%, var(--surface) 50%, var(--bg-2) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
    text-align: center;
}

.statement-text {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.statement-text i {
    color: var(--gold);
    opacity: 0.6;
    font-size: 0.8em;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 5rem 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    background: var(--surface);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background var(--transition);
}

.stat-item:hover {
    background: var(--surface-2);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-unit {
    font-size: 1.5rem;
    opacity: 0.7;
}

.stat-number i {
    font-family: var(--font-sans);
    font-size: 2.5rem;
}

.stat-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   GENERIC SECTION
   ======================================== */
.section {
    padding: 6rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   INVESTIGATIONS
   ======================================== */
.investigations-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.method-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.method-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-gold);
}

.method-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.method-icon i {
    font-size: 1.25rem;
    color: var(--gold);
}

.method-card h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.method-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========================================
   POLITICIANS
   ======================================== */
.politicians-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.politicians-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.politician-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.politician-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-gold);
}

.politician-card-header {
    display: flex;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    min-height: 200px;
}

.card-photo-col {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: var(--surface-2);
}

.politician-photo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.card-info-col {
    width: 50%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg-3) 100%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: flex-start;
}

/* Card header top row */
.card-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

/* Party logo circle */
.party-logo-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(255,255,255,0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-top: auto;
}

.party-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.party-logo-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-sans);
    letter-spacing: 0.03em;
}

/* Amber badge override */
.status-amber {
    background: rgba(245, 158, 11, 0.15) !important;
    border: 1px solid rgba(245, 158, 11, 0.45) !important;
    color: #F59E0B !important;
}

.politician-entity {
    font-size: 0.75rem;
    color: rgba(240,237,230,0.55);
    margin-top: 0.2rem;
}

.politician-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.politician-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.politician-role {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.politician-card-body {
    padding: 1.5rem;
}

.politician-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.politician-stat {
    text-align: center;
}

.politician-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.politician-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.politician-zones {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.zones-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.zones-label i { color: var(--gold); }

.zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.zone-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
}

.politician-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.risk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
}

.risk-badge.high {
    background: rgba(255, 75, 75, 0.12);
    color: #ff4b4b;
    border: 1px solid rgba(255, 75, 75, 0.3);
}

.risk-badge.medium {
    background: rgba(251, 146, 60, 0.12);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.risk-badge.low {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--gold-muted);
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--transition);
}

.view-profile-btn:hover {
    background: var(--gold);
    color: #0a0800;
    box-shadow: 0 4px 16px var(--gold-glow);
}

.coming-soon-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
    margin-top: 1rem;
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.coming-soon-icon i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.coming-soon-card h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.coming-soon-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-muted);
}

/* ========================================
   PROMPT SECTION
   ======================================== */
.prompt-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.prompt-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.prompt-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.prompt-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
    flex-wrap: wrap;
    gap: 1rem;
}

.prompt-card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.prompt-card-title i {
    color: var(--gold);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-sans);
}

.copy-btn:hover {
    background: var(--gold);
    color: #0a0800;
}

.copy-btn.copied {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.prompt-content {
    padding: 1.75rem;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-height: 280px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.3);
}

.prompt-content::-webkit-scrollbar {
    width: 6px;
}

.prompt-content::-webkit-scrollbar-track {
    background: transparent;
}

.prompt-content::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.prompt-hint {
    padding: 1rem 1.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.prompt-hint i {
    color: var(--gold);
    flex-shrink: 0;
}

.prompt-hint code {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    font-family: inherit;
}

/* Prompt send tip */
.prompt-send-tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    background: rgba(201, 168, 76, 0.06);
    border-top: 1px solid var(--border-gold);
    font-size: 0.82rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.prompt-send-tip>i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.prompt-send-tip>span {
    flex: 1;
    min-width: 200px;
}

.copy-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-email-btn:hover {
    background: var(--gold);
    color: #0a0800;
}

.copy-email-btn.copied {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

/* ========================================
   ABOUT
   ======================================== */
.about-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-tag {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.75;
    font-size: 0.95rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.value-item i {
    color: var(--gold);
    width: 16px;
    font-size: 0.9rem;
}

.manifest-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manifest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.manifest-icon {
    width: 72px;
    height: 72px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.manifest-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.manifest-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.manifest-card blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.manifest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.manifest-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.contact-inner {
    text-align: center;
}

.contact-inner .section-tag {
    text-align: center;
}

.contact-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.contact-card i {
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-card:hover {
    border-color: var(--border-gold);
    color: var(--text-primary);
    background: var(--surface-2);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-3);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    text-align: center;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-brand i {
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

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

.footer-nav a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.65;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

/* ========================================
   REVEAL ANIMATION
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .glass-search {
        padding: 4px 4px 4px 1rem;
    }

    .glass-search-btn {
        padding: 0.65rem 1rem;
        font-size: 0.82rem;
    }

    .pillar-divider {
        display: none;
    }

    .hero-pillars {
        flex-direction: column;
        gap: 0.4rem;
    }

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

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

    .section {
        padding: 4rem 0;
    }

    .about-text .section-title {
        font-size: 1.75rem;
    }
}

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

    .glass-search {
        flex-direction: column;
        border-radius: var(--radius-xl);
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .glass-search-btn {
        width: 100%;
        justify-content: center;
        border-radius: var(--radius-lg);
    }

    .search-icon-wrap {
        display: none;
    }
}