/* ── RESET & TOKENS ─────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --surface: #0f0f0f;
  --card: #131313;
  --border: rgba(255, 255, 255, 0.07);
  --fg: #f0ece4;
  --muted: #5a5a5a;
  --orange: #f36f21;
  --red: #e53935;
  --grad: linear-gradient(135deg, #f36f21, #e53935);
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "Syne Mono", monospace;
}

[data-theme="light"] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --fg: #0f172a;
  --muted: #64748b;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;

  transition:
    background 0.3s,
    color 0.3s;
}

@media (max-width: 768px) {
  body {
  }
}

::selection {
  background: var(--orange);
  color: #000;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;

  border: none;
  background: none;
}
input,
textarea {
  font-family: inherit;
  color: var(--fg);
}

/* ── GRAIN OVERLAY ──────────────────────────── */
body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
}


/* ── COMMON ─────────────────────────────────── */
.max-w {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .max-w {
    padding: 0 24px;
  }
}



/* ── SCROLL PROGRESS ────────────────────────── */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  height: 2px;
  background: var(--grad);
  width: 0%;
  transition: width 0.05s linear;
}

/* ── PRELOADER ──────────────────────────────── */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
#preloader .pl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader .pl-logo img {
  width: 120px;
  height: 120px;
  animation: plPulse 1.2s ease-in-out infinite alternate;
}

@keyframes plPulse {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1.1);
  }
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition:
    background 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  border-color: var(--border);
}
[data-theme="light"] nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  transition: transform 0.3s;
}
.logo-light {
  display: none;
}
[data-theme="light"] .logo-dark {
  display: none;
}
[data-theme="light"] .logo-light {
  display: block;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;

}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.25s;
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active-section {
  color: var(--fg);
}
.nav-links a.active-section::after {
  width: 100%;
  height: 2px;
}

#nav-indicator {
  position: absolute;
  bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--grad);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;

}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(243, 111, 33, 0.35);
  color: #fff;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition:
    color 0.2s,
    border-color 0.2s;

}
.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--fg);

  transition:
    border-color 0.2s,
    background 0.2s;
}
.theme-toggle-btn:hover {
  border-color: var(--orange);
  background: rgba(243, 111, 33, 0.1);
}
.theme-toggle-btn .sun-icon {
  display: none;
}
.theme-toggle-btn .moon-icon {
  display: block;
}
[data-theme="light"] .theme-toggle-btn .sun-icon {
  display: block;
}
[data-theme="light"] .theme-toggle-btn .moon-icon {
  display: none;
}

/* Mobile nav */
#mob-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--fg);
  border: none;
  background: none;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  #mob-toggle {
    display: flex;
  }
  .theme-toggle-btn {
    margin-right: 15px;
  } /* Adjust for mobile layout if needed */
}
#mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
#mob-menu.open {
  transform: translateX(0);
}
#mob-menu > a {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 800;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  transition: color 0.2s;

}
#mob-menu > a:hover {
  color: var(--orange);
}
#mob-menu .mob-cta {
  margin-top: 40px;
}

/* ── HERO ───────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Mesh orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
  z-index: 0;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(243, 111, 33, 0.18);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(229, 57, 53, 0.14);
  bottom: 0;
  right: -5%;
  animation-delay: -5s;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(243, 111, 33, 0.1);
  top: 40%;
  left: 50%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -60px) scale(1.08);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.93);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Grid lines */
.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  opacity: 0.3;
}
[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(128, 128, 128, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
[data-theme="light"] .hero-badge {
  background: rgba(255, 255, 255, 0.8);
}

.hero-badge .live-dot-hidden {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--fg);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.hero-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
  color: transparent;
}
[data-theme="light"] .hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15);
}

