/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #050807;
  color: #ffffff; /* TRUE WHITE */
}

/* =========================
   HERO SECTION
========================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  background: url("/landing/assets/images/bg.png") center / cover no-repeat;
}

/* =========================
   OVERLAY (LIGHT, IMAGE-FRIENDLY)
========================= */
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.12),
      rgba(0,0,0,0.22)
    ),
    radial-gradient(
      circle at center,
      rgba(57,211,83,0.26),
      rgba(0,0,0,0.28)
    );
  z-index: 1;
}

/* Soft vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* =========================
   CONTENT CONTAINER
========================= */
.container {
  position: relative;
  z-index: 2; /* ABOVE overlay */
  width: 100%;
  max-width: 1100px;
  padding: 56px 48px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.25);
  text-align: center;
}

/* =========================
   LOGO (COMPACT SPACE, BIG VISUAL)
========================= */
.logo-wrap {
  width: 520px;
  height: 120px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(2.4); /* VISUAL SIZE ONLY */
  transform-origin: center;
}

/* =========================
   HEADLINE
========================= */
h1 {
  font-size: 64px;
  font-weight: 900;
  margin: 0;
  line-height: 1.12;
  color: #ffffff;
}

h1 span {
  color: #39d353;
}

.sub {
  font-size: 24px;
  margin-top: 16px;
  color: #ffffff;
}

/* =========================
   DIVIDER
========================= */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 32px 0;
}

/* =========================
   FEATURES
========================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  padding: 16px 18px;
}

.feature.middle {
  border-left: 1px solid rgba(255,255,255,0.25);
  border-right: 1px solid rgba(255,255,255,0.25);
}

/* =========================
   ICONS (FIXED + LARGE)
========================= */
.icon-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.75); /* VISUAL SCALE */
  transform-origin: center;
}

.feature p {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

/* =========================
   FORM SECTION
========================= */
h2 {
  font-size: 32px;
  margin: 24px 0 16px;
  color: #ffffff;
}

.inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 70%;
  margin: 0 auto;
}

input {
  height: 60px;
  padding: 0 18px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 18px;
}

input::placeholder {
  color: rgba(255,255,255,0.7);
}

button {
  margin-top: 22px;
  height: 64px;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(#4be374, #2a9c4d);
  border: none;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.05);
}

small {
  display: block;
  margin-top: 18px;
  font-size: 16px;
  color: #ffffff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  h1 { font-size: 48px; }

  .logo-wrap {
    width: 420px;
    height: 100px;
  }

  .logo-wrap img {
    transform: scale(2.1);
  }

  .icon-wrap img {
    transform: scale(1.55);
  }
}

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

  .feature.middle {
    border: none;
  }

  .inputs {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .logo-wrap {
    width: 340px;
    height: 90px;
  }

  h1 { font-size: 40px; }
}

@media (max-width: 480px) {
  .logo-wrap {
    width: 280px;
    height: 80px;
  }

  h1 { font-size: 34px; }

  .icon-wrap {
    width: 72px;
    height: 72px;
  }

  .icon-wrap img {
    transform: scale(1.4);
  }
}