:root {
  color-scheme: light;
  --ink: #17120f;
  --muted: #655b52;
  --paper: #f8f4ed;
  --surface: #fffaf2;
  --navy: #111a2e;
  --wine: #812a32;
  --gold: #c79739;
  --gold-soft: #f0d89a;
  --line: rgba(23, 18, 15, 0.16);
  --shadow: 0 24px 60px rgba(17, 26, 46, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 800;
  min-width: max-content;
}

.brand img {
  border-radius: 8px;
  height: 34px;
  width: 34px;
}

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

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

.nav-cta {
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  min-height: min(820px, calc(100vh - 64px));
  padding: clamp(40px, 5vw, 72px) clamp(20px, 6vw, 88px) 40px;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(199, 151, 57, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(129, 42, 50, 0.08), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.phone-stage {
  position: relative;
}

.hero-copy {
  max-width: 100%;
}

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

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 0.9;
  margin-bottom: 24px;
  max-width: 920px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.7;
  max-width: 680px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
}

.button.primary {
  background: var(--wine);
  box-shadow: 0 14px 32px rgba(129, 42, 50, 0.24);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.trust-row {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

.phone-stage {
  display: flex;
  justify-content: center;
}

.phone-frame {
  background: var(--navy);
  border: 10px solid #101010;
  border-radius: 32px;
  box-shadow: var(--shadow);
  max-width: 360px;
  overflow: hidden;
  width: min(82vw, 360px);
}

.phone-frame video {
  aspect-ratio: 9 / 16;
  background: #000;
  display: block;
  object-fit: cover;
  width: 100%;
}

.objection-band {
  align-items: center;
  background: var(--navy);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 0.9fr;
  padding: clamp(34px, 5vw, 60px) clamp(20px, 6vw, 88px);
}

.objection-band .eyebrow {
  color: var(--gold-soft);
}

.objection-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 0;
}

.objection-band p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 760px;
}

.section h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

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

.steps article,
.group-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.steps span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 30px;
}

.steps h3,
.feature-list h3,
.group-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.steps p,
.feature-list p,
.group-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.split {
  align-items: start;
  background: #fffaf4;
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: 0.8fr 1fr;
}

.feature-list {
  display: grid;
  gap: 26px;
}

.feature-list > div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.group-section {
  align-items: center;
  display: grid;
  gap: clamp(26px, 6vw, 80px);
  grid-template-columns: 1fr 0.75fr;
}

.group-copy {
  max-width: 760px;
}

.group-card ol {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  padding-left: 20px;
}

.final-cta {
  background: var(--wine);
  color: #fff;
  padding: clamp(58px, 8vw, 104px) 20px;
  text-align: center;
}

.final-cta img {
  border-radius: 16px;
  height: 76px;
  margin-bottom: 22px;
  width: 76px;
}

.final-cta .eyebrow {
  color: var(--gold-soft);
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.final-cta .button.primary {
  background: #fff;
  color: var(--wine);
  margin-top: 16px;
}

.final-cta .button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  margin-left: 10px;
  margin-top: 16px;
}

footer {
  align-items: center;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 88px);
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  font-weight: 800;
}

.feedback-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 151, 57, 0.18), transparent 34%),
    var(--paper);
}

.feedback-main {
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  padding: clamp(44px, 7vw, 92px) clamp(20px, 6vw, 88px);
}

.feedback-intro {
  max-width: 620px;
}

.feedback-intro h1,
.thanks-main h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

.feedback-intro p,
.thanks-main p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.feedback-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.feedback-form label {
  display: grid;
  gap: 8px;
}

.feedback-form span {
  color: var(--ink);
  font-weight: 800;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.feedback-form textarea {
  line-height: 1.55;
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(199, 151, 57, 0.18);
}

.feedback-form .button {
  border: 0;
  cursor: pointer;
  margin-top: 8px;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.thanks-main {
  margin: 0 auto;
  max-width: 700px;
  min-height: 100vh;
  padding: 90px 20px;
  text-align: center;
}

.thanks-main img {
  border-radius: 16px;
  height: 82px;
  margin-bottom: 22px;
  width: 82px;
}

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

  nav {
    justify-content: space-between;
    width: 100%;
  }

  .hero,
  .objection-band,
  .split,
  .group-section,
  .feedback-main {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-stage {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  nav {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .final-cta .button.ghost {
    margin-left: 0;
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 340px);
  }
}