.hero-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-desc {
  max-width: 480px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-actions .btn-primary {
  padding: 14px 32px;
  font-size: 14px;
}
.hero-actions .btn-secondary {
  padding: 14px 28px;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
}
.hero-actions .btn-secondary:hover {
  background: var(--card);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.hero-actions .btn-text {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.hero-actions .btn-text:hover {
  color: var(--orange);
  transform: translateX(4px);
}
.hero-actions .btn-text svg {
  opacity: 0.7;
}
.hero-actions .btn-text:hover svg {
  opacity: 1;
}

.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-lr;

}
.scroll-cue::before {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  display: block;
}

/* ── MARQUEE ────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: -0.2px;
  transition: color 0.2s;

}
.marquee-item:hover {
  color: var(--orange);
}
.marquee-item .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 36px;
  flex-shrink: 0;
}
/* ── MARQUEE SPONSOR LOGOS ──────────────────── */
.marquee-item .sponsor-logo {
  height: 30px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain;
  margin-right: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Theme Switching for Logos */
.logo-light-mode { display: none !important; }
.logo-dark-mode { display: block !important; }

[data-theme="light"] .logo-light-mode { display: block !important; }
[data-theme="light"] .logo-dark-mode { display: none !important; }

.marquee-item:hover .sponsor-logo {
  transform: scale(1.1);
}

.marquee-item .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 36px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  to {
    transform: translateX(-33.3333%);
  }
}

/* ── SECTIONS SHARED ────────────────────────── */
section {
  padding: 120px 40px;
}
.max-w {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--fg);
}
.section-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── STATS BELT ─────────────────────────────── */
#stats {
  background: var(--surface);
  padding: 80px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.stat-item {
  padding: 50px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before {
  opacity: 0.04;
}
[data-theme="light"] .stat-item:hover::before {
  opacity: 0.1;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -3px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(even) {
    border-right: none;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .stat-num {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .stat-label {
    font-size: 11px;
    margin-top: 4px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 30px 20px;
  }
  .stat-num {
    font-size: 28px;
  }
  .stat-label {
    font-size: 9px;
  }
}

/* ── EVENTS ─────────────────────────────────── */
#events {
  background: var(--bg);
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;

}
.filter-btn.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
.filter-btn:hover:not(.active) {
  border-color: rgba(128, 128, 128, 0.5);
  color: var(--fg);
}
[data-theme="light"] .filter-btn:hover:not(.active) {
  border-color: rgba(0, 0, 0, 0.2);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ec-body {
    padding: 20px;
  }
  .ec-title {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .ec-desc {
    display: none;
  }
  .ec-meta {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .ec-cat {
    font-size: 10px;
  }
  .ec-date {
    font-size: 11px;
    margin-left: auto;
  }
  .ec-tag {
    padding: 5px 10px;
    font-size: 10px;
    top: 10px;
    left: 10px;
  }
}

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  transform-style: preserve-3d;

  isolation: isolate;
}
.event-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(243, 111, 33, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(243, 111, 33, 0.2);
}
[data-theme="light"] .event-card:hover {
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(243, 111, 33, 0.2);
}

.event-card.hidden-card {
  display: none !important;
}

.ec-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-card:hover .ec-img img {
  transform: scale(1.07);
}
.ec-img .ec-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.ec-tag.open {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.ec-tag.soon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .ec-tag.soon {
  background: rgba(0, 0, 0, 0.5);
  border: none;
}

.ec-body {
  padding: 24px;
}
.ec-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.ec-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-mono);
}
.ec-date {
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.event-card:hover .ec-title {
  color: var(--orange);
}
.ec-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── GALLERY ────────────────────────────────── */
#gallery {
  background: var(--surface);
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 240px 260px;
  gap: 16px;
}
@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .bento-large,
  .bento-wide,
  .bento-mid {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
@media (max-width: 500px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
  }
  .bento-large,
  .bento-wide,
  .bento-mid {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
.bento-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;

  background: #000;
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-mid {
  grid-column: span 2;
}
.bento-wide {
  grid-column: span 4;
}
.bento-item img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-item:hover img {
  transform: scale(1.06);
}
.bento-overlay {
  display: none !important;
}

/* ── TEAM ───────────────────────────────────── */
#team {
  background: var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-card {
    width: 100%;
    padding: 28px 16px 24px;
  }
  .team-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    border-width: 2.5px;
  }
  .team-name {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .team-role {
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1.5;
  }
  .team-links {
    margin-top: 16px;
    gap: 10px;
  }
  .team-links a {
    width: 32px;
    height: 32px;
  }
  .team-links a svg {
    width: 16px;
    height: 16px;
  }
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 36px 24px 28px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  transform-style: preserve-3d;

}
.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(243, 111, 33, 0.4);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(243, 111, 33, 0.1);
}
[data-theme="light"] .team-card:hover {
  box-shadow: 0 15px 35px rgba(243, 111, 33, 0.12);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.3s;
}
.team-card:hover .team-avatar {
  border-color: var(--orange);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 4px;
}
.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-mono);
}
.team-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.team-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;

}
.team-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.team-links a svg {
  width: 15px;
  height: 15px;
}
.team-links a.disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
  border-color: var(--border) !important;
  color: var(--muted) !important;
}

