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

:root {
    --brand: #39E575;
    --brand-strong: #39E575;
    --bg: #000000;
    --text: #ffffff;
    --muted: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    padding-right: 100px;
}

/* Accessibility helpers */
.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--brand);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0;
    z-index: 10000;
}
.skip-link:focus {
    left: 0.5rem;
    top: 0.5rem;
}

:focus-visible {
    outline: 3px solid var(--brand-strong);
    outline-offset: 2px;
}

/* Header / Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: none;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
}
.site-brand a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.6rem;
}
.site-nav ul {
    display: flex;
    gap: 1.25rem;
    list-style: none;
}
.site-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.7rem 0.8rem;
    font-size: 1.12rem;
}
.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(255,255,255,0.1);
}

/* Emphasize Get Involved CTA */
.site-nav a.nav-cta {
  color: #071a09;
  background: var(--brand);
  border: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 4px 14px rgba(57, 229, 117, 0.25), inset 0 1px 0 rgba(255,255,255,0.4);
  font-weight: 800;
}
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  background: var(--brand);
}



/* Sections */
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.5s ease;
    will-change: transform, opacity;
}

/* Mobile: let sections grow to their content to avoid clipping */
@media (max-width: 768px) {
  .section { 
    height: auto; 
    min-height: 100svh; 
    align-items: stretch; 
    overflow: visible; 
  }
  /* Ensure generic media containers size correctly */
  .image-container { height: auto; }
}

/* Remove seams between full-viewport sections */
.section + .section,
.horizontal-wrapper + .section,
.section + .horizontal-wrapper {
    border-top: 1px solid transparent;
}

/* Section 1 - Mission (Redesigned hero) */
#section1.hero {
    background-color: var(--bg);
    position: relative;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 85%, rgba(0,0,0,1) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    transition: transform 0.5s ease, opacity 0.5s ease;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 1rem;
        min-height: 100vh;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(24px, 8vw, 70px);
        line-height: 1.1;
    }
    
    #section1.hero {
        min-height: 100vh;
        overflow: visible;
    }
}
.hero-title {
    font-size: clamp(18px, 4.5vw, 50px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: var(--brand);
    position: relative;
    z-index: 3;
}
.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 22px);
    color: var(--muted);
}

.hero-subtitle-small {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--text);
    font-weight: 400;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--brand);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--brand);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(57, 229, 117, 0.25);
}

.hero-btn:hover {
    background: #2dd165;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 229, 117, 0.4);
}

.hero-btn:active,
.hero-btn:focus,
.hero-btn:visited {
    background: var(--brand);
    color: #000 !important;
    outline: none;
}

.hero-btn:hover:visited {
    background: #2dd165;
    color: #000 !important;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
.scroll-cue {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    opacity: 0.7;
}

/* Hero background image */
.hero {
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/aureliuszgorski-6.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.5; /* 50% transparency */
  transform: translateZ(0);
  will-change: transform;
}
/* create subtle parallax on scroll */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg.parallax {
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    transition: transform 0.05s linear;
  }
}

/* Section 2 - readable two-column copy */
#section2 {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}
#section2 .text-container {
  text-align: left;
  color: #000;
  padding: 4rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #section2 {
    min-height: auto;
    padding: 2rem 0;
  }
  #section2 .text-container {
    padding: 2rem 1rem;
    text-align: left;
  }
  #section2 .line {
    font-size: clamp(16px, 4vw, 26px);
    line-height: 1.5;
  }
}
#section2 .cluster { break-inside: avoid; margin: 0 0 1rem; }
#section2 .line { 
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.6;
  margin: 0.25rem 0;
  opacity: 1; 
  transform: none; 
  transition: none; 
  font-weight: 400; 
  text-shadow: none;
}
#section2 a { color: #000; text-decoration: underline; }
#section2 strong { font-weight: 800; }

/* Section 2 two-column layout */
#section2 .section2-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  #section2 .section2-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  #section2 .profile { order: 0; }
  #section2 .content { order: 1; }
}
#section2 .profile {
  color: #000;
}
#section2 .profile-photo {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
  background: #fff;
}
#section2 .profile-name {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}
#section2 .profile-role {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
#section2 .content .section-lead { color: #000; }



