/* Verbanu marketing pages — matches app styling (Inter, zinc, amber) */

:root {
  --vb-bg: #fafafa;
  --vb-bg-dark: #18181b;
  --vb-surface: #ffffff;
  --vb-text: #18181b;
  --vb-text-muted: #71717a;
  --vb-border: #e4e4e7;
  --vb-amber: #f59e0b;
  --vb-amber-hover: #d97706;
  --vb-amber-light: #fffbeb;
  --vb-green: #16a34a;
  --vb-radius: 12px;
  --vb-radius-lg: 16px;
  --vb-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --vb-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --vb-max: 1120px;
  --vb-prose: 720px;
  --vb-font: "Inter", system-ui, -apple-system, sans-serif;
  /* Typography — 18px base for readable body copy */
  --vb-text-xs: 14px;
  --vb-text-sm: 16px;
  --vb-text-base: 18px;
  --vb-text-md: 20px;
  --vb-text-lg: 22px;
  --vb-text-xl: 24px;
  --vb-text-2xl: 28px;
  --vb-text-3xl: 36px;
  --vb-h1: clamp(36px, 5vw, 54px);
  --vb-h2: clamp(28px, 3vw, 36px);
  --vb-lead-max: 54rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.verbanu-template .site-header,
body.verbanu-template .site-footer,
body.verbanu-template header.site-header,
body.verbanu-template footer.site-footer {
  display: none !important;
}

.verbanu-page {
  margin: 0;
  font-family: var(--vb-font);
  font-size: var(--vb-text-base);
  line-height: 1.6;
  color: var(--vb-text);
  background: var(--vb-bg);
  -webkit-font-smoothing: antialiased;
}

.verbanu-page a {
  color: var(--vb-amber-hover);
  text-decoration: none;
}

.verbanu-page a.vb-btn--primary,
.verbanu-page a.vb-btn--primary:hover,
.verbanu-page a.vb-btn--primary:visited,
.verbanu-page a.vb-btn--primary:focus {
  color: #fff;
}

.verbanu-page a.vb-btn--outline-light,
.verbanu-page a.vb-btn--outline-light:hover,
.verbanu-page a.vb-btn--outline-light:visited,
.verbanu-page a.vb-btn--outline-light:focus {
  color: #fff;
}

.verbanu-page a:hover {
  text-decoration: underline;
}

/* Header */
.vb-header {
  position: relative;
  z-index: 100;
  background: var(--vb-surface);
  border-bottom: 1px solid var(--vb-border);
}

.vb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--vb-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.vb-logo {
  font-size: var(--vb-text-lg);
  font-weight: 700;
  color: var(--vb-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.vb-logo:hover {
  text-decoration: none;
  color: var(--vb-amber-hover);
}

.vb-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--vb-border);
  border-radius: 8px;
  background: var(--vb-surface);
  cursor: pointer;
}

.vb-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--vb-text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.vb-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vb-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.vb-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.vb-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vb-nav a {
  font-size: var(--vb-text-sm);
  font-weight: 500;
  color: var(--vb-text-muted);
  text-decoration: none;
}

.vb-nav a:hover {
  color: var(--vb-text);
  text-decoration: none;
}

/* Buttons */
.vb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--vb-font);
  font-size: var(--vb-text-base);
  font-weight: 600;
  line-height: 1.25;
  border-radius: var(--vb-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.vb-btn:hover {
  text-decoration: none;
}

.vb-btn--primary {
  background: var(--vb-amber);
  color: #fff;
}

.vb-btn--primary:hover {
  background: var(--vb-amber-hover);
  color: #fff;
}

.vb-btn--secondary {
  background: var(--vb-surface);
  color: var(--vb-text);
  border: 1px solid var(--vb-border);
}

.vb-btn--secondary:hover {
  background: #f4f4f5;
  color: var(--vb-text);
}

.vb-btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--vb-text-sm);
}

.vb-btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: var(--vb-text-md);
}

.vb-btn--white {
  background: #fff;
  color: var(--vb-text);
}

.vb-btn--white:hover {
  background: #f4f4f5;
  color: var(--vb-text);
}

