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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.85;
    color: #2c2c2c;
    background: #faf8f5;
    overflow-x: hidden;
    margin-top: 44px;
}

.cover {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    overflow: hidden;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.5) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.85) 100%);
    z-index: 2;
}

.cover-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    animation: fadeInUp 1.2s ease-out;
}

.cover-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #f4e8c1;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.cover-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(244, 232, 193, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(244, 232, 193, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.text-section {
    padding: 80px 20px;
    position: relative;
}

.text-container {
    max-width: 720px;
    margin: 0 auto;
}

.hook-section {
    padding-top: 120px;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
    line-height: 1.35;
    position: relative;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #c9a227, #8b6914);
    border-radius: 2px;
}

.drop-cap::first-letter {
    font-family: 'Inter', sans-serif;
    float: left;
    font-size: 4.5em;
    line-height: 0.85;
    padding-right: 12px;
    padding-top: 4px;
    color: #8b6914;
    font-weight: 700;
}

.text-container p {
    margin-bottom: 24px;
    text-align: justify;
}

.verdict-quote {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 900;
    color: #1a1a2e;
    border: none;
    border-left: 6px solid #1a1a2e;
    border-right: 6px solid #1a1a2e;
    padding: 32px 40px;
    margin: 48px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #f4e8c1;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verdict-quote:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(26, 26, 46, 0.4);
}

.verdict-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #c9a227;
    pointer-events: none;
}

.verdict-quote::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(244, 232, 193, 0.3);
    pointer-events: none;
}

.pull-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 700;
    color: #1a1a2e;
    border-left: 6px solid #8b6914;
    border-right: 6px solid #8b6914;
    padding: 30px 36px;
    margin: 48px 0;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.12) 0%, rgba(139, 105, 20, 0.06) 100%);
    line-height: 1.75;
    position: relative;
    box-shadow: 0 6px 30px rgba(139, 105, 20, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pull-quote:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 40px rgba(139, 105, 20, 0.2);
}

.pull-quote::before {
    content: '▐';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #8b6914;
    line-height: 1;
}

.pull-quote::after {
    content: '▌';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #8b6914;
    line-height: 1;
}

.callout-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.03) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 4px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.callout-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.1);
}

.callout-box.callout-blue {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.08) 0%, rgba(30, 60, 114, 0.03) 100%);
    border-color: rgba(30, 60, 114, 0.2);
}

.callout-box.callout-blue:hover {
    box-shadow: 0 8px 24px rgba(30, 60, 114, 0.1);
}

.callout-box.callout-blue .callout-label {
    background: #1e3c72;
}

.callout-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: #8b6914;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.callout-box p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #3a3a3a;
}

.section-divider {
    text-align: center;
    padding: 20px 0;
    color: #c9a227;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-divider.reveal {
    opacity: 1;
    transform: scale(1);
}

.section-divider svg {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.section-divider:hover svg {
    opacity: 1;
}

.fullscreen-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.timeline-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 0 40px;
}


.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f4e8c1;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.timeline-section {
    background: #0f0f1a;
}

.timeline-section .section-bg-image {
    animation: slowZoom 25s ease-in-out infinite alternate;
}

.timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.35) 0%, rgba(15, 15, 26, 0.5) 50%, rgba(15, 15, 26, 0.65) 100%);
    z-index: 2;
}

.moral-section {
    background: #2d1b0e;
}

.moral-section .section-bg-image {
    animation: slowZoom 25s ease-in-out infinite alternate;
}

.moral-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(45, 27, 14, 0.5) 0%, rgba(45, 27, 14, 0.7) 50%, rgba(45, 27, 14, 0.85) 100%);
    z-index: 2;
}

.moral-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 0 40px;
}

.big-quote {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 800;
    color: #f4e8c1;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    padding: 40px 50px;
    border: 3px solid rgba(244, 232, 193, 0.3);
    background: rgba(244, 232, 193, 0.05);
    box-shadow: inset 0 0 60px rgba(244, 232, 193, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.big-quote:hover {
    transform: scale(1.02);
    box-shadow: inset 0 0 80px rgba(244, 232, 193, 0.12), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.big-quote::before,
.big-quote::after {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #c9a227;
    position: absolute;
    line-height: 1;
    font-weight: 900;
}

.big-quote::before {
    content: '◈';
    top: 15px;
    left: 20px;
}

.big-quote::after {
    content: '◈';
    bottom: 15px;
    right: 20px;
}

.quote-context {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(244, 232, 193, 0.5);
    letter-spacing: 1px;
}

.part1-section {
    position: relative;
}

.part1-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, #c9a227, transparent);
}

.part2-section {
    background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
    position: relative;
}

.part2-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, #8b6914, transparent);
}

.transition-section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.transition-content {
    max-width: 900px;
    margin: 0 auto;
}

.transition-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.transition-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
}

.dark-transition {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 50%, #111 100%);
    position: relative;
    overflow: hidden;
}