/* Hide only the old scroll cue under hero */
.scroll-cue { display: none !important; }

.text-container {
    text-align: center;
    color: white;
    padding: 0 1rem;
    align-self: flex-start;
    margin-top: 2rem;
}

.line {
    font-size: clamp(18px, 3.5vw, 40px);
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}

.line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section 3 */
#section3 { background-color: var(--bg); }

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Videos take full viewport; always visible */
.expanding-image,
.shrinking-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 1;
    clip-path: none;
    transform: none;
}

/* No transitions - videos always visible */
.expanding-image { transition: none; }
.shrinking-image { transition: none; }

/* Videos */
.expanding-video { object-fit: cover; }
.shrinking-video { object-fit: cover; }

/* Mobile video design – clean 16:9 card, full width without overflow */
@media (max-width: 768px) {
  #section3, #section4 { height: auto; min-height: auto; padding: 1rem 0; overflow: hidden; }
  .video-container { width: 100%; margin: 0; padding: 0 1rem; }
  .video-container .image-container {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0b0b0b;
    border-radius: 12px;
    overflow: hidden;
  }
  .expanding-image,
  .shrinking-image,
  .video-container .expanding-image,
  .video-container .shrinking-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .line, .mission-text { transition: none !important; animation: none !important; }
}

/* Black background sections */
.black-bg {
    background-color: var(--bg);
    color: var(--text);
}

/* Newsletter section - allow background image to show */
#section12.black-bg {
    background-color: transparent;
}

/* Get Involved section sizes to content; prevent clipping on mobile */
#section6 {
    height: auto;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: visible;
}



/* Section 4 - Outro video is full-viewport; clip-path drives reveal */
/* CSS above sets full-viewport sizing */



/* Career steps */
.career-step {
    max-width: 640px;
    text-align: left;
    padding: 2rem;
}

/* Career video */
.career-video {
    position: absolute;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    left: auto;
}

.career-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .career-video {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
}

/* Timeline images */
.timeline-image {
    position: absolute;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    left: auto;
}

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

@media (max-width: 1200px) {
    .timeline-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
}
.career-step h3 {
    font-size: clamp(18px, 3.8vw, 36px);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 700;
}
.career-step p {
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.55;
    color: var(--muted);
    text-align: left;
}

