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

:root {
  /* Primary Colors */
  --primary-blue-dark: #1455c0;
  --primary-blue-light: #2f7dff;
  --primary-blue: #0074d4;
  --primary-gradient: linear-gradient(135deg, #1455c0 0%, #2f7dff 100%);
  
  /* Neutrals */
  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f7f9fc;
  --bg-light-blue: #eaf2ff;
  --bg-radial: radial-gradient(circle at top, #eaf2ff 0%, #ffffff 100%);
  
  /* Accent Colors */
  --accent-blue: #2563eb;
  --accent-amber: #f59e0b;
  --accent-emerald: #10b981;
  
  /* Borders */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #94a3b8;
  
  /* Shadows - Premium SaaS visible shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 8px 32px rgba(20, 85, 192, 0.12);
  --shadow-card-hover: 0 16px 48px rgba(20, 85, 192, 0.16);
  --shadow-button: 0 8px 24px rgba(20, 85, 192, 0.3);
  --shadow-button-hover: 0 12px 32px rgba(20, 85, 192, 0.4);
  --shadow-header: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(20, 85, 192, 0.08);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  
  /* Transitions */
  --transition-fast: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 700ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: #1e293b;
    background: #f7f9fc;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-heading);
    padding: 1rem 0;
    box-shadow: var(--shadow-header);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo {
    height: 60px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.header-logo:hover {
    opacity: 0.7;
}

nav {
    display: flex;
    gap: 0.375rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0f172a;
    cursor: pointer;
    padding: 0.5rem;
}

nav a {
    color: #64748b;
    text-decoration: none;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    transition: all 0.15s ease;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

nav a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

nav a.nav-primary {
    color: #0074d4;
    font-weight: 600;
}

nav a.nav-primary:hover {
    background: #eff6ff;
    color: #0066bd;
}

nav a.login-link {
    margin-left: 0.5rem;
    color: #0074d4;
    border: 1px solid #e2e8f0;
}

nav a.login-link:hover {
    background: #eff6ff;
    border-color: #0074d4;
    color: #0066bd;
}

main {
    padding: 4rem 0;
    min-height: calc(100vh - 180px);
}

.landing {
    max-width: 1100px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 5rem 2rem 7rem 2rem;
    background: radial-gradient(circle at top right, rgba(0, 116, 212, 0.03) 0%, transparent 60%), white;
    border-radius: 20px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 3.875rem;
    font-weight: 800;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.hero .intro {
    font-size: 1.375rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0074d4 0%, #0082ed 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(0, 116, 212, 0.3);
    letter-spacing: -0.01em;
    min-height: 48px;
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px 0 rgba(0, 116, 212, 0.45);
    background: linear-gradient(135deg, #0066bd 0%, #0074d4 100%);
}

.cta-button:active {
    transform: translateY(0);
}

.subtext {
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.benefits {
    padding: 2rem 0 2.5rem 0;
    margin-top: 60px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2.5rem;
}

.benefits h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    text-align: center;
    letter-spacing: -0.045em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 3.75rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
    border-color: #cbd5e1;
}

.benefit-card h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 2.125rem;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.3;
    min-height: 3.6rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 400;
}

.features {
    padding: 2rem 0;
}

.features h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0f172a;
    text-align: center;
    letter-spacing: -0.03em;
}

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

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 3.25rem 3rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
    border-color: #cbd5e1;
}

.feature-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.625rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.sps-triad-section {
    padding: 4rem 0 2.5rem;
    margin-top: 60px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2.5rem;
}

.sps-triad-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    text-align: center;
    letter-spacing: -0.045em;
}

.triad-intro,
.section-intro {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
}

.triad-venn-container {
    text-align: center;
    margin: 2.5rem auto 3rem;
    max-width: 700px;
    padding: 0 1rem;
}

.triad-venn-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

/* SPS Triad Diagram Section for Knowledge Pages */
.sps-triad-diagram-section {
    background: #F8F9FA;
    padding: 60px 20px;
    margin: 60px 0;
    border-radius: 8px;
    text-align: center;
}

.sps-triad-diagram-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.diagram-intro {
    color: #6c757d;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 50px;
}

.diagram-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sps-diagram-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .sps-triad-diagram-section {
        padding: 50px 20px;
        margin: 50px 0;
    }
    
    .sps-diagram-image {
        max-width: 850px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sps-triad-diagram-section {
        padding: 40px 15px;
        margin: 40px 0;
    }
    
    .sps-triad-diagram-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .diagram-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .sps-diagram-image {
        max-width: 95%;
    }
}

.triad-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.triad-item {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 3.75rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.triad-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
    border-color: #cbd5e1;
}

.triad-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.875rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.triad-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #525f7f;
    letter-spacing: -0.01em;
}

.triad-item p {
    color: #64748b;
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.weak-state {
    color: #64748b;
    font-style: italic;
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #f1f5f9;
}

.story-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0 2.125rem 0;
    border-left: 4px solid #0074d4;
    box-shadow: 0 2px 8px rgba(0, 116, 212, 0.08);
}

.story-box p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.micro-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0074d4 0%, #0082ed 100%);
    color: white;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px 0 rgba(0, 116, 212, 0.25);
}

.micro-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px 0 rgba(0, 116, 212, 0.4);
    background: linear-gradient(135deg, #0066bd 0%, #0074d4 100%);
}

.triad-bridge {
    background: linear-gradient(135deg, #525f7f 0%, #0074d4 100%);
    padding: 6.5rem 3rem 4.625rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 50px auto;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 116, 212, 0.25),
        0 20px 60px rgba(0, 116, 212, 0.15);
}

.triad-bridge h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.triad-bridge p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.triad-bridge .cta-button {
    background: #0074d4 !important;
    color: white !important;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
}

.triad-bridge .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}

