/* ==========================================================================
   UNDETECTABLE UGC — SALES PAGE
   Section-specific styles for index.html. Requires base.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */

.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding-block: 1.6rem;
}

.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mark {
  font-family: var(--display);
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mark span { color: var(--lime); }

.mark__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: clamp(7.5rem, 17vw, 11rem) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

/* Soft lime bloom behind the headline */
.hero::before {
  content: "";
  position: absolute;
  top: -18%;
  left: 50%;
  width: min(1100px, 135vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--lime-glow) 0%, transparent 62%);
  pointer-events: none;
}

/* Faint measurement grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 78%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.25rem);
  justify-items: center;
  text-align: center;
}

.hero h1 { max-width: 16ch; }

/* The framed word — face-detection box around "AI" */
.scan {
  position: relative;
  display: inline-block;
  padding: 0.02em 0.22em 0.06em;
  color: var(--lime);
}

.scan__frame {
  position: absolute;
  inset: -0.06em -0.02em;
  pointer-events: none;
}

.scan__frame i {
  position: absolute;
  width: 0.28em;
  height: 0.28em;
  border: 2px solid var(--lime);
  animation: lock 0.7s var(--ease) both;
}

.scan__frame i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; animation-delay: 0.5s; }
.scan__frame i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; animation-delay: 0.58s; }
.scan__frame i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; animation-delay: 0.66s; }
.scan__frame i:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; animation-delay: 0.74s; }

@keyframes lock {
  from { opacity: 0; transform: scale(2.1); }
  to   { opacity: 1; transform: scale(1); }
}

.hero__cta { display: grid; justify-items: center; }

/* Staggered load-in */
.hero__inner > * {
  animation: rise 0.9s var(--ease) both;
}

.hero__inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.16s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.28s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.40s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.52s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* Trust strip under the fold */
.strip {
  border-block: 1px solid var(--ink-line);
  padding-block: 1.1rem;
  overflow: hidden;
  background: var(--ink-raised);
}

.strip__track {
  display: flex;
  gap: 3.5rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  white-space: nowrap;
  width: max-content;
  animation: slide 34s linear infinite;
}

.strip:hover .strip__track { animation-play-state: paused; }

.strip__track b {
  color: var(--lime-deep);
  font-weight: 500;
  margin-right: 0.5em;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   SECTION HEADS
   -------------------------------------------------------------------------- */

.head { margin-bottom: clamp(2.5rem, 5.5vw, 4rem); }
.head .tag { margin-bottom: 1.5rem; }
.head h2 { margin-bottom: 1.5rem; }
.head--center { text-align: center; }
.head--center .tag { justify-content: center; }
.head--center h2 { margin-inline: auto; }
.head--center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   THE TELLS — four red-flagged evidence cards
   -------------------------------------------------------------------------- */

.tells {
  display: grid;
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 700px) {
  .tells { grid-template-columns: 1fr 1fr; }
}

.tell {
  background: var(--ink-card);
  padding: clamp(1.75rem, 3.6vw, 2.5rem);
  position: relative;
  transition: background 0.35s var(--ease);
}

.tell:hover { background: #17161A; }

.tell__no {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--alert);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.tell__no::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--alert-glow), transparent);
}

.tell h3 {
  font-family: var(--display);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.tell p { color: var(--paper-dim); font-weight: 300; font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   COST — the price of hiring humans
   -------------------------------------------------------------------------- */

.cost {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .cost { grid-template-columns: 1fr 0.85fr; }
}

.ledger {
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  background: var(--ink-raised);
  overflow: hidden;
}

.ledger__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.15rem clamp(1.25rem, 3vw, 1.75rem);
  border-bottom: 1px solid var(--ink-line);
  font-size: 0.9375rem;
}

.ledger__row:last-child { border-bottom: 0; }

.ledger__row span:first-child { color: var(--paper-dim); font-weight: 300; }

.ledger__row span:last-child {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--alert);
  white-space: nowrap;
  font-weight: 500;
}

.ledger__row--sum {
  background: var(--alert-glow);
  border-top: 1px solid rgba(255, 77, 61, 0.28);
}

.ledger__row--sum span:first-child {
  color: var(--paper);
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.0625rem;
}

.ledger__row--sum span:last-child { font-size: 1.0625rem; }

/* --------------------------------------------------------------------------
   THE SHIFT — pull quote
   -------------------------------------------------------------------------- */

.shift {
  background: var(--ink-raised);
  border-block: 1px solid var(--ink-line);
}

.shift__quote {
  font-family: var(--display);
  font-size: clamp(1.625rem, 4.4vw, 3rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  text-wrap: balance;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   THE 7 STEPS
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  /* Step 07 spans the full width — it's the payoff */
  .steps > .step:last-child { grid-column: 1 / -1; }
}

.step {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  padding: clamp(1.6rem, 3.2vw, 2.25rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.step:hover {
  border-color: rgba(212, 255, 63, 0.4);
  transform: translateY(-3px);
}

/* Ghosted numeral in the corner */
.step__no {
  position: absolute;
  top: -0.24em;
  right: 0.04em;
  font-family: var(--display);
  font-size: 7.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-line-2);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.35s var(--ease);
}

.step:hover .step__no { -webkit-text-stroke-color: rgba(212, 255, 63, 0.3); }

.step__label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--lime-deep);
  margin-bottom: 1.2rem;
  display: block;
}

.step h3 {
  font-family: var(--display);
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 0.85rem;
  max-width: 18ch;
  position: relative;
  z-index: 1;
}

