/* Lure landing — shares Amazon Ember + nav/logo with web/flow login */

@font-face {
  font-family: "Amazon Ember";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/AmazonEmber_W_Rg.woff2") format("woff2"),
    url("/assets/AmazonEmber_W_Rg.woff") format("woff");
}

@font-face {
  font-family: "Amazon Ember";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/AmazonEmber_W_Bd.woff2") format("woff2");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f1111;
  --muted: #565959;
  --light: #888c8c;
  --line: #e3e6e6;
  --surface: #ffffff;
  --canvas: #f7fafa;
  --nav: #232f3e;
  --link: #007185;
  --green: #067d62;
  --green-soft: #e8f5f1;
  --yellow: #ffd814;
  --yellow-hover: #f7ca00;
  --yellow-border: #fcd200;
  --radius: 16px;
  --radius-btn: 100px;
  --max: 1080px;
  --shadow-sm: 0 1px 2px rgba(15, 17, 17, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 17, 17, 0.06);
}

html { scroll-behavior: smooth; }

body.lure-page {
  min-height: 100dvh;
  font-family: "Amazon Ember", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: #c7511f; text-decoration: underline; }

/* ── Nav：与登录页 web/flow 一致 ── */
#nav-main.nav-mobile { flex: 0 0 auto; }

#nav-logobar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  background: var(--nav);
  border-bottom: 1px solid var(--nav);
}

#nav-logo { padding: 0 14px; }

.nav-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.nav-logo-img {
  display: block;
  width: 80px;
  height: 28px;
  object-fit: contain;
}

/* ── Amazon 登录同款按钮 ── */
.lure-btn {
  display: block;
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-btn);
  background: var(--yellow);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.lure-btn:hover { background: var(--yellow-hover); }
.lure-btn:active { transform: scale(0.99); }

.lure-btn-inner {
  display: block;
  height: 44px;
  position: relative;
}

.lure-btn-text {
  display: block;
  line-height: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  pointer-events: none;
}

.lure-btn-sm .lure-btn-inner { height: 32px; }
.lure-btn-sm .lure-btn-text { line-height: 32px; font-size: 13px; }

/* ── Hero ── */
.lure-hero {
  padding: 48px 20px 40px;
  background:
    linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
}

.lure-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.lure-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 22px;
  background: var(--green-soft);
  border: 1px solid rgba(6, 125, 98, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.lure-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(6, 125, 98, 0.15);
}

.lure-hero h1 {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.lure-hero h1 .accent { color: #c45500; }

.lure-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.lure-hero-cta { margin: 0 auto; }

.lure-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--light);
}

.lure-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lure-meta svg { width: 14px; height: 14px; color: var(--green); }

/* ── Sections ── */
.lure-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.lure-block {
  padding: 52px 0;
}

.lure-block--soft {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 113, 133, 0.06) 0%, transparent 55%),
    var(--canvas);
}

.lure-head {
  text-align: center;
  margin-bottom: 32px;
}

.lure-head h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.lure-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Flow steps — modern timeline */
.lure-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
}

.lure-flow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  position: relative;
  padding-bottom: 20px;
}

.lure-flow-step:last-child { padding-bottom: 0; }

.lure-flow-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 56px;
}

.lure-flow-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 17, 17, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lure-flow-step:hover .lure-flow-icon {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 17, 17, 0.12);
}

.lure-flow-icon svg {
  width: 24px;
  height: 24px;
}

