:root {
  --bg: #ffffff;
  --text: #000000;
  --muted: #6f665d;
  --surface: #ffffff;
  --surface-soft: #f6f6f6;
  --line: #e8e8e8;
  --accent: #ff2d55;
  --accent-strong: #d91f48;
  --accent-text: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header .nav a.nav-cta {
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 12px 24px rgba(255, 45, 85, 0.2);
}

.site-header .nav a.nav-cta:hover {
  background: var(--accent-strong);
}

main {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0 0 180px;
}

.section {
  margin-top: 180px;
}

.hero.section {
  margin-top: -18px;
}

.hero {
  position: relative;
  margin-top: 32px;
  min-height: 64vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 52vh;
  align-self: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.hero-overlay,
.hero-scroll {
  display: none;
}

.hero-inner {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 24px 0;
  text-align: left;
  color: var(--text);
}

.hero-rating {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hero-rating .stars {
  letter-spacing: 0.04em;
  margin-right: 8px;
  color: var(--text);
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.hero-trust li {
  font-size: inherit;
  color: inherit;
}

.hero-trust li + li::before {
  content: "·";
  margin-right: 26px;
  color: var(--line);
}

.hero .cta {
  width: 100%;
  padding: 16px 30px;
  font-size: 1rem;
}

.hero .cta-wrap {
  width: 100%;
  text-align: center;
  margin-top: 36px;
}

.hero h1 {
  color: var(--text);
}

.hero .hero-subhead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 28ch;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  margin-top: 16px;
  font-family: "Fraunces", ui-serif, "New York", "Charter", Cambria, Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-size: clamp(3.4rem, 9.6vw, 7.4rem);
  line-height: 1;
  letter-spacing: -0.022em;
  font-weight: 400;
}

h2 {
  font-family: "Fraunces", ui-serif, "New York", "Charter", Cambria, Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-size: clamp(2.5rem, 5.8vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  font-weight: 400;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  font-weight: 620;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-subhead {
  max-width: 34ch;
  margin: 22px auto 0;
  color: #3e3831;
  font-size: clamp(1.16rem, 2.7vw, 1.5rem);
}

.hero-visual {
  margin-top: 64px;
}

.hero-visual-frame {
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
}

.section-visual {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.section-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.section-visual.full-bleed img {
  max-height: 78vh;
  object-fit: cover;
  object-position: center 35%;
}

.unification-visual {
  margin-top: 80px;
}

.image-overlay-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin: 0;
  color: #ffffff;
  font-family: "Fraunces", ui-serif, "New York", "Charter", Cambria, Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: 1.02;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.34);
}

.image-overlay-cta {
  position: absolute;
  left: 50%;
  bottom: 132px;
  transform: translateX(-50%);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-shadow: none;
}

.cta-wrap {
  margin-top: 34px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(255, 45, 85, 0.24);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(255, 45, 85, 0.3);
}

.cta-note {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  color: #3e3831;
  font-size: 0.94rem;
  font-weight: 520;
}

.hero .cta-note::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -7px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='420' height='16' viewBox='0 0 420 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10 C46 4 94 11 139 8 C185 5 230 4 276 9 C319 13 366 7 417 9' fill='none' stroke='%23f28b36' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M8 12 C55 8 98 13 144 10 C190 8 236 7 282 12 C326 15 370 10 414 11' fill='none' stroke='%23f28b36' stroke-width='2' stroke-linecap='round' opacity='.55'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  animation: underline-draw 900ms 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes underline-draw {
  0% {
    opacity: 0;
    transform: scaleX(0) translateY(2px);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scaleX(1) translateY(0);
  }
}

.layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

.intro {
  max-width: 760px;
}

#unification > .intro {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#unification > .intro p {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

#social-proof > .intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.social-proof-cta {
  margin-top: 56px;
  text-align: center;
}

.intro p {
  margin-top: 16px;
}

.feature-grid {
  display: grid;
  gap: 56px;
  margin-top: 64px;
}

.feature-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--text);
  border-radius: 0;
  padding: 32px 0 0;
  box-shadow: none;
}

.feature-card h3 {
  font-size: 1.4rem;
  letter-spacing: -0.012em;
  font-weight: 600;
}

.feature-card p {
  margin-top: 18px;
}

.privacy-note {
  margin-top: 14px;
  color: #3e3831;
  font-size: 0.98rem;
  font-weight: 520;
}

.text-stack {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.before-after {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.quote {
  border-left: 2px solid #decfb9;
  padding-left: 14px;
}

.quote p + p {
  margin-top: 10px;
}

.review-stars {
  color: var(--text);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.half-star {
  position: relative;
  display: inline-block;
  color: var(--line);
}

.half-star::before {
  content: "\2605";
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  color: var(--text);
}

.signals {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #3e3831;
}

.signals li + li {
  margin-top: 8px;
}

.final {
  text-align: center;
}

.final h2,
.final p {
  margin-left: auto;
  margin-right: auto;
}

.final p {
  margin-top: 14px;
  max-width: 36ch;
}

.final .cta-wrap {
  margin-top: 26px;
}

.final-visual {
  margin-top: 64px;
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
    gap: 80px;
    min-height: 78vh;
    align-items: center;
  }

  .hero-image-wrap {
    margin-right: calc(50% - 50vw);
    min-height: 78vh;
    transform: translateY(-24px);
  }
}

@media (min-width: 960px) {
  .layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 80px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .before-after {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .footer-grid > .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .footer-links {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  main {
    width: calc(100% - 1.5rem);
    padding-top: 24px;
    padding-bottom: 120px;
  }

  .section {
    margin-top: 112px;
  }

  .feature-card {
    padding: 24px 0 0;
  }

  .feature-grid {
    gap: 40px;
    margin-top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .cta-note::after {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
