@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #F0EEE4;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.container {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.logo-wrap {
  display: flex;
  align-items: flex-start;
}
.logo-wrap .logo {
  height: 80px;
  width: auto;
}

.hero h1 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #3a3535;
}
.hero p {
  color: #000;
  margin-bottom: 0.75rem;
}
.hero p.lead {
  font-size: 1.05rem;
  font-weight: 500;
}
.hero ul.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.hero ul.features li {
  padding-left: 1.25rem;
  position: relative;
  color: #000;
}
.hero ul.features li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #E0523D;
  font-weight: 700;
}

.benefits h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #3a3535;
}
.benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
}
.benefits ul li {
  padding-left: 1.25rem;
  position: relative;
  color: #000;
}
.benefits ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #E0523D;
  font-weight: 700;
}
.benefits .cta-text {
  font-weight: 600;
}

.signup .form-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.signup input[type=email] {
  flex: 1 1 260px;
  padding: 0.75rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid rgb(212.6785714286, 207.0357142857, 178.8214285714);
  border-radius: 4px;
  background: #fff;
  color: #000;
  outline: none;
  transition: border-color 0.2s;
}
.signup input[type=email]::placeholder {
  color: #333333;
}
.signup input[type=email]:focus {
  border-color: #E0523D;
}
.signup button[type=submit], .signup a {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background-color: #E0523D;
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 0;
}
.signup button[type=submit]:hover, .signup a:hover {
  background-color: rgb(210.5546666667, 56.4373333333, 33.6453333333);
}
.signup button[type=submit]:active, .signup a:active {
  transform: scale(0.98);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}