.lure-flow-icon--signin {
  background: linear-gradient(145deg, #fff7e0 0%, #ffe8a3 100%);
  color: #c45500;
  border: 1px solid rgba(252, 210, 0, 0.5);
}

.lure-flow-icon--orders {
  background: linear-gradient(145deg, #e8f6f8 0%, #c5e8ef 100%);
  color: #007185;
  border: 1px solid rgba(0, 113, 133, 0.15);
}

.lure-flow-icon--check {
  background: linear-gradient(145deg, #e8f5f1 0%, #b8e6d8 100%);
  color: #067d62;
  border: 1px solid rgba(6, 125, 98, 0.2);
}

.lure-flow-dot {
  flex: 1;
  width: 2px;
  min-height: 24px;
  margin-top: 8px;
  background: linear-gradient(180deg, #c5e8ef 0%, #b8e6d8 100%);
  border-radius: 2px;
}

.lure-flow-step:last-child .lure-flow-dot { display: none; }

.lure-flow-card {
  background: var(--surface);
  border: 1px solid rgba(227, 230, 230, 0.9);
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 2px 12px rgba(15, 17, 17, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.lure-flow-step:hover .lure-flow-card {
  border-color: rgba(0, 113, 133, 0.18);
  box-shadow: 0 6px 24px rgba(15, 17, 17, 0.07);
  transform: translateX(2px);
}

.lure-flow-card--highlight {
  background: linear-gradient(135deg, #fff 0%, #f7fcfa 100%);
  border-color: rgba(6, 125, 98, 0.22);
}

.lure-flow-label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 113, 133, 0.08);
  color: #007185;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lure-flow-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}

.lure-flow-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .lure-flow {
    max-width: none;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    padding-top: 8px;
  }

  .lure-flow::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #ffe8a3 0%, #c5e8ef 50%, #b8e6d8 100%);
    border-radius: 2px;
    z-index: 0;
  }

  .lure-flow-step {
    flex: 1;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 18px;
    padding-bottom: 0;
    text-align: center;
  }

  .lure-flow-marker {
    align-items: center;
    min-height: auto;
  }

  .lure-flow-dot { display: none; }

  .lure-flow-card {
    height: 100%;
    text-align: left;
    padding: 22px 20px 20px;
  }

  .lure-flow-step:hover .lure-flow-card {
    transform: translateY(-3px);
  }
}

.lure-help {
  text-align: center;
  margin-top: 28px;
}

.lure-link-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--link);
  font-size: 13px;
  font-weight: 500;
}

.lure-link-btn:hover {
  background: var(--canvas);
  text-decoration: none;
  color: #c7511f;
}

/* Tiers */
.lure-tiers {
  display: grid;
  gap: 14px;
}

@media (min-width: 700px) {
  .lure-tiers { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.lure-tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.lure-tier.is-featured {
  border: 2px solid var(--yellow-border);
  box-shadow: var(--shadow-md);
}

.lure-tier-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--yellow);
  border: 1px solid var(--yellow-border);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.lure-tier-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.lure-tier-refund {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
}

.lure-tier-refund small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.lure-tier-line {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.lure-tier-order {
  font-size: 13px;
  color: var(--muted);
}

.lure-tier-order b { color: var(--ink); }

/* Reviews */
.lure-reviews {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .lure-reviews { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.lure-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.lure-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 0;
}

.lure-user {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.lure-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  object-position: center top;
  background: var(--line);
}

.lure-user h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.lure-user p {
  font-size: 11px;
  color: var(--light);
  line-height: 1.35;
}

.lure-badge-verified {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.lure-badge-verified svg { width: 11px; height: 11px; }

.lure-card-body { padding: 14px 18px 18px; flex: 1; }

.lure-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 12px;
}

.lure-stars svg {
  width: 15px;
  height: 15px;
  color: #de7921;
}

.lure-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.lure-amount strong {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.lure-amount em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

.lure-quote {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 12px;
  border-left: 2px solid #de7921;
}

/* Trust */
.lure-trust {
  padding: 52px 20px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.lure-trust-inner { max-width: 520px; margin: 0 auto; }

.lure-trust h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.lure-trust > .lure-trust-inner > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.lure-trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
}

.lure-trust-icons span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lure-trust-icons svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* Comment box */
.lure-comment-box {
  margin-top: 36px;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.lure-comment-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.lure-comment-fields {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .lure-comment-fields {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.lure-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lure-field--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .lure-field--wide { grid-column: auto; }
}

.lure-field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.lure-field input,
.lure-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #888c8c;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lure-field input:focus,
.lure-field textarea:focus {
  outline: none;
  border-color: #e77600;
  box-shadow: 0 0 0 3px rgba(231, 118, 0, 0.2);
}

.lure-field textarea {
  resize: vertical;
  min-height: 80px;
}

.lure-comment-submit {
  max-width: 180px;
}

.lure-comment-notice {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--green-soft);
  border: 1px solid rgba(6, 125, 98, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
}

.lure-comment-notice.is-hidden { display: none; }

.lure-comment-form.is-hidden { display: none; }

/* Modal */
.lure-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 17, 17, 0.55);
  backdrop-filter: blur(2px);
}

.lure-modal-overlay.is-hidden { display: none; }

.lure-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15, 17, 17, 0.2);
}

.lure-modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--nav);
}

.lure-modal-logo {
  display: block;
  width: 80px;
  height: 28px;
  object-fit: contain;
}

.lure-modal-body {
  padding: 28px 24px 24px;
  text-align: center;
}

.lure-modal-body h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.lure-modal-lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: left;
}

.lure-modal-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.lure-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 12px;
}

.lure-modal-list li:last-child { margin-bottom: 0; }

.lure-modal-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e3f2fd;
  color: #007185;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lure-modal-check svg {
  width: 14px;
  height: 14px;
}

.lure-modal-cta {
  max-width: 100%;
  margin: 0 auto;
}

.lure-arrow {
  display: inline-block;
  margin-left: 2px;
}

.lure-modal-disclaimer {
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--light);
  text-align: left;
}

.lure-modal-disclaimer a {
  color: var(--link);
}

.lure-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.lure-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

body.lure-modal-open { overflow: hidden; }

/* Footer */
.lure-footer {
  background: var(--nav);
  color: #adadad;
  text-align: center;
  padding: 22px 20px;
  font-size: 11px;
}