.step p {
  color: var(--paper-dim);
  font-size: 0.9375rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.step__kills {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--ink-line);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-mute);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.step__kills b {
  color: var(--lime);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   FIT — for / not for
   -------------------------------------------------------------------------- */

.fit {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .fit { grid-template-columns: 1fr 1fr; }
}

.fit__col {
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  padding: clamp(1.6rem, 3.2vw, 2.25rem);
  background: var(--ink-card);
}

.fit__col--yes { border-color: rgba(212, 255, 63, 0.28); }

.fit__col h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.fit__col--yes h3 { color: var(--lime); }
.fit__col--no  h3 { color: var(--paper-mute); }

.fit ul { list-style: none; display: grid; gap: 0.9rem; }

.fit li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--paper-dim);
}

.fit li::before {
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.7;
  flex: none;
}

.fit__col--yes li::before { content: "+"; color: var(--lime); }
.fit__col--no  li::before { content: "×"; color: var(--paper-mute); }

/* --------------------------------------------------------------------------
   BONUSES
   -------------------------------------------------------------------------- */

.bonuses {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .bonuses { grid-template-columns: repeat(3, 1fr); }
}

.bonus { display: flex; flex-direction: column; }

.bonus__no {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--lime-deep);
  margin-bottom: 1.25rem;
}

.bonus h3 {
  font-family: var(--display);
  font-size: 1.375rem;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.bonus p {
  color: var(--paper-dim);
  font-size: 0.9375rem;
  font-weight: 300;
  flex: 1;
}

.bonus__value {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--paper-mute);
}

.bonus__value s { opacity: 0.7; }

/* --------------------------------------------------------------------------
   PROOF
   -------------------------------------------------------------------------- */

.proof {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .proof { grid-template-columns: repeat(3, 1fr); }
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote blockquote {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--paper);
  flex: 1;
}

.quote blockquote::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--lime);
  margin-bottom: 1.25rem;
}

.quote figcaption {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--paper-mute);
  line-height: 1.5;
}

.quote figcaption b {
  display: block;
  color: var(--paper);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

/* --------------------------------------------------------------------------
   OFFER
   -------------------------------------------------------------------------- */

.offer {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212, 255, 63, 0.09), transparent 65%),
    var(--ink-raised);
  border-block: 1px solid var(--ink-line);
}

.offer__box {
  max-width: 620px;
  margin-inline: auto;
  background: var(--ink-card);
  border: 1px solid rgba(212, 255, 63, 0.3);
  border-radius: 6px;
  padding: clamp(1.75rem, 4.5vw, 3rem);
  box-shadow: 0 30px 90px -40px rgba(0, 0, 0, 0.9);
}

.offer__list {
  list-style: none;
  display: grid;
  gap: 0.05rem;
  margin-bottom: 1.75rem;
}

.offer__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.25rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--ink-line);
  font-size: 0.9375rem;
  font-weight: 300;
  text-align: left;
}

.offer__list li span:last-child {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--paper-mute);
  white-space: nowrap;
}

.offer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 2rem;
}

.offer__total s { color: var(--alert); }

.offer__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.offer__price .amount {
  font-family: var(--display);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  line-height: 0.85;
  color: var(--lime);
}

.offer__price .once {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  text-align: left;
  line-height: 1.4;
}

.offer__save {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 2rem;
}

/* Countdown — only rendered when OFFER_DEADLINE is set */
.timer {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.timer__unit {
  min-width: 62px;
  padding: 0.6rem 0.4rem;
  border: 1px solid var(--ink-line-2);
  border-radius: 3px;
  background: var(--ink);
}

.timer__unit b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--lime);
}

.timer__unit i {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* --------------------------------------------------------------------------
   GUARANTEE
   -------------------------------------------------------------------------- */

.guarantee {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  padding: clamp(1.75rem, 4.5vw, 3rem);
  background: var(--ink-card);
}

@media (min-width: 760px) {
  .guarantee { grid-template-columns: auto 1fr; }
}

.seal {
  width: 128px;
  height: 128px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  flex: none;
  margin-inline: auto;
  background: var(--lime-glow);
}

.seal b {
  display: block;
  font-family: var(--display);
  font-size: 2.75rem;
  line-height: 0.85;
  color: var(--lime);
}

.seal i {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--ink-line); }

.faq details {
  border-bottom: 1px solid var(--ink-line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding-block: 1.5rem;
  padding-right: 3rem;
  position: relative;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  font-weight: 400;
  transition: color 0.25s var(--ease);
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--lime); }

.faq summary::after {
  content: "";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--paper-mute);
  border-bottom: 2px solid var(--paper-mute);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease), border-color 0.25s var(--ease);
}

.faq details[open] summary { color: var(--lime); }

.faq details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
  border-color: var(--lime);
}

.faq__body {
  padding-bottom: 1.75rem;
  padding-right: clamp(0rem, 6vw, 4rem);
  color: var(--paper-dim);
  font-weight: 300;
  font-size: 0.9375rem;
  max-width: var(--max-text);
}

.faq__body p + p { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   FINAL CTA
   -------------------------------------------------------------------------- */

.final {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 90% at 50% 100%, rgba(212, 255, 63, 0.1), transparent 62%),
    var(--ink);
}

.final h2 { margin-bottom: 1.75rem; max-width: 15ch; margin-inline: auto; }

/* --------------------------------------------------------------------------
   STICKY MOBILE CTA
   -------------------------------------------------------------------------- */

.dock {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  padding: 0.75rem var(--gut) calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 8, 10, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--ink-line);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dock.is-up { transform: none; }

.dock__price {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-mute);
  line-height: 1.35;
  flex: none;
}

.dock__price b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--lime);
  line-height: 1;
}

.dock .btn {
  flex: 1;
  padding: 0.95em 1rem;
  font-size: 0.9375rem;
}

@media (min-width: 900px) {
  .dock { display: none; }
}
