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

a {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 60px; /* Account for fixed header */
    overflow-x: hidden;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

main {
    animation: fadeIn 1.2s ease-in;
}

/* Header */
header,
body > header,
html body header {
    background-color: #000000 !important;
    background: #000000 !important;
    border-top: 1px solid #666666 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    box-sizing: border-box;
}

/* Single bottom line - no overlap, consistent 1px */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #666666;
    pointer-events: none;
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-nav,
header .header-nav,
body header .header-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000 !important;
    background: #000000 !important;
    position: relative;
    border: none !important;
    border-bottom: none !important;
}

.header-left,
#llari-logo,
button.header-left,
button#llari-logo,
button.header-left:focus,
button.header-left:active,
button.header-left:hover,
button#llari-logo:focus,
button#llari-logo:active,
button#llari-logo:hover {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    font-family: 'Courier New', 'Nico Moji', monospace;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none !important;
    pointer-events: auto;
    z-index: 10;
    position: relative;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1;
    display: inline-block;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.hamburger-menu span {
    width: 20px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-menu:hover span {
    background-color: rgba(255, 255, 255, 0.8);
}

.menu-container {
    position: relative;
}

.dropdown-menu,
#dropdown-menu,
.menu-container .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: #000000;
    border: 1px solid #888888;
    min-width: 180px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transform-origin: top;
    display: none !important;
}

.dropdown-menu.active,
#dropdown-menu.active,
.menu-container .dropdown-menu.active {
    max-height: 500px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: block !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-item,
.dropdown-menu .dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    position: relative;
    border: none !important;
    outline: none !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    outline: none;
}

/* Page Sections */
.page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.page-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

/* Hero Section */
.hero-section {
    background-color: #000000;
    padding: 0;
    text-align: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #000000;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Edge fading effect */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 24rem 2rem 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 4.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
    max-width: min(1400px, 95vw);
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-heading .hero-line1,
.hero-heading .hero-line2 {
    display: block;
    white-space: nowrap;
}

.newsletters-link {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid #ffd700;
}

.newsletters-link:hover,
.newsletters-link:focus,
.newsletters-link:active,
.newsletters-link.clicked {
    background-color: #7c3aed;
    color: #ffffff;
    border-color: #ffd700;
}

/* Content Sections */
.content-section {
    background-color: #000000;
    padding: 3.5rem 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 6rem;
}

.section-left {
    position: relative;
}

.section-left h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.podcast-section .section-left {
    padding-top: 1.75rem;
}

.podcast-section .section-left h2 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-right {
    position: relative;
    z-index: 2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
}

.podcast-section .section-description {
    font-size: 1.2rem;
    line-height: 1.88;
    color: #ffffff;
    margin-bottom: 0;
    max-width: 500px;
}

/* Podcast Section - right side larger for carousel, CTA bottom left, center-aligned */
.podcast-section {
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    background-image: url('wow.jpg');
    background-repeat: repeat;
    background-size: auto;
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    grid-template-rows: auto 1fr auto;
    gap: 4rem;
}

.podcast-cta-wrap {
    grid-column: 1 / -1;
    align-self: end;
    padding-bottom: 2rem;
    padding-left: 0;
    text-align: left;
}

/* Watch on YouTube - same style as "Soon to be published": black bg, yellow text, thin yellow border, rounded, arrow */
.podcast-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background-color: #000000;
    color: #ffd700;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    border: 1px solid #ffd700;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.podcast-cta-button:hover {
    background-color: #000000;
}

.podcast-cta-button .arrow {
    font-size: 1rem;
    line-height: 1;
}

.podcast-section .section-left {
    position: relative;
    z-index: 2;
}

.podcast-section .section-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    min-width: 0;
    justify-content: center;
    align-items: center;
}

/* Podcast guest carousel: bigger, fade left and right, centered, moved down a bit */
.podcast-carousel-wrap {
    width: 100%;
    max-width: 100%;
    min-height: 480px;
    margin-top: 7.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transform: scale(1.2);
    transform-origin: center center;
}

.podcast-carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: podcast-scroll 78s linear infinite;
}

.podcast-carousel-wrap:hover .podcast-carousel-track {
    animation-play-state: paused;
}

@keyframes podcast-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.podcast-guest {
    flex-shrink: 0;
    width: 320px;
    height: 420px;
    overflow: hidden;
    display: block;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.podcast-guest:hover {
    border-color: #ffd700;
    box-shadow: 0 0 0 1px #ffd700;
}

.podcast-guest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.25s ease;
}

.podcast-guest:hover img {
    filter: sepia(0.5) saturate(1.5) hue-rotate(5deg) brightness(1.08);
}

/* Think Tank Section - bigger title/desc, moved up, right side: image → title → description → tag */
.thinktank-section {
    padding-top: 4rem;
    min-height: 100vh;
    background-image: url('wow.jpg');
    background-repeat: repeat;
    background-size: auto;
    align-items: center;
}

.thinktank-section .section-left {
    padding-top: 0;
}

.thinktank-section .section-left h2 {
    font-size: 3.35rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.thinktank-section .section-description {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.75;
}

a.thinktank-article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #000000;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.thinktank-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: filter 0.3s ease;
}

