:root {
    /* Color Palette Design Tokens */
    --pf-template-primary: #4f46e5;
    --pf-template-primary-hover: #4338ca;
    --pf-template-primary-light: #e0e7ff;
    --pf-template-text: #0f172a;
    --pf-template-muted: #64748b;
    --pf-template-border: #e2e8f0;
    --pf-template-bg: #ffffff;
    --pf-template-surface: #f8fafc;
    
    /* Shadows & Effects */
    --pf-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --pf-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --pf-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --pf-radius-sm: 8px;
    --pf-radius-pill: 9999px;
    --pf-transition: cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--pf-template-text);
    background-color: var(--pf-template-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.pf-template-container {
    width: min(1200px, calc(100% - 2rem));
    margin-inline: auto;
}

/* Header Section */
.pf-template-header {
    padding: 20px 0;
    background: var(--pf-template-bg);
    border-bottom: 1px solid var(--pf-template-border);
}

/* Glassmorphism Navbar */
.pf-template-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: background var(--pf-transition), box-shadow var(--pf-transition);
}

.pf-template-navbar__inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pf-template-navbar a {
    color: var(--pf-template-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 14px;
    border-radius: var(--pf-radius-sm);
    transition: color var(--pf-transition), background-color var(--pf-transition);
}

.pf-template-navbar a:hover {
    color: var(--pf-template-primary);
    background-color: var(--pf-template-surface);
}

/* Section Styling */
.pf-dynamic-section {
    padding: clamp(60px, 8vw, 100px) 0;
}

.pf-section-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.pf-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 4px 12px;
    background-color: var(--pf-template-primary-light);
    color: var(--pf-template-primary);
    border-radius: var(--pf-radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pf-section-heading h2 {
    margin: 0;
    color: var(--pf-template-text);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.pf-section-heading p {
    margin: 16px auto 0;
    color: var(--pf-template-muted);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
}

/* Footer Section */
.pf-template-footer {
    padding: 48px 0;
    background: #0f172a;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}

.pf-template-footer a {
    color: #f8fafc;
    text-decoration: none;
    transition: color var(--pf-transition);
}

.pf-template-footer a:hover {
    color: var(--pf-template-primary-light);
}