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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #08070a;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

img, video, svg {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p, span, a, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    background: #08070a;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-square {
    width: 16px;
    height: 16px;
    background: #ff4d00;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.nav-links a {
    color: #8a878d;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    background: #ffffff;
    color: #08070a;
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Burger Menu - Hidden by default */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #08070a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff4d00;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 96px 80px;
    position: relative;
    min-height: 975px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://www.figma.com/api/mcp/asset/807a73c4-fca6-4bd8-99d3-b2a5830ac308.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.section-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    color: #dfcee5;
}

.hero-title {
    font-family: 'Inria Sans', serif;
    font-size: 96px;
    font-weight: 400;
    line-height: 0.9;
    text-align: center;
    color: #ffffff;
}

.hero-description {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #8a878d;
    max-width: 720px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.btn-gradient {
    background: linear-gradient(to right, #ff4d00, #ff007a);
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 100px;
    border: none;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(255, 77, 0, 0.25);
    transition: all 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(255, 77, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.stats-row {
    display: flex;
    justify-content: space-between;
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-value {
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
}

.stat-label {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    color: #8a878d;
    text-transform: uppercase;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.countdown-label {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: #8a878d;
}

.countdown-timer {
    display: flex;
    gap: 16px;
}

.countdown-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.countdown-box {
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-number {
    font-family: 'Geist Mono', monospace;
    font-weight: 800;
    font-size: 32px;
    color: #ffffff;
}

.countdown-unit {
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    color: #8a878d;
}

.countdown-separator {
    font-family: 'Geist Mono', monospace;
    font-weight: 800;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.25);
}

/* Narrative Section */
.narrative-section {
    background: #08070a;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    min-height: 625px;
}

.chapter-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
}

.chapter-name {
    color: #dfcee5;
}

.chapter-number {
    color: #8a878d;
}

.narrative-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.narrative-title {
    font-family: 'Inria Sans', serif;
    font-size: 72px;
    line-height: 1.05;
    color: #ffffff;
    max-width: 1100px;
}

.narrative-text {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #8a878d;
    max-width: 840px;
}

/* Experience Section */
.experience-section {
    background: #121015;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    min-height: 696px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-tag {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    color: #ff4d00;
}

.section-title {
    font-family: 'Inria Sans', serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.experience-card {
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 329px;
}

.card-accent {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #ff4d00, #ff007a);
    border-radius: 2px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 20px;
    height: 20px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #8a878d;
}

.card-link {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    color: #ff4d00;
    padding-top: 8px;
}

/* Pillars Section */
.pillars-section {
    background: #08070a;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    min-height: 521px;
}

.pillars-content {
    display: flex;
    gap: 48px;
}

.pillar-main {
    flex: 1;
}

.pillar-title {
    font-family: 'Inria Sans', serif;
    font-size: 80px;
    line-height: 1;
    color: #ffffff;
}

.pillar-cards {
    flex: 1;
    display: flex;
    gap: 32px;
}

.pillar-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-card-title {
    font-family: 'Inria Sans', serif;
    font-size: 32px;
    color: #ffffff;
}

.pillar-card-text {
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #8a878d;
}

/* Transition Section */
.transition-section {
    background: linear-gradient(to right, #ff4d00, #ff007a);
    padding: 96px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 515px;
}

.transition-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 508px;
}

.transition-tag {
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 13px;
    color: #08070a;
}

.transition-title {
    font-family: 'Inria Sans', serif;
    font-size: 56px;
    line-height: 1.1;
    color: #08070a;
}

.transition-text {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

.transition-date-card {
    background: #08070a;
    border-radius: 32px;
    padding: 48px;
    width: 480px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0px 20px 20px rgba(18, 5, 29, 0.08);
}

.date-header {
    display: flex;
    justify-content: space-between;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: #dfcee5;
}

.date-main {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: 'Inria Sans', serif;
}

.date-day,
.date-year {
    font-size: 96px;
    color: #ffffff;
}

.date-month {
    font-size: 32px;
    color: #ff4d00;
}

.date-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.date-footer {
    display: flex;
    justify-content: space-between;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
}

.date-venue {
    font-weight: 600;
    color: #ffffff;
}

.date-time {
    color: #8a878d;
}

/* What Happens Section */
.what-happens-section {
    background: #08070a;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    min-height: 1140px;
}

.what-happens-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-chapter {
    font-family: 'Geist Mono', monospace;
    font-size: 13px;
    color: #dfcee5;
    text-transform: uppercase;
}

.what-happens-title {
    font-family: 'Inria Sans', serif;
    font-size: 64px;
    line-height: 1.1;
    color: #ffffff;
}

.what-happens-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    color: #8a878d;
    max-width: 720px;
}

.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.opportunity-item {
    background: #121015;
    border-left: 4px solid #ff4d00;
    border-radius: 0 12px 12px 0;
    padding: 32px 16px;
    display: flex;
    gap: 48px;
    align-items: center;
    min-height: 163px;
}

.opportunity-header {
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opportunity-number {
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 16px;
    color: #dfcee5;
}

.opportunity-title {
    font-family: 'Inria Sans', serif;
    font-size: 32px;
    line-height: 1.1;
    color: #ffffff;
}

.opportunity-text {
    flex: 1;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #8a878d;
}

/* Venue Section */
.venue-section {
    background: #08070a;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    min-height: 793px;
}

.venue-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.venue-info {
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.venue-title {
    font-family: 'Inria Sans', serif;
    font-size: 72px;
    line-height: 1;
    color: #ffffff;
}

.venue-subtitle {
    font-family: 'Inria Sans', serif;
    font-style: italic;
    font-size: 24px;
    color: #ff4d00;
}

.venue-description {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #8a878d;
}

.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.venue-tag {
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 100px;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    color: #ffffff;
}

.venue-image {
    flex: 1;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Location Access */
.location-access {
    background: #121015;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: 574px;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.location-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-tag {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    color: #ff4d00;
}

.location-title {
    font-family: 'Inria Sans', serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 255px;
}

.location-card-tag {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: #ff4d00;
    text-transform: uppercase;
}

.location-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.location-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #8a878d;
}

.location-card-footer {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: #dfcee5;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Find Us */
.find-us {
    background: #08070a;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: 799px;
}

.find-us-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.find-us-tag {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    color: #ff4d00;
}

.find-us-title {
    font-family: 'Inria Sans', serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
}

.find-us-map {
    position: relative;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
}

.find-us-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-card {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 320px;
    background: #1b181e;
    border: 1px solid #ff4d00;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.map-address {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #8a878d;
}

.map-link {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    color: #ff4d00;
    padding-top: 12px;
}

/* Schedule Section */
.schedule-section {
    background: #121015;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    min-height: 898px;
}

.schedule-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.schedule-chapter {
    font-family: 'Geist Mono', monospace;
    font-size: 13px;
    color: #dfcee5;
    text-transform: uppercase;
}

.schedule-title {
    font-family: 'Inria Sans', serif;
    font-size: 64px;
    text-align: center;
    color: #ffffff;
}

.schedule-list {
    display: flex;
    flex-direction: column;
}

.schedule-item {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 32px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 117px;
}

.schedule-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-time {
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 20px;
    color: #ff4d00;
    width: 150px;
}

.schedule-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.schedule-name {
    font-family: 'Inria Sans', serif;
    font-size: 24px;
    color: #ffffff;
}

.schedule-desc {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #8a878d;
}

.schedule-badge {
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: #dfcee5;
}

/* Previous Gatherings */
.previous-gatherings {
    padding: 160px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    min-height: 451px;
    background-image: url('https://www.figma.com/api/mcp/asset/492ae20f-801d-462a-bf20-d89e8d884221.png');
    background-size: cover;
    background-position: center;
}

.previous-gatherings::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.prev-tag {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: #ff4d00;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.prev-title {
    font-family: 'Inria Sans', serif;
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.prev-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #8a878d;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Event Highlights */
.event-highlights {
    background: #08070a;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: 688px;
}

.highlights-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlights-tag {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    color: #ff4d00;
    text-transform: uppercase;
}

.highlights-title {
    font-family: 'Inria Sans', serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
}

.highlights-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #8a878d;
}

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

.highlight-card {
    position: relative;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.highlight-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.highlight-label {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* RSVP Section */
.rsvp-section {
    background: #08070a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 140px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    min-height: 1195px;
}

.rsvp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.rsvp-chapter {
    font-family: 'Geist Mono', monospace;
    font-size: 13px;
    color: #dfcee5;
    text-transform: uppercase;
}

.rsvp-title {
    font-family: 'Inria Sans', serif;
    font-size: 72px;
    text-align: center;
    color: #ffffff;
}

.rsvp-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    text-align: center;
    color: #8a878d;
    max-width: 600px;
}

.rsvp-content {
    display: flex;
    gap: 48px;
    width: 1100px;
}

.rsvp-stats {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.rsvp-stat-box {
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 120px;
}

.rsvp-stat-box.remaining .rsvp-stat-value {
    color: #ff4d00;
}

.rsvp-stat-value {
    font-family: 'Inria Sans', serif;
    font-size: 40px;
    color: #ffffff;
}

.rsvp-stat-label {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    color: #8a878d;
    text-transform: uppercase;
}

.rsvp-form-container {
    flex: 1;
    background: #1b181e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    max-width: 632px;
    width: 100%;
    box-sizing: border-box;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field.full-width {
    width: 100%;
}

.form-field label {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    color: #8a878d;
    text-transform: uppercase;
}

.form-field input,
.form-field select {
    background: #08070a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0 16px;
    height: 44px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.form-field input::placeholder {
    color: #8a878d;
}

.form-field select {
    color: #8a878d;
}

.form-alert {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-alert img {
    width: 20px;
    height: 20px;
}

.form-alert p {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #ffffff;
}

.form-alert strong {
    font-weight: 700;
    color: #ff4d00;
}

.btn-gradient.full-width {
    width: 100%;
}

.form-note {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: #8a878d;
    text-align: center;
}

/* Footer */
.footer {
    background: #08070a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 80px 48px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    min-height: 359px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-about {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-family: 'Inria Sans', serif;
    font-size: 28px;
    color: #ffffff;
}

.footer-text {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #8a878d;
}

.footer-links {
    display: flex;
    gap: 80px;
}

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

.footer-column-title {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: #ffffff;
}

.footer-column a {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    color: #8a878d;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    color: #8a878d;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-social img:hover {
    opacity: 1;
}


/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 40px;
    }

    .hero-section,
    .narrative-section,
    .experience-section,
    .pillars-section,
    .what-happens-section,
    .venue-section,
    .location-access,
    .schedule-section,
    .rsvp-section {
        padding: 60px 40px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* ГЛОБАЛЬНЫЙ ФИКС ГОРИЗОНТАЛЬНОГО СКРОЛЛА */
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }

    /* Все секции */
    section,
    .navbar,
    .hero-section,
    .narrative-section,
    .experience-section,
    .pillars-section,
    .transition-section,
    .what-happens-section,
    .venue-section,
    .location-access,
    .find-us,
    .schedule-section,
    .previous-gatherings,
    .event-highlights,
    .rsvp-section,
    .footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 0 20px;
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .logo-text {
        font-size: 12px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 20px;
        gap: 40px;
        min-height: auto;
    }

    .hero-content {
        gap: 20px;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        text-align: center;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        max-width: 90%;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        gap: 12px;
    }

    .btn-gradient,
    .btn-outline {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Stats Row Mobile */
    .stats-row {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Countdown Mobile */
    .countdown-container {
        width: 100%;
        max-width: 600px;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .countdown-label {
        font-size: 11px;
        text-align: center;
    }

    .countdown-timer {
        gap: 4px;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .countdown-group {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .countdown-box {
        padding: 10px 8px;
        width: 100%;
    }

    .countdown-number {
        font-size: 24px;
    }

    .countdown-unit {
        font-size: 9px;
    }

    .countdown-separator {
        font-size: 18px;
        padding: 0 2px;
    }

    /* Sections Mobile */
    .narrative-section,
    .pillars-section,
    .experience-section,
    .what-happens-section,
    .venue-section,
    .location-access,
    .find-us,
    .schedule-section,
    .previous-gatherings,
    .event-highlights,
    .rsvp-section {
        padding: 48px 20px;
    }

    .chapter-meta {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        width: 100%;
    }

    .chapter-name,
    .chapter-number {
        font-size: 11px;
    }

    .narrative-title,
    .section-title,
    .pillar-title,
    .what-happens-title,
    .venue-title,
    .schedule-title,
    .rsvp-title {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .narrative-text {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        max-width: 90%;
    }

    /* Experience Grid Mobile */
    .section-header {
        text-align: center;
        width: 100%;
    }

    .section-tag {
        font-size: 11px;
    }

    .experience-grid,
    .pillar-cards,
    .location-cards,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .experience-card,
    .pillar-card,
    .location-card {
        padding: 24px 20px;
        width: 100%;
    }

    .card-title,
    .pillar-card-title,
    .location-card-title {
        font-size: 18px;
    }

    .card-text,
    .pillar-card-text,
    .location-card-text {
        font-size: 14px;
    }

    /* Transition Section Mobile */
    .transition-section {
        flex-direction: column;
        padding: 48px 20px;
        gap: 32px;
    }

    .transition-content {
        text-align: center;
        width: 100%;
    }

    .transition-tag {
        font-size: 11px;
    }

    .transition-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .transition-text {
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto;
    }

    .transition-date-card {
        width: 100%;
        max-width: 300px;
    }

    /* Opportunities Mobile */
    .what-happens-header {
        text-align: center;
        width: 100%;
    }

    .what-happens-title {
        font-size: 28px;
        line-height: 1.1;
    }

    .what-happens-subtitle {
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto;
    }

    .opportunities-list {
        width: 100%;
    }

    .opportunity-item {
        padding: 24px 20px;
        text-align: center;
        width: 100%;
    }

    .opportunity-header {
        text-align: center;
    }

    .opportunity-number {
        font-size: 11px;
    }

    .opportunity-title {
        font-size: 20px;
    }

    .opportunity-text {
        font-size: 14px;
        text-align: center;
    }

    /* Venue Section Mobile */
    .venue-content {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .venue-info {
        text-align: center;
        width: 100%;
    }

    .venue-title {
        font-size: 28px;
    }

    .venue-subtitle {
        font-size: 12px;
    }

    .venue-description {
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto;
    }

    .venue-tags {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .venue-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .venue-image {
        width: 100%;
    }

    .venue-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    /* Location Access Mobile */
    .location-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
    }

    .location-title {
        font-size: 26px;
    }

    /* Map Mobile */
    .find-us-header {
        text-align: center;
        width: 100%;
    }

    .find-us-title {
        font-size: 26px;
    }

    .find-us-map {
        height: 300px;
        width: 100%;
    }

    .map-card {
        padding: 16px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }

    .map-title {
        font-size: 13px;
    }

    .map-address {
        font-size: 12px;
    }

    /* Schedule Mobile */
    .schedule-header {
        text-align: center;
        width: 100%;
    }

    .schedule-title {
        font-size: 28px;
        line-height: 1.1;
    }

    .schedule-list {
        gap: 20px;
        width: 100%;
    }

    .schedule-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        text-align: center;
        width: 100%;
    }

    .schedule-time {
        font-size: 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 12px 0;
        width: 100%;
    }

    .schedule-details {
        padding: 0;
        text-align: center;
    }

    .schedule-name {
        font-size: 17px;
    }

    .schedule-desc {
        font-size: 13px;
    }

    .schedule-badge {
        position: static;
        margin-top: 12px;
    }

    /* Event Highlights Mobile */
    .prev-title,
    .highlights-title {
        font-size: 26px;
        text-align: center;
    }

    .prev-subtitle,
    .highlights-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .highlight-card {
        width: 100%;
    }

    .highlight-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    /* =======================================
       RSVP FORM MOBILE - КРИТИЧНО ВАЖНО
       ======================================= */
    .rsvp-section {
        padding: 60px 20px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .rsvp-header {
        text-align: center;
        width: 100%;
        margin-bottom: 32px;
    }

    .rsvp-chapter {
        font-size: 11px;
    }

    .rsvp-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .rsvp-subtitle {
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto;
    }

    .rsvp-content {
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        max-width: 100%;
        align-items: center;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    /* RSVP Stats Mobile */
    .rsvp-stats {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rsvp-stat-box {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .rsvp-stat-value {
        font-size: 32px;
    }

    .rsvp-stat-label {
        font-size: 13px;
    }

    /* FORM CONTAINER - ПОЛНАЯ ВИДИМОСТЬ */
    .rsvp-form-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 32px 20px;
        background: #1b181e;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-sizing: border-box;
    }

    /* FORM - 100% ШИРИНА */
    .rsvp-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        box-sizing: border-box;
    }

    /* FORM ROW - ВЕРТИКАЛЬНО */
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* FORM FIELDS - ПОЛНАЯ ШИРИНА */
    .form-field {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        box-sizing: border-box;
    }

    .form-field.full-width {
        width: 100%;
        max-width: 100%;
    }

    .form-field label {
        font-size: 11px;
        font-weight: 700;
        color: #dfcee5;
        display: block;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .form-field input,
    .form-field select {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        font-size: 16px; /* 16px prevents iOS zoom */
        background: #08070a;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: #ffffff;
        font-family: 'Geist', sans-serif;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-sizing: border-box;
        margin: 0;
        min-height: 48px;
    }

    .form-field input::placeholder {
        color: #8a878d;
    }

    .form-field select {
        color: #8a878d;
        background-color: #08070a;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

    .form-field select option {
        background: #08070a;
        color: #ffffff;
    }

    .form-field input:focus,
    .form-field select:focus {
        outline: none;
        border-color: #ff4d00;
        background: #08070a;
        color: #ffffff;
    }

    /* FORM ALERT - ВИДИМОСТЬ */
    .form-alert {
        padding: 16px;
        font-size: 13px;
        line-height: 1.5;
        background: rgba(255, 77, 0, 0.15);
        border: 1px solid rgba(255, 77, 0, 0.4);
        border-radius: 8px;
        display: flex;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-alert img {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .form-alert p {
        flex: 1;
        margin: 0;
        color: #ffffff;
        font-size: 13px;
    }

    .form-alert strong {
        color: #ff4d00;
    }

    /* SUBMIT BUTTON - ПОЛНАЯ ШИРИНА */
    .rsvp-form button[type="submit"],
    .rsvp-form .btn-gradient {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 600;
        margin-top: 8px;
        box-sizing: border-box;
    }

    .form-note {
        font-size: 10px;
        line-height: 1.4;
        text-align: center;
        color: #8a878d;
        margin-top: 8px;
    }

    /* Footer Mobile */
    .footer {
        padding: 48px 20px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        width: 100%;
    }

    .footer-about {
        max-width: 90%;
        margin: 0 auto;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .narrative-title,
    .section-title,
    .pillar-title,
    .what-happens-title,
    .venue-title,
    .schedule-title,
    .rsvp-title {
        font-size: 24px;
    }

    .countdown-number {
        font-size: 20px;
    }

    .countdown-box {
        padding: 8px 6px;
    }

    .form-field input,
    .form-field select {
        padding: 12px 14px;
        font-size: 16px;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .navbar,
    .hero-section,
    .narrative-section,
    .experience-section,
    .pillars-section,
    .what-happens-section,
    .venue-section,
    .location-access,
    .find-us,
    .schedule-section,
    .previous-gatherings,
    .event-highlights,
    .rsvp-section,
    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 26px;
    }

    .rsvp-form-container {
        max-width: 100%;
        padding: 0 4px;
    }

    .form-field input,
    .form-field select {
        font-size: 16px;
        padding: 12px;
    }
}