.vb-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.vb-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Layout */
.vb-container {
  max-width: var(--vb-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vb-container--narrow {
  max-width: var(--vb-prose);
}

.vb-section {
  padding: 4rem 0;
}

.vb-section--hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.vb-section--hero .vb-lead {
  margin-bottom: 2.5rem;
  max-width: var(--vb-lead-max);
}

.vb-section--hero .vb-cta-row {
  margin-bottom: 2.5rem;
}

.vb-section--hero .vb-micro {
  margin-top: 0;
  margin-bottom: 3.5rem;
}

.vb-section--alt {
  background: var(--vb-surface);
  border-top: 1px solid var(--vb-border);
  border-bottom: 1px solid var(--vb-border);
}

/* Typography */
.vb-badge {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: var(--vb-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vb-amber-hover);
}

.vb-h1 {
  margin: 0 0 1rem;
  font-size: var(--vb-h1);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--vb-text);
}

.vb-h2 {
  margin: 0 0 0.75rem;
  font-size: var(--vb-h2);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--vb-text);
}

.vb-lead {
  margin: 0 auto 2rem;
  max-width: var(--vb-lead-max);
  font-size: var(--vb-text-md);
  color: var(--vb-text-muted);
}

.vb-micro {
  margin-top: 0.75rem;
  font-size: var(--vb-text-sm);
  color: var(--vb-text-muted);
}

.vb-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.vb-section-title .vb-lead {
  margin-bottom: 0;
}

/* CTA row */
.vb-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Cards */
.vb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.vb-card {
  background: var(--vb-surface);
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  padding: 1.5rem;
  box-shadow: var(--vb-shadow);
}

.vb-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--vb-amber-light);
  color: var(--vb-amber-hover);
}

.vb-card__icon svg {
  width: 24px;
  height: 24px;
}

.vb-card h3 {
  margin: 0 0 0.5rem;
  font-size: var(--vb-text-md);
  font-weight: 600;
}

.vb-card p {
  margin: 0;
  font-size: var(--vb-text-base);
  color: var(--vb-text-muted);
}

/* Player screenshot */
.vb-player-shot {
  margin: 0 auto;
  max-width: 720px;
}

.vb-player-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--vb-radius-lg);
  box-shadow: var(--vb-shadow-md);
}

/* Comparison */
.vb-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.vb-compare__col {
  background: var(--vb-surface);
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  padding: 1.5rem;
}

.vb-compare__col--highlight {
  border: 2px solid var(--vb-amber);
  box-shadow: var(--vb-shadow-md);
}

.vb-compare__col h3 {
  margin: 0 0 1rem;
  font-size: var(--vb-text-md);
  font-weight: 600;
}

.vb-compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vb-compare__col li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: var(--vb-text-base);
  color: var(--vb-text-muted);
}

.vb-compare__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vb-border);
}

.vb-compare__col--highlight li::before {
  background: var(--vb-amber);
}

.vb-callout {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--vb-amber-light);
  border: 1px solid #fde68a;
  border-radius: var(--vb-radius);
  font-size: var(--vb-text-base);
  color: #78350f;
  text-align: center;
}

/* Steps */
.vb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vb-step {
  text-align: center;
  padding: 1.25rem;
}

.vb-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: var(--vb-text-sm);
  color: var(--vb-amber-hover);
  background: var(--vb-amber-light);
  border-radius: 50%;
}

.vb-step h3 {
  margin: 0 0 0.25rem;
  font-size: var(--vb-text-base);
  font-weight: 600;
}

.vb-step p {
  margin: 0;
  font-size: var(--vb-text-sm);
  color: var(--vb-text-muted);
}

/* Two-column lists */
.vb-two-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4rem;
  margin: 0 auto 2.5rem;
  max-width: 52rem;
}

.vb-list-block {
  text-align: center;
  min-width: 16rem;
}

.vb-list-block h3 {
  margin: 0 0 0.75rem;
  font-size: var(--vb-text-base);
  font-weight: 600;
}

