:root {
  --bg: #0B1628;
  --surface: #111e35;
  --surface-2: #162440;
  --accent: #00E5FF;
  --accent-dim: rgba(0, 229, 255, 0.12);
  --amber: #F59E0B;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --fg: #e8edf5;
  --fg-muted: #7a8ba8;
  --fg-dim: #4a5a72;
  --border: rgba(255,255,255,0.07);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  background: var(--surface);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  border: 1px solid var(--border);
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  margin-left: auto;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
  background: var(--surface);
}
.nav-link-right {
  margin-left: auto;
}

/* HERO */
.hero {
  padding: 6rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-image {
  padding: 0 2rem 4rem;
}
.hero-image-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-lede em {
  font-style: italic;
  color: var(--fg);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #0B1628;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-primary:hover {
  background: #33eeff;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.2);
  background: var(--surface);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.proof-item {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.proof-sep {
  color: var(--fg-dim);
  font-size: 0.8rem;
}

/* Hero CTA buttons: transparent style overrides pricing plan CTA style */
.hero .cta-secondary {
  background: transparent;
}

/* ROLES */
.roles {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
}
.roles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.roles-header {
  margin-bottom: 4rem;
}
.roles-header .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.roles-header .section-title em {
  font-style: normal;
  color: var(--accent);
}
.roles-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-top: 1rem;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.role-card:hover {
  background: var(--surface-2);
}
.role-card--sales {
  border-top: 2px solid var(--amber);
}
.role-card--support {
  border-top: 2px solid var(--accent);
}
.role-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.role-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.role-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 4rem;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
.features-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.feature-stat {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.feature--stripe .feature-stat {
  font-size: 2rem;
  letter-spacing: -0.02em;
}
.feature-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* COMPARISON TABLE */
.comparison {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.comparison-header {
  margin-bottom: 4rem;
}
.comparison-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-top: 1rem;
}
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 640px;
}
.comparison-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  white-space: nowrap;
}
.comparison-table thead th:first-child {
  border-radius: 4px 0 0 0;
}
.comparison-table thead th:last-child {
  border-radius: 0 4px 0 0;
}
.th-qf {
  color: var(--fg) !important;
  background: var(--surface-2) !important;
  border-bottom: 2px solid var(--accent) !important;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-table tbody td {
  padding: 0.875rem 1.25rem;
  background: var(--surface);
  color: var(--fg-muted);
  vertical-align: middle;
}
.comparison-table tbody tr:hover td {
  background: var(--surface-2);
}
.td-feature {
  font-weight: 600;
  color: var(--fg) !important;
  white-space: nowrap;
}
.td-check {
  text-align: center;
}
.td-qf-check {
  background: rgba(0,229,255,0.05) !important;
}
.check-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.td-x {
  text-align: center;
}
.x-icon {
  width: 16px;
  height: 16px;
  color: var(--fg-dim);
}
.td-partial {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.8rem;
}
.td-warn {
  text-align: center;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
}
.comparison-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 700px;
}
.note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.note-dot--amber {
  background: var(--amber);
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 1.25rem;
  max-width: 760px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.closing-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.closing .cta-secondary {
  background: transparent;
}

/* FOOTER */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* SOCIAL PROOF */
.social-proof {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.social-proof-header {
  margin-bottom: 3.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 4rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
}
.testimonial--featured {
  background: var(--surface-2);
  border-color: rgba(0,229,255,0.15);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #F59E0B;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.proof-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.proof-stat {
  text-align: center;
  flex: 1;
}
.proof-stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-stat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-stats { flex-direction: column; gap: 1.5rem; }
  .proof-stat-sep { width: 60px; height: 1px; }
}
/* PRICING */
.pricing {
  padding: 6rem 2rem;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.plan {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-featured {
  background: var(--surface-2);
  position: relative;
}
.plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.plan-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.plan-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  margin-bottom: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.feature-item.dim {
  opacity: 0.4;
}
.feature-item.dim svg {
  color: var(--fg-dim);
}
.feature-item strong {
  color: var(--fg);
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}
.cta-primary {
  background: var(--accent);
  color: #0B1628;
}
.cta-primary:hover {
  background: #33eeff;
}
.cta-secondary {
  background: var(--surface-2);
  color: var(--fg);
  border: 1px solid var(--border);
}
.cta-secondary:hover {
  background: var(--surface);
  border-color: rgba(255,255,255,0.15);
}

/* FAQ */
.pricing-faq {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}
.faq-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 2.5rem;
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.faq-item {}
.faq-q {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.faq-a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .roles { padding: 3rem 1.5rem; }
  .roles-grid { grid-template-columns: 1fr; }
  .features { padding: 4rem 1.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .footer { padding: 1.5rem; }
  .pricing { padding: 4rem 1.5rem; }
  .pricing-header { margin-bottom: 3rem; }
  .pricing-grid { border: none; background: none; gap: 1rem; }
  .plan { border: 1px solid var(--border); }
}