:root {
  --ink: #14201c;
  --ink-soft: #2a3b34;
  --paper: #e8f0ea;
  --mist: #c5d8cc;
  --sea: #1f5c4c;
  --sea-deep: #0f3d32;
  --coral: #e07a5f;
  --coral-deep: #c45d42;
  --sand: #f3ebe2;
  --line: rgba(20, 32, 28, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --page: 1120px;
  --gutter: 1.5rem;
  --prose: 38rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background: var(--sand);
  position: relative;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 85% 10%, rgba(224, 122, 95, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 60% at 0% 80%, rgba(31, 92, 76, 0.28), transparent 50%),
    linear-gradient(165deg, #f7f1e8 0%, #dfece4 42%, #c9ddd2 100%);
}

a {
  color: var(--sea-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  max-width: var(--page);
  margin: 0 auto;
  text-align: left;
  animation: fade-in 0.7s ease both;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
}

.top-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
}

.top-nav a:hover {
  color: var(--coral-deep);
}

.status {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sea);
}

.mail {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-soft);
}

.mail:hover {
  color: var(--coral-deep);
}

.hero {
  min-height: calc(100vh - 4rem);
  max-width: var(--page);
  margin: 0 auto;
  padding: 1rem var(--gutter) 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem 2rem;
  align-items: center;
  text-align: left;
}

.hero-copy {
  justify-self: start;
  width: 100%;
  max-width: var(--prose);
  animation: rise-in 0.85s ease both;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--sea-deep);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.lead {
  margin: 0 0 1.6rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: var(--sea);
  color: #f7fbf8;
}

.btn.primary:hover {
  background: var(--sea-deep);
}

.btn.ghost {
  background: transparent;
  border-color: var(--sea);
  color: var(--sea-deep);
}

.btn.ghost:hover {
  background: rgba(31, 92, 76, 0.08);
}

.price {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hero-visual {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: float-in 1s ease 0.12s both;
}

.hero-visual img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  margin: 0;
  filter: drop-shadow(0 28px 40px rgba(15, 61, 50, 0.18));
  animation: bob 7s ease-in-out 1.2s infinite;
}

.section {
  max-width: var(--page);
  margin: 0 auto;
  padding: 3.5rem var(--gutter);
  border-top: 1px solid var(--line);
  text-align: left;
}

.section > * {
  max-width: var(--prose);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sea-deep);
}

.section-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

.body-copy {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
}

.callout {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--sea);
  background: rgba(255, 255, 255, 0.45);
}

.callout p {
  margin: 0;
  color: var(--ink-soft);
  max-width: none;
}

.callout strong {
  color: var(--ink);
  font-weight: 600;
}

.subpage {
  padding-top: 2rem;
}

.subpage h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sea-deep);
}

.subpage h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sea-deep);
}

.subpage .body-copy {
  max-width: var(--prose);
}

.faq-list {
  margin: 0;
  padding: 0;
  max-width: var(--prose);
}

.faq-list dt {
  margin: 1.5rem 0 0.4rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.35rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 2.6rem;
  color: var(--ink-soft);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 0.4rem;
  background: rgba(31, 92, 76, 0.12);
  color: var(--sea-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

.steps strong,
.promise-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-weight: 600;
}

.promise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.promise-list li {
  color: var(--ink-soft);
}

.wait-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.wait-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(20, 32, 28, 0.22);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--ink);
}

.wait-form input[type="email"]:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
  border-color: transparent;
}

.fine {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.credibility {
  margin: 1.25rem 0 0;
  max-width: var(--prose);
}

.buy-soon {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(20, 32, 28, 0.45);
}

.need {
  padding-bottom: 4rem;
}

footer {
  max-width: var(--page);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: left;
}

.footer-brand p {
  margin: 0 0 0.35rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  max-width: none;
}

.footer-nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-nav a:hover {
  color: var(--coral-deep);
}

footer p {
  margin: 0;
}

.thanks-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
}

.thanks {
  max-width: 28rem;
  text-align: left;
}

.thanks .brand {
  font-size: 2.2rem;
}

.thanks h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top,
  .hero-copy,
  .hero-visual,
  .hero-visual img {
    animation: none;
  }
}

@media (max-width: 860px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0.5rem;
  }

  .hero-copy {
    order: 1;
    max-width: none;
  }

  .hero-visual {
    order: 0;
    min-height: 200px;
    justify-content: flex-start;
  }

  .hero-visual img {
    width: min(100%, 280px);
  }

  .brand {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }
}
