/* EVO.CEO Landing Page v1 */
:root {
  --bg: #050608;
  --bg-2: #090b10;
  --panel: rgba(16, 20, 29, 0.78);
  --panel-solid: #10141d;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f7fb;
  --muted: #98a2b3;
  --muted-2: #667085;
  --purple: #8A2BE2;
  --purple-bright: #A855F7;
  --purple-dark: #5B16B8;
  --purple-soft: rgba(138, 43, 226, 0.15);
  --green: #2dff9a;
  --green-soft: rgba(45, 255, 154, 0.11);
  --blue: #35a7ff;
  --blue-soft: rgba(53, 167, 255, 0.12);
  --orange: #ffb020;
  --danger: #ff4d6d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(138, 43, 226, 0.16), transparent 34%),
    radial-gradient(circle at 82% 15%, rgba(168, 85, 247, 0.11), transparent 28%),
    linear-gradient(180deg, #050608 0%, #080b10 50%, #050608 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
}

.orb {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.orb-a {
  top: -120px;
  left: -120px;
  background: var(--purple);
}

.orb-b {
  right: -160px;
  top: 200px;
  background: var(--purple);
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  letter-spacing: -0.05em;
  font-weight: 800;
  font-size: 1.25rem;
  white-space: nowrap;
}

.brand-mark {
  color: var(--text);
}

.brand-dot {
  color: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--green) !important;
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.language-switch button.active {
  color: #06130d;
  background: var(--green);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 86px 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(45, 255, 154, 0.2);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow.small {
  padding: 8px 12px;
  font-size: 0.76rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(45, 255, 154, 0.8);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(45, 255, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 255, 154, 0); }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 24px 0 18px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  max-width: 680px;
}

.hero-subtitle {
  color: #c8ced8;
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #03110a;
  box-shadow: 0 12px 36px rgba(45, 255, 154, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-proof div {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 18px;
  padding: 14px;
}

.hero-proof strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 6px;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-visual {
  min-width: 0;
}

.app-frame {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.26);
}

.app-title {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-badge {
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(45,255,154,.18);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 800;
}

.split-preview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 560px;
}

.chat-preview {
  padding: 18px;
  border-right: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.dashboard-preview {
  padding: 18px;
}

.mini-label {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.bubble {
  padding: 13px 14px;
  border-radius: 18px;
  color: #e8edf6;
  line-height: 1.5;
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.bubble.user {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-bottom-right-radius: 6px;
}

.bubble.ai {
  background: rgba(155, 92, 255, 0.12);
  border: 1px solid rgba(155, 92, 255, 0.22);
  border-bottom-left-radius: 6px;
}

.score-card,
.task-card,
.kpi-card,
.feature-card,
.desk-card,
.trial-card,
.signup-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-sm);
}

.score-card {
  padding: 18px;
  margin-bottom: 14px;
}

.score-header {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 14px;
}

.score-header strong {
  color: var(--green);
  font-size: 1.7rem;
}

.score-bar {
  height: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.kpi-card {
  padding: 16px;
}

.kpi-card span,
.kpi-card em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.kpi-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.25rem;
}

.kpi-card em {
  color: var(--green);
}

.kpi-card em.warning {
  color: var(--orange);
}

.kpi-card.locked {
  opacity: 0.72;
}

.task-card {
  margin-top: 12px;
  padding: 16px;
}

.task-card ul {
  padding-left: 18px;
  margin: 0;
  color: #d9dee8;
  line-height: 1.8;
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px 0 62px;
}

.trust-strip span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 16px;
  color: var(--muted);
  text-align: center;
  background: rgba(255,255,255,.025);
  font-size: 0.86rem;
  font-weight: 700;
}

.platform,
.desks,
.trial,
.signup {
  padding: 70px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.trial-card h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading p,
.trial-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  padding: 22px;
  min-height: 250px;
}

.feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #06130d;
  background: var(--green);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 32px;
}

.feature-card h3,
.desk-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card p,
.desk-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.desk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.desk-card {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
}

.desk-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  opacity: .18;
  filter: blur(12px);
}

.desk-card.finance::after { background: var(--green); }
.desk-card.marketing::after { background: var(--purple); }
.desk-card.sales::after { background: var(--blue); }
.desk-card.operations::after { background: var(--orange); }
.desk-card.global::after { background: var(--blue); }

.lock {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  color: #07131d;
  background: var(--blue);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 18px;
}

.trial-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  background:
    linear-gradient(135deg, rgba(45,255,154,.08), transparent 30%),
    linear-gradient(315deg, rgba(155,92,255,.09), transparent 30%),
    var(--panel);
}