/* ── TESTIMONIALS ───────────────────────────── */
#testimonials {
  background: var(--surface);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;

}
.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(243, 111, 33, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--orange);
}
.review-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}
[data-theme="light"] .review-text {
  color: var(--fg);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.review-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}
.review-author-role {
  font-size: 11px;
  color: var(--orange);
  font-family: var(--font-mono);
}

/* ── FAQ ────────────────────────────────────── */
#faq {
  background: var(--bg);
}
/* FAQ flex konteyner */
#faq .max-w > div[style*="display:flex"],
#faq .max-w > div[style*="gap:60px"] {
  align-items: flex-start !important;
}
/* Görsel kolonu — küçük tut, arka planda kal */
#faq .max-w > div[style*="gap:60px"] > .fade-up:first-child {
  flex: 0 0 260px !important;
  min-width: 0 !important;
  max-width: 260px !important;
  position: relative;
  z-index: 0;
  align-self: flex-start;
}
#faq .max-w > div[style*="gap:60px"] > .fade-up:first-child .parallax-img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 3/4 !important;
  position: relative;
  z-index: 0;
}
/* Soru kolonu yazıların üstte kalması */
#faq .faq-wrap {
  position: relative;
  z-index: 2;
  flex: 1 !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}
/* Başlık z-index */
#faq > .max-w > div[style*="text-align:center"] {
  position: relative;
  z-index: 2;
}
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
  text-align: left;

  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--orange);
}
.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.4s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ── JOIN / CTA ─────────────────────────────── */
#join {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 120px 40px;
}
.join-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.join-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -3px;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 24px;
}
.join-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.join-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .join-form {
    flex-direction: column;
    align-items: stretch;
  }
}
.join-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(128, 128, 128, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;

}
[data-theme="light"] .join-input {
  background: rgba(0, 0, 0, 0.02);
}
.join-input:focus {
  border-color: var(--orange);
  background: rgba(243, 111, 33, 0.05);
}
.join-input::placeholder {
  color: var(--muted);
}

/* ── CONTACT ────────────────────────────────── */
#contact {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
/* Contact left column: image stays behind text */
.contact-grid > div:first-child {
  position: relative;
}
.contact-grid > div:first-child .parallax-img {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.contact-grid > div:first-child .section-title,
.contact-grid > div:first-child .contact-info-item,
.contact-grid > div:first-child .section-label {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.contact-info-item {
  margin-bottom: 36px;
}
.contact-info-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.contact-info-value {
  font-size: 15px;
  color: var(--fg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}
.cf-field {
  border: 1px solid var(--border);
  border-collapse: collapse;
  padding: 20px 24px;
  background: var(--card);
  border-radius: 0;
}
.cf-field + .cf-field {
  border-left: none;
}
/* Top row: round top corners */
.cf-row:first-child .cf-field:first-child {
  border-radius: 14px 0 0 0;
}
.cf-row:first-child .cf-field:last-child {
  border-radius: 0 14px 0 0;
}
/* Konu satırı: tek hücre, hem soldan hem sağdan border */
.cf-row + .cf-row .cf-field {
  border-top: none;
}
.cf-field:has(+ .cf-field) + .cf-field + .cf-field,
.cf-field.full {
  grid-column: span 2;
}
.contact-form .cf-full {
  grid-column: span 2;
}
.cf-label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}
.cf-input,
.cf-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  resize: none;

}
.cf-textarea {
  min-height: 100px;
}
.cf-input::placeholder,
.cf-textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.cf-submit {
  border: 1px solid var(--border);
  border-top: none;
  padding: 20px 24px;
  background: var(--card);
  display: flex;
  justify-content: flex-end;
  border-radius: 0 0 14px 14px;
}
.cf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--grad);
  border-radius: 10px;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;

  transition:
    opacity 0.2s,
    transform 0.2s;
}
.cf-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
}
.footer-logo img {
  height: 36px;
  width: auto;
}
[data-theme="light"] .footer-logo .logo-dark {
  display: none;
}
[data-theme="light"] .footer-logo .logo-light {
  display: block;
}
.footer-logo .logo-light {
  display: none;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;

}
.footer-links a:hover {
  color: var(--fg);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;

}
.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.footer-social a svg {
  width: 15px;
  height: 15px;
}
.footer-bottom {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-signature {
  color: var(--orange) !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}
.footer-made svg {
  width: 12px;
  height: 12px;
  fill: var(--red);
}
.footer-separator {
  margin: 0 8px;
  opacity: 0.3;
}
.footer-signature {
  color: var(--orange) !important;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-signature:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ── LIGHTBOX ───────────────────────────────── */
#lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99990;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
#lb-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s;
}
#lightbox.open #lb-img {
  transform: scale(1);
}
#lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s;
}
#lb-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
#lb-close svg {
  width: 20px;
  height: 20px;
}

