/* ============================================
   GoCord Landing Page — Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --secondary: #6366F1;
  --success: #22C55E;
  --bg: #0D1117;
  --surface: #111827;
  --surface-2: #1E2433;
  --surface-hover: #252D3D;
  --text: #F1F5F9;
  --text-secondary: #8B96A8;
  --border: rgba(99, 120, 160, 0.14);
  --border-hover: rgba(99, 140, 220, 0.3);
  --glass-bg: rgba(17, 24, 39, 0.75);
  --glass-border: rgba(99, 120, 160, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Title --- */
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn__icon {
  flex-shrink: 0;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 132, 255, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border: 1.5px solid var(--border-hover);
}

.btn--outline:hover {
  border-color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: clamp(12px, 1.1vh, 20px) clamp(20px, 2vw, 40px);
  font-size: clamp(1rem, 1.1vw, 1.1vw);
  border-radius: 14px;
}

.btn--pulse {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(10, 132, 255, 0); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav--scrolled {
  background: rgba(10, 14, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  padding: 16px 0;
}

.nav__container {
  width: 100%;
  padding: 0 clamp(20px, 5vw, 5vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-icon {
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav__logo:hover .nav__logo-icon {
  filter: drop-shadow(0 4px 16px rgba(59, 130, 246, 0.6));
  transform: rotate(-4deg) scale(1.08);
}

.nav__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  gap: 8px;
}

.nav__link {
  position: relative;
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, #818CF8);
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav__link:hover::after {
  width: calc(100% - 28px);
}

.nav__cta {
  display: none;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  padding: 11px 26px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #3B82F6, #6366F1) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease !important;
}

.nav__cta:hover {
  background: linear-gradient(135deg, #2563EB, #4F46E5) !important;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.55) !important;
  transform: translateY(-2px) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40px;
  background-image: url('../assets/background.webp');
  background-image: image-set(
    url('../assets/background.webp') type('image/webp'),
    url('../assets/background.png') type('image/png')
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(12px);
  z-index: 0;
}

.hero__glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: #1D4ED8;
  top: -20%;
  left: -10%;
  animation: orb-float-1 14s ease-in-out infinite;
  opacity: 0.2;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: #4F46E5;
  bottom: -15%;
  right: -5%;
  animation: orb-float-2 18s ease-in-out infinite;
  opacity: 0.15;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: #0EA5E9;
  top: 30%;
  right: 20%;
  animation: orb-float-3 12s ease-in-out infinite;
  opacity: 0.1;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 80px) scale(0.95); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.05); }
  66% { transform: translate(40px, -60px) scale(0.9); }
}

@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-80px, 40px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 5vw);
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 3vw);
}

.hero__text-col {
  flex: 2 1 0;
  min-width: 0;
}

.hero__image-col {
  flex: 3 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__app-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2vw 5vw rgba(59, 130, 246, 0.25));
}

.hero__title {
  font-size: clamp(1.75rem, 3.5vw, 3.5vw);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: clamp(16px, 1.5vh, 1.5vh);
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.3vw);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: clamp(28px, 3vh, 3vh);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero__actions {
  display: flex;
  gap: clamp(12px, 1vw, 1vw);
  flex-wrap: wrap;
}

/* Hero-spezifische Button-Overrides */
.hero .btn--primary {
  background: #3B82F6;
  color: #fff;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.45);
}

.hero .btn--primary:hover {
  background: #2563EB;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.hero .btn--primary.btn--pulse {
  animation: pulse-sunset 3s ease-in-out infinite;
}

@keyframes pulse-sunset {
  0%, 100% { box-shadow: 0 4px 24px rgba(59, 130, 246, 0.45); }
  50% { box-shadow: 0 4px 40px rgba(59, 130, 246, 0); }
}

.hero .btn--outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

/* Hero → Features Übergang */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #111827);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  z-index: 2;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: 120px 0;
  background: #111827;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: rgba(20, 28, 45, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.32);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.12);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   PREVIEW
   ============================================ */

.preview {
  padding: 80px 0 120px;
  background: #0F1520;
}

.preview__frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.08), var(--shadow);
}

