@font-face {
  font-family: "BankGothic";
  src: url("../font/BankGothic%20Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-900: #0e0e0e;
  --dark-800: #111111;
  --dark-700: #151915;
  --green-900: #15311e;
  --green-800: #1f4d2e;
  --green-700: #255e3a;
  --green-500: #2bbe5a;
  --green-300: #8fe6a1;
  --text-bright: #ffffff;
  --text-muted: #cfd8d2;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-900);
  color: var(--text-bright);
  line-height: 1.6;
}

h1,
h2,
h5 {
  letter-spacing: -0.02em;
}

.hero {
  padding: 100px 0;
  background: radial-gradient(circle at right, rgba(43, 190, 90, 0.95), var(--dark-900) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 20% 20%, rgba(143, 230, 161, 0.15), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 450px;
}

.logo-type {
  display: inline-flex;
  align-items: center;
}

.logo-text {
  font-family: "BankGothic", "Inter", sans-serif;
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-bright);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-text::after {
  content: "";
  width: 3px;
  height: 1.05em;
  margin-left: 0.16em;
  background: rgba(143, 230, 161, 0.7);
  animation: cursor-blink 0.8s step-end infinite;
}

.hero-img {
  max-width: 80%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
  animation: float 6s ease-in-out infinite;
}

.hero .lead {
  color: var(--text-muted);
  max-width: 520px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-highlights span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 35, 20, 0.7);
  border: 1px solid rgba(143, 230, 161, 0.2);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0e0e0e 0%, #0c120d 100%);
}

.section-dark {
  padding: 90px 0;
  background: radial-gradient(circle at top, #151915 0%, #0b0d0b 70%);
}

.section-header {
  max-width: 760px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
  margin: 10px auto 0;
}

.section-header .section-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.card-medusa,
.offer-card,
.step-card {
  background: linear-gradient(160deg, #1f4d2e, #141c17);
  padding: 28px;
  border-radius: 16px;
  height: 100%;
  border: 1px solid rgba(143, 230, 161, 0.15);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-card {
  background: linear-gradient(150deg, #1c3d28, #101612);
}

.step-card {
  background: linear-gradient(150deg, #132218, #0f1411);
}

.card-medusa p,
.offer-card p,
.step-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.card-medusa:hover,
.offer-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 230, 161, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 10px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(43, 190, 90, 0.2);
  border: 1px solid rgba(143, 230, 161, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(120deg, #1f4d2e, #0f1712);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 80% 20%, rgba(143, 230, 161, 0.15), transparent 60%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-medusa {
  background-color: var(--green-500);
  color: var(--dark-900);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(15, 25, 20, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-medusa:hover {
  background-color: var(--green-300);
  color: var(--dark-900);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 25, 20, 0.45);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes cursor-blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .cards-grid .card-medusa,
  .offers-grid .offer-card,
  .steps-grid .step-card {
    opacity: 0;
    transform: translateY(16px);
    animation: rise 0.9s ease-out forwards;
  }

  .cards-grid > div:nth-child(1) .card-medusa {
    animation-delay: 0.05s;
  }

  .cards-grid > div:nth-child(2) .card-medusa {
    animation-delay: 0.12s;
  }

  .cards-grid > div:nth-child(3) .card-medusa {
    animation-delay: 0.19s;
  }

  .cards-grid > div:nth-child(4) .card-medusa {
    animation-delay: 0.26s;
  }

  .offers-grid > div:nth-child(1) .offer-card {
    animation-delay: 0.05s;
  }

  .offers-grid > div:nth-child(2) .offer-card {
    animation-delay: 0.12s;
  }

  .offers-grid > div:nth-child(3) .offer-card {
    animation-delay: 0.19s;
  }

  .offers-grid > div:nth-child(4) .offer-card {
    animation-delay: 0.26s;
  }

  .steps-grid > div:nth-child(1) .step-card {
    animation-delay: 0.05s;
  }

  .steps-grid > div:nth-child(2) .step-card {
    animation-delay: 0.12s;
  }

  .steps-grid > div:nth-child(3) .step-card {
    animation-delay: 0.19s;
  }

  .steps-grid > div:nth-child(4) .step-card {
    animation-delay: 0.26s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    animation: none;
  }

  .logo-text {
    animation: none;
  }

  .logo-text::after {
    animation: none;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 0;
    text-align: center;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlights {
    justify-content: center;
  }

  .hero-img {
    margin-top: 32px;
  }

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

  .section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