.thinktank-article:hover .thinktank-image {
    filter: sepia(50%) saturate(150%) hue-rotate(-10deg) brightness(0.9) contrast(1.1);
}

.thinktank-article-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

a.thinktank-article:hover .thinktank-article-title {
    color: rgba(255, 255, 255, 0.6);
}

.thinktank-article-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.thinktank-article-tag {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.04em;
}

.thinktank-article-author {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    opacity: 0.7;
    font-style: italic;
}

/* Research Section */
.research-section {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: block;
    width: 100%;
    height: 100vh;
}

.research-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    padding: 4rem 2rem;
}

.research-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.research-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    visibility: visible;
    opacity: 1;
}

.research-title {
    position: absolute;
    top: 4.1875rem;
    right: 2rem;
    text-align: right;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
    z-index: 10;
    pointer-events: none;
}

.research-list-box {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    border: 1px solid #ffd700;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 10;
    pointer-events: none;
}

.research-list-box span {
    display: block;
}

.soon-text {
    position: absolute;
    bottom: 4rem;
    right: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    border: 1px solid #ffd700;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    z-index: 10;
    pointer-events: auto;
}

.soon-text:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.soon-text .arrow {
    font-size: 1rem;
    line-height: 1;
}

/* Symposium Section - full screen, dotted background, text top left */
.symposium-section {
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100vh;
    background-image: url('wow.jpg');
    background-repeat: repeat;
    background-size: auto;
}

.symposium-content {
    width: 100%;
    max-width: 1400px;
    padding: 2.5rem 2rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    min-height: 100vh;
}

.symposium-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    text-align: left;
}

.symposium-description {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    max-width: 900px;
    text-align: left;
}

.symposium-button {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    border: 1px solid #ffd700;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.symposium-button:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

/* Nodes Section - dotted bg, title bigger and higher, boxes bigger/fade/blur, thinner yellow hover */
.nodes-section {
    padding: 2rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('wow.jpg');
    background-repeat: repeat;
    background-size: auto;
}

.nodes-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nodes-title {
    font-size: 3.75rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: -3rem;
    letter-spacing: -0.02em;
}

.nodes-images {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
}

/* Left and right: super dark blue/black boxes, fade + slight blur, partnerships text bigger and gray, thinner yellow hover */
.nodes-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    background-color: #020408;
    border: 1px solid transparent;
    border-radius: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(8px);
}

.nodes-placeholder:hover {
    border: 1px solid #ffd700;
    box-shadow: 0 0 0 0.5px #ffd700;
}

.nodes-placeholder-text {
    color: rgba(160, 160, 160, 0.95);
    font-size: 1.85rem;
    font-weight: 500;
    padding: 2.5rem;
    text-align: center;
}

/* Middle: dark black box that fades, image on top, GZAAT below, dotted bg behind, thinner yellow hover */
.nodes-image-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    background: #020408;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 2rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    backdrop-filter: blur(6px);
}

.nodes-image-center:hover {
    border: 1px solid #ffd700;
    box-shadow: 0 0 0 0.5px #ffd700;
}

.nodes-image-center img {
    width: 100%;
    max-width: 340px;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    position: relative;
    z-index: 1;
}

.nodes-center-label {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.nodes-main {
    object-fit: contain;
}

/* Footer Section */
.footer-section {
    padding: 3rem 2rem;
    min-height: auto;
    border-top: none;
}

.footer-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-text {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.footer-branches {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer-branch {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Placeholder Boxes */
.placeholder-box {
    background-color: #ffffff;
    border-radius: 4px;
}

/* Separator lines */
.content-section + .content-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nodes-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .research-section .section-left {
        grid-column: 1;
    }

    .research-section .section-right {
        grid-column: 1;
    }

    .research-section h2 {
        text-align: left;
    }

    .research-list {
        text-align: left;
    }

    .nodes-placeholders {
        flex-direction: column;
    }

    .nodes-large,
    .nodes-small {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-placeholders {
        justify-content: flex-start;
    }
}

/* Manifesto Page - same single header bottom line as main site (header::after in global header) */
.manifesto-section {
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem 2rem;
    animation: fadeIn 1.2s ease-in;
    box-sizing: border-box;
}

.manifesto-content {
    animation: fadeIn 1.5s ease-in;
    max-width: 720px;
    width: 100%;
}

.manifesto-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', 'Nico Moji', monospace;
    letter-spacing: 0.08em;
    text-align: left;
}

.manifesto-meta {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    text-align: left;
}

.manifesto-body {
    display: block;
    font-size: 1.08rem;
    line-height: 1.88;
    color: #ffffff;
    text-align: left;
}

.manifesto-body p {
    margin-bottom: 1.4rem;
}

.manifesto-body p:last-child {
    margin-bottom: 0;
}

.manifesto-signature {
    margin-top: 2rem !important;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.manifesto-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
    min-height: 1.8em;
}

.manifesto-text:last-child {
    margin-bottom: 0;
}

.manifesto-text.typing::after {
    content: '|';
    animation: blink-cursor 0.75s step-end infinite;
    margin-left: 0.2rem;
}

@keyframes blink-cursor {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Page transition */
html {
    scroll-behavior: smooth;
}

body {
    transition: opacity 0.4s ease;
    opacity: 1;
}
/* Cache bust: 1763827005 */
