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

:root {
    --bg-color: #1D1D1B;
    --text-color: #ffffff;
    --accent-green: #DEFF5B;
    --accent-blue: #009EE3;
    --header-height: 80px;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}
body {
    font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.5;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(29, 29, 27, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    text-decoration: none;
    z-index: 10;
}
.logo__img {
  display: block;
  height: 36px;
}
.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-color);
    text-decoration: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Commissioner', sans-serif;
}
.btn-secondary:hover {
    border-color: var(--accent-green);
    background: rgba(222, 255, 91, 0.1);
    color: var(--accent-green);
}
main {
    position: relative;
    z-index: 10;
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--header-height) 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.hero-title h1 {
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.hero-title .title-word.accent-gradient {
    font-size: clamp(5rem, 18vw, 14rem);
}
.title-word {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(120px);
    animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.accent-gradient {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cta-button {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: var(--bg-color);
    border: none;
    padding: 1.2rem 3.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    box-shadow: 0 20px 60px rgba(222, 255, 91, 0.3);
    font-family: 'Commissioner', sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(222, 255, 91, 0.5);
    text-decoration: none;
}
.cta-button:active {
    transform: translateY(-1px);
}
.cta-button.link--policy {
  display: inline-block;
  margin-top: 2rem;
}
.section-start {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-start__content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.section-start__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-start__logo + .section-start__logo {
  margin-left: 64px;
}
.section-start__logo-img {
  display: block;
  height: 48px;
}
.section-start__logo-img:first-child {
   height: 64px;
}
.stats-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}
.stats-card {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    width: 50%;
}
.stats-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}
.stats-range {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1;
    color: var(--text-color);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
}
.stats-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent-green);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.stats-unit {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-color);
    display: block;
    text-align: center;
}
.stats-description {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}
.section-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}
.section-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}
.btn-explore {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-green);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Commissioner', sans-serif;
    min-width: 206px;
    text-decoration: none;
}
.btn-explore:hover {
    background: var(--accent-green);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(222, 255, 91, 0.4);
}
.btn-explore + .btn-explore {
  margin-left: 24px;
}
.section-insights {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-insights__content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.section-insights .section-title {
    color: var(--text-color);
    margin-bottom: 4rem;
}
.insights-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.insights-cards .insight-card {
    grid-column: span 2;
}
.insights-cards .insight-card:nth-child(4) {
    grid-column: 2 / 4;
}
.insights-cards .insight-card:nth-child(5) {
    grid-column: 4 / 6;
}
.insight-card {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 0;
}
.insight-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(222, 255, 91, 0.1);
}
.insight-card__title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.insight-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.insight-card__list li {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}
.insight-card__list li:last-child {
    margin-bottom: 0;
}
.insight-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--accent-green);
}
.section-results {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-results__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.section-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.section-results .btn-explore {
  display: inline-block;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title h1 {
        font-size: clamp(2.5rem, 15vw, 5rem);
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .stats-cards {
        margin-bottom: 3rem;
    }

    .stats-card {
        padding: 2rem 1.5rem;
    }

    .insights-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .insights-cards .insight-card:nth-child(4),
    .insights-cards .insight-card:nth-child(5) {
        grid-column: span 1;
    }

    .insights-cards .insight-card:nth-child(4) {
        grid-column: 1;
    }

    .insights-cards .insight-card:nth-child(5) {
        grid-column: 1;
    }

    .insight-card {
        padding: 2rem 1.5rem;
    }

}

@media (max-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .hero-section,
    .second-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cta-button,
    .btn-explore {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
    .btn-explore {
      width: 100%;
    }
    .section-start__logo {
      width: 100%;
    }
    .section-start__logo + .section-start__logo {
      margin-left: 0;
      margin-top: 1rem;
    }
    .btn-explore + .btn-explore {
      margin-left: 0;
      margin-top: 1rem;
    }
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(29, 29, 27, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice__container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-notice__content {
    flex: 1;
}

.cookie-notice__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-notice__link {
    color: var(--accent-green);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-notice__link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cookie-notice__actions {
    flex-shrink: 0;
}

.cookie-notice__btn {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: var(--bg-color);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Commissioner', sans-serif;
    white-space: nowrap;
}

.cookie-notice__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(222, 255, 91, 0.4);
}

.cookie-notice__btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1.25rem 1.5rem;
    }

    .cookie-notice__container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .cookie-notice__text {
        font-size: 0.9rem;
    }

    .cookie-notice__btn {
        width: 100%;
        padding: 0.9rem 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