/* Newsletter */
.newsletter-container {
    text-align: center;
    max-width: 560px;
    padding: 2rem;
    margin: 0 auto;
}
.newsletter-container h2 {
    font-size: clamp(24px, 5vw, 48px);
    margin-bottom: 1rem;
    color: var(--brand);
}
.newsletter-container p {
    font-size: clamp(16px, 2.2vw, 22px);
    margin-bottom: 1.25rem;
    color: var(--muted);
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.newsletter-form label {
    text-align: left;
    font-size: 0.9rem;
    color: var(--muted);
}
.newsletter-form input {
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid var(--brand);
    border-radius: 0;
    background-color: transparent;
    color: white;
    outline: none;
}
.newsletter-form input::placeholder { color: #888; }
.newsletter-form input:focus { border-color: var(--brand-strong); box-shadow: 0 0 10px rgba(57,229,117,0.3); }
.newsletter-form button {
    padding: 1rem;
    font-size: 1.1rem;
    background-color: var(--brand);
    color: #000;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.newsletter-form button:hover { background-color: var(--brand-strong); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(57,229,117,0.4); }
.form-status { min-height: 1.25rem; font-size: 0.95rem; color: var(--muted); }

/* Footer */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 0 2rem;
    font-size: 0.95rem;
    color: var(--muted);
}

 

.section-heading {
  font-size: clamp(22px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 0.6rem 0;
  color: var(--brand);
  font-weight: 800;
  text-wrap: balance;
}
.section-lead {
  font-size: clamp(16px, 1.9vw, 20px);
  color: var(--muted);
  margin: 0 0 1rem 0;
}
.section-caption {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

/* Scroll spy */
.site-nav a.active {
  border-bottom: none;
}

/* Footer */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-links a {
  color: var(--muted);
  text-decoration: none;
}
.social-links a:hover { color: var(--brand); } 

/* Get Involved CTA grid */
.container-involved { max-width: 1200px; margin: 0 auto; padding: 2rem; text-align: center; }
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  justify-items: center;
}
.cta-card {
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 1.25rem;
}
.cta-icon { color: var(--brand); margin-bottom: 0.75rem; }
.cta-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-text { color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.btn { 
    display: inline-block; 
    padding: 0.75rem 1rem; 
    border-radius: 0; 
    text-decoration: none; 
    font-weight: 700; 
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-brand { 
    background: var(--brand); 
    color: #000; 
    box-shadow: 0 4px 14px rgba(57, 229, 117, 0.25);
}
.btn-brand:hover { 
    background: #2dd165; 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 229, 117, 0.4);
}

/* Get Involved responsive */
@media (max-width: 1024px) {
  .cta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container-involved { padding: 1.25rem; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-card { width: 100%; }
}

#section5 {
  height: auto;
  min-height: 100vh;
  padding: 3rem 0 4rem;
}
#section5 .text-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
#section5 .district-content h3 {
  line-height: 1.15;
  margin-top: 1.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#section5 .district-content p {
  max-width: 68ch; /* optimal line length */
  text-wrap: pretty;
}
#section5 .district-content p + p { margin-top: 0.7rem; }
#section5 .district-content p strong:first-child {
  color: var(--brand);
  font-weight: 800;
}
#section5 .key-points li { margin: 0.4rem 0; }
#section5 .district-content h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: clamp(18px, 2.6vw, 28px);
  color: var(--brand);
  text-wrap: balance;
}
#section5 p {
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(16px, 1.9vw, 19px);
  margin: 0.75rem 0 1.1rem;
}
#section5 ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}
#section5 li { margin: 0.25rem 0; }
#section5 .key-points li { list-style: disc; } 

/* Process overview in section5 */
#section5 .process-overview { margin: 1rem 0 2rem; }
#section5 .section-figure { margin: 0.75rem 0 1.25rem; }
#section5 .section-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #0b0b0b; border: 1px solid rgba(255,255,255,0.08); }
#section5 .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
#section5 .process-step {
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
}
#section5 .step-index {
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.25rem;
}
#section5 .step-title {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
#section5 .step-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Headings use Roboto for consistency */
h1, h2, h3, h4, h5, h6, .section-heading, .hero-title {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

/* Hero title: solid color */
.hero-title {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--brand);
  text-shadow: none;
}

/* Header becomes solid on scroll */
 .site-header.scrolled {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
}

/* CTA polish */
.cta-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.16);
} 

/* Footer layout */
.footer-inner.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { align-items: stretch; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .social-links { justify-content: flex-start; }
}
.footer-heading { color: var(--text); font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; }
.footer-grid p, .footer-grid a, .footer-grid li { color: var(--muted); font-size: 0.95rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--brand); }

.footer-form { display: flex; gap: 0.5rem; }
.footer-form input { flex: 1; padding: 0.75rem; background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--text); border-radius: 0; }
.footer-form button { 
    padding: 0.75rem 1rem; 
    background: var(--brand); 
    color: #000; 
    border: none; 
    border-radius: 0; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(57, 229, 117, 0.25);
}
.footer-form button:hover { 
    background: #2dd165; 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 229, 117, 0.4);
}

.footer-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--brand); }

 

.horizontal-wrapper #section7 .section-heading {
  color: var(--brand);
  font-size: clamp(22px, 4.5vw, 48px);
  margin-bottom: 1rem;
  font-weight: 800;
} 

