@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #111014;
  --mist: #f7f3ef;
  --peach: #f4c7a1;
  --tangerine: #ff7a3c;
  --midnight: #1d1a24;
  --ocean: #2a6f97;
  --leaf: #3c8c6e;
  --shadow: 0 28px 80px rgba(29, 26, 36, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--mist) 52%, #efe7df 100%);
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 3.5rem 6vw 4rem;
  overflow: hidden;
}

.hero {
  position: relative;
  border-radius: 32px;
  padding: 4rem 6vw;
  background: linear-gradient(120deg, rgba(255, 122, 60, 0.14), rgba(42, 111, 151, 0.12));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  filter: blur(0);
  opacity: 0.7;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -130px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 122, 60, 0.5), rgba(255, 122, 60, 0));
}

.hero::after {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(42, 111, 151, 0.45), rgba(42, 111, 151, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 32rem;
}

.tagline {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 16, 20, 0.08);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cta {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--tangerine);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 36px rgba(255, 122, 60, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(255, 122, 60, 0.38);
}

.cta span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.cta:hover span {
  transform: translateX(4px);
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 18px 50px rgba(29, 26, 36, 0.1);
  border: 1px solid rgba(29, 26, 36, 0.06);
}

.hero-card h2 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  font-size: 1rem;
}

.hero-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
  background: var(--ocean);
}

.section {
  display: grid;
  gap: 2rem;
}

.section h3 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.6rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(29, 26, 36, 0.06);
  box-shadow: 0 16px 32px rgba(29, 26, 36, 0.08);
}

.card h4 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 26, 36, 0.07);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--leaf);
}

.footer {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(17, 16, 20, 0.7);
}

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

.reveal {
  animation: floatIn 0.7s ease both;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}

.reveal.delay-2 {
  animation-delay: 0.2s;
}

.reveal.delay-3 {
  animation-delay: 0.3s;
}

@media (max-width: 720px) {
  main {
    padding: 2.5rem 6vw 3rem;
    gap: 4rem;
  }

  .hero {
    padding: 3rem 7vw;
  }

  .hero-card {
    padding: 1.6rem;
  }
}
