@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Custom cursor */
*,
*::before,
*::after {
  cursor: url('../assets/default.cur'), auto;
}

/* Pointer cursor for interactive elements */
a, button, .btn, [role="button"], input[type="submit"], .nav-dropdown-trigger, .theme-toggle, .notif-close, .faq-question {
  cursor: url('../assets/default.cur'), pointer;
}

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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f0f0f0;
  --text-primary: #0a0a0a;
  --text-secondary: #525252;
  --text-tertiary: #a3a3a3;
  --border-color: #e5e5e5;
  --accent: #0a0a0a;
  --accent-hover: #333333;
  --accent-glow: rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

[data-theme="dark"] {
  --bg-primary: #1A1A1A;
  --bg-secondary: #242424;
  --bg-tertiary: #333333;
  --text-primary: #fafafa;
  --text-secondary: #b8b8c0;
  --text-tertiary: #a3a3a3;
  --border-color: #333333;
  --accent: #fafafa;
  --accent-hover: #e5e5e5;
  --accent-glow: rgba(255, 255, 255, 0.08);
  --card-bg: #242424;
  --nav-bg: rgba(26, 26, 26, 0.92);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== THEME TRANSITION ANIMATION ========== */
.theme-curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
}

.theme-curtain.animating {
  animation: themeFadeSwitch 0.45s ease-in-out forwards;
}

@keyframes themeFadeSwitch {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ========== GRAIN OVERLAY ========== */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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-repeat: repeat;
  background-size: 256px 256px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  animation: navSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  border-bottom-color: var(--border-color);
}

@keyframes navSlideIn {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.nav-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo - exact left corner */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
  flex-shrink: 0;
  margin-right: 0;
}

.nav-logo img {
  height: 30px;
  width: auto;
  transition: opacity 0.3s;
}

.nav-logo:hover img {
  opacity: 0.8;
}

/* Nav links - right next to logo */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  position: relative;
  z-index: 1;
  margin-left: 12px;
  flex-shrink: 0;
}

/* Nav pill - the travelling jelly shade */
.nav-pill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 30px;
  border-radius: 7px;
  background: var(--bg-tertiary);
  opacity: 0;
  transform: translateY(-50%) scale(0.85, 0.85);
  transition: left 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
              width 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.15s ease;
  pointer-events: none;
  z-index: 0;
  will-change: left, width, transform;
}

.nav-pill.active {
  opacity: 1;
  transform: translateY(-50%) scale(1, 1);
}

@keyframes jelly-settle {
  0% { transform: translateY(-50%) scaleX(1.08) scaleY(0.92); }
  30% { transform: translateY(-50%) scaleX(0.94) scaleY(1.06); }
  60% { transform: translateY(-50%) scaleX(1.03) scaleY(0.97); }
  100% { transform: translateY(-50%) scaleX(1) scaleY(1); }
}

.nav-pill.jiggling {
  animation: jelly-settle 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.nav-dropdown-trigger:hover {
  color: var(--text-primary);
}

.nav-dropdown-trigger svg {
  width: 9px; height: 9px;
  transition: transform 0.15s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* Dropdown menus - bigger with descriptions, rounded hover */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.12s;
}

.nav-dropdown-item:hover {
  background: var(--bg-tertiary);
  border-radius: 10px;
}

.nav-dropdown-item .dd-icon {
  width: 17px; height: 17px;
  flex-shrink: 0;
  color: var(--text-secondary);
  margin-top: 1px;
}

.nav-dropdown-item .dd-icon svg {
  width: 100%; height: 100%;
}

.nav-dropdown-item .dd-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.nav-dropdown-item .dd-heading {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.nav-dropdown-item .dd-desc {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Nav actions - exact right side */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Discord button - icon + text, no background, circular shadow on hover */
.nav-discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px 0 10px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--text-primary);
  border: none;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-discord-btn:hover {
  background: var(--bg-tertiary);
  box-shadow: var(--shadow-sm);
}

.nav-discord-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--text-primary);
}

