/* ==========================================================================
   Cignevo demo site — demo.cignevo.com
   Same brand system as the main site: ink navy / safety orange / warm cream.
   ========================================================================== */

:root {
  --navy: #0c1a26;
  --navy-2: #132638;
  --navy-line: #24405a;
  --navy-soft: #8ca3b8;
  --navy-softer: #aebfce;
  --cream: #f7f3ec;
  --cream-line: #e8e4dc;
  --ink: #0c1a26;
  --muted: #5a6b7c;
  --accent: #ff5a1f;
  --accent-dark: #d0410b;
  --green: #1d9e75;
  --red: #e24b4a;
  --radius: 14px;
  --shadow-lg: 0 18px 50px rgba(12, 26, 38, 0.18);
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Archivo Black", "Archivo", "Arial Black", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul[role="list"] { list-style: none; padding: 0; }

.container { width: min(1080px, 100% - 2.5rem); margin-inline: auto; }
.narrow { max-width: 720px; }
.center { text-align: center; }

h1, h2 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: wait; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(255, 90, 31, 0.35); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn-end { background: var(--red); color: #fff; padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.lock-card { max-width: 560px; margin-inline: auto; }
.lock-cta { margin-top: 1.1rem; }
.post-call-cta { margin-top: 1rem; animation: rise 0.35s ease; }
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn .icon { width: 1.1em; height: 1.1em; }

/* Header */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 50; }
.nav-wrap { display: flex; align-items: center; gap: 1.2rem; padding-block: 0.85rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-right: auto; }
.logo-mark { width: 30px; height: 30px; }
.logo-text { font-family: var(--font-display); font-size: 1.3rem; color: #fff; letter-spacing: -0.02em; }
.logo-text .v { color: var(--accent); }
.demo-badge {
  border: 1px solid var(--navy-line);
  color: var(--navy-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}
.nav-cta { padding: 0.55rem 1.15rem; font-size: 0.88rem; box-shadow: none; }
@media (max-width: 560px) { .nav-cta { display: none; } }

/* Hero */
.demo-hero { background: var(--navy); color: #fff; padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(4.5rem, 10vw, 7rem); }
.lede { color: var(--navy-softer); margin-top: 1rem; font-size: clamp(1rem, 2vw, 1.15rem); }

/* Cards */
.demo-cards { margin-top: clamp(-4.5rem, -8vw, -3rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.cards-grid { display: grid; gap: 1.25rem; }
@media (min-width: 860px) { .cards-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.demo-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.9rem 1.7rem;
}
.primary-card { border-top: 5px solid var(--accent); }
.card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.8rem;
}
.demo-card p { color: var(--muted); margin-top: 0.5rem; }

/* Web call UI */
.webcall-ui { margin-top: 1.5rem; }
.call-live {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
}
.live-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}
.call-timer { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--navy-soft); font-weight: 500; }
.mic-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.9rem; }

/* Phone / OTP UI */
.phone-step { margin-top: 1.5rem; }
.field-row { display: grid; gap: 0.7rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr auto; } }
.phone-step input[type="tel"],
.phone-step input[type="text"] {
  font: inherit;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--cream-line);
  border-radius: 9px;
  width: 100%;
}
.phone-step input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
}
.otp-desc { color: var(--ink) !important; font-weight: 600; margin-bottom: 0.8rem; }
.consent-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; }

/* Status lines */
.status-line { margin-top: 0.9rem; font-weight: 700; font-size: 0.92rem; }
.status-line.ok { color: var(--green); }
.status-line.err { color: var(--red); }

/* Tips */
.demo-tips { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 5rem); }
.tips-list { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.tips-list li {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.cta-block { max-width: 480px; margin: 1.75rem auto 0; }
.cta-line { margin-bottom: 0.8rem; font-weight: 700; }
.cta-line a { color: var(--accent-dark); text-decoration: none; }

/* Footer */
.site-footer { background: var(--navy); color: #5a7286; font-size: 0.82rem; }
.footer-legal { padding: 1.25rem 0; }
.footer-legal a { color: #8ca3b8; }

/* Utilities */
.hidden-field { display: none; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  *, *::before, *::after { transition: none !important; }
}

/* ==========================================================================
   assistants.cignevo.com landing additions
   ========================================================================== */

.hero-ctas { margin-top: 1.8rem; display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }

.features-grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card { border-top: 5px solid var(--accent); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }

.steps-list { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 0.9rem; margin-top: 1.5rem; }
.steps-list li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  padding: 1rem 1.2rem 1rem 3.4rem;
  color: var(--muted);
  position: relative;
}
.steps-list li strong { color: var(--ink); }
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem; top: 1rem;
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hint-line { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); }
.hint-line a { color: var(--accent-dark); }
