html { scroll-behavior: smooth; }
/* ==========================================================================
   SOOCHH - CSS VARIABLES & BASE
   ========================================================================== */
:root {
  --tw-slate-950: #020617;
  --tw-slate-900: #0f172a;
  --tw-teal-400: #2dd4bf;
  --tw-teal-500: #14b8a6;
  
  --soochh-bg: var(--tw-slate-950);
  --soochh-bg-card: rgba(15, 23, 42, 0.5);
  --soochh-text: #f8fafc;
  --soochh-muted: #94a3b8;
  --soochh-accent: var(--tw-teal-400);
  
  --soochh-border: rgba(45, 212, 191, 0.15);
  --soochh-border-hover: rgba(45, 212, 191, 0.4);
  
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1100px; /* slightly narrower for editorial feel */
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--soochh-bg);
  color: var(--soochh-text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Cinematic noise overlay */
  background-image: 
    radial-gradient(circle at 20% 0%, rgba(20, 184, 166, 0.05), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(14, 165, 233, 0.05), transparent 50%);
}

.soochh-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ==========================================================================
   TYPOGRAPHY & BUTTONS
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 16px;
  color: var(--soochh-muted);
}

.text-glow {
  color: var(--tw-teal-400);
  text-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
  font-style: italic;
}

.soochh-btn-primary, .soochh-btn-secondary, .soochh-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px; /* sharp edges for editorial look */
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.soochh-btn-primary {
  background: var(--soochh-text);
  color: var(--soochh-bg);
  border: 1px solid var(--soochh-text);
}

.soochh-btn-primary:hover {
  background: var(--tw-teal-400);
  border-color: var(--tw-teal-400);
  color: var(--soochh-bg);
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
}

.soochh-btn-secondary {
  background: transparent;
  color: var(--soochh-text);
  border: 1px solid rgba(255,255,255,0.2);
}

.soochh-btn-secondary:hover {
  border-color: var(--soochh-text);
  background: rgba(255,255,255,0.05);
}

.soochh-btn-outline {
  background: transparent;
  color: var(--soochh-text);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  font-size: 12px;
}

.soochh-btn-outline:hover {
  border-color: var(--tw-teal-400);
  color: var(--tw-teal-400);
}

.soochh-btn-primary.large {
  padding: 18px 48px;
  font-size: 15px;
}

.soochh-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tw-teal-400);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.soochh-link-arrow span {
  transition: var(--transition);
}

.soochh-link-arrow:hover {
  color: #fff;
}

.soochh-link-arrow:hover span {
  transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.soochh-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0;
}

.soochh-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.soochh-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%; /* focus on faces */
  transform: scale(1.05);
  animation: slowZoom 20s ease-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.soochh-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(2,6,23,0.3) 0%, rgba(2,6,23,0.8) 60%, rgba(2,6,23,1) 100%);
}

.soochh-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.soochh-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.soochh-hero h1 {
  font-size: clamp(48px, 8vw, 84px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.soochh-hero-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 40px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-inline: auto;
}

.soochh-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT SOOCHH
   ========================================================================== */
.soochh-about {
  padding: 100px 0;
  background: var(--soochh-bg);
}

.soochh-about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.soochh-about h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 32px;
  font-style: italic;
  color: #fff;
}

.soochh-about p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

/* ==========================================================================
   EDITORIAL & STORYTELLING
   ========================================================================== */
.soochh-editorial {
  padding: 100px 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
  padding: 60px;
}

.editorial-text h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.editorial-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.editorial-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: #1e293b;
  border-radius: 2px;
  overflow: hidden;
}

.editorial-card-bg {
  width: 100%;
  height: 100%;
  background-image: url('../photo/shoochh.png');
  background-size: cover;
  background-position: center;
  filter: grayscale(80%) contrast(1.2);
  transition: var(--transition);
}

.editorial-grid:hover .editorial-card-bg {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }
}

/* ==========================================================================
   LISTEN EVERYWHERE (PLATFORMS)
   ========================================================================== */
.soochh-platforms {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--soochh-bg) 0%, rgba(15,23,42,0.6) 100%);
}

.soochh-section-header {
  margin-bottom: 60px;
}

.soochh-section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.soochh-section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.platform-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--soochh-muted);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
  margin-bottom: 32px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  transition: var(--transition);
  text-decoration: none;
}

.platform-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.platform-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: var(--transition);
}

.platform-card span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

/* ==========================================================================
   THE CREATIVE PROCESS (TIMELINE)
   ========================================================================== */
.soochh-process {
  padding: 100px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-dot {
  display: block;
  width: 20px;
  height: 20px;
  background: var(--soochh-bg);
  border: 2px solid var(--tw-teal-400);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.process-step p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-timeline::before {
    top: 0; bottom: 0; left: 9px;
    width: 1px; height: 100%;
  }
}

/* ==========================================================================
   ARTIST COLLABORATIONS
   ========================================================================== */
.soochh-collab {
  padding: 120px 0;
  background: rgba(15, 23, 42, 0.5);
}

.soochh-collab h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
}

.collab-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ==========================================================================
   INNOVATION IMPACT (COUNTERS)
   ========================================================================== */
.soochh-impact {
  padding: 100px 0;
}

.soochh-impact-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.soochh-impact-subtitle {
  font-family: 'Inter', sans-serif;
  margin-bottom: 50px;
}

.soochh-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.soochh-impact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 40px 24px;
  transition: var(--transition);
}

.soochh-impact-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(45, 212, 191, 0.3);
}

.soochh-impact-icon {
  font-size: 32px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.soochh-yt-counter {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.soochh-impact-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tw-teal-400);
  margin: 0;
}

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

/* ==========================================================================
   FAQ
   ========================================================================== */
.soochh-faq {
  padding: 100px 0;
  background: rgba(15, 23, 42, 0.3);
}

.soochh-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.soochh-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.soochh-faq-item summary {
  font-family: 'Inter', sans-serif;
  padding: 24px 0;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.soochh-faq-item summary::-webkit-details-marker {
  display: none;
}

.soochh-faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: rgba(255,255,255,0.5);
}

.soochh-faq-item[open] summary {
  color: var(--tw-teal-400);
}

.soochh-faq-item[open] summary::after {
  content: '−';
  color: var(--tw-teal-400);
}

.soochh-faq-item p {
  font-family: 'Inter', sans-serif;
  padding: 0 0 24px 0;
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.soochh-final-cta {
  padding: 140px 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, var(--soochh-bg) 100%);
}

.soochh-final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px;
}

.soochh-final-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.7);
}