.preview__frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), transparent, rgba(99, 102, 241, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.preview__placeholder {
  background: #1E2433;
  padding: 80px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 400px;
  justify-content: center;
}

.preview__placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.preview__placeholder span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

.preview__placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   TRUST / WHY GOCORD
   ============================================ */

.trust {
  padding: 120px 0;
  background: #0D1117;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.trust__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 50%;
}

.trust__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   DOWNLOAD
   ============================================ */

.download {
  padding: 120px 0;
  text-align: center;
  background: #111827;
}

.download__sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.download__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.download__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.14);
  background: rgba(20, 28, 45, 0.8);
  transition: all var(--transition);
  text-align: left;
  min-width: 260px;
}

.download__btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.18);
}

.download__btn--windows {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
}

.download__btn-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.download__btn-label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.download__btn-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.download__version {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.download__note {
  color: var(--text-secondary);
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: 120px 0;
  background: #0D1117;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: rgba(59, 130, 246, 0.28);
}

.faq__question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(99, 160, 255, 0.6);
  border-bottom: 2px solid rgba(99, 160, 255, 0.6);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(-135deg);
}

.faq__question:hover {
  color: var(--accent);
}

.faq__answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #080D14;
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  padding: 64px 0 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__tagline {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__bottom p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.footer__heart span {
  color: #FF453A;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.features__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.trust__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.trust__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .nav__cta {
    display: inline-flex;
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__title,
  .hero__sub {
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
  }
}

/* ============================================
   RESPONSIVE — Mobile (<768px)
   ============================================ */

@media (max-width: 767px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.35s ease;
    z-index: 1001;
    border-left: 1px solid var(--border);
  }

  .nav__links.open {
    right: 0;
  }

  .mobile-overlay.active {
    display: block;
  }

  .nav__hamburger {
    display: flex;
    z-index: 1002;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 100px;
  }

  .hero__content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    gap: 32px;
  }

  .hero__text-col {
    order: 2;
    flex: none;
    width: 100%;
  }

  .hero__image-col {
    order: 1;
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .hero__app-image {
    max-width: 90vw;
    margin: 0 auto;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.75rem);
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  }

  .hero__sub {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .download__btn {
    width: 100%;
    justify-content: center;
  }

  .preview__placeholder {
    min-height: 250px;
    padding: 40px 20px;
  }
}

/* --- Reduce motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__orb { animation: none !important; }
  .btn--pulse { animation: none; }
  .voice__waves span { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================
   SHARED HELPERS
   ============================================ */

.section-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-eyebrow--light {
  color: rgba(147, 197, 253, 0.9);
}

/* ============================================
   HERO BADGE & UPDATES
   ============================================ */

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ============================================
   VOICE SECTION
   ============================================ */

.voice-section {
  background: #111827;
  padding: clamp(80px, 10vh, 140px) 0;
  overflow: hidden;
}

.voice__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
  display: flex;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.voice__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.voice__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}

.voice__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 900;
  background: linear-gradient(135deg, #3B82F6 0%, #818CF8 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.voice__unit {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  color: rgba(147, 197, 253, 0.8);
  letter-spacing: -0.02em;
}

.voice__waves {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 48px;
}

.voice__waves span {
  display: block;
  width: clamp(4px, 0.6vw, 8px);
  border-radius: 100px;
  background: linear-gradient(to top, #3B82F6, #818CF8);
  animation: wave-bar 1.4s ease-in-out infinite;
}

.voice__waves span:nth-child(1)  { height: 20%; animation-delay: 0s; }
.voice__waves span:nth-child(2)  { height: 55%; animation-delay: 0.1s; }
.voice__waves span:nth-child(3)  { height: 80%; animation-delay: 0.2s; }
.voice__waves span:nth-child(4)  { height: 65%; animation-delay: 0.15s; }
.voice__waves span:nth-child(5)  { height: 100%; animation-delay: 0.05s; }
.voice__waves span:nth-child(6)  { height: 75%; animation-delay: 0.25s; }
.voice__waves span:nth-child(7)  { height: 90%; animation-delay: 0.1s; }
.voice__waves span:nth-child(8)  { height: 60%; animation-delay: 0.3s; }
.voice__waves span:nth-child(9)  { height: 100%; animation-delay: 0.05s; }
.voice__waves span:nth-child(10) { height: 70%; animation-delay: 0.2s; }
.voice__waves span:nth-child(11) { height: 45%; animation-delay: 0.15s; }
.voice__waves span:nth-child(12) { height: 85%; animation-delay: 0.08s; }
.voice__waves span:nth-child(13) { height: 55%; animation-delay: 0.22s; }
.voice__waves span:nth-child(14) { height: 30%; animation-delay: 0.18s; }
.voice__waves span:nth-child(15) { height: 15%; animation-delay: 0.12s; }

@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

.voice__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.9);
}

