:root {
  --blush: #ffe5e0;
  --clay: #8a5c53;
  --clay-deep: #6e4841;
  --clay-soft: rgba(138, 92, 83, 0.12);
  --clay-line: rgba(138, 92, 83, 0.18);
  --paper: #fffaf8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(138, 92, 83, 0.12);
  --radius: 28px;
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--clay);
  background: var(--blush);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(138, 92, 83, 0.12), transparent 32%),
    radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.55), transparent 40%),
    var(--blush);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(138, 92, 83, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 92, 83, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 6vw;
  background: rgba(255, 229, 224, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clay-line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(138, 92, 83, 0.14);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--clay);
  color: var(--blush);
  padding: 0.7rem 1.2rem;
  box-shadow: 0 10px 24px rgba(138, 92, 83, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--clay-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--clay);
  padding: 0.7rem 1.1rem;
}

.btn-ghost:hover {
  background: var(--clay-soft);
}

.hero {
  display: grid;
  place-items: center;
  padding: 4.5rem 6vw 3.5rem;
  text-align: center;
}

.hero-card {
  position: relative;
  max-width: 760px;
  width: 100%;
  padding: 3.5rem 2rem 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 248, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%) rotate(0deg);
  background: transparent;
  border: 1.5px solid var(--clay-line);
  clip-path: polygon(50% 8%, 92% 86%, 8% 86%);
  opacity: 0.45;
  pointer-events: none;
}

.logo-mark {
  width: 168px;
  height: 168px;
  margin: 0 auto 1.6rem;
  border-radius: 36px;
  box-shadow: 0 16px 40px rgba(138, 92, 83, 0.16);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--clay-soft);
  color: var(--clay-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(138, 92, 83, 0.5);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(138, 92, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(138, 92, 83, 0);
  }
}

h1,
h2 {
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--clay-deep);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 14ch;
  margin: 0 auto 1rem;
}

.lede {
  max-width: 46ch;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
  color: rgba(110, 72, 65, 0.88);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-primary {
  min-width: 180px;
  padding: 0.95rem 1.5rem;
  font-size: 1.02rem;
}

.section {
  padding: 1rem 6vw 5rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-kicker {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.section-intro {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: rgba(110, 72, 65, 0.86);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.5rem 1.35rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--clay-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(138, 92, 83, 0.06);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--clay-soft);
}

.card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.card p {
  font-size: 0.98rem;
  color: rgba(110, 72, 65, 0.86);
}

.survey-banner {
  margin-top: 2.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--clay);
  color: var(--blush);
  border-radius: var(--radius);
}

.survey-banner h2 {
  color: var(--blush);
  margin-bottom: 0.35rem;
}

.survey-banner p {
  max-width: 48ch;
  color: rgba(255, 229, 224, 0.86);
}

.survey-banner .btn-primary {
  background: var(--blush);
  color: var(--clay-deep);
  box-shadow: none;
  flex-shrink: 0;
}

.survey-banner .btn-primary:hover {
  background: var(--white);
}

.site-footer {
  padding: 1.4rem 6vw 2rem;
  text-align: center;
  color: rgba(110, 72, 65, 0.72);
  font-size: 0.92rem;
}

.survey-page {
  padding: 2.5rem 6vw 4rem;
}

.survey-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.survey-wrap h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.7rem;
}

.form-shell {
  margin-top: 2rem;
  padding: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--clay-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-shell iframe {
  display: block;
  width: 100%;
  max-width: 640px;
  height: 3582px;
  margin: 0 auto;
  border: 0;
  background: var(--white);
}

@media (max-width: 860px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .survey-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.85rem 1.1rem;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 2.4rem 1.1rem 2rem;
  }

  .hero-card {
    padding: 2.2rem 1.15rem 2rem;
  }

  .logo-mark {
    width: 132px;
    height: 132px;
    border-radius: 28px;
  }

  .section,
  .survey-page {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .form-shell iframe {
    height: 4200px;
  }
}
