:root {
  --bg: #000000;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --green: #6ee755;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* LOGO */
.logo {
  width: 300px;
  max-width: 85vw;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 30px rgba(110,231,85,0.4));
  animation: float 6s ease-in-out infinite;
}

.logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 45px rgba(110,231,85,0.7));
  transition: all 0.4s ease;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* BUTTONS */
.btn-primary {
  margin-top: 30px;
  padding: 14px 32px;
  background: var(--green);
  color: black;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(110,231,85,0.5);
}

.btn-outline {
  padding: 14px 34px;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--green);
  color: black;
}

/* SECTIONS */
section {
  padding: 120px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

/* ABOUT */
.about h2,
.contact h2 {
  font-size: 2.4rem;
}

.about p {
  color: var(--muted);
  max-width: 650px;
}

/* SERVICES */
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  border: 1px solid #1f2933;
  padding: 40px;
  border-radius: 22px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
}

/* CONTACT */
.contact {
  text-align: center;
}

/* FOOTER */
.footer {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.socials {
  display: flex;
  gap: 30px;
}

.icon {
  width: 28px;
  height: 28px;
  fill: var(--muted);
  transition: all 0.3s ease;
}

.socials a:hover .icon {
  fill: var(--green);
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 0 14px rgba(110,231,85,0.6));
}

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .logo {
    width: 220px;
  }
}

/* ADVERTISING ECOSYSTEM */
.platforms {
  text-align: center;
}

.platform-sub {
  max-width: 720px;
  margin: 0 auto 70px;
  color: var(--muted);
  font-size: 1.05rem;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.platform-card {
  background: radial-gradient(
    circle at top,
    rgba(110,231,85,0.08),
    transparent 60%
  );
  border: 1px solid #1f2933;
  border-radius: 26px;
  padding: 50px 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(110,231,85,0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.platform-card:hover::after {
  opacity: 1;
}

.platform-card:hover {
  transform: translateY(-10px);
  border-color: var(--green);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.platform-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(110,231,85,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(110,231,85,0.35);
}

.platform-icon {
  width: 32px;
  height: 32px;
  fill: var(--green);
}

.platform-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.platform-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.platform-footnote {
  margin-top: 70px;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* APPLY PAGE */
.apply-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.apply-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.apply-hero p {
  max-width: 600px;
  color: var(--muted);
}

/* FORM */
.apply-form-section {
  display: flex;
  justify-content: center;
  padding-top: 0;
}

.apply-form {
  width: 100%;
  max-width: 720px;
  background: #0b0f14;
  border: 1px solid #1f2933;
  border-radius: 26px;
  padding: 50px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  background: #020617;
  border: 1px solid #1f2933;
  border-radius: 14px;
  padding: 14px;
  color: var(--text);
  font-size: 0.95rem;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(110,231,85,0.15);
}

/* FULL WIDTH BUTTON */
.btn-primary.full {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}
