:root {
  --ink: #121412;
  --charcoal: #1e2320;
  --olive: #3e5a48;
  --mint: #dcecdf;
  --cream: #fff7e6;
  --paper: #fffdf6;
  --peach: #ef9f7d;
  --coral: #d7604f;
  --sun: #f2c66d;
  --sky: #b7d8ff;
  --line: rgba(18, 20, 18, 0.13);
  --muted: rgba(18, 20, 18, 0.66);
  --shadow: 0 28px 90px rgba(30, 35, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 10%, rgba(242, 198, 109, 0.38), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(183, 216, 255, 0.38), transparent 28rem),
    radial-gradient(circle at 80% 72%, rgba(239, 159, 125, 0.24), transparent 34rem),
    linear-gradient(180deg, #fff9ea 0%, #fbf3df 44%, #f2efe6 100%);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 20, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 20, 18, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  content: "";
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.72);
  box-shadow: 0 14px 60px rgba(30, 35, 32, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
  padding-left: 4px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 247, 230, 0.5);
  border-radius: 17px;
  background:
    radial-gradient(circle at 30% 24%, rgba(242, 198, 109, 0.42), transparent 22px),
    linear-gradient(135deg, #121412, #2f493c);
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(18, 20, 18, 0.2);
}

.brand-mark strong {
  position: relative;
  z-index: 2;
}

.spark {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--sun);
}

.spark.one {
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
}

.spark.two {
  right: 13px;
  bottom: 11px;
  width: 17px;
  height: 3px;
  transform: rotate(-35deg);
}

.spark.three {
  bottom: 9px;
  left: 11px;
  width: 4px;
  height: 4px;
  background: var(--peach);
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 0.9;
}

.brand-text strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 850;
}

.nav a {
  border-radius: 999px;
  padding: 11px 15px;
}

.nav a:hover {
  background: rgba(18, 20, 18, 0.07);
  color: var(--ink);
}

.nav .nav-cta {
  background: var(--ink);
  color: var(--cream);
}

.hero,
.section,
.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 58px;
  min-height: 760px;
  padding: 84px 0 72px;
}

.hero::after {
  position: absolute;
  right: 23%;
  bottom: 72px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(18, 20, 18, 0.12);
  border-radius: 44% 56% 62% 38%;
  background: rgba(255, 253, 246, 0.32);
  content: "";
  transform: rotate(-18deg);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  top: 82px;
  left: -68px;
  width: 34px;
  height: 148px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sun), var(--peach));
  content: "";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.048em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.55rem, 7.7vw, 6.75rem);
  line-height: 0.9;
}

h1 .highlight {
  position: relative;
  display: inline-block;
}

h1 .highlight::after {
  position: absolute;
  right: -0.05em;
  bottom: 0.08em;
  z-index: -1;
  width: 102%;
  height: 0.22em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 198, 109, 0.85), rgba(239, 159, 125, 0.58));
  content: "";
}

.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 950;
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(18, 20, 18, 0.16);
}

.button.ghost {
  background: rgba(255, 253, 246, 0.72);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  border: 1px solid rgba(18, 20, 18, 0.11);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.74);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(30, 35, 32, 0.06);
}

.hero-card {
  position: relative;
  z-index: 1;
  min-height: 520px;
  border: 1px solid rgba(18, 20, 18, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.94), rgba(220, 236, 223, 0.76)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(242, 198, 109, 0.33);
  content: "";
}

.hero-card::after {
  position: absolute;
  bottom: -130px;
  left: -120px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(183, 216, 255, 0.28);
  content: "";
}

.floating-badge {
  position: absolute;
  top: 32px;
  right: 28px;
  z-index: 3;
  border: 1px solid rgba(18, 20, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.82);
  padding: 10px 14px;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(30, 35, 32, 0.1);
}

.browser-bar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(18, 20, 18, 0.1);
  padding: 19px 26px;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.browser-bar span:nth-child(2) {
  background: var(--sun);
}

.browser-bar span:nth-child(3) {
  background: var(--olive);
}

.mock-site {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: 42px;
}