/* Navigation: glass pill for all devices */
.site-nav { position: relative; }
.site-nav::before { content: none !important; }
.site-nav ul {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  padding: 0.25rem;
  gap: 0.25rem;
}
.site-nav ul a {
  border-radius: 9999px;
  padding: 0.55rem 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.site-nav ul a:hover,
.site-nav ul a:focus-visible {
  background: rgba(255,255,255,0.08);
}
.site-nav ul a.active {
  background: var(--brand);
  color: #071a09;
  border-bottom: none;
  box-shadow: 0 6px 18px rgba(57,229,117,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}
.site-nav ul a.nav-cta {
  background: var(--brand);
  color: #071a09;
  border: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 6px 18px rgba(57,229,117,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
  font-weight: 800;
}







/* Skeleton loader */
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.skeleton, .image-container.skeleton::before { background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.12) 37%, rgba(255,255,255,0.06) 63%); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
.image-container.skeleton { position: relative; }
.image-container.skeleton::before { content: ""; position: absolute; inset: 0; display: block; }

/* Media polish */
img[loading="lazy"] { filter: saturate(95%); }
picture, img { max-width: 100%; height: auto; }

/* High priority image hint */
img[fetchpriority="high"] { content-visibility: auto; } 

/* Journey quotes */
.journey-quote {
  margin: 0.5rem 0;
  padding: 0.4rem 0 0.4rem 0.8rem; /* small left padding for the border */
  width: 100%;
  max-width: none;
  border-left: 3px solid var(--brand);
  background: transparent; /* transparent background */
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.45;
}
.journey-quote cite { display: block; margin-top: 0.4rem; font-style: normal; color: var(--text); font-size: 0.85rem; }
.journey-quote a { color: var(--brand); text-decoration: none; }
.journey-quote a:hover { text-decoration: underline; }
 

/* Generic section background */
.section .section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.35;
  transform: translateZ(0);
  will-change: transform;
}
.newsletter-bg { 
    background-image: url('images/aureliuszgorski-8.jpg'); 
    background-position: top center !important;
    opacity: 0.6;
}
/* Lock newsletter bg position – no parallax shift so the head is not cropped */
.newsletter-bg.parallax { transform: translate3d(0, 0, 0) !important; }
#section12 .newsletter-container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .section .section-bg.parallax { transform: translate3d(0, var(--parallax-y, 0px), 0); transition: transform 0.05s linear; }
} 

.journey-lead { font-size: clamp(32px, 8vw, 72px); line-height: 1.25; font-weight: 600; } 

.site-brand .site-logo { width: 210px; height: auto; display: block; }
 

/* Mailchimp form styling to match site */
#mc_embed_signup { max-width: 560px; margin: 0 auto; }
#mc_embed_signup_scroll { display: grid; gap: 0.75rem; }
#mc_embed_signup .indicates-required, #mc_embed_signup .refferal_badge { display: none !important; }
#mc_embed_signup .mc-field-group label { display: block; margin-bottom: 0.25rem; color: var(--muted); font-size: 0.9rem; }
#mc_embed_signup input[type="email"] { width: 100%; padding: 1rem; font-size: 1.1rem; border: 2px solid var(--brand); border-radius: 0; background: transparent; color: var(--text); outline: none; }
#mc_embed_signup input[type="email"]::placeholder { color: #888; }
#mc_embed_signup input[type="email"]:focus { border-color: var(--brand-strong); box-shadow: 0 0 10px rgba(57,229,117,0.3); }
#mc_embed_signup .button { width: 100%; padding: 1rem; font-size: 1.1rem; font-weight: 700; background: var(--brand); color: #000; border: none; border-radius: 0; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; }
#mc_embed_signup .button:hover { background: var(--brand-strong); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(57,229,117,0.4); }
#mc_embed_signup #mce-responses .response { color: var(--muted); font-size: 0.95rem; }
#mc_embed_signup .optionalParent .foot { display: grid; gap: 0.5rem; } 

