:root {
  --background: oklch(0.98 0.005 80);
  --foreground: oklch(0.22 0.02 60);
  --secondary: oklch(0.94 0.012 80);
  --muted-foreground: oklch(0.53 0.04 70);
  --border: oklch(0.88 0.02 80);
  --emerald: #10b981;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Fira Sans", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
}

.container {
  width: 100%;
  max-width: 28rem; /* max-w-md */
  padding: 1.5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
.logo-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }

.wordmark {
  letter-spacing: 0.5em;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-left: 0.5em;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 180px;
}
.divider span { flex: 1; height: 1px; background: var(--border); }
.divider i {
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--foreground);
  display: block;
}

.tagline {
  font-family: "DM Serif Display", ui-serif, Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted-foreground);
  margin: 0.75rem 0;
}

/* Hero */
.hero-card {
  width: 100%;
  background: var(--foreground);
  color: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}
.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0.625rem;
}
.hero-value {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.hero-logo {
  width: 3rem; height: 3rem;
  background: var(--background);
  border-radius: 0.375rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); }
.hero-hr { height: 1px; background: rgba(255,255,255,0.15); margin: 1rem 0; }
.hero-sub { font-size: 12px; opacity: 0.7; line-height: 1.6; }

.my-5 { margin: 1.25rem 0; }

/* Steps */
.steps {
  width: 100%;
  background: var(--secondary);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  list-style: none;
  text-align: left;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.3125rem 0;
}
.steps .num {
  width: 1.75rem; height: 1.75rem;
  border-radius: 9999px;
  background: var(--foreground);
  color: var(--background);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.steps p {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.005em;
  padding-top: 3px;
}
.muted { color: var(--muted-foreground); }
.normal { font-weight: 400; }

/* Trust */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--muted-foreground);
  text-transform: uppercase;
}
.trust-item { display: inline-flex; align-items: center; gap: 0.375rem; }
.trust-item svg { width: 12px; height: 12px; }
.trust-item.rating { font-size: 13px; text-transform: none; }

/* Viewers */
.viewers {
  margin-top: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  border-radius: 9999px;
  padding: 0.375rem 0.875rem 0.375rem 0.75rem;
  font-size: 12px;
}
.viewers svg { width: 14px; height: 14px; }
.bold { font-weight: 600; }
.tabular { font-variant-numeric: tabular-nums; }
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: var(--emerald);
  animation: pulse 1.6s ease-in-out infinite;
  display: inline-block;
}
.pulse-inline { margin-left: 0.125rem; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* CTA */
.cta {
  width: 100%;
  margin-top: 1rem;
  background: var(--foreground);
  color: var(--background);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 17px 0;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.cta:hover { background: rgba(34,25,20,0.9); }
.cta:active { transform: scale(0.99); }
.cta svg { width: 16px; height: 16px; }
.cta .cta-arrow { transition: transform 0.3s; }
.cta:hover .cta-arrow { transform: translateX(4px); }

.terms {
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

/* FAQ */
.faq { width: 100%; margin-top: 3rem; text-align: left; }
.faq h2 {
  font-family: "DM Serif Display", ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item {
  background: var(--secondary);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.faq-q span {
  font-size: 13.5px;
  font-weight: 500;
  padding-right: 0.75rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.faq-q svg {
  width: 16px; height: 16px;
  color: var(--muted-foreground);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  margin-top: -0.125rem;
  font-size: 12.5px;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

.footer-note {
  font-size: 10px;
  color: rgba(115, 100, 85, 0.7);
  margin-top: 3rem;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
  letter-spacing: 0.02em;
}

/* Toast */
.toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 50;
  transition: opacity 0.4s, transform 0.4s;
  opacity: 1;
}
.toast:not(.is-visible) {
  opacity: 0;
  transform: translateX(-50%) translateY(-0.5rem);
}
.toast-card {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--background);
  border: 1px solid var(--border);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  width: min(80vw, 270px);
}
.toast-avatar {
  position: relative;
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  background: var(--foreground);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 13px;
}
.toast-check {
  width: 14px; height: 14px;
  color: var(--emerald);
  position: absolute;
  bottom: -2px; right: -2px;
  background: var(--background);
  border-radius: 9999px;
}
.toast-body { flex: 1; text-align: center; }
.toast-line { font-size: 12px; line-height: 1.2; }
.toast-meta { font-size: 10px; color: var(--muted-foreground); line-height: 1.2; margin-top: 2px; }
