:root {
  --bg-1: #faf6f4;
  --bg-2: #f3ece8;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(113, 74, 84, 0.14);
  --text: #251f21;
  --muted: #6d5f63;
  --burgundy: #7d3144;
  --burgundy-dark: #622434;
  --shadow-soft: 0 20px 60px rgba(86, 49, 60, 0.08);
  --shadow-button: 0 10px 22px rgba(125, 49, 68, 0.14);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.95) 0 2px, transparent 2.3px),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.85) 0 2px, transparent 2.3px),
    radial-gradient(circle at 76% 74%, rgba(255, 255, 255, 0.82) 0 2px, transparent 2.3px),
    radial-gradient(circle at 18% 76%, rgba(255, 255, 255, 0.78) 0 2px, transparent 2.3px);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-wrap {
  width: min(100%, calc(var(--max-width) + 64px));
  margin: 0 auto;
  padding: 12px 32px 16px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 44px;
}

.brand-logo {
  display: block;
  height: 76px;
  width: auto;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(113, 74, 84, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--burgundy);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 24px rgba(59, 39, 46, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.learn-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(59, 39, 46, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.hero {
  min-height: calc(100svh - 60px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 0;
  gap: 16px;
}

.hero-copy {
  width: min(100%, 840px);
  margin-top: -54px;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.8rem, 6.3vw, 5.45rem);
  max-width: 790px;
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 700;
  margin-inline: auto;
}

.hero-description,
.hero-support {
  margin-inline: auto;
  color: var(--muted);
  letter-spacing: -0.03em;
}

.hero-description {
  margin-top: 14px;
  max-width: 700px;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.44;
}

.hero-description span {
  color: var(--burgundy-dark);
  font-weight: 600;
  white-space: nowrap;
}

.hero-support {
  margin-top: 10px;
  max-width: 700px;
  font-size: clamp(0.94rem, 1.1vw, 1.01rem);
  line-height: 1.4;
}

.signup-strip {
  width: min(100%, 760px);
}

.signup-strip-inner {
  padding: 14px 14px 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(251, 247, 246, 0.94) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.signup-strip-top h2 {
  margin: 0;
  color: var(--burgundy-dark);
  font-size: clamp(1.18rem, 1.55vw, 1.46rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.signup-strip-top p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.38;
}

.signup-form {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: center;
}

.signup-form input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(113, 74, 84, 0.12);
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 48px;
  outline: none;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.signup-form input::placeholder {
  color: #ab9ba0;
}

.signup-form input:focus {
  border-color: rgba(125, 49, 68, 0.28);
  box-shadow: 0 0 0 4px rgba(125, 49, 68, 0.07);
  background: #ffffff;
}

.signup-form button {
  height: 48px;
  min-width: 150px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #955063 0%, var(--burgundy) 100%);
  color: #ffffff;
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: transform 160ms ease, filter 160ms ease;
}

.signup-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.01);
}

.signup-form button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 6px 4px 0;
  color: var(--burgundy);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1080px) {
  .site-wrap {
    padding: 12px 20px 18px;
  }

  .brand-logo {
    height: 64px;
  }

  .hero {
    min-height: calc(100svh - 64px);
    gap: 18px;
  }

  .hero-copy {
    width: min(100%, 880px);
    margin-top: -34px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.98rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.9rem, 6.6vw, 5.7rem);
    max-width: 820px;
    line-height: 0.9;
    letter-spacing: -0.078em;
  }

  .hero-description {
    margin-top: 16px;
    max-width: 720px;
    font-size: clamp(1rem, 1.55vw, 1.16rem);
    line-height: 1.46;
  }

  .hero-support {
    margin-top: 12px;
    max-width: 720px;
    font-size: clamp(0.96rem, 1.2vw, 1.04rem);
    line-height: 1.42;
  }

  .signup-strip {
    width: min(100%, 810px);
  }

  .signup-strip-inner {
    padding: 15px 14px 13px;
  }

  .signup-strip-top h2 {
    font-size: 1.48rem;
  }

  .signup-form {
    gap: 10px;
  }

  .signup-form input {
    height: 52px;
    border-radius: 14px;
    font-size: 0.97rem;
    line-height: 52px;
  }

  .signup-form button {
    height: 52px;
    min-width: 158px;
    border-radius: 14px;
    font-size: 0.93rem;
  }

  .form-status {
    margin-top: 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .site-wrap {
    padding: 12px 14px 18px;
  }

  .site-header {
    min-height: 52px;
  }

  .brand-logo {
    height: 58px;
  }

  .learn-more-btn {
    min-width: 112px;
    height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding: 18px 0 8px;
    gap: 18px;
  }

  .hero-copy {
    width: min(100%, 344px);
    margin-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
    max-width: 336px;
    line-height: 0.94;
  }

  .hero-description {
    max-width: 316px;
    font-size: 0.95rem;
  }

  .hero-description span {
    white-space: normal;
  }

  .hero-support {
    max-width: 308px;
    font-size: 0.92rem;
  }

  .signup-strip {
    width: 100%;
  }

  .signup-strip-inner {
    padding: 14px 12px 12px;
    border-radius: 18px;
  }

  .signup-strip-top h2 {
    font-size: 1.38rem;
  }

  .signup-strip-top p {
    font-size: 0.86rem;
  }

  .signup-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .signup-form input,
  .signup-form button {
    height: 50px;
    border-radius: 13px;
  }

  .signup-form input {
    line-height: 50px;
  }

  .signup-form button {
    width: 100%;
    min-width: 0;
    font-size: 0.92rem;
  }

  .form-status {
    text-align: center;
  }
}