/* ============================================================
   PLUGOUT — Global Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/glacial-indifference');

/* ── CSS Custom Properties ── */
:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-glacial: 'Glacial Indifference', sans-serif;

  /* Colors */
  --color-bg-start: #000000;
  --color-bg-end: #555555;
  --color-white: #ffffff;
  --color-accent-purple: #715c9c;
  --color-accent-light: #9b7fd4;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.65);
  --color-text-muted: rgba(255, 255, 255, 0.4);
  --color-card-bg: rgba(255, 255, 255, 0.04);
  --color-card-border: rgba(255, 255, 255, 0.08);
  --color-nav-translucent: rgba(0, 0, 0, 0.4);

  /* Gradients */
  --gradient-bg: linear-gradient(90deg, #000000 0%, #555555 100%);
  --gradient-accent-radial: radial-gradient(circle at 50% 50%, #715c9c 0%, #000000 70%);
  --gradient-accent-linear: linear-gradient(135deg, #715c9c 0%, #000000 100%);
  --gradient-btn: linear-gradient(135deg, #715c9c 0%, #9b7fd4 100%);
  --gradient-btn-hover: linear-gradient(135deg, #9b7fd4 0%, #715c9c 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #9b7fd4 100%);

  /* Spacing */
  --section-padding: 7rem 0;
  --container-max: 1200px;
  --container-padding: 0 1.5rem;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 100px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(113, 92, 156, 0.25);
  --transition: all 0.3s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--color-text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Accessibility Utilities ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
  display: block;
}

.why-exist-inner .section-label {
  font-family: 'Glacial Indifference', sans-serif !important;
  font-size: 32px !important;
  /* Increased from 24px */
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-bottom: 1.5rem !important;
}

.glacial-font {
  font-family: var(--font-glacial) !important;
}

.about-heading-lg {
  font-family: var(--font-glacial) !important;
  font-size: 32px !important;
  /* Increased from 24px */
  text-transform: none !important;
  letter-spacing: normal !important;
  display: block;
}

.story-title {
  font-family: var(--font-glacial) !important;
  font-size: 40px !important;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-btn);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(113, 92, 156, 0.4);
}

.btn-primary:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 8px 30px rgba(113, 92, 156, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: var(--gradient-btn);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(113, 92, 156, 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  /* Increased padding */
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
  display: flex !important;
  align-items: center !important;
  min-height: 90px !important;
  /* Bumped slightly to contain 2rem text + descenders */
  overflow: visible !important;
  /* Ensure no clipping */
}

.navbar.scrolled {
  background: var(--color-nav-translucent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 80px !important;
}

.nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  height: auto !important;
  /* Allow height to be determined by content + padding */
  width: 100%;
  overflow: visible !important;
}

.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  text-decoration: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  border: none !important;
  outline: none !important;
  overflow: visible !important;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 2.0rem !important;
  font-weight: 800 !important;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  /* Slightly wider spacing to prevent overlap */
  line-height: 1.4 !important;
  /* Increased for vertical breathing room (prevents 'g' clipping) */
  margin: 0 !important;
  padding: 0 12px 0 0 !important;
  /* Kept right padding for clipping prevention, removed left padding to tighten gap */
  flex-shrink: 0 !important;
  display: inline-block !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  overflow: visible !important;
}

.nav-logo-icon {
  height: 46px !important;
  width: auto !important;
  flex-shrink: 0 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  max-height: none !important;
  max-width: none !important;
  transform: none !important;
  border: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

/* Partner With Us Button in Nav */
.nav-links .btn-nav-cta {
  background: var(--color-accent-purple);
  color: var(--color-white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links .btn-nav-cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(113, 92, 156, 0.3);
}

.nav-links .btn-nav-cta::after {
  display: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--color-white);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* 55% opacity for good text contrast */
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -2;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: var(--gradient-accent-radial);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-pulse 6s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #715c9c 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation: orb-pulse 8s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #3d2f60 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation: orb-pulse 7s ease-in-out infinite 2s;
}

@keyframes orb-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.35;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}

.hero-orb-2,
.hero-orb-3 {
  animation-name: orb-float;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) scale(1.08);
    opacity: 0.45;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(113, 92, 156, 0.15);
  border: 1px solid rgba(113, 92, 156, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent-light);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-accent-light);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  font-style: normal;
  /* Removed italics */
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-caption {
  display: block;
  font-size: 1.1rem;
  /* Increased from 0.85rem */
  color: var(--color-text-muted);
  margin-top: 1rem;
  font-weight: 400;
  width: 100%;
}

/* ── Why We Exist Section ── */
.why-exist-section {
  padding: 6rem 0;
  background: transparent;
}

.why-exist-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-exist-text {
  margin: 2rem 0;
  line-height: 1.8;
  font-size: 1.15rem;
}

/* Hero load animations */
.hero-badge,
.hero-title,
.hero-tagline,
.hero-actions {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-in 0.8s ease forwards;
}

.hero-badge {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.3s;
}

.hero-tagline {
  animation-delay: 0.5s;
}

.hero-actions {
  animation-delay: 0.7s;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Section Base ── */
section {
  padding: var(--section-padding);
}

/* ── Cards ── */
.card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-btn);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(113, 92, 156, 0.3);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.card:hover::before {
  opacity: 1;
}

/* ── Service Card Icon ── */
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(113, 92, 156, 0.15);
  border: 1px solid rgba(113, 92, 156, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.card:hover .service-icon {
  background: rgba(113, 92, 156, 0.3);
  border-color: rgba(113, 92, 156, 0.5);
  transform: scale(1.08);
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Services Preview Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ── About Preview ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-preview-image:hover img {
  transform: scale(1.04);
}

.about-preview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.about-preview-content .section-subtitle {
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(113, 92, 156, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
  border: 1px solid rgba(113, 92, 156, 0.25);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(113, 92, 156, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ── Footer ── */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: none;
  line-height: 1.8;
  white-space: nowrap;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-btn);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(113, 92, 156, 0.4);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── Page Hero ── */
.page-hero {
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}

.page-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #715c9c 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

/* ── Partner Split Layout ── */
.partner-split-section {
  padding: 10rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.partner-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.partner-split-content {
  text-align: left;
}

@media (max-width: 992px) {
  .partner-split-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .partner-split-content {
    text-align: center;
  }
}

.page-hero p {
  font-size: 1.15rem;
}

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(113, 92, 156, 0.3);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.3rem;
  object-fit: cover;
  border: 3px solid rgba(113, 92, 156, 0.4);
  background: var(--gradient-accent-radial);
}

.team-avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.3rem;
  background: linear-gradient(135deg, #715c9c 0%, #3d2f60 100%);
  border: 3px solid rgba(113, 92, 156, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-accent-light);
  font-weight: 600;
  margin-bottom: 0.9rem;
  display: block;
}

.team-card p {
  font-size: 0.9rem;
}

/* ── Values Grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(113, 92, 156, 0.3);
  transform: translateY(-4px);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.92rem;
}

/* ── Mission Block ── */
.mission-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.mission-quote .quote-mark {
  color: var(--color-accent-light);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.3em;
}

/* ── Services Page ── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

/* ── Placeholder image ── */
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.img-placeholder-block {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(113, 92, 156, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 1px solid rgba(113, 92, 156, 0.2);
}

/* ── Divider ── */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-btn);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.text-center .section-divider {
  margin: 1rem auto 1.5rem;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .stats-row {
    gap: 1.5rem;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  /* ── Hero Mobile Optimization ── */
  .hero {
    padding: 6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.4); /* Reduce darkness for clearer video on mobile */
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem) !important;
    line-height: 1.3; /* Increased to prevent cropping */
    margin-bottom: 1.5rem;
  }

  .hero-title span.gradient-text {
    display: inline-block;
    white-space: nowrap; /* Keep "Start showing up" on one line */
    padding-bottom: 0.2rem; /* Added padding to prevent letter cropping from the bottom */
  }

  .hero-tagline {
    font-size: 1.05rem;
    margin-bottom: 2.2rem;
    padding: 0 0.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .mission-block {
    padding: 2.5rem 1rem;
  }
}


/* ============================================================
   ENTRY MODAL
   ============================================================ */

/* Overlay */
.entry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.5rem;
  overflow-y: auto;
  animation: modal-fade-in 0.5s ease forwards;
}

.entry-modal.dismissing {
  animation: modal-fade-out 0.5s ease forwards;
  pointer-events: none;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(1.04);
  }
}

/* Radial glow behind content */
.entry-modal-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.entry-modal-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  animation: orb-float 8s ease-in-out infinite;
}

.entry-modal-orb-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #715c9c 0%, transparent 70%);
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}

.entry-modal-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #3d2f60 0%, transparent 70%);
  bottom: -80px;
  right: 10%;
  animation-delay: 3s;
}

/* Inner card */
.entry-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: auto;
  text-align: center;
  animation: modal-content-in 0.6s ease 0.15s both;
}

