:root {
  --bg: #f6f0e8;
  --bg-strong: #f1e2cf;
  --surface: #fff6eb;
  --ink: #1c1a17;
  --muted: #58524a;
  --accent: #f06427;
  --accent-dark: #c44a1e;
  --teal: #1f7a73;
  --shadow: rgba(28, 26, 23, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff7ee 10%, var(--bg) 60%);
}

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  background-image: linear-gradient(135deg, rgba(240, 100, 39, 0.12), rgba(31, 122, 115, 0.08));
}

.hero {
  padding: 32px 8vw 60px;
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 500;
}

.cta {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(240, 100, 39, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(240, 100, 39, 0.35);
}

.ghost {
  background: transparent;
  border: 2px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 12px 0 16px;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--teal);
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(90%, 360px);
  border-radius: 28px;
  box-shadow: 0 22px 40px var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: 10%;
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 18px 30px var(--shadow);
  animation: fadeUp 0.8s ease forwards;
}

.floating-card p {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.floating-card h3 {
  margin: 6px 0;
}

.floating-card span {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
}

.floating-pill {
  position: absolute;
  top: 12%;
  right: 4%;
  background: var(--ink);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.section {
  padding: 64px 8vw;
}

.section.alt {
  background: var(--bg-strong);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-head p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 26px rgba(28, 26, 23, 0.12);
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
}

.card:nth-child(2) {
  animation-delay: 0.1s;
}

.card:nth-child(3) {
  animation-delay: 0.2s;
}

.card .tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 122, 115, 0.12);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.8rem;
}

.card h3 {
  margin: 16px 0 12px;
}

.card p {
  color: var(--muted);
}

.link {
  background: none;
  color: var(--accent-dark);
  font-weight: 600;
  padding: 0;
}

.chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.chip {
  background: white;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 20px rgba(28, 26, 23, 0.12);
}

.chip strong {
  color: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.step {
  border: 1px solid rgba(28, 26, 23, 0.12);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.step-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 600;
}

.callout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #fff;
  margin: 0 8vw 80px;
  padding: 32px 36px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(28, 26, 23, 0.18);
}

.footer {
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: var(--ink);
  color: #f6efe6;
}

.footer .brand img {
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-grid,
  .cards,
  .chips,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-stats {
    flex-direction: column;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }
}
