/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-link-left,
.nav-link-right {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.nav-link-left:hover,
.nav-link-right:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0 80px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 7vw, 68px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 55px;
    line-height: 1.6;
}

.desktop-br {
    display: inline;
}

.cta-button {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    color: #000;
    border: none;
    padding: 20px 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.2);
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Round variant for hero START button */
.cta-round {
    border-radius: 50px;
    padding: 22px 52px;
    font-size: 15px;
    letter-spacing: 2px;
}

.hero-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 40px;
}

/* Hero background videos (desktop + mobile) */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    display: none; /* DISABLED */
}

.hero-bg-video--desktop {
    display: block;
}

.hero-bg-video--mobile {
    display: none;
}

@media (max-width: 900px) {
    .hero-bg-video--desktop {
        display: none;
    }
    .hero-bg-video--mobile {
        display: block;
    }
}

/* Animated button (static ring fade in/out) */
.cta-animated {
    position: relative;
}

.cta-animated::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    animation: fadeRing 2s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════
   WORKBOOK SECTION
   ═══════════════════════════════════════════ */
.section-workbook {
    padding: 140px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.wb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Info */
.wb-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 15px;
}

.wb-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 72px);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 400;
}

.wb-divider {
    width: 60px;
    height: 3px;
    background: #fff;
    margin-bottom: 35px;
}

.wb-desc {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 20px;
}

.wb-desc strong {
    font-weight: 500;
    opacity: 1;
    color: #fff;
}

.wb-stats {
    display: flex;
    gap: 24px;
    margin: 40px 0 45px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.wb-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.5;
}

.wb-button {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    background: transparent;
    cursor: pointer;
}

.wb-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.wb-button .arrow {
    display: none;
}

.wb-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.wb-button-disabled:hover {
    background: transparent;
    color: #fff;
    transform: none;
}

/* Right: Cover mockup */
.wb-visual {
      max-width: 580px;  /* zamiast obecnej wartości */
    margin: 0 auto;
	display: flex;
    justify-content: center;
}

.wb-cover-mock {
    width: 400px;
    height: 540px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.mock-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mock-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 78px;
    line-height: 0.85;
    letter-spacing: -1px;
}

.mock-version-super {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1.5px solid #fff;
    padding: 1px 5px;
    margin-top: 2px;
}

.mock-brain-graphic-center {
    width: 160px;
    height: auto;
    opacity: 1;
    margin: 45px 0 40px;
}

.mock-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
    text-align: center;
    line-height: 1.7;
}

.mock-handle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    opacity: 0.4;
}

.mock-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(255,255,255,0.35);
    border-style: solid;
}

.mock-corner--tl {
    top: 18px;
    left: 18px;
    border-width: 1px 0 0 1px;
}

.mock-corner--br {
    bottom: 18px;
    right: 18px;
    border-width: 0 1px 1px 0;
}

/* ═══════════════════════════════════════════
   ABOUT ME
   ═══════════════════════════════════════════ */
.section-about {
    padding: 140px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* Photo */
.about-photo {
    display: flex;
    justify-content: flex-start;
}

.about-photo-img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Bio */
.about-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 15px;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: #fff;
    margin-bottom: 35px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 20px;
}

.about-text strong {
    font-weight: 500;
    opacity: 1;
    color: #fff;
}

.social-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    display: inline-block;
    margin-top: 30px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.social-link-small {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: none;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link-small:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════
   SHORT CTA AFTER RESULTS
   ═══════════════════════════════════════════ */
.pdf-button {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pdf-button:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   NEWSLETTER INSIDE WORKBOOK SECTION
   ═══════════════════════════════════════════ */
.wb-newsletter {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.wb-newsletter-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.45;
    margin-bottom: 16px;
}

.wb-newsletter-row {
    display: flex;
    gap: 12px;
}

.wb-newsletter .email-input {
    flex: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
    padding: 15px 18px;
    outline: none;
    transition: border-color 0.3s ease;
}

.wb-newsletter .email-input:focus {
    border-color: #fff;
}

.wb-newsletter .email-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.wb-newsletter .submit-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wb-newsletter .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.wb-newsletter .privacy-note {
    font-size: 11px;
    opacity: 0.4;
    margin-top: 12px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left {
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 24px;
    width: auto;
}

.footer-left strong {
    font-weight: 500;
    opacity: 1;
}

.footer-right {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════
   AUDIT INLINE (lives inside .hero)
   ═══════════════════════════════════════════ */
.audit-inline,
.results-inline {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.45s ease;
}
.progress-container {
    margin-bottom: 50px;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: #fff;
    width: 10%;
    transition: width 0.4s ease;
}

.progress-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.5;
}

.question-container {
    animation: fadeIn 0.45s ease;
}

/* ─── Intro screens (before questions) ─── */
.intro-screen {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px 0;
}

.intro-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 5vw, 38px);
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.intro-intro {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 25px;
}

.intro-body {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0.75;
}

.intro-body strong {
    font-weight: 500;
    color: #fff;
    opacity: 1;
}

/* ─── Intro cards (3 benefits) ─── */
.intro-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 35px 0 25px;
    align-items: center;
}

.intro-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.intro-card-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: 1;
    color: #fff;
}

.intro-continue-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 35px auto 25px;
    display: block;
    width: 100%;
    max-width: 400px;
}

.intro-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.intro-note {
    font-size: 12px;
    opacity: 0.4;
    font-style: italic;
    text-align: center;
    margin-top: 0;
}

/* ─── Question topic label (above progress) ─── */
.question-topic-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.5;
    text-align: center;
    margin-bottom: 25px;
	margin-top: 20px; 
    text-transform: uppercase;
}

