/* ==============================================
   VIXENWORKS — Premium Landing Page Styles
   ============================================== */

/* ——— Design Tokens ——— */
:root {
  --bg:              #08080b;
  --bg-surface:      #0d0d12;
  --bg-card:         #121218;
  --bg-card-hover:   #161620;

  --border:          rgba(255, 255, 255, 0.06);
  --border-hover:    rgba(255, 255, 255, 0.12);
  --border-accent:   rgba(124, 58, 237, 0.32);

  --text:            #f0f0f5;
  --text-secondary:  #9898a8;
  --text-muted:      #46465a;

  --accent:          #7c3aed;
  --accent-light:    #a78bfa;
  --accent-dim:      rgba(124, 58, 237, 0.12);
  --accent-glow:     rgba(124, 58, 237, 0.22);

  --green:           #10b981;
  --green-dim:       rgba(16, 185, 129, 0.12);

  --amber:           #f59e0b;
  --amber-dim:       rgba(245, 158, 11, 0.10);

  --radius:          10px;
  --radius-lg:       16px;
  --radius-xl:       24px;

  --ease:            cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:          180ms ease;
  --t-base:          260ms ease;
  --t-slow:          400ms var(--ease);
}

/* ——— Reset & Base ——— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ——— Typography Utilities ——— */
.gradient-text {
  background: linear-gradient(140deg, #f0f0f5 20%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ——— Layout ——— */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--wide  { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width: 760px;  margin: 0 auto; padding: 0 28px; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.5),
              0 4px 14px rgba(124, 58, 237, 0.28);
}
.btn-primary:hover {
  background: #6d28d9;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.65),
              0 8px 24px rgba(124, 58, 237, 0.38);
  transform: translateY(-1px);
}

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

.btn-lg  { padding: 13px 26px; font-size: 0.975rem; border-radius: 12px; }
.btn-xl  { padding: 15px 34px; font-size: 1.05rem;  border-radius: 13px; }

/* ——— Navigation ——— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  transition: background var(--t-base), border-color var(--t-base), backdrop-filter var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 11, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(140deg, var(--accent), var(--accent-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.logo-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.025em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--text); }

/* ——— Section Shared ——— */
.section     { padding: 108px 28px; }
.section--alt { background: var(--bg-surface); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 14px;
}
.eyebrow-line {
  width: 20px; height: 1.5px;
  background: var(--accent-light);
  border-radius: 2px;
  opacity: 0.6;
}

.section-header { margin-bottom: 72px; }
.section-header--centered { text-align: center; margin-left: auto; margin-right: auto; max-width: 660px; }

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 28px 96px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow-top {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.17) 0%, transparent 62%);
  filter: blur(48px);
}
.hero-glow-left {
  position: absolute;
  top: 20%;
  left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.07) 0%, transparent 65%);
  filter: blur(60px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, black 20%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: rgba(124, 58, 237, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 30px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 42px;
  max-width: 490px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-meta-item svg { color: var(--green); flex-shrink: 0; }

/* ——— Dashboard Mock ——— */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--accent-glow), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.dashboard-mock {
  width: 100%;
  max-width: 456px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.025),
    0 24px 60px rgba(0,0,0,0.5),
    0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.dashboard-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.018);
}
.tb-dots { display: flex; gap: 6px; }
.tb-dot  { width: 10px; height: 10px; border-radius: 50%; }
.tb-dot:nth-child(1) { background: #ef4444; opacity: 0.55; }
.tb-dot:nth-child(2) { background: #f59e0b; opacity: 0.55; }
.tb-dot:nth-child(3) { background: #22c55e; opacity: 0.55; }

.tb-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.tb-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.tb-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2.4s ease-in-out infinite;
}

.dashboard-body { padding: 22px 20px; }

.db-project-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.db-project-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.stage-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.stage-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.013);
  transition: border-color var(--t-base);
}
.stage-row--active {
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(124, 58, 237, 0.055);
}