.features-section {
    padding: 4rem 0 2.5rem;
    margin-top: 60px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2.5rem;
}

.features-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    text-align: center;
    letter-spacing: -0.045em;
}

.features-intro {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
}

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

.feature-item {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 3.75rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
    border-color: #cbd5e1;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2.125rem;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.3;
    min-height: 3.25rem;
}

.feature-item p {
    color: #64748b;
    line-height: 1.75;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.feature-output {
    font-size: 0.875rem;
    color: #0074d4;
    font-weight: 500;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 0 !important;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: #f8fbff;
    border-top: 1px solid #e6ecf2;
}

.pricing-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-left: auto;
    margin-right: auto;
}

.pricing-subtitle {
    font-size: 1rem;
    color: #5a697a;
    max-width: 640px;
    margin: 0 auto var(--spacing-lg) auto;
    line-height: 1.75;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
    margin: var(--spacing-lg) auto;
    width: 100%;
    max-width: 420px;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.pricing-value {
    font-size: 48px;
    font-weight: 700;
    color: #0074d4;
    margin-bottom: var(--spacing-md);
}

.pricing-details {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
    text-align: center;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-details li {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.pricing-cta {
    display: inline-block;
    background: #0074d4;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-button);
}

.pricing-cta:hover {
    background: #005fa8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
}

.link-button {
    display: inline-block;
    color: #0074d4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.link-button:hover {
    color: #525f7f;
}

.survey-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #525f7f 0%, #0074d4 100%);
    transition: width 0.3s ease;
    border-radius: 8px;
}

.progress-text {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.progress-percentage {
    color: #0074d4;
    font-weight: 700;
    margin-left: 0.5rem;
}

.question {
    margin: 2.5rem 0;
}

.question-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.domain-badge,
.dimension-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

.domain-badge {
    background: linear-gradient(135deg, #1455c0 0%, #2f7dff 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(20, 85, 192, 0.25);
}

.dimension-badge {
    background: #eaf2ff;
    color: #1455c0;
    border: 1px solid #2f7dff20;
}

.question h3 {
    font-size: 0.8125rem;
    color: #0074d4;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.question p {
    font-size: 1.375rem;
    color: #0f172a;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.rating-scale {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-option {
    text-align: center;
    cursor: pointer;
}

.rating-option input {
    display: none;
}

.rating-option span {
    display: block;
    padding: 0.875rem 0.5rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.15s ease;
    font-weight: 600;
    color: #64748b;
    font-size: 0.9375rem;
}

.rating-option:hover span {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.rating-option.selected span {
    background: linear-gradient(135deg, #525f7f 0%, #0074d4 100%);
    color: white;
    border-color: #0074d4;
    box-shadow: 0 2px 8px rgba(0, 116, 212, 0.3);
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.survey-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.15s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #525f7f 0%, #0074d4 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 116, 212, 0.25);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 116, 212, 0.4);
}

.btn-secondary {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover:not(:disabled) {
    background: #f1f5f9;
    color: #475569;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-success:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.spinner {
    border: 3px solid #f1f5f9;
    border-top: 3px solid #0074d4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading {
    text-align: center;
    padding: 4rem;
}

#loading p {
    color: #64748b;
    font-size: 1rem;
    margin-top: 1rem;
}

.report-container {
    max-width: 900px;
    margin: 0 auto;
}

.report-header {
    text-align: center;
    margin-bottom: 3rem;
}

.report-header h2 {
    font-size: 2.625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.scores-summary {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.score-item h4 {
    margin-bottom: 0.625rem;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.score-bar {
    width: 100%;
    height: 32px;
    background: #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #525f7f 0%, #0074d4 100%);
    transition: width 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.875rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.pattern-badge {
    background: linear-gradient(135deg, #525f7f 0%, #0074d4 100%);
    color: white;
    padding: 1.75rem;
    border-radius: 12px;
    margin-top: 1.25rem;
    box-shadow: 0 4px 14px rgba(0, 116, 212, 0.25);
}

.pattern-badge h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.report-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    line-height: 1.8;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
}

.report-content h2 {
    color: #0f172a;
    font-size: 2.125rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.report-content h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.report-content p {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.report-content ul, .report-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #475569;
}

.report-content li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.report-content strong {
    color: #0f172a;
    font-weight: 600;
}

.report-text {
    white-space: pre-wrap;
}

.report-actions {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Resume Assessment Card */
.resume-assessment-card {
    background: linear-gradient(135deg, #28A745 0%, #1e7e34 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
    display: none;
}

.resume-assessment-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.resume-assessment-card p {
    margin: 0 0 20px 0;
    font-size: 1rem;
    opacity: 0.95;
    color: white;
}

.resume-assessment-btn {
    background: white;
    color: #28A745;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.resume-assessment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #1e7e34;
}

.resume-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Paid Assessment Ready Card */
.paid-assessment-card {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    display: none;
}

.paid-assessment-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.paid-assessment-card p {
    margin: 0 0 20px 0;
    font-size: 1rem;
    opacity: 0.95;
    color: white;
}

.paid-assessment-btn {
    background: white;
    color: #007BFF;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.paid-assessment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #0056b3;
}

.paid-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.dashboard-section {
    margin-bottom: 3rem;
}

.dashboard-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.status-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.status-card p {
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    color: #475569;
}

#reports-list {
    display: grid;
    gap: 1rem;
}

.report-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
    border-color: #cbd5e1;
}

.report-card h3 {
    color: #0074d4;
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.report-card p {
    margin-bottom: 0.375rem;
    color: #64748b;
    font-size: 0.875rem;
}

.report-card-actions {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.625rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    position: relative;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 40px 100px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.close {
    color: #94a3b8;
    float: right;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close:hover {
    color: #475569;
}

.modal-scores {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    border: 1px solid #e2e8f0;
}

.modal-pattern {
    background: linear-gradient(135deg, #525f7f 0%, #0074d4 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.25rem 0;
}

.modal-report {
    margin-top: 1.5rem;
    line-height: 1.8;
}

.alert {
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 3px solid;
    font-size: 0.9375rem;
}

.alert-warning {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.alert-success {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.payment-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pricing-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    max-width: 420px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
}

.pricing-card.featured {
    border-color: #0074d4;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #525f7f 0%, #0074d4 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 116, 212, 0.3);
    letter-spacing: -0.01em;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #0074d4;
    margin: 1.25rem 0;
    letter-spacing: -0.03em;
}

.one-time {
    font-size: 0.8125rem;
    color: #64748b;
    display: block;
    font-weight: 500;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.9375rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.guarantee {
    color: #64748b;
    font-size: 0.8125rem;
    margin-top: 1.25rem;
    font-weight: 500;
}

.why-upgrade {
    padding: 3rem 0;
}

.why-upgrade h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0f172a;
    letter-spacing: -0.045em;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.benefit {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.benefit:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
}

.benefit h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.benefit p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.payment-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: radial-gradient(circle at top right, rgba(0, 116, 212, 0.03) 0%, transparent 60%), white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
}

.payment-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.what-you-get {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(15, 98, 254, 0.12),
        0 20px 60px rgba(15, 98, 254, 0.08);
}

.what-you-get h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.045em;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.impact-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.impact-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
}

.impact-grid {
    max-width: 800px;
    margin: 0 auto 2rem;
    display: grid;
    gap: 1.5rem;
}

.impact-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #0074d4;
}

.impact-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

.impact-summary {
    max-width: 800px;
    margin: 0 auto;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
}

.why-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.why-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.why-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.final-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.cta-tagline {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.cta-price {
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 2rem;
}

.knowledge-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.knowledge-section {
    margin-top: 108px;
    margin-bottom: 48px;
}

.knowledge-section:first-child {
    margin-top: 0;
}

.knowledge-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 36px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.625rem;
    letter-spacing: -0.03em;
}

.knowledge-section p {
    color: var(--text-body);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.dimension-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.dimension-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-blue-light);
}

.dimension-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.definition {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.dimension-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.dimension-card ul {
    color: var(--text-body);
    margin-left: 1.5rem;
}

.dimension-card li {
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
}

.strength-weakness {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.25rem;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.pattern-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.pattern-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.08);
}

.pattern-card h4 {
    color: #0074d4;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.pattern-card p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.table-wrapper {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.table-wrapper::-webkit-scrollbar {
    display: none;
}

.table-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.steps-list {
    background: var(--bg-light-blue);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.steps-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    color: var(--text-body);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.steps-list li:not(:last-child) {
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #5C6677 0%, #0074d4 100%);
    border-radius: 16px;
    color: white;
    margin-top: 7.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3.5rem;
}

.cta-text-column {
    flex: 1;
    text-align: left;
    max-width: 480px;
}

.cta-button-column {
    display: flex;
    align-items: flex-start;
}

.cta-headline {
    color: #FFFFFF !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    letter-spacing: -0.03em;
}

.cta-description {
    color: #FFFFFF !important;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-section .link-button {
    color: white !important;
}

.cta-section .link-button:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.empty-state {
    text-align: center;
    padding: 4rem;
    color: #64748b;
}

footer {
    background: #1a1a1a;
    color: #E2E8F0;
    padding: 3.5rem 0 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94A3B8;
    max-width: 280px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 0.375rem 0;
    min-height: 44px;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: #0074d4;
}

.footer-section ul li a:focus {
    outline: 2px solid #0074d4;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 0.9375rem;
    color: #94A3B8;
    margin: 0;
    font-weight: 500;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 3rem 0 0;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-section p {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-section ul li a {
        display: block;
        padding: 0.875rem 0;
    }
    
    .footer-bottom {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 640px) {
    /* Pricing Section Mobile - 640px */
    .pricing-card {
        padding: var(--spacing-md);
        max-width: 90%;
    }
    
    .pricing-value {
        font-size: 36px;
    }
    
    .pricing-details li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.25rem;
    }
    
    .hero .intro {
        font-size: 1.125rem;
    }
    
    .hero {
        padding: 3.5rem 1.5rem;
    }
    
    .feature-grid,
    .benefit-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .strength-weakness {
        grid-template-columns: 1fr;
    }
    
    .rating-scale {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }
    
    .rating-option span {
        padding: 1rem 0.5rem;
        font-size: 0.875rem;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .survey-container,
    .knowledge-container,
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .header-logo {
        height: 48px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 76px);
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
    }
    
    nav.mobile-menu-open {
        right: 0;
    }
    
    nav a {
        font-size: 0.9375rem;
        padding: 0.875rem 1rem;
        width: 100%;
        text-align: left;
    }
    
    .report-content {
        padding: 2rem 1.5rem;
    }
    
    /* SPS Triad Section Mobile */
    .sps-triad-section h3,
    .features-section h3,
    .benefits h3 {
        font-size: 1.75rem;
    }
    
    .triad-intro,
    .section-intro,
    .features-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .triad-item,
    .benefit-card,
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .benefit-card h4,
    .feature-item h4 {
        min-height: auto;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
    
    .cta-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    /* Pricing Section Mobile - 768px */
    .pricing-value {
        font-size: 40px;
    }
    
    .pricing-name {
        font-size: 20px;
    }
    
    .pricing-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .cta-text-column {
        text-align: center;
        max-width: 100%;
    }
    
    .cta-button-column {
        width: 100%;
        justify-content: center;
        margin-top: 1.25rem;
    }
    
    .benefits,
    .sps-triad-section,
    .features-section {
        margin-top: 40px;
    }
    
    .triad-item h4 {
        font-size: 1.25rem;
    }
    
    .triad-item h5 {
        font-size: 1rem;
    }
    
    .triad-bridge {
        padding: 2.5rem 2rem;
    }
    
    .triad-bridge h4 {
        font-size: 1.5rem;
    }
    
    .triad-bridge p {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .landing {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Knowledge Page Typography */
    .knowledge-section h2 {
        font-size: 2rem;
    }
    
    /* Knowledge Page Spacing */
    .knowledge-section {
        margin-top: 64px;
    }
    
    .cta-headline {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1.25rem;
    }
    
    .hero h2 {
        font-size: 1.625rem;
        line-height: 1.2;
    }
    
    .hero .intro {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .micro-cta {
        padding: 0.5rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    main {
        padding: 2rem 0;
    }
    
    .sps-triad-section h3,
    .features-section h3,
    .benefits h3 {
        font-size: 1.5rem;
    }
    
    .triad-intro,
    .section-intro,
    .features-intro {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
        line-height: 1.7;
    }
    
    .triad-item,
    .benefit-card,
    .feature-item {
        padding: 1.5rem 1.25rem;
    }
    
    .benefit-card h4,
    .feature-item h4 {
        margin-bottom: 1.5rem;
    }
    
    .triad-item h4 {
        font-size: 1.125rem;
    }
    
    .cta-section {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-text-column {
        text-align: center;
        max-width: 100%;
    }
    
    .cta-button-column {
        width: 100%;
        justify-content: center;
        margin-top: 1.25rem;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
    
    .knowledge-section h2 {
        font-size: 1.75rem;
    }
    
    .knowledge-section {
        margin-top: 48px;
    }
    
    /* Quick Reference Table Mobile */
    .table-wrapper table th {
        font-size: 0.75rem;
        padding: 0.75rem 1rem !important;
    }
    
    .table-wrapper table td {
        font-size: 0.75rem;
        padding: 0.75rem 1rem !important;
    }
    
    .reference-table th:nth-child(2),
    .reference-table td:nth-child(2) {
        width: 40%;
        min-width: 140px;
    }
    
    .reference-table th:nth-child(3),
    .reference-table td:nth-child(3) {
        width: 30%;
        min-width: 110px;
    }
    
    .reference-table th:nth-child(4),
    .reference-table td:nth-child(4) {
        width: 30%;
        min-width: 110px;
    }
    
    .triad-item h5 {
        font-size: 0.9375rem;
    }
    
    .benefit-card h4,
    .feature-item h4 {
        font-size: 1.125rem;
    }
    
    /* Pricing Section Mobile - 480px */
    .pricing-value {
        font-size: 32px;
    }
    
    .pricing-title {
        font-size: 22px;
    }
    
    .pricing-subtitle {
        font-size: 15px;
        padding: 0 var(--spacing-sm);
    }
    
    .pricing-card {
        padding: var(--spacing-md);
        border-radius: 10px;
        max-width: 100%;
    }
    
    .pricing-cta {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
    
    .story-box {
        padding: 1.25rem;
        font-size: 0.875rem;
    }
    
    .triad-bridge {
        padding: 2rem 1.5rem;
    }
    
    .triad-bridge h4 {
        font-size: 1.25rem;
    }
    
    .triad-bridge p {
        font-size: 0.9375rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .header-logo {
        height: 42px;
    }
    
    .landing {
        padding: 0 0.75rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .subtext {
        font-size: 0.8125rem;
    }
}

/* ========================================
   PREMIUM MOTION & ANIMATIONS
   ======================================== */

/* Fade-up animation for scroll reveals */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delay for multiple fade-up elements */
.fade-up:nth-child(1) { transition-delay: 0ms; }
.fade-up:nth-child(2) { transition-delay: 100ms; }
.fade-up:nth-child(3) { transition-delay: 200ms; }
.fade-up:nth-child(4) { transition-delay: 300ms; }
.fade-up:nth-child(5) { transition-delay: 400ms; }
.fade-up:nth-child(6) { transition-delay: 500ms; }

/* GPU Acceleration for smooth animations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Animated gradient pulse */
.gradient-pulse {
    background: linear-gradient(45deg, var(--primary-blue-dark), var(--primary-blue-light), var(--primary-blue-dark));
    background-size: 200% 200%;
    animation: gradient-pulse-animation 4s ease infinite;
}

@keyframes gradient-pulse-animation {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Icon rotate on hover */
.icon-rotate {
    transition: transform var(--transition-base);
}

.icon-rotate:hover {
    animation: rotate-360 var(--transition-slow) ease;
}

@keyframes rotate-360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Arrow slide on hover */
.arrow-slide {
    transition: transform var(--transition-fast);
}

.arrow-slide:hover .arrow {
    transform: translateX(4px);
    transition: transform var(--transition-fast);
}

/* Pulse animation for CTAs */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Shimmer effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scale on hover */
.scale-hover {
    transition: transform var(--transition-fast);
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* Glow effect */
.glow {
    box-shadow: 0 0 20px rgba(0, 116, 212, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 116, 212, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 116, 212, 0.6);
    }
}

/* Glassmorphism enhancement */
.glass-enhanced {
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Smooth slide in from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth slide in from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ============================================
   REPORT PAGE STYLES
   ============================================ */

.report-page {
    background: var(--bg-light);
    min-height: 100vh;
    padding: var(--spacing-xl) 0;
}

.report-page .container {
    max-width: 1000px;
}

.report-page section {
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

/* Section 1: Profile Hero */
.report-hero {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.sps-index-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.sps-index-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sps-index-number.score-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sps-index-number.score-yellow {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sps-index-number.score-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sps-index-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sps-index-band {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-body);
}

.archetype-display {
    max-width: 700px;
}

.archetype-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-md);
}

.archetype-summary {
    font-size: 1.25rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* Section 2: Priority Gaps */
.priority-gaps {
    background: transparent;
}

.gaps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gap-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    border-left: 4px solid var(--accent-amber);
}

.gap-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.gap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.gap-number {
    background: var(--accent-amber);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.gap-score {
    font-size: 1.5rem;
    font-weight: 700;
}

.gap-dimension {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--spacing-sm);
}

.gap-domain {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.gap-impact {
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.938rem;
}

.gap-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.gap-link:hover {
    color: var(--primary-blue-dark);
    gap: 0.5rem;
}

/* Section 3: Domain Overview */
.domains-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.domain-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
}

.domain-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.domain-icon {
    font-size: 2rem;
}

.domain-header h3 {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
}

.domain-score {
    font-size: 1.75rem;
    font-weight: 700;
}

.domain-bar-container {
    width: 100%;
    height: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.domain-bar {
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease;
}

.domain-bar.score-green {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.domain-bar.score-yellow {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.domain-bar.score-red {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.domain-label {
    display: flex;
    justify-content: flex-end;
}

.domain-band {
    font-weight: 600;
    color: var(--text-muted);
}

/* Section 4: Complete Breakdown */
.breakdown-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.breakdown-domain {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
}

.breakdown-domain-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-light);
}

.breakdown-domain-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
}

.triad-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.triad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.triad-header:hover {
    background: rgba(20, 85, 192, 0.05);
}

.triad-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
}

.triad-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-heading);
}

.triad-score {
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.collapse-toggle {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.collapse-toggle:hover {
    transform: scale(1.1);
}

.triad-content {
    padding: var(--spacing-md);
    transition: var(--transition-base);
    overflow: hidden;
}

.triad-content.collapsed {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.triad-output {
    color: var(--text-body);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-sm);
}

.dimensions-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.dimension-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border-radius: var(--radius-sm);
}

.dimension-name {
    color: var(--text-body);
    font-weight: 500;
}

.dimension-score {
    font-weight: 700;
    font-size: 1.125rem;
}

/* Section 5: Archetype Details */
.archetype-details {
    background: transparent;
}

.archetype-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-card);
}

.archetype-name-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.archetype-description {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.archetype-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.detail-box {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.detail-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-md);
}

.detail-box ul {
    list-style: none;
    padding: 0;
}

.detail-box li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-body);
}

.detail-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: 700;
}

/* Section 6: Action Plans */
.action-plans-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.action-plan-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary-blue);
}

.action-plan-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-light);
}

.action-plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-sm);
}

.action-plan-meta {
    color: var(--text-muted);
    font-size: 0.938rem;
}

.action-plan-section {
    margin-bottom: var(--spacing-lg);
}

.action-plan-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-md);
}

.action-plan-section p {
    color: var(--text-body);
    line-height: 1.8;
}

.costs-list, .actions-list, .resources-list {
    list-style: none;
    padding: 0;
}

.costs-list li, .resources-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--text-body);
}

.costs-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.actions-list li {
    margin-bottom: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    cursor: pointer;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.checkbox-label:hover {
    background: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    color: var(--text-body);
    line-height: 1.6;
}

.resource-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.resource-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Section 7: Score Summary */
.score-summary-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.summary-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.summary-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.summary-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-xs);
}

.summary-band {
    font-size: 0.938rem;
    color: var(--text-body);
    font-weight: 600;
}

.summary-actions {
    text-align: center;
}

/* Section 8: What's Next */
.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.next-step {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.next-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-md);
}

.next-step p {
    color: var(--text-body);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.additional-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Color coding for scores */
.score-green {
    color: #059669;
}

.score-yellow {
    color: #d97706;
}

.score-red {
    color: #dc2626;
}

/* Error message */
.error-message {
    text-align: center;
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.error-message h2 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: var(--spacing-md);
}

.error-message p {
    color: var(--text-body);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sps-index-number {
        font-size: 3.5rem;
    }
    
    .archetype-title {
        font-size: 1.75rem;
    }
    
    .archetype-summary {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .gaps-grid {
        grid-template-columns: 1fr;
    }
    
    .archetype-details-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .additional-actions {
        flex-direction: column;
    }
    
    .quick-reference-section {
        display: none !important;
    }
}

/* ===================================
   ARCHETYPE CARDS & GRID
   =================================== */

.archetype-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.archetypes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    row-gap: 1.125rem;
    column-gap: 1.75rem;
    margin-top: var(--spacing-xl);
}

.archetype-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.125rem 2rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.archetype-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-blue-light);
}

.archetype-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    min-height: 2.5rem;
}

.archetype-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.4;
}

.archetype-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.archetype-badge.elite {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.archetype-badge.strong {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.archetype-badge.functional {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.archetype-badge.developing {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
}

.archetype-badge.emerging {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
}

.archetype-pattern {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: var(--spacing-xs) 0;
    font-weight: 500;
}

.archetype-description {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: var(--spacing-sm) 0;
}

.archetype-details {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.archetype-details p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.archetype-details strong {
    color: var(--text-heading);
    font-weight: 600;
}

/* Tier-based card styling */
.archetype-card[data-tier="elite"] {
    border-top: 3px solid #10b981;
}

.archetype-card[data-tier="strong"] {
    border-top: 3px solid #3b82f6;
}

.archetype-card[data-tier="functional"] {
    border-top: 3px solid #8b5cf6;
}

.archetype-card[data-tier="developing"] {
    border-top: 3px solid #f59e0b;
}

.archetype-card[data-tier="emerging"] {
    border-top: 3px solid #ef4444;
}

/* Mobile responsive for archetype grid */
@media (max-width: 768px) {
    .archetypes-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .archetype-card {
        padding: 1.125rem 1.5rem;
    }
    
    .archetype-badge {
        padding: 0.5rem 0.875rem;
    }
    
    .archetype-intro {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 413px) {
    .archetype-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .archetype-header h3 {
        font-size: 1.125rem;
    }
}

/* Footer */
footer {
    background: white;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-muted);
    margin-top: var(--spacing-2xl);
}

/* Product Page Styles */
.product-page {
    background: var(--bg-light);
}

.product-hero {
    background: var(--primary-gradient);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    color: white;
}

.product-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.product-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: white;
}

.product-section.product-alt {
    background: var(--bg-light);
}

.product-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.product-feature {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.product-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.product-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.product-feature p {
    color: var(--text-body);
    line-height: 1.6;
}

.pricing-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--spacing-md);
}

.pricing-note {
    font-size: 1rem;
    color: var(--text-body);
}

.delivery-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.7;
    text-align: center;
}

.notify-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-signup-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(20, 85, 192, 0.1);
}

.support-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.support-info p {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: var(--spacing-sm);
}

.support-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.support-info a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2rem;
    }
    
    .product-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-section h2 {
        font-size: 1.5rem;
    }
    
    .email-signup-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
}