.voice__right {
  flex: 1 1 0;
  min-width: 0;
}

.voice__tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.vtag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: rgba(147, 197, 253, 0.9);
}

.vtag--hot {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60A5FA;
}

.voice__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.voice__text {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.voice__text strong { color: var(--text); }

.voice__extras {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice__extra {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(186, 215, 255, 0.8);
  font-weight: 500;
}

.voice__extra svg { flex-shrink: 0; }

/* ============================================
   STREAM SECTION
   ============================================ */

.stream-section {
  background: #0F1520;
  padding: clamp(80px, 10vh, 140px) 0 0;
  overflow: hidden;
}

.stream__header {
  padding: 0 clamp(24px, 6vw, 6vw);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stream__specs {
  display: flex;
  gap: clamp(16px, 3vw, 48px);
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.spec-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: clamp(14px, 2vw, 24px) clamp(20px, 3vw, 40px);
  min-width: clamp(80px, 10vw, 130px);
}

.spec-pill__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #60A5FA;
  letter-spacing: -0.03em;
  line-height: 1;
}

.spec-pill__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.85);
  margin-top: 4px;
}

.stream__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.stream__title em {
  font-style: normal;
  background: linear-gradient(135deg, #3B82F6, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stream__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
}

.stream__screenshots {
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 2vw, 32px);
  padding: 0 clamp(24px, 4vw, 4vw);
}

.stream__shot {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-bottom: none;
}

.stream__shot img {
  display: block;
  width: 100%;
  height: auto;
}

.stream__shot--main {
  flex: 3 1 0;
  box-shadow: 0 -20px 80px rgba(59, 130, 246, 0.1);
}

.stream__shot--settings {
  flex: 1 1 0;
  min-width: 0;
}

.stream__shot-label {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.8);
  background: rgba(10, 14, 22, 0.9);
  padding: 8px 16px;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community-section {
  background: #0D1117;
  padding: clamp(80px, 10vh, 140px) 0;
}

.community__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
}

.community__text {
  flex: 1 1 0;
  min-width: 0;
}

.community__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.community__sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}

.community__sub strong { color: var(--text); }

.channel-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.channel-type {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(20, 28, 45, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.channel-type:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

.channel-type__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-sm);
}

.channel-type strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.channel-type p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.community__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cbadge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(147, 197, 253, 0.9);
}

.community__visual {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.14);
  position: relative;
}

.community__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.community__img-wrap--roles {
  border-color: rgba(59, 130, 246, 0.2);
}

.community__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(10, 14, 22, 0.9);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.6);
}

/* ============================================
   PRIVACY SECTION
   ============================================ */

.privacy-section {
  background: #111827;
  padding: clamp(80px, 10vh, 140px) 0;
  overflow: hidden;
  position: relative;
}

.privacy__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
}

.privacy__visual {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.2));
}

.privacy__glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.privacy__text {
  flex: 1 1 0;
  min-width: 0;
}

.privacy__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 36px;
}

.privacy__claims {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy__claim {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.privacy__claim:hover { border-color: rgba(59, 130, 246, 0.25); }

.privacy__claim--fun {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.05);
}

.privacy__claim-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.privacy__claim strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.privacy__claim p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CUSTOMIZATION SECTION
   ============================================ */

.custom-section {
  background: #0D1117;
  padding: clamp(80px, 10vh, 140px) 0;
}

.custom__header {
  text-align: center;
  padding: 0 clamp(24px, 6vw, 6vw);
  margin-bottom: 60px;
}

.custom__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.custom__title em {
  font-style: normal;
  background: linear-gradient(135deg, #3B82F6, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.custom__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.custom__showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 clamp(24px, 6vw, 6vw);
}

.custom__card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.custom__card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.custom__card--featured {
  border-color: rgba(59, 130, 246, 0.25);
}

.custom__card-img {
  overflow: hidden;
}

.custom__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.custom__card-body {
  padding: 24px;
}

.custom__card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 10px;
}

.custom__card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.custom__card-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   EXTRAS SECTION
   ============================================ */

.extras-section {
  background: #0A0F1A;
  padding: clamp(80px, 10vh, 140px) 0;
}

.extras__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
}

