:root {
  --bg: #fdf7ef;
  --ink: #1f1d1a;
  --ink-soft: #5b5650;
  --accent: #f45d22;
  --accent-2: #f2b705;
  --card: #fff8ed;
  --line: rgba(31, 29, 26, 0.12);
  --shadow: 0 18px 45px rgba(36, 26, 11, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, #ffe6c8 0%, transparent 36%),
    radial-gradient(circle at 88% 84%, #ffd6ab 0%, transparent 34%),
    linear-gradient(145deg, #fff8ee 0%, #f5ede2 100%);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(3px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(120deg, rgba(242, 183, 5, 0.4), rgba(244, 93, 34, 0.1));
  top: -90px;
  right: -90px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(120deg, rgba(244, 93, 34, 0.26), rgba(242, 183, 5, 0.08));
  bottom: -70px;
  left: -60px;
  animation: float 9s ease-in-out infinite reverse;
}

.page {
  width: min(980px, 100%);
  position: relative;
  z-index: 1;
}

.hero {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.75), rgba(255, 248, 236, 0.92));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 6vw, 56px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  animation: rise 0.65s ease-out both;
}

.pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(244, 93, 34, 0.12);
  color: #8a330f;
  border: 1px solid rgba(244, 93, 34, 0.2);
  padding: 9px 14px;
  border-radius: 999px;
}

h1 {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 6.4vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

.subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 2.3vw, 21px);
  line-height: 1.6;
  max-width: 56ch;
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.primary {
  background: linear-gradient(120deg, var(--accent), #d94210);
  color: #fff;
  box-shadow: 0 10px 22px rgba(212, 66, 17, 0.3);
}

.primary:hover {
  box-shadow: 0 14px 26px rgba(212, 66, 17, 0.35);
}

.ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border: 1px solid rgba(31, 29, 26, 0.15);
}

.ghost:hover {
  background: #fff;
}

.meta {
  margin: 16px 0 0;
  font-size: 14px;
  color: #7b756e;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 13px;
  color: #7e776d;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  background: #211b16;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 14px;
  pointer-events: none;
  transition: all 220ms ease;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(0, 10px) scale(1.04);
  }
}

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

@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .hero {
    border-radius: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .footer {
    text-align: center;
  }
}