/* Divider */
.nav-divider {
  color: var(--text-tertiary);
  font-size: 0.7rem;
  user-select: none;
  opacity: 0.5;
}

/* Theme toggle - no hover effect, no pointer cursor */
.theme-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  border: none;
}

.theme-toggle svg {
  width: 16px; height: 16px;
}

/* Client Space button - slightly square with curved edges, Inter bold */
.nav-client-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
}

.nav-client-btn:hover {
  opacity: 0.85;
  box-shadow: var(--shadow-sm);
}

.nav-client-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  opacity: 0.85;
  box-shadow: var(--shadow-md);
}

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

.btn-ghost:hover {
  background: var(--bg-tertiary);
}

/* ========== HERO ========== */
.hero {
  padding: 140px 32px 100px;
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #1A1A1A;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0;
  text-align: left;
  padding-left: 40px;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 0 28px;
  font-weight: 300;
  line-height: 1.75;
}

/* Hero feature list with checkmarks - 3+2 grid */
.hero-features {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 20px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 400;
}

.hero-features li svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: #22c55e;
}

/* Last two items centered on second row */
.hero-features li:nth-child(4) {
  grid-column: 1 / 2;
}

.hero-features li:nth-child(5) {
  grid-column: 2 / 3;
}

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

.hero-actions .btn-primary {
  background: #ffffff;
  color: #1A1A1A;
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 6px 24px rgba(255,255,255,0.2);
  opacity: 1;
}

.hero-actions .btn-ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* ========== SECTIONS ========== */
.section {
  padding: 90px 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 54px;
}

.section-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

/* ========== PRODUCTS SECTION ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-price {
  margin-bottom: 18px;
}

.product-price .starting {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2px;
}

.product-price .amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.product-price .period {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 400;
}

.product-features li svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
  color: #22c55e;
}

.product-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ========== PRICING GRID (sub-pages) ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.pricing-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pricing-card .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card .price-desc {
  font-size: 0.74rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.pricing-features li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: #22c55e;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ========== LOCATION SPECS ========== */
.location-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}

.location-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.location-spec svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: var(--text-tertiary);
}

.location-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0 10px;
}

/* ========== FREE HOSTING BOX ========== */
.free-hosting-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}

.free-hosting-box h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.free-hosting-box > p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.free-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}

.free-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.free-spec svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-tertiary);
}

/* ========== LEGAL CONTENT ========== */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-meta {
  text-align: center;
  margin: 20px 0 28px;
}

.legal-meta p {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.01em;
}

.legal-meta .meta-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.legal-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text-primary);
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 10px;
  font-weight: 300;
}

.legal-content ul {
  margin: 10px 0 16px;
  padding-left: 20px;
}

.legal-content li {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 6px;
  font-weight: 300;
}

.legal-content a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  opacity: 0.8;
}

