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

:root {
  --bg-1: #030a06;
  --bg-2: #0a1a12;
  --bg-3: #123321;
  --field: #1f8f4d;
  --field-dark: #136236;
  --white: #ffffff;
  --text: #eef7f0;
  --muted: #d5e7d8;
  --accent: #ffd54a;
  --accent-2: #ffb300;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

html, body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(72, 255, 151, 0.10), transparent 25%),
    radial-gradient(circle at 50% 120%, rgba(255, 213, 74, 0.10), transparent 35%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 213, 74, 0.18), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, auto, 120px 120px, 120px 120px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.topbar {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.brand-logo img {
  display: block;
  width: min(260px, 52vw);
  height: auto;
}

.hero-content {
  width: min(1220px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
  padding: 34px 0 20px;
}

.hero-copy,
.hero-card {
  animation: fadeUp 1s ease both;
}

.eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 213, 74, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 213, 74, 0.25);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-logo {
  width: min(420px, 90%);
  height: auto;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.30));
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.55rem);
  line-height: 1.04;
  font-weight: 800;
  max-width: 760px;
  text-wrap: balance;
}

.subtitle {
  margin-top: 22px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
}

.feature-list {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-list span {
  padding: 12px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  color: #f4fbf6;
  font-size: 0.95rem;
  font-weight: 700;
}

.cta-group {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 66px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  color: #16270c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 18px 38px rgba(255, 179, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 46px rgba(255, 179, 0, 0.38);
}

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

.showcase-card {
  position: relative;
  width: min(100%, 520px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.showcase-glow {
  position: absolute;
  inset: auto auto -10% -10%;
  width: 58%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 213, 74, 0.18), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}

.showcase-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(to top, rgba(0,0,0,0.70), rgba(0,0,0,0.36));
  backdrop-filter: blur(6px);
}

.tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.showcase-overlay h2 {
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  font-weight: 700;
}

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

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .subtitle {
    max-width: 720px;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 16px;
  }

  .topbar {
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo img {
    width: min(240px, 100%);
  }

  .hero-content {
    gap: 24px;
    padding-top: 22px;
  }

  .feature-list {
    justify-content: center;
  }

  .cta-button {
    width: 100%;
    min-width: 0;
  }

  .showcase-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 14px 16px;
  }
}