/* ── TOAST ──────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 99000;
  background: var(--card);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
[data-theme="light"] #toast {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}
#toast .toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#toast .toast-icon svg {
  width: 16px;
  height: 16px;
}
#toast .toast-title {
  font-weight: 700;
  font-size: 13px;
}
#toast .toast-sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── TOAST ERROR ────────────────────────────── */
#toast-error {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 99000;
  background: var(--card);
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
#toast-error.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#toast-error .toast-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
}
#toast-error .toast-sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── CONTACT FORM CLEAN ─────────────────────── */
.clean-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ccf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .ccf-row {
    grid-template-columns: 1fr;
  }
}
.ccf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ccf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-mono);
}
.ccf-input,
.ccf-textarea {
  width: 100%;
  background: rgba(128, 128, 128, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: none;

}
.ccf-input:focus,
.ccf-textarea:focus {
  border-color: var(--orange);
  background: rgba(243, 111, 33, 0.04);
}
.ccf-input::placeholder,
.ccf-textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.ccf-textarea {
  min-height: 140px;
}
.ccf-submit {
  align-self: flex-start;
  padding: 14px 36px;
  font-size: 14px;
}

/* ── JOIN SECTION ───────────────────────────── */
.join-section {
  position: relative;
  overflow: hidden;
  padding: 140px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(4px);
}
[data-theme="light"] .join-bg-img {
  opacity: 0.1;
}
.join-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}
.join-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(243, 111, 33, 0.1);
  border: 1px solid rgba(243, 111, 33, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.join-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -3px;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 24px;
}
.join-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.join-form {
  display: flex;
  justify-content: center;
}

/* ── GALLERY HEADER ─────────────────────────── */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 340px;
  text-align: right;
}
@media (max-width: 768px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-sub {
    text-align: left;
  }
}

/* ── FAQ LAYOUT ─────────────────────────────── */
.faq-header {
  margin-bottom: 60px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-img-col {
    display: none;
  }
}
.faq-img-col .faq-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ── CONTACT LAYOUT ─────────────────────────── */
.contact-info-wrapper {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-item {
  margin-bottom: 32px;
}
.contact-info-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.contact-info-value {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
}
.contact-title {
  font-size: clamp(36px, 4vw, 56px);
}

/* ── HERO INNER ─────────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-content {
  flex: 1;
  min-width: 0;
}
.hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innox-container {
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-innox-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(243, 111, 33, 0.3));
  animation: orbFloat 8s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 24px;
  }
  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .innox-container {
    width: 200px;
    height: 200px;
  }
  .hero-sub-row {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
}

/* ── NAV LOGIN ──────────────────────────────── */
.nav-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;

}
.nav-login:hover {
  color: var(--fg);
}

/* ── MOB CTA ROW ────────────────────────────── */
.mob-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.mob-btn-full {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

/* ── STATS INNER ────────────────────────────── */
.stats-inner {
  position: relative;
  z-index: 1;
}
.testimonials-inner {
  position: relative;
  z-index: 1;
}

/* ── FADE-UP ANIM ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] {
  transition-delay: 100ms;
}
.fade-up[data-delay="2"] {
  transition-delay: 200ms;
}
.fade-up[data-delay="3"] {
  transition-delay: 300ms;
}
.fade-up[data-delay="4"] {
  transition-delay: 400ms;
}

/* ── RESPONSIVE OVERRIDES ───────────────────── */
@media (max-width: 768px) {
  section {
    padding: 60px 24px;
  }
  #hero {
    padding: 100px 24px 60px;
    text-align: center;
    min-height: auto;
  }
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    text-align: center;
  }
  .hero-img {
    aspect-ratio: 1/1;
    max-width: 320px;
  }
  .countdown-box {
    margin: 40px auto 0;
    width: 100%;
    max-width: 360px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  nav {
    padding: 0 24px;
  }
  #stats {
    padding: 60px 24px;
  }
  footer {
    padding: 50px 24px 30px;
  }
  #join,
  #contact {
    padding: 60px 24px;
  }
  .hero-sub-row {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
  }
  .hero-stat .num {
    font-size: 20px;
  }
  .hero-stat .lbl {
    font-size: 9px;
    margin-top: 2px;
  }
  .events-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .filter-bar {
    margin-top: 24px;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-left {
    text-align: center;
  }
  .contact-title {
    font-size: 32px;
  }
  .contact-info-wrapper {
    align-items: center;
  }
}