.extras__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
  line-height: 1.1;
}

.extras__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.extra-card {
  padding: 28px 28px;
  background: rgba(17, 24, 39, 0.75);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.extra-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-3px);
}

.extra-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.extra-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.extra-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   LANGUAGES SECTION
   ============================================ */

.lang-section {
  background: #0A0F1A;
  padding: clamp(80px, 10vh, 140px) 0;
  position: relative;
  overflow: hidden;
}

.lang-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lang__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vh, 64px);
}

.lang__text {
  text-align: center;
  max-width: 600px;
}

.lang__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.lang__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.lang__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 16px);
  justify-content: center;
  max-width: 900px;
  width: 100%;
}

.lang__pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: clamp(14px, 2vw, 20px) clamp(20px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: default;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  min-width: 120px;
}

.lang__pill:hover {
  background: var(--surface-hover);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}

.lang__name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.lang__native {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.lang__pill--rtl .lang__native {
  direction: rtl;
  font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
}

.lang__pill--more {
  border-style: dashed;
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.04);
}

.lang__pill--more:hover {
  background: rgba(59, 130, 246, 0.09);
  border-color: rgba(59, 130, 246, 0.5);
}

.lang__pill--more .lang__name {
  color: #60A5FA;
}

.lang__pill--more .lang__native {
  color: #93C5FD;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   ABOUT / HOBBY PROJECT SECTION
   ============================================ */

.about-section {
  background: #080D14;
  padding: clamp(80px, 10vh, 140px) 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
}

.about__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
}

.about__text {
  flex: 1 1 0;
  min-width: 0;
}

.about__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.about__sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: var(--radius);
}

.about__pillar strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.about__pillar p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about__visual {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(147, 197, 253, 0.85);
  line-height: 1.4;
  padding: 28px 32px;
  border-left: 3px solid rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about__stats {
  display: flex;
  gap: 24px;
}

.about__stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--radius);
}

.about__stat span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #60A5FA;
  line-height: 1;
  margin-bottom: 6px;
}

.about__stat small {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================
   DOWNLOAD (UPDATED)
   ============================================ */

.download {
  background: #111827;
  padding: clamp(80px, 10vh, 140px) 0;
  text-align: center;
}

.download__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.download__sub {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  margin-bottom: 48px;
}

/* ============================================
   FAQ (UPDATED)
   ============================================ */

.faq {
  padding: clamp(80px, 10vh, 140px) 0;
  background: #0D1117;
}

.faq__inner {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
}

.faq__list {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   COMING SOON BADGE
   ============================================ */

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #60A5FA;
  white-space: nowrap;
  margin-left: auto;
}

.download__btn {
  pointer-events: auto;
  opacity: 0.85;
}

.download__btn:hover {
  opacity: 1;
}

/* ============================================
   FOOTER (UPDATED)
   ============================================ */

.footer__hobby {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-top: 6px;
}

.footer__wrap {
  width: 100%;
  padding: 0 clamp(24px, 6vw, 6vw);
}

.footer__top {
  display: flex;
  gap: clamp(40px, 8vw, 120px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  flex-wrap: wrap;
}

.footer__brand {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__tagline {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer__nav {
  display: flex;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.85);
  margin-bottom: 4px;
}

.footer__nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.footer__heart {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
   ============================================ */

@media (min-width: 768px) {
  .custom__showcase {
    grid-template-columns: repeat(3, 1fr);
  }
  .extras__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .extra-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .voice__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .voice__left { flex-direction: row; align-items: center; gap: 24px; flex-wrap: wrap; }
  .voice__number { font-size: clamp(4rem, 15vw, 8rem); }

  .community__inner,
  .privacy__inner,
  .about__inner {
    flex-direction: column;
  }

  .stream__screenshots {
    flex-direction: column;
  }
  .stream__shot--settings { display: none; }

  .about__stats { flex-direction: row; }
}

@media (max-width: 600px) {
  .spec-pill__value { font-size: 2rem; }
  .about__stats { flex-direction: column; }
  .custom__showcase { grid-template-columns: 1fr; }
}
