@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --plcr-bg: #0B132B;
    --plcr-surface: #1C2541;
    --plcr-surface-hover: #2B3A67;
    --plcr-accent: #3A506B;
    --plcr-text-main: #FFFFFF;
    --plcr-text-muted: #9BAEC8;
    --plcr-highlight: #00E5FF;
    --plcr-highlight-dim: rgba(0, 229, 255, 0.15);
    --plcr-radius: 12px;
    --plcr-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --plcr-font: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--plcr-font);
    background-color: var(--plcr-bg);
    color: var(--plcr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.plcr-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 19, 43, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plcr-brand-logo {
    display: flex;
    flex-direction: column;
}

.plcr-brand-abbr {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--plcr-highlight);
    text-transform: uppercase;
}

.plcr-brand-sub {
    font-size: 12px;
    color: var(--plcr-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plcr-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--plcr-highlight);
    color: var(--plcr-highlight);
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 0 15px var(--plcr-highlight-dim);
}

/* Hero Section */
.plcr-hero-area {
    padding: 160px 5% 80px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 80% 20%, var(--plcr-surface) 0%, transparent 50%);
}

.plcr-hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--plcr-highlight-dim);
    color: var(--plcr-highlight);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plcr-main-heading {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
}

.plcr-main-heading span {
    color: var(--plcr-highlight);
}

.plcr-hero-text {
    font-size: 18px;
    color: var(--plcr-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

.plcr-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
}

.plcr-hero-stat {
    background: var(--plcr-surface);
    padding: 24px;
    border-radius: var(--plcr-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--plcr-transition);
}

.plcr-hero-stat:hover {
    transform: translateY(-5px);
    background: var(--plcr-surface-hover);
    border-color: var(--plcr-highlight);
}

.plcr-stat-title {
    font-size: 14px;
    color: var(--plcr-highlight);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.plcr-stat-desc {
    font-size: 16px;
    color: var(--plcr-text-main);
}

/* Sections General */
.plcr-section-wrap {
    padding: 100px 5%;
    position: relative;
}

.plcr-section-wrap:nth-child(even) {
    background-color: var(--plcr-surface);
}

.plcr-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.plcr-section-intro {
    font-size: 16px;
    color: var(--plcr-text-muted);
    max-width: 600px;
    margin-bottom: 60px;
}

/* Feature Grids */
.plcr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plcr-feature-item {
    background: var(--plcr-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--plcr-radius);
    padding: 40px;
    transition: var(--plcr-transition);
    position: relative;
    overflow: hidden;
}

.plcr-section-wrap:nth-child(even) .plcr-feature-item {
    background: var(--plcr-accent);
}

.plcr-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: var(--plcr-highlight);
    transition: var(--plcr-transition);
}

.plcr-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.plcr-feature-item:hover::before {
    height: 100%;
}

.plcr-feature-kicker {
    font-size: 12px;
    color: var(--plcr-highlight);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.plcr-feature-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.plcr-feature-desc {
    color: var(--plcr-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.plcr-feature-list {
    list-style: none;
}

.plcr-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--plcr-text-main);
}

.plcr-feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--plcr-highlight);
}

/* Footer */
.plcr-footer-zone {
    background: #050a18;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plcr-footer-slogan {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: var(--plcr-highlight);
}

.plcr-footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.plcr-footer-col-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.plcr-footer-text {
    color: var(--plcr-text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.plcr-footer-contact {
    list-style: none;
}

.plcr-footer-contact li {
    color: var(--plcr-text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.plcr-footer-contact strong {
    color: var(--plcr-highlight);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plcr-footer-nav {
    list-style: none;
}

.plcr-footer-nav li {
    margin-bottom: 10px;
}

.plcr-footer-nav a {
    color: var(--plcr-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--plcr-transition);
}

.plcr-footer-nav a:hover {
    color: var(--plcr-highlight);
    padding-left: 5px;
}

.plcr-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--plcr-text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .plcr-hero-area { padding-top: 120px; }
    .plcr-section-wrap { padding: 60px 5%; }
}