.dark-transition::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.dark-transition .dark-title {
    color: #e63946;
    text-shadow: 0 0 60px rgba(230, 57, 70, 0.3);
    animation: pulseDark 3s ease-in-out infinite;
}

@keyframes pulseDark {
    0%, 100% { text-shadow: 0 0 60px rgba(230, 57, 70, 0.3); }
    50% { text-shadow: 0 0 80px rgba(230, 57, 70, 0.5); }
}

.dark-transition .transition-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.part3-section {
    background: #111;
    color: #e0e0e0;
    position: relative;
}

.part3-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.03), transparent);
    pointer-events: none;
}

.part3-section .section-divider {
    color: #e63946;
}

.part3-section .text-container p {
    color: #ccc;
}

.part3-section .drop-cap::first-letter {
    color: #e63946;
}

.case-block {
    border-left: 3px solid #e63946;
    padding: 20px 28px;
    margin: 36px 0;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 0 4px 4px 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.case-block:hover {
    transform: translateX(4px);
    background: rgba(230, 57, 70, 0.08);
}

.case-block.case-tragic {
    border-left-color: #888;
    background: rgba(255, 255, 255, 0.03);
}

.case-block.case-tragic:hover {
    background: rgba(255, 255, 255, 0.05);
}

.case-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e63946;
    margin-bottom: 12px;
}

.case-tragic .case-label {
    color: #888;
}

.case-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 0;
}

.stats-callout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(230, 57, 70, 0.2);
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
}

.stat-item {
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.stat-item:hover {
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 8px;
}

.stat-desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
}

.light-transition {
    background: linear-gradient(180deg, #111 0%, #1a1a2e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.light-transition::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 232, 193, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.light-transition .light-title {
    color: #f4e8c1;
    text-shadow: 0 0 60px rgba(244, 232, 193, 0.4);
    animation: pulseLight 3s ease-in-out infinite;
}

@keyframes pulseLight {
    0%, 100% { text-shadow: 0 0 60px rgba(244, 232, 193, 0.4); }
    50% { text-shadow: 0 0 80px rgba(244, 232, 193, 0.6); }
}

.part4-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #faf8f5 15%);
    padding-top: 120px;
    position: relative;
}


.part4-section .drop-cap::first-letter {
    color: #1e3c72;
}

.conclusion-section {
    padding: 80px 20px 120px;
    background: #faf8f5;
    position: relative;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
}

.conclusion-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-container p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 28px;
}

.final-line {
    font-size: 1.35rem !important;
    font-weight: 600;
    color: #1a1a2e !important;
    position: relative;
    display: inline-block;
}

.final-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
}


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


.transition-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.transition-section.visible {
    opacity: 1;
    transform: translateY(0);
}


.fullscreen-section .timeline-content,
.fullscreen-section .moral-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fullscreen-section.visible .timeline-content,
.fullscreen-section.visible .moral-content {
    opacity: 1;
    transform: translateY(0);
}

.conclusion-section .quote-frame,
.conclusion-section .final-statement,
.conclusion-section .end-ornament,
.conclusion-section .author-credit {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.conclusion-section .quote-frame.reveal,
.conclusion-section .final-statement.reveal,
.conclusion-section .end-ornament.reveal,
.conclusion-section .author-credit.reveal {
    opacity: 1;
    transform: translateY(0);
}

.hook-section .text-container::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c9a227, #8b6914);
    margin-bottom: 40px;
}

.text-container p:first-of-type:not(.drop-cap) {
    position: relative;
}

.section-divider svg path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1.5s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.part1-section .text-container,
.part2-section .text-container {
    position: relative;
}

.part1-section .text-container::after {
    content: '∴';
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: #c9a227;
    margin-top: 40px;
    opacity: 0.5;
}


.stats-callout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
    z-index: -1;
}

.stats-callout {
    position: relative;
}

.timeline-content::before,
.moral-content::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: rgba(244, 232, 193, 0.3);
    margin: 0 auto 20px;
}


.cover-subtitle {
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.cover-subtitle::before,
.cover-subtitle::after {
    content: '—';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(244, 232, 193, 0.4);
}

.cover-subtitle::before {
    left: 0;
}

.cover-subtitle::after {
    right: 0;
}

.transition-title {
    position: relative;
    display: inline-block;
}

.dark-title::before,
.dark-title::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5rem;
    opacity: 0.4;
}

.dark-title::before {
    left: -30px;
    color: #e63946;
}

.dark-title::after {
    right: -30px;
    color: #e63946;
}

.light-title::before,
.light-title::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    opacity: 0.5;
}

.light-title::before {
    left: -25px;
    color: #f4e8c1;
}

.light-title::after {
    right: -25px;
    color: #f4e8c1;
}

.case-label::before {
    content: '●';
    margin-right: 8px;
    font-size: 0.5rem;
    vertical-align: middle;
}

.callout-label::before {
    content: '▸';
    margin-right: 6px;
    font-size: 0.6rem;
}

.conclusion-container::before {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
    margin: 0 auto 40px;
}