.vb-list-block ul {
  display: inline-block;
  margin: 0;
  padding-left: 1.25rem;
  font-size: var(--vb-text-base);
  color: var(--vb-text-muted);
  text-align: left;
}

.vb-list-block li {
  margin-bottom: 0.375rem;
}

/* CTA band */
.vb-cta-band {
  background: var(--vb-bg-dark);
  color: #fafafa;
  text-align: center;
  padding: 4rem 1.5rem;
}

.vb-cta-band h2 {
  color: #fafafa;
  margin-bottom: 0.75rem;
}

.vb-cta-band p {
  margin: 0 0 1.75rem;
  color: #a1a1aa;
  font-size: var(--vb-text-md);
}

/* Legal prose */
.vb-legal {
  padding: 3rem 0 5rem;
}

.vb-legal h1 {
  margin: 0 0 0.5rem;
  font-size: var(--vb-text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vb-legal .vb-updated {
  margin: 0 0 2rem;
  font-size: var(--vb-text-sm);
  color: var(--vb-text-muted);
}

.vb-legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: var(--vb-text-xl);
  font-weight: 600;
}

.vb-legal p,
.vb-legal li {
  font-size: var(--vb-text-base);
  color: var(--vb-text-muted);
  line-height: 1.7;
}

.vb-legal ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.vb-legal p {
  margin: 0 0 1rem;
}

/* Contact */
.vb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.vb-contact-info h2 {
  margin-bottom: 1rem;
}

.vb-contact-info p {
  color: var(--vb-text-muted);
  font-size: var(--vb-text-base);
  margin-bottom: 1rem;
}

.vb-contact-email {
  display: inline-block;
  font-size: var(--vb-text-md);
  font-weight: 600;
  color: var(--vb-amber-hover);
}

.vb-form {
  background: var(--vb-surface);
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  padding: 1.75rem;
  box-shadow: var(--vb-shadow);
}

.vb-form label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: var(--vb-text-sm);
  font-weight: 500;
}

.vb-form input,
.vb-form select,
.vb-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.625rem 0.75rem;
  font-family: var(--vb-font);
  font-size: var(--vb-text-base);
  border: 1px solid var(--vb-border);
  border-radius: 8px;
  background: var(--vb-bg);
}

.vb-form textarea {
  min-height: 140px;
  resize: vertical;
}

.vb-form input:focus,
.vb-form select:focus,
.vb-form textarea:focus {
  outline: 2px solid var(--vb-amber);
  outline-offset: 0;
  border-color: var(--vb-amber);
}

.vb-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.vb-notice {
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-size: var(--vb-text-base);
  margin-bottom: 1rem;
}

.vb-notice--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.vb-notice--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.vb-quick-links {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vb-border);
  text-align: center;
  font-size: var(--vb-text-sm);
}

.vb-quick-links a {
  margin: 0 0.5rem;
}

/* Footer */
.vb-footer {
  background: var(--vb-surface);
  border-top: 1px solid var(--vb-border);
  padding: 2.5rem 0;
}

.vb-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--vb-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vb-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.vb-footer__links a {
  font-size: var(--vb-text-sm);
  font-weight: 500;
  color: var(--vb-text-muted);
  text-decoration: none;
}

.vb-footer__links a:hover {
  color: var(--vb-text);
  text-decoration: none;
}

.vb-footer__copy {
  font-size: var(--vb-text-sm);
  color: var(--vb-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .vb-nav-toggle {
    display: flex;
  }

  .vb-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.25rem;
    background: var(--vb-surface);
    border-bottom: 1px solid var(--vb-border);
    box-shadow: var(--vb-shadow-md);
  }

  .vb-nav.is-open {
    display: flex;
  }

  .vb-nav a,
  .vb-nav .vb-btn {
    padding: 0.75rem 0;
    text-align: left;
  }

  .vb-compare,
  .vb-two-lists,
  .vb-contact-grid {
    grid-template-columns: 1fr;
  }

  .vb-steps {
    grid-template-columns: 1fr;
  }

  .vb-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .vb-footer__links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vb-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .vb-cta-row .vb-btn {
    width: 100%;
  }
}
