/* Orion Theme - Enhanced with Animations and Visual Effects */
:root {
  --bg: #070b16;
  --bg-soft: #0b1224;
  --panel: #0d162d;
  --panel-2: #101b36;
  --line: #253455;
  --text: #eef3ff;
  --muted: #aebada;
  --primary: #3b82f6;
  --primary-2: #7c3aed;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --space-1: 8px;
  --space-2: 14px;
  --space-3: 20px;
  --space-4: 30px;
  --space-5: 44px;
  --h1: clamp(2rem, 5vw, 3.4rem);
  --h2: clamp(1.35rem, 2.5vw, 1.95rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 450px at 8% -8%, #1a2b58 0%, transparent 62%),
    radial-gradient(900px 420px at 92% -18%, #2b1e54 0%, transparent 60%),
    var(--bg);
  line-height: 1.62;
}

.wrap { width: min(1200px, 92vw); margin: auto; }

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: var(--space-2);
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(7,11,22,.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46,70,111,.55);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav.nav-hidden {
  transform: translateY(-110%);
  opacity: 0.98;
}

.nav img { height: 44px; display:block; }

.links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.links > .btn {
  min-height: 44px;
  padding: 11px 16px;
}

.links a {
  color: #cfe0ff;
  text-decoration: none;
  padding: 7px 9px;
  border-radius: 10px;
  transition: all 0.18s ease;
}

.links a.active {
  background: #122041;
  border: 1px solid #315597;
  color: #eaf1ff;
}

.links a:hover {
  background: #0f1934;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== BUTTONS WITH RIPPLE EFFECT ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.35);
}

.btn.p {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff;
}

.btn.p:hover {
  box-shadow: 0 8px 30px rgba(124,58,237,0.45);
}

.btn.g {
  border: 1px solid #415686;
  color: #e7efff;
  background: transparent;
}

.btn.g:hover {
  background: rgba(65,86,134,0.2);
  border-color: #5a73a8;
}

/* ===== CARDS WITH HOVER ANIMATIONS ===== */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.28);
  border-color: #3a5fa8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: var(--h1); line-height: 1.06; margin: .5rem 0 1rem; letter-spacing: -0.02em; }
h2 { font-size: var(--h2); margin: 0 0 var(--space-3); letter-spacing: -0.01em; }
h3 { margin: 0 0 10px; letter-spacing: -0.01em; }
p { margin: 0 0 12px; }
.muted { color: var(--muted); }

section { padding: var(--space-4) 0; position: relative; }
section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(65,86,134,.45), transparent);
}

