:root {
  --bg: #f5f0e8;
  --bg-soft: #efe7da;
  --ink: #111111;
  --muted: #56514a;
  --line: rgba(17, 17, 17, 0.12);
  --accent: #e43d30;
  --accent-soft: rgba(228, 61, 48, 0.12);
  --card: rgba(255, 255, 255, 0.62);
  --shadow: 0 24px 70px rgba(31, 23, 16, 0.12);
  --reveal-shift: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(228, 61, 48, 0.16), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(17, 17, 17, 0.09), transparent 24%),
    linear-gradient(180deg, #f9f5ee 0%, var(--bg) 50%, #f1e8da 100%);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  opacity: 0.35;
}

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

.ambient {
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  animation: drift 14s ease-in-out infinite;
}

.ambient-one {
  top: -8rem;
  right: -10rem;
  background: rgba(228, 61, 48, 0.18);
}

.ambient-two {
  bottom: -10rem;
  left: -10rem;
  background: rgba(17, 17, 17, 0.08);
  animation-duration: 17s;
  animation-delay: -4s;
}

.topbar,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1.2rem, 3vw, 2.4rem);
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  background: rgba(245, 240, 232, 0.72);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  animation: fadeDown 700ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
.section h1,
.section h2,
.poster-wording,
.cta,
.benefit h3,
.timeline h3,
.quote p,
.stat strong {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  margin-top: 0.24rem;
}

.anchor-rail {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-size: 0.93rem;
}

.anchor-rail a,
.ghost-link,
.footer a,
.contact-card a {
  transition: color 180ms ease, opacity 180ms ease;
}

.anchor-rail a:hover,
.ghost-link:hover,
.footer a:hover,
.contact-card a:hover {
  color: var(--accent);
}

.ghost-link {
  padding: 0.82rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 5rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4rem);
  min-height: calc(100vh - 5rem);
  padding-top: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 10ch;
  text-wrap: balance;
}

.lead {
  margin: 1.3rem 0 0;
  max-width: 38rem;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.cta.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 35px rgba(228, 61, 48, 0.24);
}

.cta.secondary {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.36);
}

.cta.dark {
  background: var(--ink);
}

.hero-notes {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-notes li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.6s ease-in-out infinite;
}

.poster {
  padding: 1.2rem;
  border-radius: 2rem;
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.84)),
    radial-gradient(circle at top, rgba(228, 61, 48, 0.25), transparent 42%);
  color: #f7f0e6;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  transform-origin: center;
  animation: posterFloat 8s ease-in-out infinite;
}

.poster::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(228, 61, 48, 0.2);
  filter: blur(10px);
  animation: bloom 7s ease-in-out infinite;
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08), transparent 60%);
  transform: translateX(-60%);
  animation: sweep 6.5s ease-in-out infinite;
}

.poster-label {
  display: inline-flex;
  margin-bottom: 2.2rem;
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.poster-wording {
  display: grid;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.poster p {
  max-width: 26rem;
  margin: 1.5rem 0 0;
  color: rgba(247, 240, 230, 0.78);
  line-height: 1.65;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.poster-grid div {
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-grid strong,
.timeline-step,
.benefit-index {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.poster-grid span {
  display: block;
  color: rgba(247, 240, 230, 0.7);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin-bottom: 1.8rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-split {
  padding-top: 1rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit {
  padding: 1.4rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

.benefit-index {
  color: var(--accent);
}

.benefit h3,
.timeline h3,
.contact-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.benefit p,
.timeline p,
.quote span,
.contact-card li,
.contact-card span,
.form-hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process {
  display: grid;
  gap: 1.6rem;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.3rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
}

.timeline-step {
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.quote,
.contact-card,
.stat {
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.quote {
  padding: 1.5rem;
  display: grid;
  align-content: space-between;
  min-height: 22rem;
}

.quote p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.proof-stats {
  display: grid;
  gap: 1rem;
}

.stat {
  display: grid;
  gap: 0.2rem;
  padding: 1.3rem;
}

.stat strong {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.08em;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  border-radius: 2rem;
  padding: 1.6rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(228, 61, 48, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.cta-band h2 {
  max-width: 15ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(228, 61, 48, 0.5);
  box-shadow: 0 0 0 4px rgba(228, 61, 48, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.submit {
  grid-column: 1 / -1;
  width: 100%;
}

.form-hint {
  grid-column: 1 / -1;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.3rem;
  display: grid;
  gap: 0.85rem;
}

.contact-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.contact-card.muted {
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
}

.contact-card.muted h3,
.contact-card.muted span,
.contact-card.muted a {
  color: inherit;
}

.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta:hover,
.ghost-link:hover,
.anchor-rail a:hover {
  transform: translateY(-1px);
}

.cta,
.ghost-link {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.cta.primary:hover {
  box-shadow: 0 22px 44px rgba(228, 61, 48, 0.3);
}

.cta.secondary:hover,
.ghost-link:hover {
  background: rgba(255, 255, 255, 0.7);
}

.contact-form button {
  cursor: pointer;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 1.1rem, 0) scale(1.03);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes posterFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.25deg);
  }
}

@keyframes bloom {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes sweep {
  0%,
  28% {
    transform: translateX(-65%);
  }

  58% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@media (max-width: 1024px) {
  .hero,
  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .anchor-rail {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .ghost-link {
    order: 2;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .poster-wording,
  .quote p {
    line-height: 0.98;
  }

  .benefit-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .footer {
    flex-direction: column;
    gap: 0.6rem;
  }

  .section {
    width: min(1180px, calc(100% - 1.4rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
