/* politics.bar - Swiss International Style with Organic Blobs */
/* Ocean-deep palette */
:root {
  --deep-ocean: #0a1628;
  --teal: #006d77;
  --sea-blue: #4ecdc4;
  --sandy-tan: #e8c99a;
  --warm-cream: #f5ede0;
  --near-white: #fafafa;
  --slate-gray: #4a5568;
  --soft-sage: #7a9e87;
  --grid-gutter: 24px;
  --grid-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--near-white);
  color: var(--deep-ocean);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Swiss Grid System */
.swiss-grid {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

/* Organic Blobs Background */
.blobs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  opacity: 0.07;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--teal);
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--sea-blue);
  top: 40%;
  left: -100px;
  border-radius: 37% 63% 46% 54% / 48% 55% 45% 52%;
  animation-delay: -5s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: var(--sandy-tan);
  bottom: 20%;
  right: 10%;
  border-radius: 54% 46% 63% 37% / 52% 45% 55% 48%;
  animation-delay: -10s;
}

.blob-4 {
  width: 500px;
  height: 500px;
  background: var(--soft-sage);
  top: 60%;
  left: 30%;
  border-radius: 46% 54% 37% 63% / 45% 52% 48% 55%;
  animation-delay: -15s;
}

.blob-5 {
  width: 300px;
  height: 300px;
  background: var(--teal);
  top: 10%;
  left: 20%;
  border-radius: 55% 45% 48% 52% / 63% 37% 46% 54%;
  animation-delay: -8s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(30px, -50px) rotate(5deg) scale(1.05); }
  50% { transform: translate(-20px, 20px) rotate(-3deg) scale(0.95); }
  75% { transform: translate(40px, 30px) rotate(7deg) scale(1.02); }
}

/* Fade Reveal Animation */
.fade-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--deep-ocean);
  color: var(--near-white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--deep-ocean);
}

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--deep-ocean);
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--near-white);
}

.btn-primary:hover {
  background: var(--deep-ocean);
}

.btn-outline {
  background: transparent;
  color: var(--deep-ocean);
  border: 2px solid var(--deep-ocean);
}

.btn-outline:hover {
  background: var(--deep-ocean);
  color: var(--near-white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5f 40%, rgba(26, 58, 95, 0) 70%);
  opacity: 0.04;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--deep-ocean);
  margin-bottom: 24px;
}

.accent-text {
  color: var(--teal);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-gray);
  max-width: 480px;
  margin-bottom: 40px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-blob-cluster {
  position: relative;
  width: 100%;
  height: 400px;
}

.hero-blob {
  position: absolute;
  animation: heroFloat 15s ease-in-out infinite;
}

.hero-blob-a {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--teal), var(--sea-blue));
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.hero-blob-b {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--sandy-tan), var(--warm-cream));
  border-radius: 37% 63% 46% 54% / 48% 55% 45% 52%;
  top: 20%;
  right: 10%;
  opacity: 0.4;
  animation-delay: -5s;
}

.hero-blob-c {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--soft-sage), var(--sea-blue));
  border-radius: 54% 46% 63% 37% / 52% 45% 55% 48%;
  bottom: 15%;
  left: 15%;
  opacity: 0.35;
  animation-delay: -10s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -25px) rotate(4deg); }
  66% { transform: translate(-10px, 15px) rotate(-3deg); }
}

.hero-blob-a {
  animation-name: heroFloatCenter;
}

@keyframes heroFloatCenter {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  33% { transform: translate(calc(-50% + 15px), calc(-50% - 25px)) rotate(4deg); }
  66% { transform: translate(calc(-50% - 10px), calc(-50% + 15px)) rotate(-3deg); }
}

.hero-stat-card {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background: var(--deep-ocean);
  color: var(--near-white);
  padding: 24px 32px;
  border-radius: 8px;
  text-align: center;
  z-index: 2;
}

.stat-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--sea-blue);
}

.stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 250, 0.6);
  margin-top: 4px;
}