.legal {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.legal a { color: #bcd1ff; text-decoration: none; transition: color 0.2s ease; }
.legal a:hover { color: #fff; }

footer {
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
  color: #8ca0c9;
  margin-top: 20px;
}

.ctaCenter { text-align: center; }

/* ===== FADE IN ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE MENU ===== */
.menuToggle {
  display: none;
  background: transparent;
  border: 1px solid #415686;
  color: #e7efff;
  border-radius: 8px;
  padding: 7px 9px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menuIcon {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.menuIcon::before,
.menuIcon::after,
.menuIcon span {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #e7efff;
  border-radius: 2px;
  transition: .2s ease;
}

.menuIcon::before { top: 0; }
.menuIcon span { top: 5px; }
.menuIcon::after { bottom: 0; }

.menuToggle.open .menuIcon::before { transform: translateY(5px) rotate(45deg); }
.menuToggle.open .menuIcon span { opacity: 0; }
.menuToggle.open .menuIcon::after { transform: translateY(-5px) rotate(-45deg); }

.menuToggle span { display: block; line-height: 1; }

/* ===== PRODUCT MOCKUP STYLES - SIMPLIFIED CALM PREMIUM ===== */
.productMockup {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(145deg, #0e1933, #091122);
  border: 1px solid #3a5fa8;
  border-radius: 22px;
  position: relative;
  overflow: visible;
  box-shadow: 0 18px 46px rgba(8,14,30,.42);
}

.mockupPanel {
  background: rgba(16, 28, 57, 0.95);
  border: 1px solid #2e4c85;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.mockupPanel.center {
  background: linear-gradient(160deg, rgba(20, 41, 83, 0.98), rgba(13, 22, 45, 0.98));
  border-color: #4a73c0;
  position: relative;
}

.mockupPanel h4 {
  font-size: 0.85rem;
  color: #8fb4ff;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockupInput {
  background: rgba(10, 18, 39, 0.8);
  border: 1px solid #2e4c85;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #a9bbdf;
}

.mockupInput strong {
  color: #dce9ff;
  display: block;
  margin-bottom: 4px;
}

.orchestrationNode {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #122041, #1a3055);
  border: 1px solid #315597;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #d6e7ff;
}

.orchestrationNode.active {
  background: linear-gradient(135deg, #1a3055, #244070);
  border-color: #4a73c0;
  box-shadow: 0 0 15px rgba(74, 115, 192, 0.3);
}

.orchestrationNode i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

.flowLine {
  height: 2px;
  background: linear-gradient(90deg, #2e4c85, #4a73c0, #2e4c85);
  margin: 8px 0;
  border-radius: 1px;
}

.floatingChip {
  position: absolute;
  padding: 6px 12px;
  background: rgba(16, 31, 66, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid #355da5;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #dbe8ff;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.floatingChip img {
  width: 14px;
  height: 14px;
  filter: invert(1) brightness(1.2);
}

.floatingChip.slack { top: -15px; left: 10%; }
.floatingChip.teams { top: 10%; right: -20px; }
.floatingChip.telegram { bottom: 30%; right: -25px; }
.floatingChip.crm { bottom: -10px; right: 20%; }
.floatingChip.trello { bottom: 20%; left: -20px; }
.floatingChip.email { top: 25%; left: -25px; }

.supportBadge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: linear-gradient(90deg, #059669, #10b981);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 20;
}

.supportBadge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ===== DELIVERABLE CARDS ===== */
.deliverableCard {
  background: linear-gradient(145deg, #0d1a34, #0b1428);
  border: 1px solid #2f4e87;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.deliverableCard:hover {
  transform: translateY(-4px);
  border-color: #4a73c0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.deliverableHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.deliverableIcon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #122041, #1a3055);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.deliverableTitle {
  font-weight: 600;
  color: #e7efff;
  font-size: 1rem;
}

.deliverableStatus {
  font-size: 0.72rem;
  background: linear-gradient(135deg, #173767, #1e4580);
  border: 1px solid #3d6cb6;
  color: #cfe1ff;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: auto;
}

.deliverableMeta {
  font-size: 0.8rem;
  color: #8fb4ff;
  margin-bottom: 14px;
}

.deliverablePreview {
  background: rgba(10, 18, 39, 0.6);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.85rem;
  color: #a9bbdf;
  flex-grow: 1;
}

.previewLine {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.previewLine:last-child {
  margin-bottom: 0;
}

.previewLine.dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a73c0;
  flex-shrink: 0;
}

.previewSubject {
  font-weight: 600;
  color: #dce9ff;
  margin-bottom: 8px;
}

.previewText {
  color: #9db4de;
  font-style: italic;
}

.chartThumb {
  height: 40px;
  background: linear-gradient(90deg, #1a3055 0%, #244070 50%, #1a3055 100%);
  border-radius: 6px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.chartThumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(59, 130, 246, 0.3), transparent);
  clip-path: polygon(0% 80%, 20% 60%, 40% 70%, 60% 40%, 80% 50%, 100% 20%, 100% 100%, 0% 100%);
}

.stagePills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.stagePill {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: #152a52;
  border: 1px solid #345b9f;
  color: #cfe0ff;
}

.stagePill.active {
  background: linear-gradient(135deg, #1a3055, #244070);
  border-color: #4a73c0;
}

/* ===== PROOF STRIP - PREMIUM METRIC CARDS ===== */
.proofStrip {
  background: linear-gradient(145deg, #0e1831, #0b1226);
  border: 1px solid #2f4f89;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.proofStrip h3 {
  font-size: 1.25rem;
  color: #e7efff;
  margin-bottom: 8px;
  font-weight: 600;
}

.proofStrip .subtext {
  font-size: 0.95rem;
  color: #8fb4ff;
  margin-bottom: 32px;
}

.proofStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proofStat {
  background: linear-gradient(145deg, #0f1a36, #0d1428);
  border: 1px solid #2e4c85;
  border-radius: 16px;
  padding: 28px 20px;
  transition: all 0.3s ease;
}

.proofStat:hover {
  transform: translateY(-4px);
  border-color: #4a73c0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.proofStat .number {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #8cc1ff 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 12px;
  line-height: 1.1;
}

.proofStat .label {
  font-size: 0.9rem;
  color: #aebada;
  line-height: 1.5;
}

/* ===== TRUST BAND - CLEAN TEXT-FOCUSED CARDS ===== */
.trustBand {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trustCard {
  background: linear-gradient(145deg, #0d1a34, #0b1428);
  border: 1px solid #2f4e87;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.trustCard:hover {
  transform: translateY(-4px);
  border-color: #4a73c0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.trustCard .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a3055, #244070);
  border: 1px solid #3d6cb6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.trustCard .icon svg {
  width: 22px;
  height: 22px;
  color: #8cc1ff;
}

.trustCard h4 {
  font-size: 0.95rem;
  color: #e7efff;
  margin: 0 0 8px;
  font-weight: 600;
}

.trustCard p {
  font-size: 0.82rem;
  color: #9db4de;
  margin: 0;
  line-height: 1.5;
}

/* ===== PRICING REASSURANCE BLOCK ===== */
.pricingReassurance {
  background: linear-gradient(145deg, #0e1831, #0b1226);
  border: 1px solid #2f4f89;
  border-radius: 20px;
  padding: 40px;
  margin-top: 30px;
}

.pricingReassurance .billingFlow {
  text-align: center;
  margin-bottom: 32px;
}

.pricingReassurance .billingFlow h3 {
  font-size: 1.4rem;
  color: #e7efff;
  margin-bottom: 8px;
  font-weight: 600;
}

.pricingReassurance .billingFlow p {
  font-size: 1.1rem;
  color: #8fb4ff;
  margin: 0;
}

.pricingReassurance .billingFlow .priceHighlight {
  background: linear-gradient(135deg, #ffffff 0%, #8cc1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.pricingSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pricingStep {
  background: linear-gradient(145deg, #0f1a36, #0d1428);
  border: 1px solid #2e4c85;
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.pricingStep:hover {
  transform: translateY(-3px);
  border-color: #4a73c0;
}

.pricingStep .stepNum {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3055, #244070);
  border: 1px solid #3d6cb6;
  color: #8cc1ff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.pricingStep h4 {
  font-size: 0.95rem;
  color: #e7efff;
  margin: 0 0 6px;
  font-weight: 600;
}

.pricingStep p {
  font-size: 0.85rem;
  color: #9db4de;
  margin: 0;
  line-height: 1.5;
}

.decisionHelper {
  background: linear-gradient(145deg, #0f1a36, #0d1428);
  border: 1px solid #2e4c85;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.decisionHelper p {
  font-size: 0.95rem;
  color: #aebada;
  margin: 0;
  text-align: center;
}

.decisionHelper strong {
  color: #e7efff;
}

.ctaClarify {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ctaClarify .btn {
  min-width: 200px;
  padding: 12px 24px;
}

/* ===== VALUE CARDS - WHY TEAMS CHOOSE ===== */
.valueCard {
  background: linear-gradient(145deg, #0d1a34, #0b1428);
  border: 1px solid #2f4e87;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.valueCard:hover {
  transform: translateY(-4px);
  border-color: #4a73c0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.valueCard h3 {
  font-size: 1.1rem;
  color: #e7efff;
  margin-bottom: 12px;
  font-weight: 600;
}

.valueCard .primaryText {
  font-size: 0.95rem;
  color: #aebada;
  margin-bottom: 12px;
  line-height: 1.6;
}

.valueCard .secondaryText {
  font-size: 0.85rem;
  color: #8fb4ff;
  font-style: italic;
  margin: 0;
}

/* ===== INDUSTRY CARDS - PROBLEM/SOLUTION/OUTCOME ===== */
.industryCard {
  background: linear-gradient(145deg, #0d1a34, #0b1428);
  border: 1px solid #2f4e87;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.industryCard:hover {
  transform: translateY(-4px);
  border-color: #4a73c0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.industryCard h3 {
  font-size: 1.05rem;
  color: #e7efff;
  margin-bottom: 16px;
  font-weight: 600;
}

.industryCard .problem,
.industryCard .solution,
.industryCard .outcome {
  margin-bottom: 12px;
}

.industryCard .problem:last-child,
.industryCard .solution:last-child,
.industryCard .outcome:last-child {
  margin-bottom: 0;
}

.industryCard .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
}

.industryCard .problem .label {
  color: #f87171;
}

.industryCard .solution .label {
  color: #60a5fa;
}

.industryCard .outcome .label {
  color: #34d399;
}

.industryCard .text {
  font-size: 0.88rem;
  color: #aebada;
  line-height: 1.5;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .wrap { padding-top: 72px; }
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .nav {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 4vw;
    right: 4vw;
    z-index: 80;
    background: rgba(7,11,22,.94);
    border-bottom: 1px solid rgba(46,70,111,.7);
    border-radius: 0 0 10px 10px;
  }
  section { padding: 12px 0; }
  section + section::before { opacity: .5; }
  .card { padding: 12px; box-shadow: 0 4px 14px rgba(0,0,0,.2); }

  .menuToggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .links {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    background: #0b1328;
    border: 1px solid #2e466f;
    border-radius: 12px;
    padding: 10px;
    z-index: 90;
    box-shadow: 0 10px 26px rgba(0,0,0,.35);
  }
  .links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .links a { padding: 10px 12px; }
  .links > .btn { width: 100%; justify-content: center; }
  .ctaCenter .btn { width: 100%; max-width: 420px; min-height: 48px; }

  /* Mobile product mockup */
  .productMockup {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .floatingChip {
    display: none;
  }

  .supportBadge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  /* Mobile deliverables */
  .deliverableCard {
    padding: 16px;
  }

  /* Mobile proof strip */
  .proofStats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proofStat .number {
    font-size: 1.8rem;
  }

  /* Mobile trust band */
  .trustBand {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trustCard {
    padding: 18px;
  }

  .trustCard .icon {
    width: 36px;
    height: 36px;
  }

  .trustCard .icon svg {
    width: 18px;
    height: 18px;
  }

  /* Mobile pricing steps */
  .pricingSteps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricingReassurance {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .trustBand {
    grid-template-columns: 1fr;
  }

  .pricingSteps {
    grid-template-columns: 1fr;
  }

  .ctaClarify .btn {
    width: 100%;
    max-width: 320px;
  }
}