/* ── COUNTDOWN TIMER ────────────────────── */
.countdown-box {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px 32px;
  display: inline-flex;
  gap: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .countdown-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cd-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 20px rgba(243, 111, 33, 0.3);
}
.cd-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
}
@media (max-width: 640px) {
  .countdown-box {
    gap: 20px;
    padding: 20px;
    width: 100%;
    justify-content: space-between;
  }
  .cd-num {
    font-size: 28px;
  }
}

/* ── LANG TOGGLE ────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px;
  margin: 0 8px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border: none;
}
.lang-btn.active {
  background: var(--fg);
  color: var(--bg);
}
.lang-btn:hover:not(.active) {
  color: var(--fg);
}

@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 111, 33, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(243, 111, 33, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 111, 33, 0);
  }
}
.btn-primary {
  animation: pulse-soft 2.5s infinite;
}
.btn-primary:hover {
  animation: none;
}

/* ── CUSTOM SCROLLBAR ───────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(243, 111, 33, 0.3);
  border-radius: 10px;
  border: 2px solid var(--bg);
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(243, 111, 33, 0.8);
}
[data-theme="light"] ::-webkit-scrollbar-track {
  background: #f8fafc;
}
[data-theme="light"] ::-webkit-scrollbar-thumb {
  border: 2px solid #f8fafc;
}



/* ── SECTION BACKGROUNDS ─────────────────────── */
.section-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}
[data-theme="light"] .bg-overlay {
  background: rgba(255, 255, 255, 0.85);
}
#stats.section-with-bg {
  background-image: url("assets/image/gallery/konya.png");
}
#testimonials.section-with-bg {
  background-image: url("assets/image/gallery/konya.png");
}

/* Ensure stats block has a nice background for the whole grid if needed */
.stats-grid {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Spotlight effect removed */

/* ── INFINITE MARQUEE (JOIN) ────────────────── */
.join-marquee-container {
  overflow: hidden;
  width: 100%;
  background: var(--fg);
  padding: 16px 0;
  transform: rotate(-2deg) scale(1.05);
  margin-bottom: -40px;
  z-index: 5;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.join-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}
.join-marquee-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 20px;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── TYPEWRITER & PARALLAX FIXES ────────────── */
.typewriter-text {
  display: inline-block;
  min-width: 200px; /* prevent layout shift */
  color: var(--orange);
  border-right: 3px solid var(--orange);
  padding-right: 5px;
  animation: blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--orange);
  }
}

.parallax-img {
  will-change: transform;
}

/* ══════════════════════════════════════════════════════
   ── ENHANCED INTERACTIONS v2.0 ─────────────────────
   ══════════════════════════════════════════════════════ */



/* ── ANIMATED HERO GRID BACKGROUND ──────────────────── */
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(243, 111, 33, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 111, 33, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
  pointer-events: none;
}
@keyframes grid-drift {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      60px 60px,
      60px 60px;
  }
}

