/* Tokabout shared styles */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #FFFFFF;
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #FF2D55; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: #111111; margin: 0 0 16px; }
h1 { font-size: 48px; font-weight: 700; line-height: 1.15; }
h2 { font-size: 32px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 20px; font-weight: 600; }
p { margin: 0 0 16px; color: #111111; }
.muted { color: #666666; }
.small-label {
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
section.alt { background: #F5F5F5; }
section.dark { background: #111111; color: #FFFFFF; }
section.accent { background: #FF2D55; color: #FFFFFF; }
section.accent h1, section.accent h2, section.accent p { color: #FFFFFF; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { color: #111111; font-weight: 600; font-size: 18px; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #111111; font-size: 15px; text-decoration: none; }
.nav-links a:hover { color: #FF2D55; }
.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; font-size: 22px; color: #111111; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.btn-primary { background: #FF2D55; color: #FFFFFF; border-color: #FF2D55; }
.btn-primary:hover { background: #E0203F; border-color: #E0203F; color: #FFFFFF; text-decoration: none; }
.btn-secondary { background: transparent; color: #111111; border: 1px solid #111111; }
.btn-secondary:hover { background: #111111; color: #FFFFFF; text-decoration: none; }
.btn-on-accent { background: #FFFFFF; color: #FF2D55; border-color: #FFFFFF; }
.btn-on-accent:hover { background: #F5F5F5; color: #FF2D55; text-decoration: none; }
.btn-block { display: block; width: 100%; text-align: center; }
.text-link { color: #FF2D55; font-weight: 500; }

/* Layout helpers */
.hero { padding: 96px 0 80px; }
.hero h1 { max-width: 880px; margin-bottom: 24px; }
.hero p.lead { font-size: 19px; max-width: 760px; color: #111111; margin-bottom: 32px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.trust-bar { padding: 24px 0; text-align: center; color: #666666; font-size: 14px; }

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px;
}
.card h3 { margin-bottom: 12px; }
.card.featured { border: 2px solid #FF2D55; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: #FF2D55;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

/* Pricing */
.pricing-toggle {
  display: inline-flex;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 40px;
  gap: 4px;
}
.pricing-toggle button {
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  color: #666666;
  font-family: inherit;
}
.pricing-toggle button.active { background: #111111; color: #FFFFFF; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: #FFFFFF; border: 1px solid #E5E5E5; border-radius: 8px; padding: 32px; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid #FF2D55; }
.price-card h3 { font-size: 20px; margin-bottom: 8px; }
.price-amount { font-size: 40px; font-weight: 700; color: #111111; margin: 12px 0 4px; }
.price-amount small { font-size: 14px; font-weight: 500; color: #666666; }
.price-card ul { list-style: none; padding: 0; margin: 24px 0; flex-grow: 1; }
.price-card ul li { padding: 8px 0; color: #111111; font-size: 14px; }
.price-card ul li:before { content: "✓"; color: #FF2D55; font-weight: 600; margin-right: 8px; }
.annual-tag { display: inline-block; font-size: 11px; background: #FF2D55; color: #FFFFFF; padding: 2px 8px; border-radius: 4px; font-weight: 600; margin-left: 8px; vertical-align: middle; }

/* FAQ */
.faq-item { border-bottom: 1px solid #E5E5E5; padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid #E5E5E5; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 0; font-size: 18px; font-weight: 600; color: #111111;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-q .faq-icon { color: #FF2D55; font-size: 22px; margin-left: 16px; }
.faq-a { padding: 16px 0 0; color: #111111; line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); transition: transform 0.18s ease; }

/* Footer */
.footer { background: #111111; color: #FFFFFF; padding: 64px 0 32px; }
.footer .container { color: #FFFFFF; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.footer h4 { color: #FFFFFF; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 16px; }
.footer a { color: #FFFFFF; opacity: 0.8; font-size: 14px; display: block; margin-bottom: 8px; text-decoration: none; }
.footer a:hover { opacity: 1; color: #FFFFFF; text-decoration: underline; }
.footer .brand-line { color: #FFFFFF; opacity: 0.7; font-size: 14px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid #2A2A2A; padding-top: 24px; font-size: 13px; color: #FFFFFF; opacity: 0.7; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #FFFFFF; border-radius: 8px; max-width: 440px; width: 100%; padding: 40px; position: relative;
}
.modal h2 { font-size: 24px; margin-bottom: 8px; }
.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: transparent; border: none; font-size: 24px; color: #666666; cursor: pointer; line-height: 1;
}
.form-input {
  display: block; width: 100%; border: 1px solid #E5E5E5; border-radius: 8px;
  padding: 14px 16px; font-size: 15px; font-family: inherit; margin-bottom: 16px;
  color: #111111; background: #FFFFFF;
}
.form-input:focus { outline: none; border-color: #FF2D55; }
.plan-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.plan-option {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid #E5E5E5; border-radius: 8px; padding: 12px 14px; cursor: pointer;
  font-size: 14px; gap: 12px;
}
.plan-option.selected { border-color: #FF2D55; background: #FFF5F7; }
.plan-option input { margin: 0; accent-color: #FF2D55; }
.plan-option .plan-meta { display: flex; flex-direction: column; }
.plan-option .plan-name { font-weight: 600; color: #111111; }
.plan-option .plan-desc { font-size: 12px; color: #666666; }
.plan-option .plan-price { color: #111111; font-weight: 600; }

.billing-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  background: #F5F5F5; padding: 8px; border-radius: 999px; justify-content: center;
}
.billing-row label { font-size: 13px; color: #666666; padding: 6px 14px; border-radius: 999px; cursor: pointer; font-weight: 500; }
.billing-row input { display: none; }
.billing-row label.active { background: #111111; color: #FFFFFF; }

.notice { font-size: 13px; color: #666666; }

/* Tables */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #E5E5E5; font-size: 14px; }
.compare-table th { color: #111111; font-weight: 600; }
.compare-table td.center { text-align: center; }
.compare-table .check { color: #FF2D55; font-weight: 600; }
.compare-table .x { color: #999999; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-num { color: #FF2D55; font-weight: 700; font-size: 14px; letter-spacing: 0.05em; margin-bottom: 8px; }

/* Onboarding-specific */
.ob-container { max-width: 640px; margin: 0 auto; padding: 64px 24px; }
.ob-niche-input { margin-bottom: 12px; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  section { padding: 56px 0; }
  .cols-3, .cols-2, .pricing-cards, .steps { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; align-items: stretch; gap: 4px; background: #FFFFFF; padding: 16px 24px; border-top: 1px solid #E5E5E5; position: absolute; left: 0; right: 0; top: 100%; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 0; }
  .nav-toggle { display: inline-block; }
  .nav-inner { position: relative; }
  .modal { padding: 28px 20px; }
  .hero { padding: 56px 0; }
  .hero p.lead { font-size: 17px; }
}
