@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #f7f2ef;
  --bg-strong: #efe5df;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --text: #161515;
  --muted: #5d5856;
  --line: rgba(22, 21, 21, 0.08);
  --accent: #b10909;
  --accent-dark: #7e0505;
  --accent-soft: rgba(177, 9, 9, 0.1);
  --blue: #2d6cdf;
  --blue-soft: rgba(45, 108, 223, 0.12);
  --green: #2fa86b;
  --green-soft: rgba(47, 168, 107, 0.12);
  --yellow: #f1b400;
  --yellow-soft: rgba(241, 180, 0, 0.14);
  --rainbow-bar: linear-gradient(90deg, #b10909 0%, #c13d10 18%, #db6f11 36%, #2d6cdf 60%, #2fa86b 80%, #f1b400 100%);
  --rainbow-soft: linear-gradient(135deg, rgba(177, 9, 9, 0.14) 0%, rgba(45, 108, 223, 0.1) 45%, rgba(47, 168, 107, 0.1) 72%, rgba(241, 180, 0, 0.12) 100%);
  --shadow: 0 24px 60px rgba(50, 29, 22, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(1200px 760px at 14% 2%, rgba(177, 9, 9, 0.12), transparent 56%),
    radial-gradient(920px 620px at 88% 16%, rgba(45, 108, 223, 0.12), transparent 60%),
    radial-gradient(860px 560px at 82% 82%, rgba(47, 168, 107, 0.11), transparent 58%),
    radial-gradient(700px 460px at 22% 92%, rgba(241, 180, 0, 0.13), transparent 52%),
    linear-gradient(180deg, #faf7f5 0%, var(--bg) 100%);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  position: relative;
  z-index: 1;
}

.backdrop {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.backdrop-left {
  top: 0;
  left: -120px;
  width: 280px;
  height: 280px;
  background: var(--rainbow-soft);
}

.backdrop-right {
  top: 120px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.1), rgba(47, 168, 107, 0.08), rgba(241, 180, 0, 0.08));
}

.hero {
  padding: 12px 0 38px;
}

.logo {
  width: 100%;
  height: auto;
}

.hero-copy {
  padding: clamp(30px, 4.5vw, 62px);
  border-radius: 38px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 36px;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.hero-copy,
.step,
.contact {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(177, 9, 9, 0.08), rgba(45, 108, 223, 0.05), rgba(47, 168, 107, 0.05), rgba(241, 180, 0, 0.06));
  pointer-events: none;
}

.hero-copy-content {
  position: relative;
  z-index: 1;
}

.hero-logo-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-logo {
  max-width: 320px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 5.1vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.lead {
  max-width: 56ch;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.cta-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d01111);
  box-shadow: 0 18px 30px rgba(177, 9, 9, 0.22);
}

.cta-primary:hover {
  box-shadow: 0 22px 36px rgba(177, 9, 9, 0.28);
}

.cta-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.step p,
.contact-copy {
  color: var(--muted);
}

.section {
  margin-top: 32px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
  max-width: 14ch;
}

.section-intro {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.offer-grid,
.proof-grid {
  display: grid;
  gap: 20px;
}

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

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

.offer-card,
.proof-card,
.deliverables {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.offer-card,
.proof-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.offer-card::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--rainbow-bar);
}

.offer-kicker,
.proof-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-card h3,
.proof-card h3,
.deliverables h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.offer-card p,
.proof-card p {
  color: var(--muted);
}

.deliverables {
  margin-top: 20px;
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
}

.deliverables::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--rainbow-bar);
}

.deliverables-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.deliverables-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

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

.step {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  position: relative;
  overflow: hidden;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.step:nth-child(1) span {
  background: linear-gradient(135deg, #b10909, #d01111);
}

.step:nth-child(2) span {
  background: linear-gradient(135deg, #2d6cdf, #2fa86b);
}

.step:nth-child(3) span {
  background: linear-gradient(135deg, #2fa86b, #f1b400);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.62));
}

.contact-copy {
  max-width: 56ch;
  margin-top: 12px;
}

.contact-actions {
  margin-top: 0;
  flex-shrink: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

html.js .reveal {
  opacity: 0;
  will-change: transform, opacity;
}

html.js .reveal.is-visible {
  opacity: 1;
}

html.js .reveal--up:not(.is-visible) {
  transform: translateY(14px);
}

html.js .reveal--left:not(.is-visible) {
  transform: translateX(-12px);
}

html.js .reveal--right:not(.is-visible) {
  transform: translateX(12px);
}

html.js .reveal--down:not(.is-visible) {
  transform: translateY(-10px);
}

html.js .reveal--scale:not(.is-visible) {
  transform: scale(0.985);
}

html.js .reveal.is-visible.reveal--up {
  animation: rise-soft 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.is-visible.reveal--left {
  animation: fade-left-soft 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.is-visible.reveal--right {
  animation: fade-right-soft 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.is-visible.reveal--down {
  animation: fade-down-soft 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.is-visible.reveal--scale {
  animation: scale-soft 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

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

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

@keyframes fade-up-soft {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes fade-down-soft {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@keyframes fade-left-soft {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

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

@keyframes fade-right-soft {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

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

@keyframes scale-soft {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logo-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

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

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

  .hero-grid {
    gap: 0;
  }

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

  .deliverables-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-logo-link {
    justify-content: flex-start;
  }

  .hero-logo {
    max-width: 220px;
  }

  .hero-copy,
  .step,
  .contact,
  .offer-card,
  .proof-card,
  .deliverables {
    border-radius: 26px;
  }

  h1 {
    max-width: 10ch;
  }

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

@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;
  }

  .reveal,
  html.js .reveal:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
  }
}
