:root {
  --accent: #fe7162;
  --accent-dark: #e85d4d;
  --accent-soft: #fff0ec;
  --ink: #2f3437;
  --muted: #66707a;
  --line: #efd7d1;
  --page: #fff9f6;
  --surface: #ffffff;
  --surface-alt: #fff4ef;
  --success: #1f7a4f;
  --shadow: 0 22px 60px rgba(47, 52, 55, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(254, 113, 98, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdfc 0%, var(--page) 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0 2.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.header-cta,
.primary-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 18px 34px rgba(254, 113, 98, 0.22);
}

.header-cta {
  padding: 0.9rem 1.3rem;
}

.primary-button {
  width: 100%;
  border: 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
}

.secondary-button {
  background: rgba(47, 52, 55, 0.06);
  color: var(--ink);
  padding: 0.95rem 1.3rem;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.85;
}

.page-title {
  padding: 0 0 3rem;
  text-align: center;
}

.page-title h1 {
  margin-top: 0;
  max-width: none;
  font-weight: 800;
}

.page-subtitle {
  margin: 0.9rem 0 0;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  padding: 0 0 3.25rem;
  align-items: start;
}

.story-column,
.form-card,
.showcase-card,
.proof-card,
.step-card,
.secondary-card {
  border: 1px solid rgba(239, 215, 209, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.story-column {
  display: grid;
  gap: 2rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.eyebrow,
.form-label,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.eyebrow::before,
.form-label::before,
.pill::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  max-width: 14ch;
}

.lead {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.info-card,
.step-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), var(--surface-alt));
  border: 1px solid rgba(239, 215, 209, 0.85);
}

.info-card h2,
.step-card h3 {
  font-size: 1.05rem;
}

.info-card p,
.step-card p,
.showcase-copy p,
.form-intro,
.proof-card p,
.microcopy,
.site-footer p,
.secondary-card p,
.policy-copy p,
.policy-copy li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-card {
  margin-top: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showcase-copy {
  padding: 1.6rem;
}

.showcase-copy h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.showcase-card img {
  width: 100%;
  border-top: 1px solid rgba(239, 215, 209, 0.85);
}

.form-column {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 1.5rem;
}

.form-card,
.proof-card,
.secondary-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.form-card h2 {
  margin-top: 0;
  font-size: clamp(1.75rem, 2vw, 2.3rem);
}

.form-intro {
  margin-top: 0.9rem;
}

form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label,
.consent {
  font-weight: 600;
}

.field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:focus,
.consent input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(254, 113, 98, 0.16);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.94rem;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--accent);
}

.consent a,
.site-footer a,
.secondary-card a,
.policy-copy a {
  color: var(--accent-dark);
  font-weight: 700;
}

.microcopy {
  font-size: 0.92rem;
}

.form-status {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.form-status.error {
  background: #fff3f1;
  color: #b64034;
}

.form-status.success {
  background: #eefaf4;
  color: var(--success);
}

.proof-card h2,
.section-heading h2,
.secondary-card h1,
.policy-copy h1 {
  font-size: clamp(1.6rem, 2.1vw, 2.4rem);
}

.steps-section {
  padding: 1rem 0 4rem;
}

.section-heading {
  max-width: 44rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-number {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(239, 215, 209, 0.85);
  padding: 1.4rem 0 2.4rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.secondary-page main {
  padding: 2rem 0 4rem;
}

.secondary-layout {
  display: grid;
  place-items: center;
}

.secondary-card {
  max-width: 760px;
}

.confirmation-mark {
  display: inline-flex;
  width: 3.4rem;
  height: 3.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.policy-copy {
  display: grid;
  gap: 1.4rem;
}

.policy-copy section {
  display: grid;
  gap: 0.65rem;
}

.policy-copy ul {
  margin: 0;
  padding-left: 1.15rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .form-column {
    position: static;
  }

  h1 {
    max-width: 16ch;
  }
}

@media (max-width: 640px) {
  .site-header,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .header-cta,
  .secondary-button,
  .primary-button {
    width: 100%;
  }

  .secondary-actions {
    flex-direction: column;
  }
}
