/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime: #BBEF3C;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-bg: #f7f7f5;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: var(--black); }

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

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

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  user-select: none;
}

.nav-logo span { color: var(--lime); }

#nav.scrolled .nav-logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.hamburger:hover { opacity: 0.5; }

/* ===== DRAWER (menu) ===== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 300;
  width: 208px;
  background: var(--lime);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.open { transform: translateX(0); }

.drawer-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.drawer-close:hover { opacity: 0.5; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  padding: 8px 0;
  transition: opacity 0.2s;
}

.drawer-nav a:hover { opacity: 0.5; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  background: var(--black);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 72%;
  object-fit: cover;
  object-position: left top;
}

.hero-diagonal {
  position: absolute;
  inset: 0;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 28%, 0 62%);
  pointer-events: none;
}

.hero-text {
  position: absolute;
  top: 0; left: 0;
  padding-top: 48px;
  padding-left: 80px;
  z-index: 10;
  animation: heroFadeIn 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4.5rem, 12vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
}

.hero-title span { color: var(--lime); }

.hero-tagline {
  margin-top: 20px;
  margin-left: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 40px;
  background: var(--black);
  color: var(--white);
}

.about-headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 900px;
}

.accent-bar {
  margin-top: 64px;
  width: 96px;
  height: 4px;
  background: var(--lime);
}

/* ===== DOMAINS ===== */
.domains {
  padding: 120px 40px;
  background: var(--gray-bg);
}

.domains-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .domains-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.text-center { text-align: center; }

.domains-sub {
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.5);
}

.domains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.1);
}

@media (min-width: 640px) {
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .domains-grid { grid-template-columns: repeat(3, 1fr); }
}

.domain-card {
  background: var(--white);
  padding: 32px;
  cursor: default;
  transition: background 0.5s, color 0.5s;
}

.domain-card:hover { background: var(--black); color: var(--white); }

.domain-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--black);
  transition: color 0.5s;
}

.domain-card:hover .domain-icon { color: var(--lime); }

.domain-card h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.domain-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.5);
  transition: color 0.5s;
}

.domain-card:hover p { color: rgba(255,255,255,0.5); }

/* ===== FOUNDERS ===== */
.founders {
  padding: 120px 40px;
  background: var(--white);
}

.founders .section-title {
  margin-bottom: 96px;
}

.founder-row {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 128px;
}

.founder-row:last-of-type { margin-bottom: 0; }

@media (min-width: 768px) {
  .founder-row {
    flex-direction: row;
    align-items: center;
    gap: 96px;
  }
  .founder-row.reverse { flex-direction: row-reverse; }
}

.founder-photo {
  flex: 1;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: filter 0.7s;
}

.founder-photo:hover img { filter: grayscale(0); }

.founder-bio { flex: 1; }

.founder-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.founder-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.founder-bio p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.65);
  margin-bottom: 32px;
}

.tags { display: flex; flex-wrap: wrap; gap: 12px; }

.tag {
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* ===== MUSIC ===== */
.music {
  padding: 120px 40px;
  background: var(--black);
  color: var(--white);
}

.music-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.music-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.music-sub {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  margin-bottom: 40px;
}

.btn-playlist {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--lime);
  color: var(--black);
  padding: 16px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn-playlist:hover { background: var(--white); }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 40px 0;
  background: var(--lime);
  color: var(--black);
}

.contact-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.contact-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  max-width: 400px;
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 480px) {
  .form-row { flex-direction: row; }
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.3);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(0,0,0,0.4); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--black); }

.btn-send {
  display: inline-block;
  background: var(--black);
  color: var(--lime);
  border: none;
  padding: 12px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  align-self: flex-start;
}

.btn-send:hover { background: var(--white); color: var(--black); }

.form-success {
  display: none;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 32px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 640px;
}

.form-success.visible { display: block; }

/* ===== FOOTER SOCKET ===== */
.footer-socket {
  margin-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 16px 0;
  max-width: 1280px;
}

.footer-socket p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

/* ===== CONTAINERS ===== */
.container { max-width: 900px; }
.container-wide { max-width: 1280px; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

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

/* ===== MOBILE NAV ===== */
@media (max-width: 480px) {
  #nav { padding: 16px 20px; }
  .hero-text { padding-left: 20px; padding-top: 40px; }
  .about, .domains, .founders, .music, .contact { padding-left: 20px; padding-right: 20px; }
  .footer-socket { padding-left: 0; padding-right: 0; }
}
