/* Landing page — matches theme.css tokens */
.home {
  overflow-x: hidden;
}

.home-hero {
  padding: 48px 0 56px;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.home-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-weak);
  border: 1px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 16px;
}

.home-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 14px;
}
.home-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 22px;
  font-weight: 600;
}

.home-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 18px;
}
.home-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted2);
}
.home-trust svg {
  flex-shrink: 0;
  color: var(--success);
}

.home-cards-lbl {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}
.home-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.home-pill {
  font-size: 11px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.home-pill--visa {
  color: #1a1f71;
}
.home-pill--mc {
  color: #eb001b;
  border-color: rgba(235, 0, 27, 0.2);
}
.home-pill--rupay {
  color: #097939;
}
.home-pill--amex {
  color: #006fcf;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.home-hero-actions .btn {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 14px;
}
.home-hero-actions .btn-primary {
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.home-welcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 750;
  color: var(--muted);
  margin-bottom: 18px;
}
.home-welcome strong {
  color: var(--primary);
}

/* Mock checkout card */
.home-mock {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.home-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 0;
}
.home-mock-top span {
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
}
.home-mock-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  color: var(--success);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.home-mock-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin: 14px 20px 0;
}
.home-mock-tab {
  padding: 10px 4px 12px;
  margin-right: 16px;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted2);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.home-mock-tab--active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.home-mock-body {
  padding: 18px 20px 4px;
}
.home-mock-body .label {
  margin-bottom: 6px;
}
.home-mock-body .input {
  margin-bottom: 12px;
}
.home-mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 400px) {
  .home-mock-row {
    grid-template-columns: 1fr;
  }
}
.home-mock-divider {
  height: 1px;
  background: var(--border);
  margin: 6px -20px 14px;
}
.home-mock-prefix {
  position: relative;
}
.home-mock-prefix .input {
  padding-left: 34px;
}
.home-currency {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 900;
  color: var(--muted);
  pointer-events: none;
}
.home-mock-actions {
  padding: 0 20px 18px;
}
.home-mock-actions .btn {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  font-size: 14px;
}
.home-mock-actions .btn.btn-secondary-mute {
  background: #f1f5f9;
  border-color: var(--border);
  color: var(--muted);
}
.home-mock-actions .btn.btn-secondary-mute:hover {
  background: #e8eef6;
  color: var(--text);
}

.home-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), transparent);
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
}
.home-notice a {
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
}
.home-notice a:hover {
  text-decoration: underline;
}

.home-mock-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted2);
}
.home-mock-foot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* Sections */
.home-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel);
  padding: 56px 0;
}
.home-band-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.home-section-kicker {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 10px;
}
.home-section-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.home-section-sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 40px;
  line-height: 1.55;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
}
.home-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border-radius: 2px;
}
@media (max-width: 720px) {
  .home-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .home-steps::before {
    display: none;
  }
}
.home-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.home-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.2);
  background: var(--panel);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
  font-family: var(--mono);
  color: var(--primary);
}
.home-step h3 {
  font-size: 14px;
  font-weight: 950;
}
.home-step p {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.55;
  max-width: 200px;
  font-weight: 650;
}

.home-stats {
  padding: 56px 0 32px;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .home-stats-grid {
    grid-template-columns: 1fr;
  }
}
.home-stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.home-stat-val {
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.03em;
  font-family: var(--mono);
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.home-stat-lbl {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.home-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-bottom: 8px;
}
@media (max-width: 720px) {
  .home-features {
    grid-template-columns: 1fr;
  }
}
.home-feat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.home-feat:hover {
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}
.home-feat .iconbox {
  margin-bottom: 12px;
}
.home-feat h3 {
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 6px;
}
.home-feat p {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.6;
  font-weight: 650;
}

.home-cta {
  border-top: 1px solid var(--border);
  padding: 64px 0 8px;
  text-align: center;
}
.home-cta-inner {
  max-width: 520px;
  margin: 0 auto;
}
.home-cta h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.home-cta-lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 650;
}
.home-cta .btn {
  height: 46px;
  padding: 0 26px;
  font-size: 14px;
  border-radius: 14px;
}
.home-cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 700;
}
.home-cta-note a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}
.home-cta-note a:hover {
  text-decoration: underline;
}

/* Phone */
@media (max-width: 640px) {
  .home-hero {
    padding: 28px 0 36px;
  }
  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .home-mock-top,
  .home-mock-body,
  .home-mock-actions {
    padding-left: 14px;
    padding-right: 14px;
  }
  .home-band {
    padding: 40px 0;
  }
  .home-stats {
    padding: 40px 0 24px;
  }
}
