@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Sora:wght@400;600;700&display=swap');

:root {
  --ink: #111827;
  --muted: #4b5563;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --cream: #fef3e7;
  --shell: #fffaf5;
  --line: #f1e6da;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Sora', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff1e6 0%, #fff8f2 45%, #f7fbff 100%);
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw 0;
}

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

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 55%, #fdba74 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #1f2937;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 60px 7vw 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 520px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--shell);
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card {
  background: var(--shell);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #f6e8db;
  position: relative;
  overflow: hidden;
}

.hero-card:before,
.hero-card:after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  filter: blur(1px);
}

.hero-card:before {
  width: 160px;
  height: 160px;
  top: -30px;
  right: -40px;
  animation: float 8s ease-in-out infinite;
}

.hero-card:after {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -30px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-card h2 {
  margin: 0 0 18px;
  font-size: 1.4rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
}

.sections {
  padding: 20px 7vw 60px;
  display: grid;
  gap: 32px;
}

.section-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #f2e8dd;
}

.section-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

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

.grid .item {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #f7dbc4;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq p {
  margin: 0;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 24px 7vw 36px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid #f2e8dd;
  background: #fffdfb;
}

.footer a {
  color: var(--accent-dark);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-card:before,
  .hero-card:after {
    animation: none;
  }
}
