@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

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

:root {
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --background: hsl(50, 13%, 93%);
  --foreground: hsl(176, 76%, 15%);
  --primary: hsl(176, 76%, 21%);
  --primary-fg: hsl(50, 13%, 96%);
  --secondary: hsl(50, 13%, 90%);
  --accent: hsl(145, 52%, 41%);
  --accent-fg: hsl(0, 0%, 100%);
  --cta: hsl(16, 100%, 66%);
  --cta-fg: hsl(0, 0%, 100%);
  --cta-hover: hsl(16, 100%, 58%);
  --muted-fg: hsl(176, 30%, 35%);
  --border: hsl(90, 8%, 82%);
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsla(176, 76%, 21%, 0.92) 0%,
    hsla(176, 76%, 21%, 0.90) 50%,
    hsla(145, 52%, 41%, 0.85) 100%
  );
}

/* Aurora */
.aurora-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.aurora {
  position: absolute;
  width: 150%;
  height: 60%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

.aurora-1 {
  background: radial-gradient(ellipse at center, hsla(176, 76%, 30%, 0.6), transparent 70%);
  top: -20%;
  left: -25%;
  animation: aurora-drift-1 10s ease-in-out infinite;
}

.aurora-2 {
  background: radial-gradient(ellipse at center, hsla(145, 52%, 41%, 0.5), transparent 70%);
  top: 10%;
  right: -30%;
  animation: aurora-drift-2 13s ease-in-out infinite;
}

.aurora-3 {
  background: radial-gradient(ellipse at center, hsla(176, 76%, 21%, 0.4), transparent 70%);
  bottom: -10%;
  left: 10%;
  animation: aurora-drift-3 16s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 20px) scale(1.1); }
}

@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -15px) scale(1.15); }
}

@keyframes aurora-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(30px, -25px) scale(0.95); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-badge {
  margin-bottom: 2rem;
  animation: fade-in 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

.hero-badge svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--cta);
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsla(50, 13%, 96%, 0.7);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-fg);
  line-height: 1.0;
  margin-bottom: 1.5rem;

  animation: fade-in 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-title .highlight {
  color: var(--cta);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(50, 13%, 96%, 0.8);
  margin-bottom: 2.5rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  animation: fade-in 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

.cta-wrapper {
  animation: fade-in 0.6s ease-out 0.7s forwards;
  opacity: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--cta);
  color: var(--cta-fg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  box-shadow: 0 8px 30px hsla(16, 100%, 66%, 0.35);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.cta-button:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px hsla(16, 100%, 66%, 0.45);
}

.cta-button:active {
  transform: translateY(0);
}

/* ===== STEPS ===== */
.steps-section {
  padding: 5rem 1.5rem;
  background: var(--background);
}

.steps-container {
  max-width: 64rem;
  margin: 0 auto;
}

.steps-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  animation: fade-in 0.6s ease-out forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.5s; }

.step-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--accent-fg);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ===== SECONDARY CTA ===== */
.secondary-cta {
  padding: 4rem 1.5rem;
  background: var(--secondary);
}

.secondary-cta-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.secondary-cta-inner p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cta);
}

.footer-links .sep {
  color: hsla(50, 13%, 96%, 0.5);
}

.footer-company {
  font-size: 0.875rem;
  color: hsla(50, 13%, 96%, 0.7);
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: hsla(50, 13%, 96%, 0.5);
  max-width: 36rem;
  margin: 0 auto 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: hsla(50, 13%, 96%, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px hsla(16, 100%, 66%, 0.35); }
  80% { box-shadow: 0 8px 40px hsla(16, 100%, 66%, 0.55); }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
     line-height: 1;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .cta-button {
    font-size: 1.25rem;
  }

  .steps-title {
    font-size: 2.25rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .secondary-cta-inner p {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}