:root {
  --sunset-bright: #ff6b35;
  --sunset-soft: #ffb26b;
  --ink: #1f2933;
  --muted: #52606d;
  --paper: #fffdf9;
  --card: #ffffff;
  --line: #f1dfcc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 100% 0%, #ffe3c2 0%, var(--paper) 48%);
}

.page {
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  width: 300px;
  height: auto;
  margin-bottom: 0.8rem;
}

.eyebrow,
.section-label {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunset-bright);
  font-weight: 700;
  font-size: 0.82rem;
}

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

h1 {
  margin: 0.75rem auto 0.8rem;
  max-width: 14ch;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.03;
}

h2,
h3 {
  margin-top: 0;
}

.lead {
  margin: 0 auto;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.subtle {
  margin: 1rem 0 0;
  color: #7a8694;
  font-size: 0.95rem;
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  padding: 0.78rem 1.2rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--sunset-soft);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px -32px rgba(31, 41, 51, 0.58);
}

.benefits-heading {
  text-align: center;
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

.benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1.5rem;
  align-items: start;
}

.signup-copy h2,
.feature h2 {
  margin-top: 0.35rem;
}

.signup-form-wrap {
  min-height: 200px;
}

.hs-form,
.hbspt-form form {
  display: grid;
  gap: 0.9rem;
}

.hs-form fieldset {
  max-width: none !important;
}

.hs-form .hs-form-field {
  margin-bottom: 0 !important;
}

.hs-form label {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.hs-form input,
.hs-form textarea,
.hs-form select {
  width: 100% !important;
  padding: 0.8rem 0.9rem !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.hs-form input:focus,
.hs-form textarea:focus,
.hs-form select:focus {
  outline: 2px solid rgba(255, 107, 53, 0.2);
  border-color: var(--sunset-bright) !important;
}

.hs-button,
.hs-form input[type="submit"] {
  appearance: none;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--sunset-bright) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.85rem 1.25rem !important;
  cursor: pointer;
}

.hs-form input[type="submit"].is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.hs-error-msgs,
.hs-error-msg {
  color: #b42318 !important;
  font-size: 0.9rem;
  list-style: none;
  padding-left: 0;
}

.form-status {
  margin: 0;
  color: #8b5a3b;
  line-height: 1.6;
}

.footer {
  margin-top: 2rem;
  text-align: center;
}

.footer p {
  margin: 0;
  color: #8a93a0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .benefits,
  .feature,
  .signup {
    grid-template-columns: 1fr;
  }
}