/* Framework grid */
.framework-grid { 
    display: grid; 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 1rem; 
    margin: 0.5rem 0 1.25rem; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.framework-card { background: #0b0b0b; border: 1px solid rgba(255,255,255,0.08); padding: 1rem; position: relative; }
.framework-card h4 { margin: 0 0 0.35rem 0; color: var(--text); font-weight: 800; font-size: 1.05rem; }
.framework-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* Framework images */
.framework-image {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

/* Embedded tweet image styling */
.tweet-image { 
  margin: 0.5rem 0 1rem; 
  border: 1px solid rgba(255,255,255,0.08); 
  background: #0b0b0b; 
}
.tweet-image img { width: 100%; height: auto; display: block; }

/* Demo video styling */
.demo-video {
  margin: 2rem 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
}
.demo-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Report image styling */
.report-image {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
  text-align: center;
}
.report-image img {
  width: 100%;
  height: auto;
  display: block;
}
.report-link {
  margin: 1rem 0 0 0;
  padding: 0 1rem 1rem 1rem;
}
.report-link a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.report-link a:hover {
  color: #fff;
}

/* New video styling */
.new-video {
  margin: 2rem 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
}
.new-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Platform image styling */
.platform-image {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
}
.platform-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* BusinessLink video styling */
.businesslink-video {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.businesslink-video video {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  position: relative;
}

/* Mobile responsive video */
@media (max-width: 768px) {
  .businesslink-video {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    border: none;
    background: transparent;
    overflow: hidden;
    position: relative;
  }
  .businesslink-video video {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    position: relative;
  }
}

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

/* Framework icons */
.framework-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
}

/* CampusAI building image */
.campusai-image {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 0;
    overflow: hidden;
}

.campusai-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Investment image */
.investment-image {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 0;
    overflow: hidden;
}

.investment-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Friends image */
.friends-image {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 0;
    overflow: hidden;
}

.friends-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Book image */
.book-image {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 0;
    overflow: hidden;
    text-align: center;
}

.book-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.book-image:hover img {
    transform: scale(1.02);
}

.book-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}
 

/* Icon list for key points */
.icon-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin: 0.75rem 0 1.25rem; list-style: none; padding: 0; }
.icon-item { display: grid; grid-template-columns: 36px 1fr; gap: 0.75rem; align-items: start; background: #0b0b0b; border: 1px solid rgba(255,255,255,0.08); padding: 0.75rem; }
.icon-item .icon { color: var(--brand); width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; }
.icon-item h5 { margin: 0 0 0.25rem 0; color: var(--text); font-size: 1rem; font-weight: 800; }
.icon-item p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
@media (min-width: 800px) { .icon-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .icon-list { grid-template-columns: repeat(3, 1fr); } } 

/* Product market fit grid */
.pmf-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 0.75rem 0 1.5rem; }
@media (min-width: 768px) { .pmf-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.pmf-card { background: #0b0b0b; border: 1px solid rgba(255,255,255,0.08); padding: 1rem; }
.pmf-card h4 { margin: 0 0 0.25rem; font-size: 1.05rem; color: var(--text); }
.pmf-card p { margin: 0 0 1rem; color: var(--muted); line-height: 1.6; }

/* PMF card links */
.pmf-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.pmf-link:hover {
  color: #fff;
  text-decoration: underline;
}
 

/* Global link styles */
a { color: var(--brand); text-decoration: underline; }
a:visited { color: var(--brand); }
a:hover, a:focus-visible { color: var(--brand-strong); } 

/* Button link overrides to ensure visibility */
a.btn, .btn, .btn:visited { color: #000; text-decoration: none; }
.btn:hover, .btn:focus-visible { color: #000; text-decoration: none; }

/* Brand button states */
a.btn.btn-brand, .btn.btn-brand:visited, .btn.btn-brand:hover, .btn.btn-brand:focus-visible { color: #000; text-decoration: none; }

/* Nav CTA visited state */
.site-nav a.nav-cta:visited { color: #071a09; } 

 

/* Timeline styling for My Journey - Clean Design */
.timeline { 
  position: relative; 
  padding: 2rem 0;
}

.timeline .section { 
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
}

@media (max-width: 899px) {
  .timeline .section {
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}

@media (min-width: 768px) { 
  .timeline .section { 
    padding: 4rem 2rem;
    margin-bottom: 3rem;
  } 
}

.timeline-item { 
  position: relative; 
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 3rem;
  width: 12px; 
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(57,229,117,0.2);
  z-index: 2;
}

@media (min-width: 768px) {
  .timeline-item::before {
    left: -2rem;
    top: 4rem;
    width: 14px;
    height: 14px;
  }
}

/* Hide the first timeline dot (My Journey intro) */
#section7.timeline-item::before {
  display: none;
}

.timeline-divider { 
  position: relative; 
  padding: 2rem 1.5rem;
  margin: 2rem 0;
  background: rgba(255,255,255,0.01);
  border-left: 2px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .timeline-divider {
    padding: 2.5rem 2rem;
    margin: 3rem 0;
  }
}

.timeline-divider-text { 
  color: var(--muted); 
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

/* Subtle reveal on scroll */
.timeline-item .career-step { 
  opacity: 1; 
  transform: translateY(0); 
  transition: opacity 0.35s ease, transform 0.35s ease; 
}

.timeline-item.visible .career-step { 
  opacity: 1; 
  transform: translateY(0); 
} 

/* --- Simple mobile navigation --- */
.mobile-nav-toggle { 
  display: none; 
  background: #000; 
  color: #fff; 
  border: none; 
  padding: 0.75rem; 
  border-radius: 0;
  transition: background 0.2s ease;
}

.mobile-nav-toggle:hover {
  background: #111;
}

@media (max-width: 900px) {
  .mobile-nav-toggle { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 44px;
    height: 44px;
  }
  
  .site-nav { 
    position: fixed; 
    top: 64px; 
    left: 0; 
    right: 0; 
    background: #000; 
    border: none; 
    padding: 0; 
    box-shadow: none; 
    opacity: 0; 
    transform: translateY(-100%); 
    pointer-events: none; 
    transition: all 0.3s ease; 
    z-index: 2000; 
  }
  
  .site-nav.open { 
    opacity: 1; 
    transform: translateY(0); 
    pointer-events: auto; 
  }
  
  .site-nav ul { 
    flex-direction: column; 
    gap: 0; 
    background: #000; 
    padding: 0; 
    border: none; 
  }
  
  .site-nav ul a { 
    display: block; 
    width: 100%; 
    padding: 1rem 1.5rem; 
    background: #000;
    border: none;
    border-bottom: 1px solid #333;
    transition: background 0.2s ease;
    font-weight: 400;
    text-align: left;
  }
  
  .site-nav ul a:hover {
    background: #111;
  }
  
  .site-nav ul a.nav-cta {
    background: var(--brand);
    color: #000;
    font-weight: 700;
    border-bottom: none;
  }
  
  .site-nav ul a.nav-cta:hover {
    background: var(--brand-strong);
  }
}

@media (min-width: 901px) {
  .mobile-nav-toggle { display: none; }
  .site-nav { position: static; opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
  .site-nav ul { flex-direction: row; }
}

/* Header glass on scroll */
.site-header { background: transparent; border-bottom: none; }
.site-header.scrolled { background: transparent !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; border-bottom-color: transparent !important; }

/* --- Alternating Timeline (modern) --- */
.timeline { position: relative; max-width: 1100px; margin: 0 auto; padding: 2rem 1rem; }
.timeline [role="list"] { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* Center line */
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 1.25rem; width: 2px; background: rgba(255,255,255,0.12); }
@media (min-width: 900px) {
  .timeline::before { left: 50%; transform: translateX(-1px); }
}

/* Items as cards */
.timeline .timeline-item { position: relative; background: #0b0b0b; border: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 1.25rem; box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.timeline .timeline-item .section-heading { margin-bottom: 0.35rem; }

/* Mobile: single column, line on the left */
@media (max-width: 899px) {
  .timeline .timeline-item { 
    padding: 1rem 1.25rem; 
    background: transparent; 
    border: none; 
    box-shadow: none; 
    margin: 0;
  }
  .timeline .timeline-item + .timeline .timeline-item { margin-top: 0; }
  .timeline .timeline-divider { margin: 0.25rem 0; }
  .timeline .timeline-item::before { display: none; }
  .timeline::before { display: none; }
  .timeline { padding: 0 1rem; }
}

/* Desktop: two columns alternating around center line */
@media (min-width: 900px) {
  .timeline [role="list"] { grid-template-columns: 1fr 1fr; gap: 2.2rem 4rem; }
  .timeline .timeline-item:nth-of-type(odd) { grid-column: 1; padding-right: 2rem; }
  .timeline .timeline-item:nth-of-type(even) { grid-column: 2; padding-left: 2rem; }
}

/* Dots anchored to the edge nearest the center line */
.timeline .timeline-item::before { content: ""; position: absolute; top: 1rem; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(57,229,117,0.18); }
@media (min-width: 900px) {
  .timeline .timeline-item:nth-of-type(odd)::before { right: -1.25rem; }
  .timeline .timeline-item:nth-of-type(even)::before { left: -1.25rem; }
}

/* Dividers between items (centered text) */
.timeline .timeline-divider { background: transparent; border: none; padding: 0; margin: 0.25rem 0 1.25rem 0; position: relative; }
.timeline .timeline-divider .timeline-divider-text { display: block; text-align: center; color: var(--muted); font-style: italic; font-size: 0.95rem; line-height: 1.6; }
@media (min-width: 900px) {
  .timeline .timeline-divider { grid-column: 1 / -1; }
  .timeline .timeline-divider .timeline-divider-text { max-width: 60%; margin: 0.25rem auto 1.5rem; }
}

/* Reveal (subtle) */
.timeline .timeline-item .career-step { opacity: 0; transform: translateY(14px); transition: opacity 0.35s ease, transform 0.35s ease; }
.timeline .timeline-item.visible .career-step { opacity: 1; transform: translateY(0); }

/* Hide first dot */
#section7.timeline-item::before { display: none; }

/* Neutralize earlier timeline section styling */
.timeline .section { background: transparent !important; border: 0 !important; border-left: 0 !important; }

/* Explicit alignment overrides for Journey items on desktop */
@media (min-width: 900px) {
  /* My Journey (intro) → right */
  #section7.timeline-item { grid-column: 2; padding-left: 2rem; padding-right: 1.25rem; }
  #section7.timeline-item::before { left: -1.25rem; right: auto; }

  /* Blended Learning → left */
  #section8.timeline-item { grid-column: 1; padding-right: 2rem; padding-left: 1.25rem; }
  #section8.timeline-item::before { right: -1.25rem; left: auto; }

  /* Innovation center → left */
  #section10.timeline-item { grid-column: 1; padding-right: 2rem; padding-left: 1.25rem; }
  #section10.timeline-item::before { right: -1.25rem; left: auto; }

  /* The Day → right */
  #section11.timeline-item { grid-column: 2; padding-left: 2rem; padding-right: 1.25rem; }
  #section11.timeline-item::before { left: -1.25rem; right: auto; }

  /* National acceleration program → left (so video can be on the right) */
  #section9.timeline-item { grid-column: 1; padding-right: 2rem; padding-left: 1.25rem; }
  #section9.timeline-item::before { right: -1.25rem; left: auto; }

  /* All sections with images → left */
  #section8.timeline-item { grid-column: 1; padding-right: 2rem; padding-left: 1.25rem; }
  #section8.timeline-item::before { right: -1.25rem; left: auto; }
  
  #section10.timeline-item { grid-column: 1; padding-right: 2rem; padding-left: 1.25rem; }
  #section10.timeline-item::before { right: -1.25rem; left: auto; }
}

/* Remove full-width glass background behind nav items on desktop */
@media (min-width: 901px) {
  .site-nav ul { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; gap: 0.5rem; }
}

/* --- Mobile reset & unified layout (<=768px) --- */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    * { box-sizing: border-box; min-width: 0; }

    .section { padding: 1.25rem 1rem; }

    .text-container,
    .container,
    .container-involved,
    .newsletter-container { width: 100%; max-width: 680px; margin: 0 auto; padding: 0; }

    /* Stack all grids into single column */
    .section2-grid,
    .framework-grid,
    .cta-grid,
    .footer-grid,
    .pmf-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

    /* Ensure profile above text on mobile */
    .section2-grid .profile { order: 0; }
    .section2-grid .content { order: 1; }

    /* Media blocks unify sizing */
    .image-container,
    .video-container,
    .businesslink-video,
    .new-video,
    .platform-image,
    .campusai-image,
    .investment-image,
    .friends-image,
    .report-image,
    .book-image { width: 100%; max-width: 100%; margin: 1rem 0; border: none; background: transparent; overflow: hidden; }

    .image-container video,
    .new-video video,
    .businesslink-video video,
    .video-container video,
    .platform-image img,
    .campusai-image img,
    .investment-image img,
    .friends-image img,
    .report-image img,
    .book-image img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

    /* Timeline simplification */
    .timeline { padding: 0 1rem; }
    .timeline [role="list"] { display: grid; grid-template-columns: 1fr; gap: 1rem; }
    .timeline::before, .timeline .timeline-item::before { display: none; }
    .timeline .timeline-item { padding: 0; background: transparent; border: 0; box-shadow: none; margin: 0; }
    .timeline .timeline-divider { margin: 0.5rem 0; padding: 0; border: 0; background: transparent; }

    /* Header spacing */
    .site-header .header-inner { padding: 0 0.5rem; }

    /* Footer stack */
    .footer-grid { grid-template-columns: 1fr; gap: 1rem; }
    .footer-meta { flex-direction: column; align-items: center; gap: 0.5rem; }
} 

/* Achievements list styling */
.achievements-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  max-width: 90%;
}

.achievements-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 0.5rem 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 100%;
  word-wrap: break-word;
}

.achievements-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--brand);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(57, 229, 117, 0.3);
}

.achievements-list li:hover::before {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Mobile adjustments for achievements list */
@media (max-width: 768px) {
  .achievements-list {
    max-width: 100%;
  }
  
  .achievements-list li {
    padding-left: 1.75rem;
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .achievements-list li::before {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.7rem;
  }
} 

/* Team image styling */
.team-image {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile adjustments for team image */
@media (max-width: 768px) {
  .team-image {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    border: none;
    background: transparent;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }
} 

/* Award image styling */
.award-image {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
}

.award-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile adjustments for award image */
@media (max-width: 768px) {
  .award-image {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    border: none;
    background: transparent;
    overflow: hidden;
  }
  
  .award-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }
} 

/* Showroom image styling */
.showroom-image {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  overflow: hidden;
}

.showroom-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile adjustments for showroom image */
@media (max-width: 768px) {
  .showroom-image {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    border: none;
    background: transparent;
    overflow: hidden;
  }
  
  .showroom-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }
} 

/* Days counter styling */
.days-counter {
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
} 

/* Fixed Logo */
.fixed-logo {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 2000;
  width: 300px;
  height: auto;
}

.fixed-logo img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.fixed-logo:hover img {
  opacity: 1;
}

/* Mobile adjustments for fixed logo */
@media (max-width: 768px) {
  .fixed-logo {
    top: 1rem;
    left: 1rem;
    width: 200px;
  }
}

/* Vertical Right Menu */
.vertical-menu {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-menu-list {
  list-style: none;
  padding: 2rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  position: relative;
}

.vertical-menu-list li:first-child {
  margin-top: 4rem;
}

.vertical-menu-list li:last-child {
  margin-bottom: 4rem;
}

/* Progress line */
.vertical-menu-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
  z-index: -1;
}

.vertical-menu-list::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  z-index: -1;
  transition: height 0.3s ease;
  height: var(--scroll-progress, 0%);
}

.vertical-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  padding: 0.5rem 0;
}

.vertical-menu-item:hover {
  color: var(--brand);
  transform: scale(1.1);
}

.vertical-menu-item.active {
  color: var(--brand);
  transform: scale(1.1);
}

.menu-text {
  transform: rotate(90deg);
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}



/* Mobile adjustments for vertical menu */
@media (max-width: 768px) {
  body {
    padding-right: 70px;
  }
  
  .vertical-menu {
    width: 70px;
  }
  
  .vertical-menu-item {
    width: auto;
    height: auto;
  }
  
  .menu-text {
    font-size: 0.7rem;
  }
  
  .menu-icon {
    font-size: 1.2rem;
  }
  
  .vertical-menu-list {
    gap: 2rem;
  }
  
  .vertical-menu-list li:first-child {
    margin-top: 3rem;
  }
  
  .vertical-menu-list li:last-child {
    margin-bottom: 3rem;
  }
} 

 