.mini-label,
.package-kicker {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mock-site h2 {
  max-width: 390px;
  margin-bottom: 12px;
  font-size: 3.55rem;
  line-height: 0.94;
}

.mock-site p {
  color: var(--muted);
  line-height: 1.65;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-grid span {
  min-height: 86px;
  border: 1px solid rgba(18, 20, 18, 0.11);
  border-radius: 24px;
  background: rgba(255, 253, 246, 0.76);
  padding: 18px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(30, 35, 32, 0.06);
}

.mock-cta {
  border-radius: 24px;
  background: var(--olive);
  color: var(--cream);
  padding: 19px 22px;
  font-weight: 950;
  text-align: center;
}

.marquee {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -22px auto 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(30, 35, 32, 0.08);
}

.marquee span {
  display: grid;
  min-height: 82px;
  place-items: center;
  background: rgba(255, 253, 246, 0.74);
  color: var(--charcoal);
  font-weight: 950;
}

.section {
  padding: 88px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid h2,
.section-heading h2,
.fit-card h2,
.contact h2 {
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 0.97;
}

.intro-grid > p,
.contact p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.82;
}

.price-context {
  padding-top: 0;
}

.price-context-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 42px;
  border: 1px solid rgba(18, 20, 18, 0.11);
  border-radius: 38px;
  background:
    radial-gradient(circle at 96% 8%, rgba(242, 198, 109, 0.28), transparent 190px),
    linear-gradient(135deg, rgba(18, 20, 18, 0.96), rgba(62, 90, 72, 0.92));
  padding: 38px;
  color: var(--cream);
  box-shadow: 0 26px 76px rgba(30, 35, 32, 0.16);
  overflow: hidden;
}

.price-context-card::after {
  position: absolute;
  right: -82px;
  bottom: -86px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 247, 230, 0.13);
  border-radius: 42% 58% 54% 46%;
  content: "";
  transform: rotate(16deg);
}

.price-context-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.price-context-card p:not(.eyebrow) {
  color: rgba(255, 247, 230, 0.76);
  font-size: 1.05rem;
  line-height: 1.76;
}

.price-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.price-points span {
  border: 1px solid rgba(255, 247, 230, 0.16);
  border-radius: 999px;
  background: rgba(255, 247, 230, 0.08);
  padding: 10px 13px;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 950;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

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

.package-card {
  position: relative;
  min-height: 450px;
  border: 1px solid rgba(18, 20, 18, 0.11);
  border-radius: 34px;
  background: rgba(255, 253, 246, 0.76);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(30, 35, 32, 0.08);
  overflow: hidden;
}

.package-card::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(242, 198, 109, 0.26);
  content: "";
}

.package-card.featured {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-16px) rotate(-1deg);
}

.package-card.featured::after {
  background: rgba(239, 159, 125, 0.34);
}

.package-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.price {
  margin-bottom: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.35rem;
  font-weight: 780;
  letter-spacing: -0.06em;
}

.price span {
  display: inline-block;
  color: var(--coral);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-0.35em);
}

.featured .price span {
  color: var(--sun);
}

.muted {
  color: var(--muted);
  line-height: 1.68;
}

.featured .muted,
.featured li {
  color: rgba(255, 247, 230, 0.78);
}

ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 12px 0;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

li::before {
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 246, 0.56);
  padding: 26px;
}

.steps span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--olive);
  font-weight: 950;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.steps p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.fit {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 20px;
}

.fit-card,
.rules-card,
.contact {
  border: 1px solid rgba(18, 20, 18, 0.11);
  border-radius: 40px;
  background: rgba(255, 253, 246, 0.78);
  box-shadow: 0 24px 70px rgba(30, 35, 32, 0.09);
}

.fit-card,
.rules-card {
  padding: 38px;
}

.verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.verticals span {
  border: 1px solid rgba(18, 20, 18, 0.1);
  border-radius: 999px;
  background: rgba(220, 236, 223, 0.78);
  padding: 12px 15px;
  color: var(--olive);
  font-weight: 950;
}

.rules-card h3 {
  font-size: 1.4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-grid article {
  border: 1px solid rgba(18, 20, 18, 0.1);
  border-radius: 30px;
  background: rgba(255, 253, 246, 0.66);
  padding: 30px;
}

.contact {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  margin-bottom: 80px;
  padding: 44px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 950;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(215, 96, 79, 0.12);
}

button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

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

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero,
  .intro-grid,
  .price-context-card,
  .fit,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy::before {
    display: none;
  }

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

  .marquee {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: min(100% - 24px, 1180px);
    align-items: center;
    border-radius: 999px;
    flex-direction: row;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav .nav-cta {
    padding: 10px 13px;
    font-size: 0.82rem;
  }

  .brand-text strong {
    font-size: 1.12rem;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }

  .hero,
  .section,
  .contact {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.55rem);
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

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

  .hero-card,
  .fit-card,
  .rules-card,
  .contact {
    border-radius: 30px;
  }

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

  .mock-site {
    padding: 32px 24px;
  }

  .mock-site h2 {
    font-size: 3rem;
  }

  .contact {
    padding: 28px;
  }

  .footer {
    flex-direction: column;
  }
}