.stage-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
}
.stage-dot--done    { background: var(--green-dim);   color: var(--green); }
.stage-dot--active  { background: var(--accent-dim);  color: var(--accent-light); }
.stage-dot--pending { background: rgba(255,255,255,0.045); color: var(--text-muted); }

.stage-detail { flex: 1; }
.stage-name   { font-size: 0.81rem; font-weight: 650; color: var(--text); line-height: 1.3; }
.stage-state  { font-size: 0.71rem; font-weight: 500; color: var(--text-muted); }
.stage-state--done   { color: var(--green); }
.stage-state--active { color: var(--accent-light); }

.db-progress {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.db-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}
.db-progress-labels span:first-child { font-size: 0.77rem; color: var(--text-muted); font-weight: 500; }
.db-progress-labels span:last-child  { font-size: 0.77rem; color: var(--accent-light); font-weight: 700; }

.progress-track {
  height: 4px;
  background: rgba(255,255,255,0.065);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 100px;
  width: 0;
  transition: width 1.6s var(--ease);
}
.progress-fill.animated { width: 68%; }

/* ——— Trust Strip ——— */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 28px;
  background: var(--bg-surface);
  overflow: hidden;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-item svg { color: var(--accent-light); flex-shrink: 0; }
.trust-sep {
  width: 1px; height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* ——— Problem Section ——— */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.problem-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--t-slow), transform var(--t-slow), background var(--t-slow);
}
.problem-card:hover {
  border-color: rgba(245, 158, 11, 0.22);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.problem-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.problem-icon svg { color: var(--amber); }

.problem-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.012em;
  line-height: 1.35;
}
.problem-card p {
  font-size: 0.855rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ——— Solution Section ——— */
.solution-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.solution-step {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base);
}
.solution-step + .solution-step { border-left: none; }
.solution-step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.solution-step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.solution-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  z-index: 1;
}

.step-big-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
}

.step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { color: var(--accent-light); }

.step-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 11px;
  opacity: 0.85;
}

.solution-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.016em;
  line-height: 1.3;
}
.solution-step p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ——— Workflow Section ——— */
.workflow-outer {
  overflow-x: auto;
  padding-bottom: 4px;
}
.workflow-pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-width: 760px;
}

.workflow-stage {
  padding: 28px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color var(--t-base), background var(--t-base);
}
.workflow-stage + .workflow-stage { border-left: none; }
.workflow-stage:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.workflow-stage:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.workflow-stage:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  z-index: 2;
}
.workflow-stage--featured {
  background: rgba(124, 58, 237, 0.055);
  border-color: rgba(124, 58, 237, 0.2);
}
.workflow-stage--featured:hover {
  background: rgba(124, 58, 237, 0.09);
  border-color: rgba(124, 58, 237, 0.36);
}

.ws-step {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ws-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.workflow-stage--featured .ws-icon { background: rgba(124, 58, 237, 0.18); }
.ws-icon svg { color: var(--accent-light); }

.workflow-stage h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.workflow-stage p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ws-arrow {
  position: absolute;
  top: 50%; right: -9px;
  transform: translateY(-50%);
  z-index: 3;
  width: 18px; height: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-arrow svg {
  width: 9px; height: 9px;
  color: var(--text-muted);
}

/* ——— Benefits Section ——— */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-slow), transform var(--t-slow), box-shadow var(--t-slow);
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(124, 58, 237, 0.07), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.benefit-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28), 0 0 0 1px rgba(124,58,237,0.12);
}
.benefit-card:hover::after { opacity: 1; }

.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}
.benefit-icon svg { color: var(--accent-light); }

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ——— Testimonials ——— */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--t-base);
}
.testimonial-card:hover { border-color: var(--border-hover); }

