:root {
  --ink: #14262f;
  --ink-soft: #3a535e;
  --paper: #f3f6f4;
  --mist: #d7e4df;
  --lake: #6f9aa0;
  --pine: #1f4d45;
  --cedar: #b56a3a;
  --snow: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
  overflow-x: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, #ffffff 0%, transparent 55%),
    radial-gradient(90% 60% at 85% 20%, rgba(111, 154, 160, 0.35) 0%, transparent 50%),
    radial-gradient(80% 50% at 10% 70%, rgba(31, 77, 69, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #eaf2f0 0%, #d5e3de 42%, #c3d4cf 100%);
  animation: sky-drift 18s var(--ease) infinite alternate;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

@keyframes sky-drift {
  from {
    filter: saturate(1) hue-rotate(0deg);
    transform: scale(1);
  }
  to {
    filter: saturate(1.08) hue-rotate(-6deg);
    transform: scale(1.03);
  }
}

.stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine);
}

.brand {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.06em;
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-name {
  white-space: nowrap;
}

.brand-tld {
  display: inline-block;
  position: relative;
  height: 0.95em;
  width: 2.55em;
  overflow: hidden;
  vertical-align: baseline;
  color: var(--cedar);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  text-align: left;
}

.brand-tld-track {
  display: flex;
  flex-direction: column;
  animation: tld-rotate 4.8s var(--ease) infinite;
}

.brand-tld-item {
  display: flex;
  align-items: center;
  height: 0.95em;
  line-height: 0.95;
}

@keyframes tld-rotate {
  0%,
  38% {
    transform: translateY(0);
  }
  50%,
  88% {
    transform: translateY(-0.95em);
  }
  100% {
    transform: translateY(-1.9em);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lede {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

.lede strong {
  color: var(--ink);
  font-weight: 600;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--pine);
  color: var(--snow);
  box-shadow: 0 10px 28px rgba(31, 77, 69, 0.22);
}

.btn-primary:hover {
  background: #173c36;
}

.btn-secondary {
  background: var(--cedar);
  color: var(--snow);
}

.btn-secondary:hover {
  background: #9a5630;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(20, 38, 47, 0.14);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
}

.price-line {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.offer {
  padding: 0 1.25rem 4.5rem;
}

.offer-inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(20, 38, 47, 0.12);
}

.offer h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 650;
}

.offer-copy {
  margin: 0.65rem 0 1.5rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.offer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 0.85rem;
}

.offer-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.offer-form .full {
  grid-column: 1 / -1;
}

.offer-form input,
.offer-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 38, 47, 0.16);
  border-radius: 0.35rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.offer-form input:focus,
.offer-form textarea:focus {
  outline: none;
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(111, 154, 160, 0.25);
}

.fineprint {
  margin: 1.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.fineprint a {
  color: var(--pine);
}

.seo-faq {
  margin-top: 1.75rem;
  text-align: left;
}

.seo-faq h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 650;
}

.seo-faq details {
  border-top: 1px solid rgba(20, 38, 47, 0.1);
  padding: 0.7rem 0;
}

.seo-faq details:last-child {
  border-bottom: 1px solid rgba(20, 38, 47, 0.1);
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 560;
  color: var(--ink);
}

.seo-faq details p {
  margin: 0.45rem 0 0.15rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.92rem;
}

.seo-faq a {
  color: var(--pine);
}

.animate {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms var(--ease) forwards;
}

.delay-1 {
  animation-delay: 80ms;
}
.delay-2 {
  animation-delay: 180ms;
}
.delay-3 {
  animation-delay: 320ms;
}
.delay-4 {
  animation-delay: 460ms;
}
.delay-5 {
  animation-delay: 600ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .offer-form {
    grid-template-columns: 1fr;
  }

  .cta {
    width: 100%;
    max-width: 22rem;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sky {
    animation: none;
  }

  .brand-tld-track {
    animation: none;
  }

  .brand-tld-item:nth-child(n + 2) {
    display: none;
  }

  .animate {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
