/* ── Accord mini-site shared styles ──────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800;900&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: #0b0d12;
  color: #f0f4f8;
  line-height: 1.6;
}

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

/* ── Nav ─────────────────────────────────────────────────── */

.accord-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,13,18,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 62px;
  display: flex;
  align-items: center;
}

.accord-nav-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
}

.accord-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 40px;
  flex-shrink: 0;
}

.accord-nav-logo-mark {
  width: 34px; height: 34px;
  background: #54d6a1;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
  color: #07110d;
  flex-shrink: 0;
}

.accord-nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #f0f4f8;
  letter-spacing: -0.3px;
}

.accord-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.accord-nav-link {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(240,244,248,0.55);
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}

.accord-nav-link:hover { color: #f0f4f8; background: rgba(255,255,255,0.06); }
.accord-nav-link.active { color: #54d6a1; background: rgba(84,214,161,0.1); }

.accord-nav-demo {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  background: #54d6a1;
  color: #07110d;
  border-radius: 8px;
  margin-left: 6px;
  transition: opacity 0.15s;
}

.accord-nav-demo:hover { opacity: 0.88; }

.accord-nav-back {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: rgba(240,244,248,0.3);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.accord-nav-back:hover { color: rgba(240,244,248,0.7); border-color: rgba(255,255,255,0.22); }

/* ── Page chrome ─────────────────────────────────────────── */

.page-wrap { padding-top: 62px; }

/* ── Sections ────────────────────────────────────────────── */

.section { padding: 88px 28px; }
.section-sm { padding: 56px 28px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner-narrow { max-width: 760px; margin: 0 auto; }

.section-bg-dark  { background: #0b0d12; }
.section-bg-mid   { background: #0f1115; }
.section-bg-card  { background: #141720; }
.section-bg-white { background: #fff; color: #1a202c; }

/* ── Section labels / titles ─────────────────────────────── */

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #54d6a1;
  margin-bottom: 14px;
}

.eyebrow-blue  { color: #82b4ff; }
.eyebrow-gold  { color: #f5c518; }
.eyebrow-orange{ color: #f78b00; }

h1.page-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

h2.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

h3.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.15rem;
  color: rgba(240,244,248,0.58);
  line-height: 1.65;
  max-width: 600px;
}

.lead-dark { color: #6b7280; }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  border: none;
  font-family: inherit;
}

.btn:hover { opacity: 0.88; }
.btn:active { transform: scale(0.98); }

.btn-primary   { background: #54d6a1; color: #07110d; }
.btn-outline   { background: transparent; color: rgba(240,244,248,0.75); border: 1px solid rgba(255,255,255,0.18); }
.btn-outline:hover { border-color: rgba(255,255,255,0.38); color: #f0f4f8; }
.btn-orange    { background: #f78b00; color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ── Cards ───────────────────────────────────────────────── */

.card {
  background: #0f1115;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
}

.card-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
}

.card:hover, .card-light:hover {
  border-color: rgba(84,214,161,0.25);
  transition: border-color 0.2s;
}

.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ── Stat blocks ─────────────────────────────────────────── */

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.stat-block {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-block:last-child { border-right: none; }

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #f0f4f8;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { font-size: 1.5rem; color: rgba(240,244,248,0.4); }
.stat-label { font-size: 13px; color: rgba(240,244,248,0.5); line-height: 1.4; }

/* ── Step list ───────────────────────────────────────────── */

.step-list { display: flex; flex-direction: column; gap: 36px; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #54d6a1;
  color: #07110d;
  font-size: 18px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.step-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.step-content p  { color: rgba(240,244,248,0.58); font-size: 14px; line-height: 1.65; }

/* ── Enterprise UI mockup ────────────────────────────────── */

.mockup {
  background: #181b24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.mockup-chrome {
  background: #22252f;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.mockup-title {
  flex: 1;
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  font-family: monospace;
}

.mockup-body { display: flex; }

.mockup-sidebar {
  width: 115px;
  background: #12151e;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  flex-shrink: 0;
}

.mockup-sidebar-item { padding: 7px 12px; font-size: 11px; color: rgba(255,255,255,0.3); }
.mockup-sidebar-item.active { color: #54d6a1; background: rgba(84,214,161,0.08); border-right: 2px solid #54d6a1; }

.mockup-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 14px; }

.mock-field-label { font-size: 9px; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 4px; }

.mock-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 6px 9px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
}

.mock-legal {
  font-size: 9.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 8px 10px;
}

/* highlight + blocked overlays */
.hl { position: relative; }
.hl .hl-border { position: absolute; inset: -3px; border: 2px solid #f5c518; border-radius: 6px; pointer-events: none; }
.hl .hl-tag { position: absolute; top: -18px; left: 0; background: #f5c518; color: #111; font-size: 8px; font-weight: 700; padding: 1px 5px; border-radius: 3px; white-space: nowrap; z-index: 2; }

.blocked { position: relative; opacity: 0.6; }
.blocked .blocked-border { position: absolute; inset: -2px; border: 1.5px solid rgba(220,60,60,0.4); border-radius: 5px; pointer-events: none; }
.blocked .blocked-tag { position: absolute; top: -16px; left: 0; background: rgba(210,50,50,0.9); color: #fff; font-size: 8px; font-weight: 700; padding: 1px 5px; border-radius: 3px; white-space: nowrap; }

/* ── Persona cards ───────────────────────────────────────── */

.persona-strip {
  border-left: 4px solid;
  padding-left: 22px;
  margin-bottom: 32px;
}
.persona-strip-vision { border-color: #f5c518; }
.persona-strip-neuro  { border-color: #82b4ff; }

/* ── Before / After split ────────────────────────────────── */

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ba-before {
  background: rgba(220,60,60,0.05);
  border: 1px solid rgba(220,60,60,0.14);
  border-radius: 10px;
  padding: 20px;
}

.ba-after {
  background: rgba(84,214,161,0.05);
  border: 1px solid rgba(84,214,161,0.18);
  border-radius: 10px;
  padding: 20px;
}

.ba-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.ba-label-before { color: rgba(255,120,120,0.7); }
.ba-label-after  { color: #54d6a1; }
.ba-text { font-size: 13px; line-height: 1.65; }
.ba-text-before { color: rgba(240,244,248,0.42); }
.ba-text-after  { color: rgba(240,244,248,0.88); }
.ba-meta { font-size: 10px; margin-top: 10px; color: rgba(240,244,248,0.3); font-style: italic; }

/* ── Outcome table ───────────────────────────────────────── */

.outcome-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.outcome-table th { text-align: left; padding: 10px 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(240,244,248,0.4); border-bottom: 1px solid rgba(255,255,255,0.07); }
.outcome-table td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.outcome-table tr:last-child td { border-bottom: none; }
.outcome-val-before { color: rgba(240,244,248,0.5); }
.outcome-val-after  { color: #54d6a1; font-weight: 700; }

/* ── Form ────────────────────────────────────────────────── */

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: rgba(240,244,248,0.7); }
.form-input, .form-select, .form-textarea {
  background: #141720;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: #f0f4f8;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: rgba(84,214,161,0.5);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(240,244,248,0.25); }

/* ── Footer ──────────────────────────────────────────────── */

.accord-footer {
  background: #0f1115;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 28px;
}

.accord-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.accord-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accord-footer-mark {
  width: 28px; height: 28px;
  background: #54d6a1;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  color: #07110d;
}

.accord-footer-name { font-size: 14px; font-weight: 700; color: rgba(240,244,248,0.6); }

.accord-footer-links { display: flex; gap: 20px; }
.accord-footer-link { font-size: 13px; color: rgba(240,244,248,0.35); transition: color 0.15s; }
.accord-footer-link:hover { color: rgba(240,244,248,0.7); }

.accord-footer-back {
  font-size: 13px;
  font-weight: 600;
  color: #f78b00;
  border: 1px solid rgba(247,139,0,0.3);
  border-radius: 7px;
  padding: 8px 16px;
  transition: background 0.15s;
}
.accord-footer-back:hover { background: rgba(247,139,0,0.08); }

/* ── Divider ─────────────────────────────────────────────── */
.divider-dark { height: 1px; background: rgba(255,255,255,0.07); margin: 0; }

/* ── Inline badge ────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-green  { background: rgba(84,214,161,0.12); color: #54d6a1; border: 1px solid rgba(84,214,161,0.25); }
.badge-gold   { background: rgba(245,197,24,0.12); color: #f5c518;  border: 1px solid rgba(245,197,24,0.25); }
.badge-blue   { background: rgba(130,180,255,0.12);color: #82b4ff;  border: 1px solid rgba(130,180,255,0.25); }
.badge-orange { background: rgba(247,139,0,0.12);  color: #f78b00;  border: 1px solid rgba(247,139,0,0.25); }

/* ── Split layout ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-reverse { grid-template-columns: 1fr 1fr; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .accord-nav-links { display: none; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .stat-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-block  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .split       { grid-template-columns: 1fr; gap: 36px; }
  .ba-grid     { grid-template-columns: 1fr; }
}