/* Scan line across hero */
#hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(243, 111, 33, 0.4),
    transparent
  );
  animation: scanline 5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes scanline {
  0% {
    top: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ── ACTIVE NAV INDICATOR ────────────────────────────── */
.nav-links {
  position: relative;
}
#nav-indicator {
  position: absolute;
  bottom: -8px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition:
    left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s;
  opacity: 0;
  box-shadow: 0 0 8px rgba(243, 111, 33, 0.6);
}
.nav-links a.active {
  color: var(--fg) !important;
}

/* ── GLITCH EFFECT ON SECTION TITLES ─────────────────── */
.section-title {
  position: relative;
  cursor: default;
}
.section-title.glitch-active {
}
.section-title.glitch-active::before,
.section-title.glitch-active::after {
  display: none;
}
.section-title.glitch-active::before {
  text-shadow: -3px 0 var(--orange);
  animation: glitch-top 0.4s steps(2) forwards;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.section-title.glitch-active::after {
  text-shadow: 3px 0 var(--red);
  animation: glitch-bottom 0.4s steps(2) forwards;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}
@keyframes glitch-main {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(-2px, 1px);
  }
  50% {
    transform: translate(2px, -1px);
  }
  75% {
    transform: translate(-1px, 2px);
  }
}
@keyframes glitch-top {
  0% {
    transform: translate(0);
  }
  30% {
    transform: translate(-4px, 0);
  }
  60% {
    transform: translate(4px, 0);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes glitch-bottom {
  0% {
    transform: translate(0);
  }
  30% {
    transform: translate(4px, 0);
  }
  60% {
    transform: translate(-4px, 0);
  }
  100% {
    transform: translate(0);
  }
}

/* ── CARD LIGHT SWEEP ─────────────────────────────────── */
.event-card,
.team-card,
.bento-item {
  overflow: hidden;
}
.event-card::after,
.team-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.event-card:hover::after,
.team-card:hover::after {
  left: 150%;
}
.event-card {
  position: relative;
}
.team-card {
  position: relative;
}

/* ── STAGGERED HERO ENTRANCE ──────────────────────────── */
.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-animate.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── ENHANCED PRELOADER ───────────────────────────────── */
#preloader .pl-wordmark {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--muted);
  overflow: hidden;
}
#preloader .pl-wordmark span {
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  animation: pl-letter 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pl-letter {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── SCROLL REVEAL: CLIP-PATH VARIANT ────────────────── */
.reveal-clip {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  opacity: 1 !important;
  transform: none !important;
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-clip.visible {
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}

/* ── SECTION DIVIDERS ─────────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.2;
  margin: 0;
}

/* ── NAV ACTIVE LINK ──────────────────────────────────── */
.nav-links a.active-section {
  color: var(--fg);
}
.nav-links a.active-section::after {
  width: 100%;
  background: var(--orange);
}

/* ── ORBS ENHANCED ───────────────────────────────────── */
.orb-1 {
  filter: blur(80px) !important;
  opacity: 0.18 !important;
}
.orb-2 {
  filter: blur(100px) !important;
  opacity: 0.14 !important;
}

/* ── SUBTLE PAGE TRANSITION ───────────────────────────── */
#page-transition {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999998;
  background: var(--bg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#page-transition.active {
  opacity: 1;
}

/* ── FOX IDLE FLOAT ENHANCED ─────────────────────────── */
#fox-mascot {
  animation: fox-idle 3s ease-in-out infinite;
}
@keyframes fox-idle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-6px) rotate(-2deg);
  }
  66% {
    transform: translateY(-3px) rotate(1deg);
  }
}
#fox-mascot:hover {
  animation: fox-excited 0.4s ease-in-out infinite;
}
@keyframes fox-excited {
  0%,
  100% {
    transform: translateY(0px) rotate(-3deg) scale(1.05);
  }
  50% {
    transform: translateY(-8px) rotate(3deg) scale(1.1);
  }
}

/* ── KONAMI FLASH ────────────────────────────────────── */
@keyframes rainbow-flash {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
body.konami {
  animation: rainbow-flash 1s linear;
}

/* ── STAT ITEMS PULSE ON REVEAL ──────────────────────── */
.stat-item {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-item:hover {
  transform: translateY(-4px) scale(1.03);
}

/* ── LINK UNDERLINE ANIMATE ──────────────────────────── */
.footer-links a {
  position: relative;
  overflow: hidden;
}
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -100%;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transition: left 0.3s ease;
}
.footer-links a:hover::after {
  left: 0;
}

/* ── SCROLL-TRIGGERED GRADIENT TEXT ─────────────────── */
.grad-text-animate {
  background: linear-gradient(
    135deg,
    var(--fg),
    var(--orange),
    var(--red),
    var(--fg)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ── INNOX LOGO STYLING ──────────────────────────── */
.innox-container {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-innox-logo {
  width: 100%;
  height: auto;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: logoFloat 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-innox-logo:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 30px 60px rgba(243, 111, 33, 0.4));
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ── INNOX ASSISTANT ────────────────────────────── */
#innox-assistant {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 100 !important;
  cursor: pointer !important;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  animation: assistant-float 4s ease-in-out infinite;
}

#innox-assistant:hover {
  transform: scale(1.1) translateY(-5px) rotate(3deg);
  filter: drop-shadow(0 15px 30px rgba(243, 111, 33, 0.3));
}

.assistant-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes assistant-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ── ASSISTANT PULSE ────────────────────────────── */
#innox-assistant::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(243, 111, 33, 0.3);
  border-radius: 50%;
  animation: assistant-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes assistant-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }
  70% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

/* ── OVERLAY ─────────────────────────────────────── */
#fox-terminal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99990;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 20px 120px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#fox-terminal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── TERMINAL WINDOW ─────────────────────────────── */
#fox-terminal {
  width: 420px;
  max-width: calc(100vw - 40px);
  max-height: 540px;
  background: #0a0a0a;
  border: 1px solid rgba(243, 111, 33, 0.3);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(243, 111, 33, 0.1);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "SFMono-Regular", "Fira Code", monospace;
  font-size: 13px;
}
#fox-terminal-overlay.open #fox-terminal {
  transform: translateY(0) scale(1);
}