.trial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trial-list div {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  padding: 20px;
}

.trial-list strong {
  display: block;
  margin-bottom: 14px;
}

.trial-list ul {
  color: #d5dbe6;
  padding-left: 20px;
  margin: 0;
  line-height: 1.9;
}

.signup-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 34px;
  align-items: center;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-row input {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,.045);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 15px;
  outline: none;
}

.form-row input:focus {
  border-color: rgba(45,255,154,.55);
  box-shadow: 0 0 0 4px rgba(45,255,154,.08);
}

.form-row input::placeholder {
  color: var(--muted-2);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-message.success {
  color: var(--green);
}

.form-message.error {
  color: var(--danger);
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.site-footer strong {
  color: var(--text);
  margin-right: 8px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--text);
}

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

  .feature-grid,
  .desk-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trial-card,
  .signup-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .site-header {
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-proof,
  .feature-grid,
  .desk-grid,
  .trust-strip,
  .trial-list,
  .split-preview,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .chat-preview {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .split-preview {
    min-height: unset;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .section,
  .site-header,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}


/* EVO.CEO v2 brand refinements */
:root {
  --purple: #8A2BE2;
  --purple-bright: #A855F7;
  --purple-dark: #5B16B8;
  --purple-soft: rgba(138, 43, 226, 0.15);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(138, 43, 226, 0.16), transparent 34%),
    radial-gradient(circle at 82% 15%, rgba(168, 85, 247, 0.11), transparent 28%),
    radial-gradient(circle at 55% 72%, rgba(53, 167, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #050608 0%, #080b10 50%, #050608 100%);
}

.orb-a { background: var(--purple); }
.orb-b { background: var(--purple-bright); }

.brand { display: inline-flex; align-items: center; min-width: 130px; }
.brand-logo { display: block; width: 132px; height: auto; }
.brand-mark, .brand-dot { display: none; }

.nav-cta { color: var(--purple-bright) !important; }
.language-switch button.active { color: #ffffff; background: var(--purple); }

.eyebrow {
  color: #f4eaff;
  background: var(--purple-soft);
  border-color: rgba(138, 43, 226, 0.26);
}

.pulse {
  background: var(--purple-bright);
  box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.78);
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

h1 {
  line-height: 0.90;
  letter-spacing: -0.045em;
}

.section-heading h2,
.trial-card h2 {
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(138, 43, 226, 0.34);
}

.btn-primary:hover { box-shadow: 0 18px 48px rgba(138, 43, 226, 0.44); }

.status-badge {
  color: #ffffff;
  background: var(--purple-soft);
  border-color: rgba(168,85,247,.22);
}

.bubble.ai {
  background: rgba(138, 43, 226, 0.14);
  border-color: rgba(138, 43, 226, 0.28);
}

.score-header strong { color: var(--purple-bright); }
.score-bar span { background: linear-gradient(90deg, var(--purple-dark), var(--purple-bright), var(--green)); }
.kpi-card em { color: var(--purple-bright); }
.kpi-card em.warning { color: var(--orange); }

.feature-card .icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
}

.desk-card.finance::after { background: var(--purple-bright); }
.desk-card.marketing::after { background: var(--purple); }

.lock {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.trial-card {
  background:
    linear-gradient(135deg, rgba(138,43,226,.13), transparent 30%),
    linear-gradient(315deg, rgba(168,85,247,.11), transparent 30%),
    var(--panel);
}

.form-row input:focus {
  border-color: rgba(138,43,226,.62);
  box-shadow: 0 0 0 4px rgba(138,43,226,.12);
}

.footer-brand { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-brand img { width: 114px; height: auto; }

@media (max-width: 740px) {
  .brand { min-width: 116px; }
  .brand-logo { width: 116px; }
  h1 { letter-spacing: -0.04em; }
}

/* EVO.CEO v3 additions */
.trial-note{display:inline-flex;align-items:center;gap:8px;margin:-14px 0 30px;color:#d9c7ff;font-size:.92rem;font-weight:750}
.trial-note::before{content:"";width:7px;height:7px;border-radius:999px;background:var(--purple-bright);box-shadow:0 0 18px rgba(168,85,247,.8)}
.honeypot{position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important}
.daily-partner-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px}
.daily-partner-card{border:1px solid var(--border);background:rgba(255,255,255,.035);border-radius:18px;padding:18px}
.daily-partner-card strong{display:block;margin-bottom:8px;color:var(--text)}
.daily-partner-card span{color:var(--muted);line-height:1.6;font-size:.92rem}
@media (max-width:740px){.daily-partner-grid{grid-template-columns:1fr}}