/* Section Common */
section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--deep-ocean);
  margin-bottom: 24px;
}

.section-rule {
  width: 60px;
  height: 3px;
  background: var(--teal);
}

/* Discourse Section */
.discourse {
  background: var(--near-white);
}

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

.topic-card {
  background: white;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}

.topic-card-featured {
  grid-column: 1 / -1;
  background: var(--deep-ocean);
  color: var(--near-white);
  border: none;
}

.topic-card-featured .topic-title {
  color: var(--near-white);
  font-size: 28px;
}

.topic-card-featured .topic-excerpt {
  color: rgba(250, 250, 250, 0.7);
}

.topic-card-featured .topic-category {
  color: var(--sea-blue);
  border-color: var(--sea-blue);
}

.topic-card-featured .topic-participants,
.topic-card-featured .topic-time {
  color: rgba(250, 250, 250, 0.5);
}

.topic-category {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.topic-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--deep-ocean);
  margin-bottom: 12px;
}

.topic-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-gray);
  margin-bottom: 20px;
}

.topic-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.topic-participants,
.topic-time {
  color: var(--slate-gray);
  opacity: 0.7;
}

/* Perspectives Section */
.perspectives {
  background: var(--warm-cream);
}

.perspectives-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.perspective-item {
  text-align: center;
  padding: 40px 24px;
}

.perspective-icon {
  margin-bottom: 24px;
}

.perspective-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--deep-ocean);
  margin-bottom: 16px;
}

.perspective-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-gray);
  margin-bottom: 20px;
}

.perspective-count {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-transform: uppercase;
}

/* Analysis Section */
.analysis {
  background: var(--near-white);
}

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

.analysis-card {
  background: white;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analysis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}

.analysis-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  padding: 40px;
}

.analysis-visual {
  background: var(--deep-ocean);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 200px;
}

.chart-bars {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  width: 100%;
  height: 160px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--teal), var(--sea-blue));
  height: var(--bar-height, 50%);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1s ease;
}

.bar-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.5);
  letter-spacing: 0.05em;
}

.analysis-type {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}

.analysis-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--deep-ocean);
  margin-bottom: 12px;
}

.analysis-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-gray);
  margin-bottom: 20px;
}

.analysis-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.analysis-link:hover {
  color: var(--deep-ocean);
}

/* Community Section */
.community {
  background: var(--deep-ocean);
  color: var(--near-white);
}

.community .section-tag {
  color: var(--sea-blue);
}

.community .section-title {
  color: var(--near-white);
}

.community .section-rule {
  background: var(--sea-blue);
}

.community-content {
  display: grid;
  gap: 80px;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-block {
  text-align: center;
}

.stat-big-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--sea-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-big-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 250, 0.5);
}

.community-cta-block {
  text-align: center;
  position: relative;
  padding: 80px 40px;
}

.cta-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--teal), var(--sea-blue));
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  opacity: 0.1;
  animation: blobFloat 20s ease-in-out infinite;
}

.cta-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--near-white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-actions .btn-primary {
  background: var(--sea-blue);
  color: var(--deep-ocean);
}

.cta-actions .btn-primary:hover {
  background: var(--near-white);
}

.cta-actions .btn-outline {
  border-color: rgba(250, 250, 250, 0.4);
  color: var(--near-white);
}

.cta-actions .btn-outline:hover {
  background: rgba(250, 250, 250, 0.1);
  border-color: var(--near-white);
}

/* Footer */
.site-footer {
  background: #060e1a;
  color: var(--near-white);
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--near-white);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 250, 250, 0.5);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.4);
  margin-bottom: 16px;
}

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

.footer-link {
  font-size: 14px;
  color: rgba(250, 250, 250, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--sea-blue);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.footer-copy {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .header-grid {
    flex-wrap: wrap;
    height: auto;
    padding: 16px var(--grid-gutter);
    gap: 12px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    min-height: 250px;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .perspectives-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .analysis-card-wide {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