@keyframes modal-content-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo inside modal */
.entry-modal-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  text-decoration: none;
  line-height: 1.2 !important;
  overflow: visible !important;
}

/* Question */
.entry-modal-question {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.02em;
}

/* Answer options */
.entry-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.entry-option-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  text-align: center;
}

.entry-option-btn:hover {
  background: rgba(113, 92, 156, 0.15);
  border-color: rgba(113, 92, 156, 0.5);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(113, 92, 156, 0.2);
}

.entry-option-btn.selected {
  background: var(--gradient-btn);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(113, 92, 156, 0.45);
}

/* Divider */
.entry-modal-divider {
  width: 48px;
  height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px;
  margin: 0 auto 2rem;
  opacity: 0.5;
}

/* Email form block */
.entry-email-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.entry-email-headline {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

.entry-email-sub {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.3rem;
}

/* Shared input styles */
.modal-email-input {
  width: 100%;
  padding: 0.9rem 1.3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  margin-bottom: 0.85rem;
  -webkit-appearance: none;
  appearance: none;
}

.modal-email-input::placeholder {
  color: var(--color-text-muted);
}

.modal-email-input:focus {
  border-color: rgba(113, 92, 156, 0.7);
  background: rgba(113, 92, 156, 0.07);
  box-shadow: 0 0 0 3px rgba(113, 92, 156, 0.15);
}

/* Shared CTA button */
.modal-submit-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #000000 0%, #715c9c 100%);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 18px rgba(113, 92, 156, 0.3);
}

