:root {
  --curtain: #b6403a;
  --coral: #e9826a;
  --cream: #fff3e4;
  --paper: #fff9f1;
  --night: #243447;
  --gold: #e7b75f;
  --ink-soft: #4d5a68;
  --line: rgba(36, 52, 71, 0.16);
  --shadow: 0 24px 70px rgba(36, 52, 71, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--night);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-logo {
  width: 148px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--curtain);
}

.hero {
  min-height: calc(100svh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(255, 243, 228, 0.96), rgba(255, 249, 241, 0.86)),
    radial-gradient(circle at 78% 30%, rgba(231, 183, 95, 0.2), transparent 30%),
    var(--cream);
}

.hero-copy,
.section-heading,
.signup-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--curtain);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.hero-text,
.section p,
.problem-band p,
.signup-copy p,
.validation-panel p {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  color: #fff;
  background: var(--curtain);
  box-shadow: 0 12px 26px rgba(182, 64, 58, 0.22);
}

.secondary {
  color: var(--night);
  background: #fff;
  border-color: var(--line);
}

.full {
  width: 100%;
}

.hero-panel {
  padding: clamp(22px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(182, 64, 58, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-stage {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-bottom: 24px;
  background: var(--night);
  border-radius: 8px;
}

.mini-stage img {
  width: min(290px, 88%);
  mix-blend-mode: normal;
  border-radius: 8px;
}

.experience-list {
  display: grid;
  gap: 12px;
}

.experience-list div,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.experience-list div {
  padding: 16px;
}

.experience-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--curtain);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-list strong {
  display: block;
  line-height: 1.35;
}

.problem-band,
.audience {
  background: var(--night);
  color: #fff;
}

.problem-band {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 6vw, 88px);
}

.problem-band .eyebrow,
.audience .eyebrow {
  color: var(--gold);
}

.problem-band p,
.audience p {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 88px);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.section-heading {
  margin-bottom: 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  min-height: 248px;
  padding: 24px;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--night);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.audience-copy {
  display: grid;
  gap: 22px;
}

.quote {
  margin: 0;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 88px);
  background: var(--cream);
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid rgba(182, 64, 58, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--night);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 52, 71, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--night);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(231, 183, 95, 0.38);
  border-color: var(--curtain);
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--curtain);
  font-weight: 800;
}

.validation-panel {
  display: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 6vw, 88px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.validation-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.validation-panel p {
  margin-bottom: 0;
  font-size: 1rem;
}

.validation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 260px;
}

.text-button {
  border: 0;
  padding: 10px 0;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.text-button:hover {
  color: var(--curtain);
}

.footer {
  padding: 26px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--night);
}

.footer p {
  margin: 0;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 243, 228, 0.96), rgba(255, 249, 241, 0.86)),
    var(--cream);
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  background: #fff;
  border: 1px solid rgba(182, 64, 58, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-logo {
  width: min(260px, 75%);
  margin: 0 auto 24px;
}

.thanks-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 6vw, 4.7rem);
}

.thanks-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.65;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.9rem;
  }

  .hero,
  .two-columns,
  .signup-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: auto;
  }

  .validation-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .validation-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 132px;
    height: 58px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mini-stage {
    min-height: 210px;
  }
}