.stars { display: flex; gap: 3px; }
.star  { font-size: 0.85rem; color: #f59e0b; }

.testimonial-quote {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.68;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.t-name  { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.t-title { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }

/* ——— Pricing ——— */
.pricing-wrapper {
  max-width: 520px;
  margin: 0 auto;
}
.pricing-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 0 70px rgba(124, 58, 237, 0.1), 0 24px 60px rgba(0,0,0,0.4);
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.pricing-header {
  padding: 38px 38px 30px;
  border-bottom: 1px solid var(--border);
}
.pricing-plan {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 22px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}
.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding-top: 10px;
}
.price-amount {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
}
.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: 8px;
}
.pricing-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.pricing-callout {
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid rgba(124, 58, 237, 0.18);
  font-size: 0.87rem;
  color: var(--accent-light);
  font-weight: 500;
  line-height: 1.5;
}

.pricing-features-wrap {
  padding: 28px 38px;
  border-bottom: 1px solid var(--border);
}
.pricing-features-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.pricing-feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.feat-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-check svg { color: var(--green); }

.pricing-cta-wrap {
  padding: 28px 38px;
}
.pricing-cta-wrap .btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  border-radius: 12px;
  margin-bottom: 14px;
}
.pricing-small-note {
  text-align: center;
  font-size: 0.79rem;
  color: var(--text-muted);
}

/* ——— Final CTA ——— */
.final-cta {
  padding: 130px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124, 58, 237, 0.11), transparent);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta-inner .section-eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}
.final-cta-inner h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.final-cta-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 44px;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 28px;
  background: var(--bg-surface);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-tagline { font-size: 0.79rem; color: var(--text-muted); margin-top: 5px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy { font-size: 0.79rem; color: var(--text-muted); text-align: right; }

/* ——— Scroll Animations ——— */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; }

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ——— Product Screenshot Frame ——— */
.product-shot-frame {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.025),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.product-shot-frame:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.image-glow {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(124, 58, 237, 0.09),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

.psf-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}
.psf-dots { display: flex; gap: 5px; flex-shrink: 0; }
.psf-dot  { width: 9px; height: 9px; border-radius: 50%; }
.psf-dot:nth-child(1) { background: #ef4444; opacity: 0.55; }
.psf-dot:nth-child(2) { background: #f59e0b; opacity: 0.55; }
.psf-dot:nth-child(3) { background: #22c55e; opacity: 0.55; }

.psf-url {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.product-shot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ——— Hero Screenshot Composition ——— */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--accent-glow), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-screenshot-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.hero-workflow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.hero-main-shot {
  width: 100%;
}

.floating-shot {
  position: absolute;
  bottom: 0;
  left: -28px;
  width: 50%;
  z-index: 2;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
}
.floating-shot-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(124, 58, 237, 0.14);
}

.product-shot-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.55;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ——— Screenshot Feature Alternating Layout ——— */
.screenshot-feature-list {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.screenshot-feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}
.screenshot-feature--reversed {
  grid-template-columns: 1.5fr 1fr;
}
.screenshot-feature--reversed .sf-text { order: 2; }
.screenshot-feature--reversed .sf-image { order: 1; }

.sf-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sf-text h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.sf-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ——— Execution Pipeline Featured Layout ——— */
.workflow-featured {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: center;
}

.wf-lead {
  font-size: 1.075rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.58;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.wf-checklist {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.wf-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.wf-checklist svg { color: var(--green); flex-shrink: 0; }

/* ——— Delivery Visibility ——— */
.delivery-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 64px;
  align-items: start;
}

.delivery-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}

.outcome-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--t-base), background var(--t-base);
}
.outcome-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.outcome-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.outcome-icon svg { color: var(--accent-light); }

.outcome-label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.outcome-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ——— Risk & Assumptions ——— */
.risk-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.risk-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.risk-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 28px;
}

.risk-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.risk-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.risk-points svg { color: var(--green); flex-shrink: 0; }

.risk-shots {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.risk-supporting-shot {
  width: 80%;
  align-self: flex-end;
  opacity: 0.82;
}

/* ——— Architecture / Governance ——— */
.arch-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.arch-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.arch-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 28px;
}

.arch-outcomes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.arch-outcomes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.arch-outcomes svg { color: var(--green); flex-shrink: 0; }