/* ========== LOCATIONS & CPU SECTION ========== */
/* Locations & CPU Section */
.section:has(.locations-card) {
  padding: 90px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Locations & CPU Card */
.locations-card {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Dots background pattern */
.locations-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(128,128,128,0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Dark theme: white dots */
[data-theme="dark"] .locations-card::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
}

.locations-card-content {
  position: relative;
  z-index: 1;
}

.locations-card-content .section-header {
  margin-bottom: 36px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-card:hover {
  box-shadow: var(--shadow-md);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-flag {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-tertiary);
  flex-shrink: 0;
}

.location-card-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.location-card-header .loc-sub {
  font-size: 0.72rem;
  color: var(--text-primary);
}

.location-cpu {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 500;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.location-cpu strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 14px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--text-primary);
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ========== CONTACT ========== */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  border: 1px solid var(--border-color);
  transition: border-color 0.15s, background 0.15s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--text-primary);
  background: var(--bg-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-feedback {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 32px 28px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.8;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: color 0.15s, background 0.15s;
}

.footer-social-link:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 3px 0;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
}

/* ========== NOTIFICATION ========== */
.notification-bar {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.35s, opacity 0.35s;
  max-width: 360px;
}

.notification-bar.hidden {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}

.notification-bar .notif-text {
  font-size: 0.82rem;
  font-weight: 500;
}

.notification-bar .notif-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.76rem;
  white-space: nowrap;
}

.notification-bar .notif-link:hover {
  text-decoration: underline;
}

.notification-bar .notif-close {
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: 1rem;
  line-height: 1;
  padding: 2px;
  cursor: pointer;
}

/* ========== PAGE HERO (for sub-pages) ========== */
.page-hero {
  padding: 120px 32px 60px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.40s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-discord-btn { display: none; }
  .nav-divider { display: none; }
  .nav-client-btn { display: none; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; height: 52px; }
  .nav-logo img { height: 26px; }
  .hero { padding: 100px 20px 70px; min-height: auto; }
  .hero-content { padding-left: 20px; }
  .section { padding: 60px 20px; }
  .locations-card { padding: 32px 20px; }
  .notification-bar { right: 14px; left: auto; bottom: 14px; max-width: none; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .features-grid, .products-grid, .team-grid, .locations-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-features li:nth-child(4) { grid-column: auto; }
  .hero-features li:nth-child(5) { grid-column: auto; }
  .page-hero { padding: 100px 20px 40px; }
  .na-box { flex-direction: column; text-align: center; }
  .na-content { flex-direction: column; }
  .na-text { text-align: center; }
  .need-assistance { padding: 60px 20px; }
  .faq-section { padding: 60px 20px; }
}

/* ========== NEED ASSISTANCE ========== */
.need-assistance {
  padding: 80px 32px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.na-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.na-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.na-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

/* Dark theme: inner card slightly darker for depth */
[data-theme="dark"] .na-box {
  background: #242424;
}

.na-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.na-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5865F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.na-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.na-text {
  flex: 1;
}

.na-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.na-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.na-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--text-primary);
  color: var(--bg-primary);
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
  position: relative;
}

/* Join today button — NO hover effects at all */
.na-btn:hover {
  /* intentionally empty — no hover effect */
}

/* ========== FREE HOSTING CTA CARD ========== */
.free-hosting-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* Dots background pattern */
.free-hosting-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(128,128,128,0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Dark theme: white dots */
[data-theme="dark"] .free-hosting-card::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
}

.free-hosting-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.free-hosting-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.free-hosting-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin: 0;
}

.free-hosting-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Dark theme: inner card slightly darker for depth */
[data-theme="dark"] .free-hosting-card {
  background: #242424;
}

/* ========== FAQ SECTION (Accordion) ========== */
.faq-section {
  padding: 80px 32px;
  background: var(--bg-primary);
}

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

.faq-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-align: center;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--text-primary);
}

.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.faq-answer-inner a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.faq-answer-inner a:hover {
  opacity: 0.8;
}

/* ========== FOOTER LOGO LINK ========== */
.footer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-link img {
  height: 22px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-logo-link:hover img {
  opacity: 0.9;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text-tertiary); border-radius: 3px; }

/* ========== SKELETON LOADING ========== */
.skeleton-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.skeleton-screen.active {
  opacity: 1;
  pointer-events: all;
}

.skeleton-screen .skeleton-inner {
  padding: 100px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.skeleton-line {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 6px;
  margin-bottom: 14px;
}

.skeleton-line.title {
  height: 42px;
  width: 45%;
  max-width: 320px;
  margin-bottom: 28px;
}

.skeleton-line.subtitle {
  height: 18px;
  width: 65%;
  max-width: 480px;
  margin-bottom: 40px;
}

.skeleton-line.card {
  height: 180px;
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.skeleton-line.short { width: 35%; }
.skeleton-line.medium { width: 55%; }

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.skeleton-grid .skeleton-line.card {
  height: 220px;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========== PAGE TRANSITION ========== */
body.fade-out {
  opacity: 0 !important;
  transition: opacity 0.15s ease;
}

body.fade-in {
  opacity: 1;
  transition: opacity 0.2s ease;
}