.part3-section .text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #e63946, transparent 30%, transparent 70%, #e63946);
    opacity: 0.2;
}

.part3-section .text-container {
    position: relative;
}

.stat-number::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #e63946;
    margin: 0 auto 12px;
    opacity: 0.5;
}

.big-quote {
    padding: 20px 40px;
}

.quote-context::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: rgba(244, 232, 193, 0.3);
    vertical-align: middle;
    margin-right: 12px;
}

.dark-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(230, 57, 70, 0.03) 2px,
        rgba(230, 57, 70, 0.03) 4px
    );
    pointer-events: none;
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}


.cover-image,
.section-bg-image {
    animation: slowZoom 20s ease-in-out infinite alternate, parallaxFloat 30s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}



.callout-box,
.case-block {
    position: relative;
    overflow: hidden;
}

.callout-box::after,
.case-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.callout-box:hover::after,
.case-block:hover::after {
    left: 100%;
}

.cover-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(244, 232, 193, 0.2);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(244, 232, 193, 0.2); }
    100% { text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 80px rgba(244, 232, 193, 0.4); }
}

.section-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(244, 232, 193, 0.15);
}


.conclusion-section {
    background: linear-gradient(180deg, #faf8f5 0%, #f0ebe0 50%, #e8e0d0 100%);
    padding: 100px 20px 140px;
    position: relative;
    overflow: hidden;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.conclusion-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-container::before {
    display: none;
}

.conclusion-quote-block {
    margin-bottom: 60px;
}

.quote-frame {
    position: relative;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.08) 0%, rgba(90, 62, 27, 0.12) 100%);
    border: 2px solid rgba(139, 105, 20, 0.25);
    box-shadow: 0 8px 32px rgba(139, 105, 20, 0.15);
}

.quote-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #8b6914;
}

.quote-corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.quote-corner-tr {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.quote-corner-bl {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.quote-corner-br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.conclusion-main-text {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 2;
    color: #2a2a2a;
    text-align: justify;
    margin: 0;
}

.conclusion-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.divider-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
}

.divider-icon {
    color: #c9a227;
    font-size: 0.8rem;
    animation: rotateDiamond 10s linear infinite;
}

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

.final-statement {
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.08) 0%, rgba(90, 62, 27, 0.1) 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid #1a1a2e;
    border-top: 6px solid #8b6914;
    border-bottom: 6px solid #8b6914;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.15);
}

.final-statement::before {
    content: '◆';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    color: #8b6914;
    opacity: 0.5;
    line-height: 1;
}

.final-statement::after {
    content: '◆';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2rem;
    color: #8b6914;
    opacity: 0.5;
    line-height: 1;
}

.final-statement .final-line {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    font-style: normal;
    line-height: 2;
    color: #1a1a2e;
    position: relative;
    z-index: 1;
    display: block;
    text-align: center;
}

.final-statement .final-line::after {
    display: none;
}

.end-ornament {
    margin-top: 60px;
}

.end-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: #c9a227;
    margin-bottom: 24px;
    opacity: 0.6;
}

.ornament-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.circle {
    display: block;
    border-radius: 50%;
    background: #c9a227;
}

.circle-1 {
    width: 6px;
    height: 6px;
    opacity: 0.3;
    animation: pulse1 2s ease-in-out infinite;
}

.circle-2 {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    animation: pulse2 2s ease-in-out infinite 0.3s;
}

.circle-3 {
    width: 6px;
    height: 6px;
    opacity: 0.3;
    animation: pulse3 2s ease-in-out infinite 0.6s;
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.text-container p,
.text-container h2,
.text-container h3,
.text-container blockquote,
.text-container .callout-box,
.text-container .case-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-container p.reveal,
.text-container h2.reveal,
.text-container h3.reveal,
.text-container blockquote.reveal,
.text-container .callout-box.reveal,
.text-container .case-block.reveal {
    opacity: 1;
    transform: translateY(0);
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-callout {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-callout.reveal {
    opacity: 1;
    transform: translateY(0);
}


.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c9a227, transparent);
}

.coin-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coin-icon {
    display: inline-block;
    font-size: 2.5rem;
    color: #c9a227;
    animation: coinFlip 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

@keyframes coinFlip {
    0%, 100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotateY(90deg) scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: rotateY(180deg) scale(1);
        opacity: 1;
    }
    75% {
        transform: rotateY(270deg) scale(0.8);
        opacity: 0.7;
    }
}

.hook-section .text-container::after {
    content: '✦';
    display: block;
    text-align: center;
    font-size: 1rem;
    color: #c9a227;
    margin-top: 30px;
    opacity: 0.4;
}

.part3-section .section-heading::before {
    background: linear-gradient(180deg, #e63946, #8b2d35);
}

.part3-section .section-heading::after {
    background: linear-gradient(90deg, #e63946, transparent);
}

.author-credit {
    margin-top: 60px;
    text-align: center;
}

.author-credit p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin: 0;
}
