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

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

:root {
  --green: #4caf50;
  --green-dark: #2e7d32;
  --green-glow: rgba(76, 175, 80, 0.35);
  --gold: #f5a623;
  --gold-dim: #c8841a;
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --border: rgba(76, 175, 80, 0.18);
  --text: #e8e8e8;
  --text-muted: #888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav .logo img {
  height: 38px;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--green);
  background: rgba(76, 175, 80, 0.1);
}

.nav-ip {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-ip:hover {
  background: rgba(76, 175, 80, 0.2);
  box-shadow: 0 0 12px var(--green-glow);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1627856013091-fed6dc0d85c2?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 0 20px var(--green-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.ip-copy-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ip-copy-wrap:hover {
  border-color: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
}

.ip-copy-wrap .ip-label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
}

.ip-copy-wrap .ip-val {
  color: var(--green);
}

/* SECTIONS */
section {
  padding: 90px 40px;
}

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--surface-2);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img img {
  width: 100%;
  display: block;
  filter: brightness(0.85) saturate(0.8);
}

/* STAFF */
.staff-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.staff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  text-align: center;
  width: 220px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.staff-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 24px var(--green-glow);
}

.staff-card img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  margin-bottom: 14px;
  image-rendering: pixelated;
}

.staff-card .staff-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.staff-card .staff-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.staff-card.co-owner .staff-role {
  color: var(--gold);
}

/* RULES */
.rules-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rule-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.rule-item:hover {
  border-color: rgba(76, 175, 80, 0.35);
}

.rule-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  min-width: 32px;
  padding-top: 2px;
}

.rule-item h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.rule-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer img {
  height: 28px;
  opacity: 0.6;
}

footer p {
  font-size: 13px;
  color: var(--text-muted);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 40px;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green-dark);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: 4px;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  section { padding: 60px 20px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 32px 20px; flex-direction: column; text-align: center; }
  .divider { margin: 0 20px; }
  nav ul { display: none; }
}

/* HERO LOGO */
.hero-studio-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-logo-wrap {
  margin-bottom: 28px;
}

.hero-logo {
  width: min(480px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(76, 175, 80, 0.3));
}

/* ABOUT TEXT ONLY (no image) */
.about-text-only {
  max-width: 680px;
}

/* FOOTER */
.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 28px;
  opacity: 0.6;
}

.footer-studio {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #444;
}