/* ─── Loading spinner ─── */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

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

.question-text {
    font-size: clamp(20px, 3.5vw, 26px);
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 45px;
}

/* Options */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 35px auto;
    align-items: center;
    max-width: 400px;
}

.option-button {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 400;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
    padding: 18px 22px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.option-button:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
}

.option-button.selected {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Nav buttons */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.nav-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

.nav-btn.primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ═══════════════════════════════════════════
   RESULTS INLINE (lives inside .hero)
   ═══════════════════════════════════════════ */
.results-main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
}

.results-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
    text-align: center;
    margin-bottom: 50px;
}

.result-content {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 50px;
}

.result-content p {
    margin-bottom: 18px;
}

.result-content strong {
    font-weight: 500;
    color: #fff;
    opacity: 1;
}

/* ─── Result sections (headers + lists) ─── */
.result-section {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-section--last {
    border-bottom: none;
    padding-bottom: 10px;
}

.result-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.result-section-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    opacity: 0.5;
    margin-right: 8px;
}

.result-section p {
    margin-bottom: 14px;
}

.result-section ul {
    list-style: none;
    margin: 14px 0 18px 0;
    padding: 0;
}

.result-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.result-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0.4;
    font-size: 13px;
}

.result-callout {
    font-size: 15px;
    opacity: 0.7;
    margin-top: 18px !important;
    font-style: italic;
}

/* ─── Inline PDF button (after section 5) ─── */
.pdf-button-inline {
    font-family: inherit;      /* 🔥 dziedziczy dokładnie tę samą czcionkę */
    font-size: 15px;           /* jak tekst */
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;

    background: #fff;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
}
.pdf-button-inline:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

/* ─── Bordered CTA box with animation (section 6 replacement) ─── */
.result-cta-box {
    background: transparent;
    color: #fff;
    padding: 40px;
    margin-top: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(255,255,255,0.3);
    }
    50% {
        border-color: rgba(255,255,255,0.6);
    }
}

.result-cta-box-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 4vw, 28px);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.result-cta-box p {
    color: #fff;
    opacity: 0.85;
    margin-bottom: 14px;
    line-height: 1.7;
}

.result-cta-box ul {
    list-style: none;
    margin: 14px 0 18px 0;
    padding: 0;
}

.result-cta-box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.85;
}

.result-cta-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0.4;
    font-size: 13px;
    color: #fff;
}

.result-cta-box .cta-button {
    margin: 25px auto 0;
    display: block;
}

.result-cta-box .cta-button .arrow {
    display: none;
}

/* Newsletter form (kept for workbook.html fallback) */
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto 15px;
}

.email-input {
    flex: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 18px;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    border-color: #fff;
}

.email-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.submit-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.privacy-note {
    font-size: 11px;
    opacity: 0.4;
    margin-top: 12px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .wb-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .wb-visual {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-photo {
        justify-content: flex-start;
    }

    .about-photo-img {
        width: 100%;
        max-width: 340px;
        height: 360px;
    }
}

@media (max-width: 600px) {
    .wb-newsletter-row {
        flex-direction: column;
    }

    .wb-newsletter .submit-btn {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-btn {
        width: 100%;
        max-width: 400px;
    }

    .wb-cover-mock {
        width: 300px;
        height: 400px;
    }

    .mock-brain-graphic-center {
        width: 120px;
        margin: 35px 0 30px;
    }

    .mock-title {
        font-size: 62px;
    }

    .mock-version-super {
        font-size: 16px;
    }

    .section-workbook,
    .section-about {
        padding: 100px 0;
    }

    .hero {
        padding: 70px 0 60px;
        justify-content: center;
    }

    .hero-content {
        margin-top: 0;
    }

    .desktop-br {
        display: none;
    }

    .hero-meta {
        font-size: 12px;
    }

    .logo-img {
        height: 28px;
    }

    .nav-link-left,
    .nav-link-right {
        font-size: 10px;
    }

    .audit-inline {
        padding-top: 0px;
    }

    .intro-screen {
        padding-top: 0;
    }

    .question-container {
        padding-top: 0;
    }

    .loading-spinner {
        min-height: 200px;
    }

    .results-inline {
        padding-top: 10px;
    }

    .result-cta-box {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .result-cta-box p {
        font-size: 14px;
    }

    .result-cta-box ul li {
        font-size: 14px;
    }

    .wb-button {
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
    }

    .wb-info {
        max-width: 580px;
		display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-left {
        justify-content: center;
    }
	
}

/* ═══════════════════════════════════════════
   PRINT STYLES (for PDF download)
   ═══════════════════════════════════════════ */
@media print {
    /* Hide everything except results */
    .nav,
    .hero-bg-video,
    #heroContent,
    #auditInline,
    #loadingSpinner,
    .section-workbook,
    .section-about,
    .footer,
    .pdf-button {
        display: none !important;
    }

    /* Show only results */
    #resultsInline {
        display: block !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    /* Improve print readability */
    body {
        background: #fff;
        color: #000;
    }

    .results-main-title {
        color: #000;
    }

    .result-section {
        page-break-inside: avoid;
    }

    .result-section-title {
        color: #000;
    }

    p, li {
        color: #000;
    }

    .result-cta-box {
        background: #fff;
        border: 2px solid #000;
        page-break-inside: avoid;
    }

    .result-cta-box .cta-button {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
}

.loading-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

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

.loading-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}
@media (max-width: 600px) {
    .wb-title {
        text-align: center;
    }

    .wb-label {
        text-align: center;
    }

    .wb-divider {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 900px) {
    .wb-info {
        text-align: center;
    }

    .wb-desc {
        max-width: 520px;
        margin: 0 auto;
    }
}