/* ——— Benefit Card Thumbnails ——— */
.benefit-thumb {
  height: 86px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.benefit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0.5;
  transition: opacity var(--t-base);
}
.benefit-card:hover .benefit-thumb img { opacity: 0.78; }

/* ——— Hero Credibility Line ——— */
.hero-credibility {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 420px;
}

/* ——— Why Now Section ——— */
.why-now-followup {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: -8px;
}
.why-now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 52px auto 0;
}
.why-now-col {
  border-radius: 14px;
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
}
.why-now-col--old {
  background: rgba(255, 255, 255, 0.02);
}
.why-now-col--new {
  background: rgba(124, 58, 237, 0.07);
  border-color: rgba(124, 58, 237, 0.25);
}
.why-now-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text-muted);
}
.why-now-col--new .why-now-col-label {
  color: var(--accent);
}
.why-now-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.why-now-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 450;
}
.why-now-col--old .why-now-list li svg {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.why-now-col--new .why-now-list li svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ——— Urgency Band ——— */
.urgency-band {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.04) 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 80px 28px;
  text-align: center;
}
.urgency-band-inner {
  max-width: 680px;
  margin: 0 auto;
}
.urgency-band-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.urgency-band-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.urgency-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 32px !important;
  font-style: italic;
}

/* ——— Final CTA Supporting Line ——— */
.final-cta-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
  margin-top: -28px;
  margin-bottom: 36px !important;
}

/* ——— Pricing Thumbnail Strip ——— */
.pricing-thumb-strip {
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: center;
}
.pts-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.pts-images {
  display: flex;
  gap: 8px;
}
.pts-thumb {
  flex: 1;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.pts-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0.55;
  transition: opacity var(--t-base);
}
.pts-thumb:hover img { opacity: 0.82; }

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .screenshot-feature {
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
  }
  .screenshot-feature--reversed {
    grid-template-columns: 1.3fr 1fr;
  }
  .workflow-featured { grid-template-columns: 1fr 1.4fr; gap: 48px; }
  .delivery-layout   { grid-template-columns: 1.4fr 1fr; gap: 48px; }
  .risk-layout       { grid-template-columns: 1fr 1.3fr; gap: 56px; }
  .arch-layout       { grid-template-columns: 1.3fr 1fr; gap: 56px; }
}

@media (max-width: 1024px) {
  .problem-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: left;
  }
  .hero-visual { order: -1; }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .nav-links { display: none; }

  .screenshot-feature,
  .screenshot-feature--reversed {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .screenshot-feature--reversed .sf-text { order: 0; }
  .screenshot-feature--reversed .sf-image { order: 1; }

  .workflow-featured { grid-template-columns: 1fr; gap: 44px; }
  .delivery-layout   { grid-template-columns: 1fr; gap: 44px; }
  .delivery-outcomes { grid-template-columns: repeat(2, 1fr); }
  .risk-layout       { grid-template-columns: 1fr; gap: 44px; }
  .arch-layout       { grid-template-columns: 1fr; gap: 44px; }
  .arch-shot         { order: -1; }
}

@media (max-width: 700px) {
  .why-now-grid { grid-template-columns: 1fr; }
  .urgency-band { padding: 64px 20px; }

  .section { padding: 80px 20px; }
  .hero    { padding: 108px 20px 72px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { justify-content: center; }

  .trust-inner { gap: 18px; }
  .trust-sep   { display: none; }

  .problem-grid      { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .floating-shot { display: none; }
  .hero-screenshot-wrap { padding-bottom: 0; }
  .screenshot-feature-list { gap: 60px; }
  .delivery-outcomes { grid-template-columns: 1fr; }
  .risk-supporting-shot { width: 100%; opacity: 1; }

  .pricing-header,
  .pricing-features-wrap,
  .pricing-cta-wrap { padding-left: 22px; padding-right: 22px; }
  .price-amount     { font-size: 4rem; }

  .final-cta { padding: 96px 20px; }

  .footer-inner  { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-copy   { text-align: left; }
  .footer-links  { flex-wrap: wrap; gap: 18px; }
}