/* ── HEADER & DOTS ───────────────────────────────── */
.ft-header {
  padding: 12px 16px;
  background: #121212;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ft-dots {
  display: flex;
  gap: 7px;
}
.ft-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.8;
}
.ft-dot-red {
  background: #ff5f56;
}
.ft-dot-yellow {
  background: #ffbd2e;
}
.ft-dot-green {
  background: #27c93f;
}

.ft-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ft-kbd {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 7px;
  border-radius: 4px;
}

/* ── OUTPUT AREA ─────────────────────────────────── */
.ft-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 111, 33, 0.2) transparent;
}
.ft-body::-webkit-scrollbar {
  width: 5px;
}
.ft-body::-webkit-scrollbar-thumb {
  background: rgba(243, 111, 33, 0.2);
  border-radius: 10px;
}

.ft-output {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ft-line {
  line-height: 1.6;
  color: #d0d0d0;
}
.ft-user-line {
  color: rgba(255, 255, 255, 0.4);
  border-left: 2px solid rgba(243, 111, 33, 0.2);
  padding-left: 10px;
  margin: 4px 0;
}

/* ── PROMPTS & INPUT ─────────────────────────────── */
.ft-input-row {
  background: #0f0f0f;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-prompt {
  color: var(--orange);
  font-weight: 600;
  font-size: 12px;
}
.ft-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
}

/* ── CHIPS & TAGS ────────────────────────────────── */
.ft-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 16px;
  background: #0a0a0a;
}
.ft-chip {
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(243, 111, 33, 0.2);
  background: rgba(243, 111, 33, 0.05);
  color: rgba(243, 111, 33, 0.8);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
}
.ft-chip:hover {
  background: rgba(243, 111, 33, 0.15);
  border-color: var(--orange);
  color: #fff;
}

.ft-label {
  color: var(--orange);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  margin-right: 6px;
}
.ft-action {
  color: var(--orange);
  border-bottom: 1px dashed rgba(243, 111, 33, 0.4);
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
}
.ft-action:hover {
  color: #fff;
  border-color: #fff;
}

.ft-muted {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}
.ft-error {
  color: #ff5f56;
}
.ft-open {
  color: #27c93f;
}
.ft-soon {
  color: #ffbd2e;
}

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 480px) {
  #fox-terminal-overlay {
    padding: 0 10px 110px 0;
  }
  #fox-terminal {
    width: calc(100vw - 20px);
    max-height: 60vh;
  }
  #innox-assistant {
    width: 70px;
    height: 70px;
    bottom: 16px !important;
    right: 16px !important;
  }
}

/* ══════════════════════════════════════════════════════
   ── CLEAN REWRITE — YENİ SINIFLAR ─────────────────
   ══════════════════════════════════════════════════════ */

/* ── NAV LOGIN LİNKİ ─────────────────────────────── */
.nav-login {
  color: var(--fg);
  font-weight: 600;
  margin: 0 8px;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
.nav-login:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(243, 111, 33, 0.35);
  transform: translateY(-2px);
}

/* ── MOBİL CTA SATIRLARI ─────────────────────────── */
.mob-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.mob-theme-btn {
  flex: 1;
  border-radius: 14px !important;
  padding: 12px !important;
  height: 50px !important;
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
}
.mob-lang {
  flex: 1;
  margin: 0 !important;
  justify-content: center !important;
  height: 50px !important;
  border-radius: 14px !important;
}
.mob-btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-inner {
    padding: 0 24px;
  }
}
.hero-content {
  flex: 1;
  min-width: 320px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-visual {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

@keyframes shadowScale {
  0%,
  100% {
    transform: translateX(-50%) translateZ(-50px) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateX(-50%) translateZ(-50px) scale(0.8);
    opacity: 0.1;
  }
}

/* Mobile Fixes for Fox */
@media (max-width: 768px) {
  .fox-3d {
    transform: scale(0.7);
  }
  .hero-visual {
    margin-top: 40px;
  }
}

/* Countdown badge */
.cd-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── STATS INNER ─────────────────────────────────── */
.stats-inner {
  position: relative;
  z-index: 1;
}

/* ── GALLERY HEADER ──────────────────────────────── */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .gallery-header > div {
    text-align: left;
    width: 100%;
  }
  .gallery-header h2.section-title {
    text-align: left;
  }
  .gallery-sub {
    max-width: 100%;
    margin-top: 4px;
    text-align: left;
  }
}

/* ── TEAM HEADER ─────────────────────────────────── */
.team-header {
  text-align: center;
  margin-bottom: 60px;
}
.team-header .section-label {
  justify-content: center;
}

/* ── TESTIMONIALS INNER ──────────────────────────── */
.testimonials-inner {
  position: relative;
  z-index: 1;
}
.testimonials-inner > .fade-up {
  margin-bottom: 40px;
}

/* ── FAQ LAYOUT — temiz, inline-style yok ────────── */
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-header .section-label {
  justify-content: center;
}
.faq-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.faq-img-col {
  flex: 0 0 240px;
  max-width: 240px;
  min-width: 0;
  position: relative;
  z-index: 0;
  align-self: flex-start;
}
.faq-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  animation: float-delayed 8s ease-in-out infinite;
}
#faq .faq-wrap {
  flex: 1;
  min-width: 0;
  max-width: none;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-img-col {
    display: none;
  }
  .faq-layout {
    gap: 0;
  }
}

