/* pacifier.pro — landing page only. Shared tokens/fonts come from style.css. */

body.home { font-size: 17px; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 22px;
}

.wrap.narrow { max-width: 760px; }

/* nav --------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 22px;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 15.5px;
}

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

.nav-links a:hover { color: var(--teal); }

.lang button {
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--ink-3);
  font: inherit;
  font-family: var(--mono);
  font-size: 12.5px;
  cursor: pointer;
}

.lang button.active {
  background: var(--tint);
  color: var(--teal-deep);
  font-weight: 600;
}

/* hero -------------------------------------------------------------------- */

.hero { padding: clamp(34px, 6vw, 76px) 0 clamp(30px, 5vw, 64px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 6.2vw, 62px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.hero h1 em {
  display: block;
  color: var(--teal-deep);
  font-style: italic;
}

.lead {
  margin: 0 0 26px;
  max-width: 46ch;
  color: var(--ink-2);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

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

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn.ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.microcopy {
  margin: 16px 0 0;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12.5px;
}

.hero-shot img,
.shot-pair img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 2px 8px rgba(18, 30, 28, 0.07), 0 30px 70px rgba(18, 30, 28, 0.16);
}

.hero-shot { max-width: 320px; margin-inline: auto; }

/* bands ------------------------------------------------------------------- */

.band { padding: clamp(38px, 6vw, 78px) 0; }

.band.alt { background: color-mix(in srgb, var(--tint) 38%, var(--paper)); }

.band h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.band p {
  margin: 0 0 14px;
  max-width: 62ch;
  color: var(--ink-2);
}

.band .small {
  color: var(--ink-2);
  font-size: 14.5px;
}

.band a { color: var(--teal); }

/* steps ------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 26px 0 40px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.steps .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--teal-deep);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.steps p { margin: 0; font-size: 15.5px; }

/* screenshot pair --------------------------------------------------------- */

.shot-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 4vw, 48px);
  max-width: 720px;
  margin-inline: auto;
}

.shot-pair figure { margin: 0; }

.shot-pair figcaption {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 15px;
  text-align: center;
}

/* ticks ------------------------------------------------------------------- */

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

.ticks li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  max-width: 62ch;
  color: var(--ink-2);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 8px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}

.ticks.plain li::before {
  top: 11px;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: var(--clay);
  transform: none;
}

.ticks strong { color: var(--ink); }

/* pricing ----------------------------------------------------------------- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 26px 0 18px;
}

.plan {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.plan.best { border: 2px solid var(--teal); }

.plan .tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--teal-deep);
  font-size: 12.5px;
  font-weight: 600;
}

.plan h3 { margin: 0 0 4px; font-size: 19px; }

.plan .amount {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan .per {
  margin: 0 0 10px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12.5px;
}

.plan p:last-child { margin: 0; font-size: 15.5px; }

/* footer ------------------------------------------------------------------ */

.home-footer {
  margin-top: 0;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.home-footer .fmark {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 700;
}

.home-footer .fmark .logo {
  width: 22px;
  height: 22px;
  background: no-repeat center/contain url("/assets/mark-teal.png");
}

.home-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-shot { max-width: 260px; order: -1; }
  .nav-links { display: none; }
}

@media (prefers-color-scheme: dark) {
  .home-footer .fmark .logo { background-image: url("/assets/mark-teal-light.png"); }
  .plan, .steps li { background: var(--surface); }
}