.modal-submit-btn:hover {
  background: linear-gradient(135deg, #715c9c 0%, #9b7fd4 100%);
  box-shadow: 0 8px 28px rgba(113, 92, 156, 0.55);
  transform: translateY(-2px);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

/* Success message */
.modal-success-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.3rem;
  background: rgba(113, 92, 156, 0.15);
  border: 1px solid rgba(113, 92, 156, 0.35);
  border-radius: var(--radius-pill);
  color: var(--color-accent-light);
  font-size: 0.92rem;
  font-weight: 600;
  animation: success-pop 0.4s ease;
}

.modal-success-msg.visible {
  display: flex;
}

@keyframes success-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-error-msg {
  font-size: 0.8rem;
  color: #e07070;
  margin-top: -0.5rem;
  margin-bottom: 0.6rem;
  display: none;
  text-align: left;
  padding-left: 0.5rem;
}

.modal-error-msg.visible {
  display: block;
}

/* ── Overlay for the scroll popup ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 7999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   SCROLL-TRIGGERED POPUP
   ============================================================ */

.scroll-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 8000;
  width: calc(100% - 3rem);
  max-width: 420px;
  background: rgba(10, 5, 20, 0.96);
  border: 1px solid rgba(113, 92, 156, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 32px rgba(113, 92, 156, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-popup.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}

.scroll-popup.hiding {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  pointer-events: none;
}

.scroll-popup-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 0.2rem 0.4rem;
}

.scroll-popup-close:hover {
  color: var(--color-white);
}

.scroll-popup-headline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.3rem;
}

.scroll-popup-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.1rem;
}

/* Responsive modals */
@media (max-width: 480px) {
  .entry-modal-inner {
    padding: 0 0.2rem;
  }

  .entry-email-block {
    padding: 1.4rem 1rem;
  }

  .scroll-popup {
    bottom: 1rem;
    padding: 1.6rem 1.3rem 1.4rem;
  }
}

/* ============================================================
   VENUE FORM
   Collaboration form on venues.html.
   Uses same dark aesthetic as modal inputs.
   ============================================================ */

.venue-form {
  text-align: left;
  width: 100%;
}

.venue-form-group {
  margin-bottom: 1.4rem;
}

.venue-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.venue-form-label span {
  color: var(--color-accent-purple, #715c9c);
}

.venue-form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md, 12px);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.venue-form-input::placeholder {
  color: var(--color-text-muted);
}

.venue-form-input:focus {
  border-color: rgba(113, 92, 156, 0.7);
  background: rgba(113, 92, 156, 0.07);
  box-shadow: 0 0 0 3px rgba(113, 92, 156, 0.15);
}

.venue-form-input.field-error {
  border-color: rgba(255, 80, 80, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.12);
}

.venue-form-textarea {
  resize: vertical;
  min-height: 130px;
  border-radius: var(--radius-md, 12px);
}

.venue-form-error {
  display: none;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 0.4rem;
  font-weight: 500;
}

.venue-form-error.visible {
  display: block;
}

/* Venue form success state */
.venue-form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  animation: fadeInUp 0.5s ease both;
}

.venue-success-icon {
  font-size: 2.5rem;
  color: var(--color-accent-purple, #715c9c);
  margin-bottom: 1rem;
  display: block;
}

.venue-form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.venue-form-success p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   PROCESS STEPS
   Used on services.html and venues.html
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-card-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg, 20px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
  border-color: rgba(113, 92, 156, 0.35);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, #715c9c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .process-step {
    padding: 1.5rem 1.2rem;
  }
}

/* ── How It Works Grid ── */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem auto 0;
  max-width: 800px;
}

@media (max-width: 600px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}