/* Premium CSS - Peace of Growth */

:root {
    /* Color Tokens (HSL matched to the logo) */
    --bg-base: 0, 0%, 0%;             /* Pure Black background */
    --bg-card: 222, 47%, 8%;          /* #080c14 - deep slate navy from logo */
    --text-primary: 0, 0%, 100%;      /* white */
    --text-secondary: 218, 15%, 70%;  /* slate gray */
    
    /* Logo Brand Hues */
    --brand-blue: 227, 90%, 63%;      /* #4B70F5 - light blue from "GROWTH" */
    --brand-blue-glow: 227, 90%, 63%, 0.25;
    --brand-cyan: 190, 90%, 42%;      /* #00B4D8 - turquoise/cyan from chart line */
    --brand-cyan-glow: 190, 90%, 42%, 0.3;
    --brand-red: 354, 100%, 50%;       /* #ff001c */
    
    /* Layout Tokens */
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: hsl(var(--bg-base));
    color: hsl(var(--text-primary));
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: -0.02em;
    background-color: hsl(var(--bg-base));
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

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

/* Typography Helper Classes */
.dot {
    color: hsl(var(--brand-cyan));
    text-shadow: 0 0 10px hsla(var(--brand-cyan-glow));
}

.text-neon {
    color: hsl(var(--brand-cyan));
    text-shadow: 0 0 10px hsla(var(--brand-cyan-glow));
}

.text-violet {
    color: hsl(var(--brand-blue));
    text-shadow: 0 0 15px hsla(var(--brand-blue-glow));
}

.text-cyan {
    color: hsl(var(--brand-cyan));
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
}

.text-red {
    color: hsl(var(--brand-red));
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: hsl(var(--brand-blue));
    color: hsl(var(--text-primary));
    box-shadow: 0 0 20px hsla(var(--brand-blue-glow));
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px hsla(var(--brand-blue-glow));
    background-color: #3b60e5;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: hsl(var(--text-primary));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(8, 12, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: hsla(var(--brand-cyan-glow));
    box-shadow: 0 8px 32px 0 rgba(0, 180, 216, 0.1);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    width: 180px;
    height: 65px; /* Target visible height of the logo */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-img {
    height: 170px; /* Large image height to crop top/bottom whitespace */
    width: auto;
    display: block;
    filter: invert(1) hue-rotate(180deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-wrapper-footer {
    width: 140px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-img-footer {
    height: 130px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
    text-decoration: none;
    transition: var(--transition-smooth);
    text-transform: lowercase;
}

.nav-link:hover {
    color: hsl(var(--text-primary));
}

.nav-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.hero {
    position: relative;
    padding: 150px 0 100px 0; /* Adjusted for cropped logo wrapper height */
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(var(--brand-blue-glow)) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: hsl(var(--text-primary));
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(var(--text-secondary));
    text-transform: lowercase;
}

.hero-description {
    font-size: 1.15rem;
    color: hsl(var(--text-secondary));
    max-width: 580px;
    text-transform: lowercase;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
    align-items: flex-start;
}

.objection-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.objection-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: hsl(var(--text-secondary));
    background: rgba(255, 255, 255, 0.02);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: lowercase;
}

.objection-pill i {
    color: hsl(var(--brand-cyan));
}

/* Hero Visual (Monitor Panel) */
.hero-visual {
    position: relative;
}

.visual-card {
    padding: 24px;
    border-left: 3px solid hsl(var(--brand-blue));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--text-secondary));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.monitor-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    text-transform: lowercase;
}

.stat-label {
    color: hsl(var(--text-secondary));
}

.stat-val {
    font-weight: 700;
}

.worker-feed {
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius-md);
    padding: 16px;
    font-family: monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 180px;
    overflow-y: hidden;
}

.feed-item {
    display: flex;
    gap: 8px;
    opacity: 0.9;
    animation: textAppear 0.5s ease-out;
}

.time {
    color: #586069;
    flex-shrink: 0;
}

.feed-text {
    color: #e1e4e8;
}

/* Credibility Press Ticker */
.credibility-bar {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 32px 0;
    overflow: hidden;
}

.bar-title {
    text-align: center;
    font-size: 0.8rem;
    color: hsl(var(--text-secondary));
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logos-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.logos-track {
    display: flex;
    gap: 64px;
    animation: marquee 25s linear infinite;
}

.press-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.press-logo:hover {
    color: hsl(var(--brand-cyan));
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: hsl(var(--text-primary));
    text-transform: lowercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: hsl(var(--text-secondary));
    text-transform: lowercase;
}

/* Lure Section (Interactive Blueprint) */
.lure-section {
    padding: 100px 0;
    position: relative;
}

.lure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.lure-form-card {
    padding: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.85rem;
    color: hsl(var(--text-secondary));
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.form-group input, .form-group select {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 14px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
    border-color: hsl(var(--brand-cyan));
    box-shadow: 0 0 10px hsla(var(--brand-cyan-glow));
}

.form-group select option {
    background-color: #080c14;
    color: white;
}

.lure-result-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.lure-result-card.active-panel {
    border-left-color: hsl(var(--brand-cyan));
}

.status-indicator {
    font-size: 0.8rem;
    color: hsl(var(--text-secondary));
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: hsl(var(--brand-cyan));
    border-radius: 50%;
    box-shadow: 0 0 8px hsl(var(--brand-cyan));
    display: inline-block;
}

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 250px;
    color: hsl(var(--text-secondary));
    text-align: center;
    gap: 16px;
    text-transform: lowercase;
}

.placeholder-icon {
    font-size: 3rem;
    opacity: 0.15;
}

.result-content {
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e1e4e8;
    height: 100%;
    overflow-y: auto;
    padding-top: 10px;
}

.blueprint-header {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: hsl(var(--text-primary));
    margin-bottom: 16px;
    text-transform: lowercase;
}

.blueprint-section {
    margin-bottom: 20px;
}

.blueprint-title {
    color: hsl(var(--brand-cyan));
    margin-bottom: 6px;
    font-weight: bold;
    text-transform: lowercase;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 80%, hsla(var(--brand-cyan-glow)) 0%, transparent 60%);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.calc-input-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
    text-transform: lowercase;
}

.slider-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(var(--brand-cyan));
    box-shadow: 0 0 10px hsla(var(--brand-cyan-glow));
    cursor: pointer;
    transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-output-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid hsl(var(--brand-blue));
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.calc-result-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-label {
    font-size: 0.85rem;
    color: hsl(var(--text-secondary));
    text-transform: lowercase;
}

.calc-val {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

/* Case Studies (Testimonials with Happy/Successful People Headshots) */
.case-section {
    padding: 100px 0;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.case-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--brand-cyan)) 0%, hsl(var(--brand-blue)) 100%);
    opacity: 0.6;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--text-secondary));
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: lowercase;
}

