/* ================================================
   LAYOUT
   ================================================ */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

/* ================================================
   LOADER
   ================================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.loader__logo {
  width: 80px;
  height: 80px;
  color: var(--color-primary);
}

.loader__logo circle,
.loader__logo path,
.loader__logo line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.loader__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.loader.is-done {
  pointer-events: none;
}

/* ================================================
   HEADER / NAV
   ================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.header--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: #ffffff;
  transition: color 0.4s ease;
}

.header--scrolled .header__logo {
  color: var(--color-text);
}

.header__logo-mark {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.header__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.header__party {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
}

.header--scrolled .header__party {
  color: var(--color-text-muted);
}

/* Scroll progress bar */
.header__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  width: 0%;
  transform-origin: left;
  box-shadow: 0 0 8px rgba(42, 157, 62, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.nav__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.nav__cta:active {
  transform: scale(0.96);
}


/* Mobile nav */
.mobile-menu-btn {
  display: none;
  color: #ffffff;
  padding: var(--space-2);
  transition: color 0.4s ease;
}

.header--scrolled .mobile-menu-btn {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }

  .nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
  }
  .nav--open .nav__link {
    font-size: var(--text-xl);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
  }
  .nav--open .nav__cta {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-8);
  }
  .nav--open .mobile-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    color: var(--color-text);
    padding: var(--space-2);
  }
}

/* ================================================
   HERO
   ================================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

@media (max-width: 768px) {
  .hero__bg img {
    object-position: 65% center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.12 0.02 170 / 0.92) 0%,
    oklch(0.12 0.02 170 / 0.65) 25%,
    oklch(0.12 0.02 170 / 0.3) 55%,
    oklch(0.12 0.02 170 / 0.05) 100%
  );
}

@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(
      to top,
      oklch(0.12 0.02 170 / 0.88) 0%,
      oklch(0.12 0.02 170 / 0.6) 35%,
      oklch(0.12 0.02 170 / 0.25) 60%,
      oklch(0.12 0.02 170 / 0.1) 100%
    );
  }
}

/* Film grain for cinematic depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-24));
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4cc764;
  margin-bottom: var(--space-4);
}

.hero__tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cc764;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  margin-bottom: var(--space-8);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,115,119,0.3);
}
.btn--primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(13,115,119,0.2);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.btn--outline:active {
  transform: scale(0.97);
}

.btn--white {
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 700;
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 40px rgba(255,255,255,0.15);
}
.btn--white:active {
  transform: scale(0.97);
}

.btn--accent {
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* Hero election date */
.hero__election-date {
  position: absolute;
  bottom: var(--space-8);
  right: var(--space-6);
  text-align: right;
  z-index: 1;
}

.hero__election-date--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-end;
  }

  .hero__content {
    padding-bottom: var(--space-8);
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero__subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
  }

  .hero__actions {
    gap: var(--space-3);
  }

  .hero__actions .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
  }

  .hero__election-date--desktop { display: none; }
  .hero__election-date--mobile {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    margin-top: var(--space-6);
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.hero__date-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero__date {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* ================================================
   SECTION STYLES
   ================================================ */

.section {
  padding-block: clamp(var(--space-8), 6vw, var(--space-24));
}

.section--alt {
  background: var(--color-surface-2);
}

.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
  margin-bottom: var(--space-10);
}

/* ================================================
   MANIFESTO (Pinned word-reveal)
   ================================================ */

.manifesto-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  overflow: hidden;
  padding: var(--space-8);
}

@media (max-width: 768px) {
  .manifesto-section {
    min-height: auto;
    padding: var(--space-16) var(--space-6);
  }
}

.manifesto-section::before {
  content: '\201C';
  position: absolute;
  top: -0.15em;
  left: 0.1em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}

.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 20ch;
  text-align: center;
}

.manifesto__text .word {
  opacity: 0.15;
  transition: opacity 0.1s ease;
  display: inline-block;
}

.manifesto__text .word.is-keyword {
  /* Keywords flash green when revealed */
}

.manifesto__author {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-align: center;
  opacity: 0;
}

/* ================================================
   STATS
   ================================================ */

.stats-section {
  padding-block: clamp(var(--space-6), 4vw, var(--space-20));
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-4) 0;
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }
}

