:root {
  --bg: #f3efe6;
  --surface: rgba(255, 255, 255, 0.64);
  --surface-strong: #fff8ee;
  --text: #142124;
  --muted: #4b5b60;
  --accent: #e0562b;
  --accent-2: #0f8b8d;
  --ring: #122b31;
  --shadow: 0 18px 36px rgba(16, 28, 31, 0.18);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100vh;
  padding: 1.25rem;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, #ffe3b7 0%, transparent 38%),
    radial-gradient(circle at 90% 75%, #bde5dd 0%, transparent 43%),
    var(--bg);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.4;
}

.bg-shape-a {
  top: -8rem;
  right: -8rem;
  background: #f7c677;
}

.bg-shape-b {
  bottom: -9rem;
  left: -9rem;
  background: #82c5ba;
}

.site-header,
main,
.site-footer {
  max-width: 66rem;
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.25rem 1rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

main {
  display: grid;
  gap: 1.2rem;
}

.hero,
.panel,
.features {
  border: 1px solid rgba(17, 34, 38, 0.14);
  border-radius: 1.2rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero,
.panel {
  padding: clamp(1.3rem, 3vw, 2.4rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin: 0 0 0.45rem;
  color: var(--accent-2);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.3rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.35rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.07rem;
}

.actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover {
  background: #ca471f;
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(20, 33, 36, 0.35);
}

.panel {
  background: var(--surface-strong);
}

.panel p {
  margin-top: 0.6rem;
  color: var(--muted);
  max-width: 62ch;
}

.features {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.4rem;
}

.feature-card + .feature-card {
  border-left: 1px solid rgba(17, 34, 38, 0.14);
}

.feature-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.panel-cta {
  text-align: left;
}

.panel-cta .btn {
  margin-top: 1rem;
}

.site-footer {
  padding: 1rem 0.2rem 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.stagger {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 540ms cubic-bezier(0.21, 0.9, 0.26, 1) forwards;
}

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

@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }

  .feature-card + .feature-card {
    border-left: 0;
    border-top: 1px solid rgba(17, 34, 38, 0.14);
  }
}

@media (max-width: 720px) {
  body {
    padding: 0.9rem;
  }

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

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