﻿/* Base Resets & Global Styles */


::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: rgba(196,181,253,.4); border-radius: 4px; }

body {
  margin: 0;
  background-color: #0C0814;
}

a {
  color: #C4B5FD;
  text-decoration: none;
}

::selection {
  background: #7C3AED;
  color: #ffffff;
}

.page-wrapper {
  background-color: #0C0814;
  color: #F4F1FA;
  font-family: 'Segoe UI', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.variant-label {
  padding: 22px 30px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B6087;
}

.gradient-text {
  background: linear-gradient(90deg, #6D28F5, #C13FD6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero Section */
.hero-section {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}

.radial-glow {
  position: absolute;
  top: -200px;
  left: -140px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(154, 96, 255, 0.15), transparent 64%);
}

.top-nav {
  position: absolute;
  top: 26px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.nav-link-signin {
  font-size: 13px;
  font-weight: 600;
  color: #8E86A6;
}

.nav-link-getstarted {
  font-size: 13px;
  font-weight: 650;
  color: #DCD5EC;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 17px;
  border-radius: 9px;
}

.hero-content {
  position: relative;
}

.hero-title {
  font-size: clamp(44px, 9vw, 150px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-wrap: balance;
  max-width: 14ch;
  margin: 0;
}

.hero-description {
  margin: 26px 0 0;
  max-width: 36ch;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  color: #C6BFD8;
  text-wrap: pretty;
}

.cta-group {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 26px;
  flex-wrap: wrap;
}

.gradient-link {
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 650;
  line-height: 1.5;
  background: linear-gradient(90deg, #8B5CF6, #C13FD6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 2px solid rgba(139, 92, 246, 0.5);
  padding-bottom: 3px;
}

.secondary-link {
  font-size: 15px;
  font-weight: 600;
  color: #7E7695;
}

.tech-note {
  margin: 34px 0 0;
  font-size: 13.5px;
  color: #5F586F;
}

/* Common Section Layouts */
.content-section {
  padding: 88px 30px 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dark-bg {
  background: #09060F;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.header-title-wrapper {
  max-width: 22ch;
}

.header-title-wrapper.compact {
  max-width: 20ch;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.036em;
  font-weight: 700;
  text-wrap: balance;
  margin: 0;
}

.section-description {
  margin: 0;
  max-width: 40ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: #8E86A6;
  text-wrap: pretty;
}

.footer-note {
  margin: 26px 0 0;
  font-size: 13.5px;
  color: #5F586F;
}

/* Feature & Comparison Grids */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.card {
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.active-card {
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(124, 58, 237, 0.07);
}

.preview-card {
  border: 1px dashed rgba(255, 255, 255, 0.14);
  opacity: 0.72;
}

.muted-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0.72;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8B7BC0;
}

.step-label.muted {
  color: #5F586F;
}

.step-label.highlight {
  color: #8B7BC0;
}

.badge-group {
  display: flex;
  gap: 6px;
}

.badge {
  font-size: 11px;
  font-weight: 650;
  padding: 6px 12px;
  border-radius: 7px;
}

.primary-badge {
  color: #ffffff;
  background: linear-gradient(100deg, #6732f5, #8648ff);
}

.secondary-badge {
  color: #6B6087;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.card-question {
  font-size: 19px;
  line-height: 1.45;
  color: #F2EFFA;
  font-weight: 600;
}

.card-question.muted {
  color: #8E86A6;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.option-item {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: #A79FBE;
}

.button-group {
  display: flex;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.btn {
  font-size: 12.5px;
  font-weight: 650;
  padding: 9px 16px;
  border-radius: 9px;
  cursor: pointer;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(100deg, #6732f5, #8648ff);
}

.secondary-btn {
  color: #B5ADC8;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5F586F;
  font-size: 20px;
}

.card-description {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5F586F;
}

.card-description.highlight-text {
  color: #A79FBE;
}

/* Inbox / Lead Component */
.inbox-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  max-width: 820px;
}

.inbox-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.inbox-title {
  font-size: 15.5px;
  font-weight: 650;
  color: #F2EFFA;
}

.inbox-time {
  font-size: 12px;
  color: #5F586F;
}

.inbox-details {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  font-size: 15px;
  line-height: 1.55;
}

.detail-label {
  color: #5F586F;
}

.detail-value {
  color: #C6BFD8;
}

.detail-value.link-style {
  color: #C4B5FD;
}

.transcript-wrapper {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.transcript-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5F586F;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.transcript-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transcript-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.55;
}

.speaker-agent {
  color: #5F586F;
}

.message-agent {
  color: #A79FBE;
}

.speaker-user {
  color: #8B7BC0;
}

.message-user {
  color: #E4E0EC;
}

/* CTA Section Styles */
.cta-section {
  padding-top: 104px;
  padding-bottom: 112px;
}

.cta-section .section-title {
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.cta-footer-row {
  margin-top: 44px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.cta-statement {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #E4E0EC;
}

/* Variant B Styles */
.variant-b-section {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}

.simple-header {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.brand-title {
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(90deg, #6D28F5, #C13FD6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.simple-signin {
  font-size: 13px;
  font-weight: 600;
  color: #7E7695;
}

.simple-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 30px;
}

.simple-hero-title {
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 24ch;
  text-wrap: balance;
  margin: 0;
}

.text-muted {
  color: #5F586F;
}

.simple-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 44px 30px 34px;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-brand-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-contact .brand-title {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.contact-links a {
  color: #C6BFD8;
}

.dot {
  color: #3A3348;
}

.footer-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav-actions .nav-link-signin {
  font-size: 14px;
}

.footer-nav-actions .nav-link-getstarted {
  font-size: 14px;
  padding: 10px 18px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #4C465C;
}

/* Media Queries */
@media (max-width: 760px) {
  .om-contrast-grid {
    grid-template-columns: 1fr !important;
  }
  
  .om-contrast-arrow {
    display: none !important;
  }
}