/* ── JOIN SECTION ────────────────────────────────── */
.join-section {
  position: relative;
  overflow: hidden;
}
.join-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.join-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 111, 33, 0.1);
  border: 1px solid rgba(243, 111, 33, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.join-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
/* Join submit — styled separately, not .btn-primary so magnetic skips it */
.join-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--grad);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(243, 111, 33, 0.25);
}
.join-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(243, 111, 33, 0.4);
}

/* ── CONTACT — temiz sınıflar ────────────────────── */
.contact-left {
  position: relative;
}
.contact-title {
  margin-bottom: 32px;
}
.contact-office-img {
  margin-bottom: 36px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  z-index: 0;
}
.contact-office-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  position: relative;
  z-index: 0;
}
.contact-left .section-label,
.contact-left .contact-title,
.contact-left .contact-info-item {
  position: relative;
  z-index: 1;
}
.contact-right {
  position: relative;
  z-index: 1;
}

/* CF form — temiz border radius ─────────────────── */
.cf-form {
  display: flex;
  flex-direction: column;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
  .cf-field--no-left-border {
    border-left: 1px solid var(--border) !important;
    border-top: none !important;
  }
  .cf-field--tr {
    border-radius: 0 !important;
  }
}
.cf-field {
  border: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--card);
}
.cf-field--tl {
  border-radius: 14px 0 0 0;
}
.cf-field--tr {
  border-radius: 0 14px 0 0;
}
.cf-field--no-left-border {
  border-left: none;
}
.cf-field--no-top-border {
  border-top: none;
}

/* ══════════════════════════════════════════════════════
   ── FIXES v3 ───────────────────────────────────────
   ══════════════════════════════════════════════════════ */

/* 1. Live dot kaldırıldı */
.hero-badge .live-dot,
.live-dot {
  display: none !important;
}

/* 2. Glitch efekti kaldırıldı */
.section-title.glitch-active,
.section-title.glitch-active::before,
.section-title.glitch-active::after {
  animation: none !important;
  transform: none !important;
  display: revert;
}
.section-title.glitch-active::before,
.section-title.glitch-active::after {
  display: none !important;
}

/* 5. Contact section görsel ─ yazının önüne geçmesin */
#contact .contact-left {
  position: relative;
  isolation: isolate;
}
#contact .contact-office-img {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 36px;
}
#contact .contact-office-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
#contact .section-label,
#contact .contact-title,
#contact .contact-info-item {
  position: relative;
  z-index: 2;
}

/* 6. Hero badge içi boşsa görünmesin */
.hero-badge:empty,
.hero-badge:has(.live-dot:only-child) {
  display: none;
}

/* ══════════════════════════════════════════════════════
   ── NEW CLEAN CONTACT FORM ───────────────────
   ══════════════════════════════════════════════════════ */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.contact-info-item {
  margin-bottom: 0 !important;
}
.clean-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--card);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .clean-contact-form {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.ccf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .ccf-row {
    grid-template-columns: 1fr;
  }
  .clean-contact-form {
    padding: 24px;
  }
  .ccf-submit {
    width: 100%;
    justify-content: center;
  }
}
.ccf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ccf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.ccf-input,
.ccf-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}
.ccf-textarea {
  min-height: 140px;
  resize: vertical;
}
.ccf-input:focus,
.ccf-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.1);
}
.ccf-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

