/* AIVXO STYLE™ – minimal futuristic theme */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg: #050509;
  --bg-alt: #0b0b12;
  --card: #10101a;
  --accent: #5ff4d0;
  --accent-soft: rgba(95, 244, 208, 0.1);
  --text-main: #f5f5f7;
  --text-muted: #a3a3b0;
  --border: #262636;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #151527 0, #050509 40%);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 560px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5,5,9,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.logo-img {
  max-height: 40px;
}

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-main);
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero.small {
  padding: 3.2rem 0 2.4rem;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-inner.column {
  grid-template-columns: 1fr;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.hero-text {
  color: var(--text-muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-note {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-logo-large {
  max-width: 360px;
  width: 100%;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
}

/* Cards, grid */

.card {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem 1.4rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.meta-list li {
  margin-bottom: 0.25rem;
}

.highlight-card {
  margin-top: 2rem;
}

/* Mockups */
.mock-grid .mock-card {
  padding: 0;
  overflow: hidden;
}

.mock-placeholder {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mock-placeholder.hoodie {
  background: radial-gradient(circle at top left, #1f2937 0, #050509 50%);
}

.mock-placeholder.tee {
  background: radial-gradient(circle at top center, #111827 0, #050509 55%);
}

.mock-placeholder.card {
  background: radial-gradient(circle at top right, #1f2937 0, #050509 50%);
}

.mock-card p {
  padding: 0.9rem 1.2rem 1.2rem;
  margin: 0;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn.primary {
  background: var(--accent);
  color: #020203;
}

.btn.primary:hover {
  filter: brightness(1.05);
}

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

.btn.ghost:hover {
  border-color: var(--accent);
}

.btn.full {
  width: 100%;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

/* Forms */

.join-form {
  background: rgba(11,11,18,0.9);
  border-radius: 1.2rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--border);
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  background: #050509;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #050509;
  padding: 1.5rem 0;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-logo {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-meta a {
  color: var(--accent);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 120%;
    background: #050509;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-logo-large {
    max-width: 300px;
  }
}
