/* ============== LANDING V2 ============== */

.section { padding: 96px 0; }
.section-tint { background: oklch(from var(--bg-2) l c h / .55); }
.section-head { max-width: 720px; }

/* ----- HERO ----- */
.hero { padding: 64px 0 80px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* hero brand lockup */
.hero-brand {
  display: flex; align-items: center; gap: 24px;
  margin-top: 18px;
}
.hero-brand-mark {
  width: clamp(200px, 22vw, 300px); height: clamp(200px, 22vw, 300px);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  /* Recolor violet asset to electric neon cyan:
     grayscale first to kill any chromatic noise, then sepia+hue-rotate+saturate
     paints a clean cyan with shading preserved (no rainbow fringes). */
  filter:
    grayscale(100%) brightness(0.95) sepia(100%) saturate(6) hue-rotate(155deg) brightness(1.05)
    drop-shadow(0 0 14px var(--brand-glow))
    drop-shadow(0 10px 28px var(--brand-glow));
  flex: 0 0 auto;
}
.hero-brand-text { min-width: 0; }
.hero-brand-name {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0;
}
.hero-brand-tag {
  margin-top: 8px;
  font-size: 17px;
  color: var(--text-2);
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .hero-brand { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-brand-mark { width: 144px; height: 144px; flex: 0 0 144px; }
  .hero-brand-name { font-size: 48px; }
}

.grad-text {
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* preview card */
.preview-card {
  position: relative; padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, oklch(from var(--surface) l c h / .9), oklch(from var(--surface) l c h / .7));
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-3);
  z-index: 1;
}
.preview-card-glow {
  position: absolute; inset: -40px; z-index: -1;
  background: radial-gradient(60% 50% at 30% 0%, var(--brand-glow), transparent 70%);
  filter: blur(20px);
}
.preview-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.preview-avatar img {
  width: 28px; height: 28px; object-fit: contain;
  filter: grayscale(100%) brightness(0.95) sepia(100%) saturate(6) hue-rotate(155deg) brightness(1.05);
}

.progress {
  height: 6px; background: var(--bg-2);
  border-radius: var(--r-pill); overflow: hidden;
}
.progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: var(--r-pill);
}

.preview-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.preview-action {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  text-align: left;
  transition: background .15s, border-color .15s;
}
.preview-action:hover { background: var(--surface); border-color: var(--border); }
.preview-action-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-xs);
  background: var(--brand-bg);
  color: var(--brand-3);
  display: flex; align-items: center; justify-content: center;
}

.float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: oklch(from var(--surface) l c h / .85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  box-shadow: var(--sh-2);
  z-index: 2;
}
.float-chip.top-right { top: -16px; right: -16px; }
.float-chip.bottom-left { bottom: -16px; left: -8px; }

.hero-visual { position: relative; }

/* trust strip */
.trust-strip {
  margin-top: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
}
.trust-strip-item { text-align: center; flex: 1; }
.trust-strip-sep {
  width: 1px; height: 36px; background: var(--border-2);
}
@media (max-width: 720px) {
  .trust-strip { flex-direction: column; gap: 16px; padding: 20px; }
  .trust-strip-sep { display: none; }
}

/* ----- STEPS ----- */
.steps {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  gap: 24px; align-items: center;
  margin-top: 48px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  min-height: 180px;
}
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-bg); color: var(--brand-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13.5px;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step-arrow { color: var(--text-4); display: flex; justify-content: center; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { transform: rotate(90deg); margin: 4px 0; }
}

.platforms {
  margin-top: 48px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.platform-list { display: flex; gap: 8px; flex-wrap: wrap; }
.platform {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  font-size: 13.5px; color: var(--text-2);
}
.platform svg { color: var(--text-3); }

/* ----- FEATURES ----- */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--border); transform: translateY(-2px); }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-brand  { background: var(--brand-bg);  color: var(--brand); }
.feature-icon-accent { background: var(--accent-bg); color: var(--accent); }
.feature-icon-ok     { background: var(--ok-bg);     color: var(--ok); }
.feature-icon-warn   { background: var(--warn-bg);   color: var(--warn); }
.feature-card p { margin-top: 8px; color: var(--text-2); font-size: 14.5px; }

/* ----- PRICING ----- */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
}
.price-card-featured {
  background: linear-gradient(180deg, oklch(from var(--brand-bg) l c h / .4), var(--surface));
  border-color: oklch(from var(--brand) l c h / .35);
  box-shadow: 0 0 0 1px oklch(from var(--brand) l c h / .2), var(--sh-3);
}
.price-card-tag {
  position: absolute; top: -12px; left: 28px;
  background: var(--brand); color: oklch(0.16 0.04 195);
  font-size: 11.5px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-pill);
}
.price-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.price-amount { display: flex; align-items: baseline; gap: 8px; }
.price-num { font-size: 40px; font-weight: 600; letter-spacing: -0.025em; }
.price-card-featured .price-num { color: var(--brand-3); }