.growth-metric {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--brand-cyan));
}

.case-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: lowercase;
}

.case-body {
    font-size: 0.95rem;
    color: hsl(var(--text-secondary));
    flex-grow: 1;
    font-style: italic;
    text-transform: lowercase;
}

.founder-block {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid hsl(var(--brand-blue));
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-transform: lowercase;
}

.founder-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.founder-title {
    font-size: 0.8rem;
    color: #586069;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 24px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: lowercase;
}

.faq-icon {
    font-size: 1rem;
    color: hsl(var(--text-secondary));
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: hsl(var(--text-secondary));
    font-size: 0.95rem;
    text-transform: lowercase;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: hsl(var(--brand-cyan));
}

/* Outro Outbox & Form */
.outro-section {
    padding: 120px 0 160px 0;
    background: radial-gradient(circle at 90% 20%, hsla(var(--brand-cyan-glow)) 0%, transparent 60%);
}

.outro-container {
    display: flex;
    justify-content: center;
}

.outro-card {
    width: 100%;
    max-width: 800px;
    padding: 64px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.outro-title {
    font-size: 3rem;
    line-height: 1;
    text-transform: lowercase;
}

.outro-subtitle {
    font-size: 1.8rem;
    color: hsl(var(--brand-blue));
    text-shadow: 0 0 10px hsla(var(--brand-blue-glow));
    text-transform: lowercase;
}

.outro-text {
    font-size: 1.1rem;
    color: hsl(var(--text-secondary));
    max-width: 500px;
    margin-bottom: 12px;
    text-transform: lowercase;
}

.outro-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 12px;
}

.outro-form input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 14px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.outro-form input:focus {
    border-color: hsl(var(--brand-cyan));
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    color: white;
    margin-top: 16px;
    text-transform: lowercase;
}

.hidden {
    display: none !important;
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0;
    background-color: rgba(0, 0, 0, 0.4);
}

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

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

.footer-copyright {
    font-size: 0.8rem;
    color: #586069;
    text-transform: lowercase;
}

/* Animations */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes textAppear {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .lure-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .nav {
        display: none;
    }
    
    .nav-btn {
        display: none;
    }
    
    .outro-form {
        flex-direction: column;
    }
    
    .calc-results {
        grid-template-columns: 1fr;
    }
}

/* Urgency Callout Styles */
.urgency-callout {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 0, 28, 0.04);
    border: 1px solid rgba(255, 0, 28, 0.15);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    margin-top: 16px;
    width: 100%;
    max-width: 580px;
    text-align: left;
}

.card-urgency {
    background: rgba(255, 0, 28, 0.08);
    margin-bottom: 24px;
    max-width: 100%;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #ff001c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 0, 28, 0.7);
    animation: pulse-glow 1.8s infinite;
    flex-shrink: 0;
}

.urgency-text {
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
    line-height: 1.4;
    text-transform: lowercase;
}

.urgency-text strong {
    color: white;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 28, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 0, 28, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 28, 0);
    }
}
