@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0A0B0E;
  --bg-secondary: #111317;
  --bg-card: rgba(22, 24, 30, 0.7);
  --accent-gold: #C5A880; /* Elegant Champagne Gold / Brushed Bronze */
  --accent-gold-hover: #B59870;
  --border-color: rgba(197, 168, 128, 0.15);
  --border-glow: rgba(197, 168, 128, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: #9EA1B0;
  --text-muted: #5D606E;
  --success: #2ECC71;
  --error: #E74C3C;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', sans-serif;
  --radius-lg: 16px;
  --radius-md: 8px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Header & Nav */
header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 14, 0.85);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-monogram {
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 1.1rem;
}

.logo-text {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.badge-platform {
  border: 1px solid var(--border-color);
  background: rgba(197, 168, 128, 0.05);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

/* Hero Section with Grid Layout */
.hero-section {
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-content-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content-centered h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Hero Metrics block */
.hero-trust-metrics {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.metric-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* Hero Widget Panel (Interactive Pre-screen) */
.hero-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-widget h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.widget-intro {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.widget-group {
  margin-bottom: 1.5rem;
}

.widget-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.widget-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
}

.widget-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--border-glow);
}

.widget-result {
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.15);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.result-status {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--success);
  margin-bottom: 0.25rem;
}

.result-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Sections */
section {
  padding: 7rem 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-header-left {
  max-width: 800px;
  margin-bottom: 5rem;
}

.mini-label {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header-left h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header-left p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Roadmap Grid Layout (11-Point Verification) */
.roadmap-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.roadmap-column {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  transition: var(--transition);
}

.roadmap-column:hover {
  border-color: var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.roadmap-phase-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.phase-num {
  font-size: 0.8rem;
  color: var(--accent-gold);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roadmap-phase-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roadmap-item {
  display: flex;
  gap: 1.25rem;
}

.item-icon {
  width: 20px;
  height: 20px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--accent-gold);
  font-size: 0.7rem;
  line-height: 18px;
  text-align: center;
  font-weight: bold;
  flex-shrink: 0;
}

.item-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.item-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 300;
}

/* Pipeline Step Architecture */
.pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.pipeline-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.pipeline-step:hover {
  border-color: var(--border-color);
}

.step-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.step-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.pipeline-connector {
  font-size: 1.5rem;
  color: var(--border-color);
  font-weight: 300;
}

/* Pricing Table-Row Layout */
.pricing-table-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 3rem 4rem;
  transition: var(--transition);
}

.pricing-row:hover {
  border-color: var(--border-color);
}

.pricing-row.highlight {
  border: 1px solid var(--border-color);
  background: radial-gradient(circle at top, rgba(30, 32, 40, 0.9) 0%, rgba(17, 19, 23, 0.7) 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.row-step {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.pricing-row-meta h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-row-meta p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

.pricing-row-details ul {
  list-style: none;
}

.pricing-row-details li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-row-details li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: bold;
}

.pricing-row-value {
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 3rem;
}

.value-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.25rem;
}

.value-placeholder {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 9, 15, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 168, 128, 0.05);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 2.5rem 2rem;
}

/* Step Progress */
.step-progress-wrapper {
  margin-bottom: 2rem;
}

.step-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  background: var(--accent-gold);
  width: 20%; /* 1 of 5 steps initially */
  transition: var(--transition);
}

.step-count-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form Styling */
.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--border-glow);
  background: rgba(197, 168, 128, 0.01);
}

.radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-option {
  flex: 1;
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: block;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.radio-option input[type="radio"]:checked + .radio-label {
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.08);
  color: var(--accent-gold);
}

.radio-option input[type="radio"]:focus + .radio-label {
  box-shadow: 0 0 10px var(--border-glow);
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

/* Step Views */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Alert Notification */
.form-alert {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.2);
  color: #ff7675;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}

/* Success View */
.success-view {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--success);
  font-size: 2rem;
  line-height: 58px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.success-text {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.95rem;
}

/* Disclaimer block */
.disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.disclaimer-box h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.disclaimer-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Footer Section */
footer {
  background-color: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.compliance-disclaimer {
  max-width: 900px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-trust-metrics {
    justify-content: center;
  }
  .roadmap-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pipeline-flow {
    flex-direction: column;
    gap: 1rem;
  }
  .pipeline-connector {
    transform: rotate(90deg);
  }
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem;
  }
  .pricing-row-value {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 1.5rem;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  section {
    padding: 5rem 0;
  }
}
