:root {
  --bg: #0b0b15;
  --bg-alt: #121225;
  --accent: #7c3aed;
  --accent-2: #22d3ee;
  --text: #f8f9ff;
  --muted: #b7bed1;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(9, 11, 29, 0.45);
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1f1b3a, #0b0b15 40%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

code {
  font-family: 'Space Grotesk', monospace;
  color: #a5b4fc;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  background: rgba(124, 58, 237, 0.55);
  top: -120px;
  left: -60px;
}

.orb-2 {
  background: rgba(34, 211, 238, 0.45);
  bottom: -160px;
  right: -100px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 20, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 500;
}

.nav-links a,
.nav-link {
  color: var(--muted);
  transition: color 0.2s ease;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a:hover,
.nav-links a.active,
.nav-link:hover {
  color: var(--text);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .logo img {
    width: 32px;
    height: 32px;
  }
}

.site-dropdown {
  position: relative;
}

.site-dropdown-toggle {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.site-dropdown-toggle:hover {
  color: var(--text);
}

.site-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 120px;
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.3rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.site-dropdown:hover .site-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.site-dropdown-menu a {
  display: block;
  padding: 0.4rem 0.8rem;
  color: var(--text);
  font-size: 0.85rem;
}

.site-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.site-dropdown .caret {
  font-size: 0.7rem;
  opacity: 0.7;
}

.site-dropdown:hover .caret {
  opacity: 1;
}

.site-dropdown .site-trigger {
  color: var(--muted);
  padding: 0;
  border: none;
  background: none;
  font-size: inherit;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-dropdown:hover .site-trigger,
.site-dropdown:focus-within .site-trigger {
  color: var(--text);
}

.site-dropdown .caret {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.site-dropdown:hover .caret {
  transform: rotate(180deg);
}

.site-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 140px;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.4rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.site-dropdown:hover .dropdown-menu,
.site-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.site-dropdown .dropdown-link {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--text);
  font-size: 0.85rem;
  transition: background 0.15s ease;
}

.site-dropdown .dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #7c3aed, #22d3ee);
  background-size: 200% 100%;
  background-position: -2px 0%;
  color: #0b0b15;
  box-shadow: 0 16px 40px rgba(74, 222, 200, 0.25);
}

.btn-yt {
  background: linear-gradient(120deg, #cc0000, #ff4e45);
  background-size: 200% 100%;
  background-position: -2px 0%;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(204, 0, 0, 0.3);
}
.btn-yt:hover {
  box-shadow: 0 20px 50px rgba(204, 0, 0, 0.45), 0 0 0 3px rgba(255, 78, 69, 0.25);
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.35), 0 0 0 3px rgba(34, 211, 238, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(124, 58, 237, 0.5);
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 1;
}

.hero.compact {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin: 0.6rem 0 1.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: #9f9ef9;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-card,
.glass-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.tag-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.section-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-title h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 0.6rem;
}

.section-title p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards-two {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 700px) {
  .cards-two {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.45);
}

.card-glow {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(34, 211, 238, 0.12));
}

.link-card {
  min-height: 150px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.text-link {
  color: #9f9ef9;
  font-weight: 600;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(124, 58, 237, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.glass-card h2 {
  margin-top: 0;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

input,
textarea,
select {
  background: rgba(8, 10, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.7);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.alert {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

@supports (appearance: none) {

select.styled-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--bg-alt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b7bed1' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.styled-select::-ms-expand {
  display: none;
}

}

select.styled-select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  padding-right: 2.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select.styled-select:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

select.styled-select:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.7);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.field-error {
  color: #fca5a5;
  font-size: 0.85rem;
}

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

.media-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.media-card img {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.media-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(34, 211, 238, 0.25));
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.media-card figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.18);
  border: 1px solid rgba(34, 211, 238, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

.server-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .server-grid {
    grid-template-columns: 1fr;
  }
}

.server-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.server-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.server-card a {
  display: block;
}

.server-media {
  position: relative;
  overflow: hidden;
}

.server-media .media-placeholder,
.server-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.server-media .media-placeholder {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(34, 211, 238, 0.2));
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-media img {
  transition: transform 0.4s ease;
}

.server-card:hover .server-media img {
  transform: scale(1.05);
}

.server-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.server-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.server-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.server-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: 'Space Grotesk', sans-serif;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-wip {
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #a78bfa;
}

.status-live {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.server-summary {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.server-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.server-feature {
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--muted);
}

.server-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.server-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.server-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.server-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.ideas-side .card {
  margin-bottom: 1.2rem;
}

.muted {
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 2rem;
  background: rgba(10, 10, 20, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

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

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}

.sub-text {
  color: #888888;    /* This is a medium grey */
  font-size: 0.85em; /* This makes it slightly smaller than the surrounding text */
  display: block;    /* This also acts as a newline, pushing following text down */
  margin-bottom: 5px; /* Adds a tiny bit of breathing room */
}