.price-features {
  list-style: none; margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
  display: flex; flex-direction: column; gap: 10px;
}
.price-features li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--text-2);
}
.price-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--brand);
  font-weight: 700;
}

.payment-methods {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}

/* ----- TRUST ----- */
.trust-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: start;
}
@media (max-width: 960px) { .trust-grid { grid-template-columns: 1fr; gap: 40px; } }

.trust-list {
  list-style: none; margin-top: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.trust-list li { display: flex; gap: 14px; }
.trust-list-mark {
  flex: 0 0 24px; width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  margin-top: 2px;
}

.reviews { display: flex; flex-direction: column; gap: 12px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 22px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-weight: 600;
  font-size: 14px;
}
.review-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* ----- FAQ ----- */
.faq { margin-top: 48px; }
.faq-item {
  border-top: 1px solid var(--border-2);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-2); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; cursor: pointer; list-style: none;
  font-weight: 500; font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  font-size: 22px; color: var(--text-3);
  transition: transform .25s, color .25s;
}
.faq-item[open] .faq-chev { transform: rotate(45deg); color: var(--brand); }
.faq-body {
  padding: 0 4px 22px;
  color: var(--text-2);
  font-size: 15px; line-height: 1.65;
  max-width: 640px;
}

/* ----- FINAL CTA ----- */
.final-cta { padding: 64px 0 96px; }
.cta-card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 0%, oklch(from var(--brand-bg) l c h / .65), transparent 70%),
    var(--surface);
  border: 1px solid oklch(from var(--brand) l c h / .25);
}
.cta-rabbit {
  width: 80px; height: 80px;
  margin: 0 auto;
  object-fit: contain;
  filter:
    grayscale(100%) brightness(0.95) sepia(100%) saturate(6) hue-rotate(155deg) brightness(1.05)
    drop-shadow(0 8px 18px var(--brand-glow));
}

/* ----- FOOTER ----- */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border-2);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-head {
  font-weight: 500; font-size: 13px;
  color: var(--text); margin-bottom: 6px;
}
.footer-col a {
  font-size: 13.5px; color: var(--text-3);
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border-2);
  flex-wrap: wrap; gap: 16px;
}

/* ============================================================
   Mobile Landing Optimization Pack v1
   Mobile-first polish for ≤720px / ≤480px. Desktop untouched.
============================================================ */
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .hero { padding: 32px 0 48px; }
  .hero-grid { gap: 40px; }

  .hero-copy .lead { margin-top: 16px !important; font-size: 15.5px; }
  #hero-cta-public,
  #hero-cta-auth { margin-top: 22px !important; gap: 10px !important; }
  #hero-cta-public .btn,
  #hero-cta-auth .btn { flex: 1 1 auto; min-width: 0; }

  .hero-copy > .row.gap-6 { gap: 12px !important; margin-top: 20px !important; }

  .preview-card { padding: 18px; border-radius: var(--r-lg); }
  .preview-actions { grid-template-columns: 1fr; }
  .preview-action { padding: 12px; }

  .section-head { max-width: 100%; }
  .section-head .lead { margin-top: 10px !important; }
  .section-head h2 { margin-top: 8px !important; }

  .steps { margin-top: 28px; gap: 12px; }
  .step { min-height: 0; padding: 20px 18px; }
  .step-arrow { display: none; }

  .platforms { margin-top: 28px; gap: 12px; }
  .platform { padding: 8px 12px; font-size: 13px; }

  .features { margin-top: 28px; gap: 12px; }
  .feature-card { padding: 20px; }
  .feature-icon { width: 40px; height: 40px; margin-bottom: 14px; }

  .pricing { margin-top: 28px; gap: 14px; }
  .price-card { padding: 22px; border-radius: var(--r-lg); }
  .price-card-featured { margin-top: 14px; }
  .price-num { font-size: 32px; }
  .price-features { margin-top: 18px; padding-top: 18px; }

  .payment-methods { margin-top: 24px; gap: 12px; }

  .faq { margin-top: 28px; }
  .faq-item summary { font-size: 15.5px; padding: 16px 4px; min-height: 48px; }
  .faq-chev { font-size: 20px; }
  .faq-body { font-size: 14.5px; padding-bottom: 18px; }

  .final-cta { padding: 40px 0 56px; }
  .cta-rabbit { width: 64px; height: 64px; }

  .footer { padding: 40px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { margin-top: 28px; padding-top: 18px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .price-num { font-size: 30px; }
  .hero-brand-name { font-size: 40px; }

  /* hero benefit chips stack as full-width rows */
  .hero-copy > .row.gap-6 > .row { width: 100%; }
}