.stat {
  text-align: center;
  padding: var(--space-4);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ================================================
   ISSUES / HJARTAMAL
   ================================================ */

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.issue-card {
  position: relative;
  padding: var(--space-8);
  padding-left: calc(var(--space-8) + 4px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  overflow: hidden;
}

.issue-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.issue-card.is-visible::before {
  transform: scaleY(1);
}

@media (min-width: 769px) {
  .issue-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
}

.issue-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}

.issue-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.issue-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Mobile: truncate with expand */
@media (max-width: 768px) {
  .issue-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .issue-card__desc.is-expanded {
    -webkit-line-clamp: unset;
  }
  .issue-card__more {
    display: inline-block;
    margin-top: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
  }
}

@media (min-width: 769px) {
  .issue-card__more { display: none; }
}

/* ================================================
   ABOUT
   ================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: box-shadow 0.4s ease;
}

.about__image:hover {
  box-shadow: var(--shadow-lg);
}

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

.about__bio p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.about__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.about__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ================================================
   VIDEOS
   ================================================ */

.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-6);
}

.video-grid .video-card:first-child {
  grid-row: 1 / 3;
}

@media (max-width: 768px) {
  .video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    -webkit-overflow-scrolling: touch;
  }
  .video-grid .video-card {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13, 115, 119, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: playPulse 2s ease-in-out infinite;
}

.video-card__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-primary);
}

.video-card__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,115,119,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(13,115,119,0); }
}

.video-card__caption {
  padding: var(--space-4);
}

.video-card__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.video-card__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ================================================
   SOCIAL LINKS
   ================================================ */

.social-section {
  text-align: center;
}

.social-links {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-interactive);
}

.social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-link:active {
  transform: translateY(0) scale(0.97);
}

.social-link svg {
  width: 20px;
  height: 20px;
}


/* ================================================
   STATEMENT
   ================================================ */

.statement-section {
  position: relative;
  background: var(--color-text);
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  overflow: hidden;
}

.statement-section::before {
  content: '\201C';
  position: absolute;
  top: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(16rem, 30vw, 40rem);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.statement {
  position: relative;
  max-width: 52ch;
  margin-inline: auto;
}

.statement p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 0.8rem + 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-bg);
  margin-bottom: var(--space-8);
}

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

.statement strong {
  color: var(--color-accent);
}

.statement__sign {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 2px solid rgba(255,255,255,0.15);
  font-size: clamp(1.4rem, 1rem + 2vw, 2.2rem);
}

/* ================================================
   CTA FINALE
   ================================================ */

.cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #095558 40%, #073e40 70%, var(--color-primary-active) 100%);
  background-size: 200% 200%;
  animation: ctaGradient 8s ease-in-out infinite;
  overflow: hidden;
  padding: var(--space-8);
}

@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta__title {
  font-family: var(--font-display);
  font-size: var(--text-cta);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: var(--space-6);
  position: relative;
  text-shadow: 0 4px 32px rgba(0,0,0,0.2);
}

.cta__x {
  color: var(--color-accent);
  display: inline-block;
  text-shadow: 0 0 40px rgba(76, 199, 100, 0.4), 0 0 80px rgba(76, 199, 100, 0.15);
  filter: drop-shadow(0 0 20px rgba(76, 199, 100, 0.3));
}


.cta__subtitle {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-4);
  position: relative;
}

.cta__date {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-8);
  position: relative;
}

.cta__heart {
  display: inline-block;
  color: #4cc764;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
}

.cta__countdown {
  margin-top: var(--space-8);
  position: relative;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__party {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.footer__party svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__link {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--color-primary);
}

/* ================================================
   SECTION DOTS (Desktop)
   ================================================ */

.section-dots {
  position: fixed;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-dots__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-text-faint);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.section-dots__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .section-dots { display: none; }
}

/* ================================================
   BACK TO TOP (Mobile)
   ================================================ */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-md);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

@media (min-width: 769px) {
  .back-to-top { display: none; }
}

/* ================================================
   COUNTDOWN
   ================================================ */

.countdown {
  display: inline-flex;
  gap: var(--space-4);
  align-items: baseline;
}

.countdown__item {
  text-align: center;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}

.countdown__sep {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.3);
}

.countdown__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================================================
   GREEN HEART
   ================================================ */

.green-heart {
  color: #2a9d3e;
}
