/* ===== Conduz AI — Landing Page ===== */
:root {
  /* palette */
  --bg: #050806;
  --bg-2: #080c0a;
  --bg-3: #0a0f0c;
  --panel: #0c1310;
  --panel-2: #0e1714;
  --ink: #eef5f1;
  --text: #cdd9d3;
  --muted: #879a90;
  --faint: #5e7269;
  --emerald: #34d399;
  --emerald-2: #10b981;
  --emerald-deep: #059669;
  --emerald-dim: #1f6b50;
  --line: rgba(130, 210, 170, 0.10);
  --line-2: rgba(130, 210, 170, 0.16);
  --glow: rgba(52, 211, 153, 0.45);
  --glow-soft: rgba(52, 211, 153, 0.14);
  --wa-green: #25d366;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== Custom Scrollbar (Premium) ===== */
html {
  scrollbar-color: rgba(52, 211, 153, 0.25) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(52, 211, 153, 0.2);
  border-radius: 100px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(52, 211, 153, 0.6);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ambient page grain + vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(16, 185, 129, 0.10), transparent 60%),
    radial-gradient(80% 50% at 100% 100%, rgba(16, 185, 129, 0.05), transparent 60%);
}

h1, h2, h3, h4, .display {
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { position: relative; z-index: 1; padding: 120px 0; overflow: hidden; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.02));
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}
.muted { color: var(--muted); }
.lead { font-size: 19px; color: var(--muted); line-height: 1.65; }
.center { text-align: center; }
.em { color: var(--emerald); }
.ink { color: var(--ink); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn-primary {
  background: linear-gradient(180deg, #4ee9ab, var(--emerald-2));
  color: #04130d;
  box-shadow: 0 10px 30px -8px rgba(52, 211, 153, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(52, 211, 153, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(52, 211, 153, 0.06); border-color: rgba(52, 211, 153, 0.3); transform: translateY(-2px); }

/* ===== Header ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  transition: padding 0.4s var(--ease);
}
.nav {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
header.scrolled .nav {
  background: rgba(8, 12, 10, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.9);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 26px; height: 26px; }
.brand-name { font-family: "Sora", sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--ink); }
.brand-name span { color: var(--emerald); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 9px 15px;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.04); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 18px; font-size: 14px; }
.menu-btn { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 190px 0 110px;
  overflow: hidden;
}
/* organic hero background */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(52, 211, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 211, 153, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 100%);
  opacity: 0.8;
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(45, 212, 191, 0.05) 50%, transparent 100%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.hero-fade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 55%, var(--bg) 96%); }
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(38px, 5.2vw, 66px); margin: 24px 0 22px; }
.hero h1 b { font-weight: 600; color: var(--ink); }
.hero p.lead { max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item .n { font-family: "Sora", sans-serif; font-size: 26px; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.trust-item .l { font-size: 13px; color: var(--faint); }
.trust-divider { width: 1px; background: var(--line-2); align-self: stretch; }

/* ===== Phone / WhatsApp mock ===== */
.phone-stage { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.phone-caption {
  font-size: 11.5px;
  color: var(--faint);
  width: 320px;
  text-align: center;
  line-height: 1.4;
  margin-top: 16px;
  opacity: 0.85;
  z-index: 2;
  font-weight: 400;
}
.phone-halo {
  position: absolute; inset: -40px; z-index: 0;
  background: radial-gradient(closest-side, rgba(37, 211, 102, 0.18), transparent 70%);
  filter: blur(10px);
}
.phone {
  position: relative; z-index: 1;
  width: 320px;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #1a2420, #0a0f0d 60%);
  border: 1px solid rgba(130, 210, 170, 0.18);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #0b141a;
  background-image: linear-gradient(180deg, #0b141a, #0d171c);
  height: 580px;
  display: flex;
  flex-direction: column;
}
.wa-top {
  display: flex; align-items: center; gap: 11px;
  padding: 16px 16px 13px;
  background: linear-gradient(180deg, #11201b, #0e1a16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.wa-back { color: var(--muted); font-size: 18px; }
.wa-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--emerald), var(--emerald-deep)); display: grid; place-items: center; color: #04130d; font-family: "Sora"; font-weight: 600; font-size: 15px; }
.wa-meta { display: flex; flex-direction: column; line-height: 1.25; }
.wa-meta .nm { color: #eef5f1; font-weight: 600; font-size: 14px; font-family: "Sora"; }
.wa-meta .st { color: var(--emerald); font-size: 11px; display: flex; align-items: center; gap: 5px; }
.wa-meta .st::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }
.wa-body {
  flex: 1;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(37, 211, 102, 0.04), transparent 50%);
}
.bubble {
  max-width: 80%;
  padding: 9px 13px;
  font-size: 13.5px;
  line-height: 1.45;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(8px);
}
.bubble.show { animation: pop 0.45s var(--ease) forwards; }
@keyframes pop { to { opacity: 1; transform: translateY(0); } }
.bubble.in { align-self: flex-start; background: #1d2b25; color: #e7efe9; border-bottom-left-radius: 5px; }
.bubble.out { align-self: flex-end; background: linear-gradient(180deg, #0f5d44, #0a4c37); color: #e9fff4; border-bottom-right-radius: 5px; }
.bubble .time { display: block; font-size: 9.5px; color: rgba(255, 255, 255, 0.4); text-align: right; margin-top: 3px; }
.bubble.out .badge-ai { font-size: 9px; color: #6ff0b8; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.wa-doc {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; margin-bottom: 6px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(52,211,153,0.15);
  font-size: 11.5px; color: #a7f3d0;
  font-family: "Sora", sans-serif; font-weight: 500;
}
.wa-doc svg { flex-shrink: 0; color: #34d399; }
.typing { align-self: flex-start; background: #1d2b25; padding: 12px 15px; border-radius: 14px; border-bottom-left-radius: 5px; display: none; gap: 4px; }
.typing.show { display: flex; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: #6c8278; animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.2s; }
.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.wa-input {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px;
  background: #0e1a16;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.wa-input .field { flex: 1; background: #16241e; border-radius: 100px; padding: 9px 14px; color: var(--faint); font-size: 12.5px; }
.wa-input .send { width: 34px; height: 34px; border-radius: 50%; background: var(--wa-green); display: grid; place-items: center; color: #04130d; }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ===== Section header ===== */
.sec-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 48px); margin: 20px 0 16px; }
.sec-head p { font-size: 18px; color: var(--muted); }

/* ===== Problem / narrative ===== */
.narrative { max-width: 820px; margin: 0 auto; }
.narrative .story {
  position: relative;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.narrative .story p { margin-bottom: 26px; }
.narrative .story .fade { color: var(--faint); }
.narrative .punch { color: var(--emerald); }
.story-rule { width: 64px; height: 2px; background: linear-gradient(90deg, var(--emerald), transparent); margin: 40px 0; }

.speed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 30px; }
.speed-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.speed-card h3 { font-size: 24px; margin-bottom: 12px; }
.clock-vis { display: flex; flex-direction: column; gap: 14px; }
.clock-row { display: flex; align-items: center; gap: 14px; }
.clock-row .lbl { width: 90px; font-size: 13px; color: var(--faint); font-family: "Sora"; }
.clock-row .bar { flex: 1; height: 10px; border-radius: 100px; background: rgba(255, 255, 255, 0.04); overflow: hidden; position: relative; }
.clock-row .bar span { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 100px; width: 0; transition: width 1.3s var(--ease); }
.clock-row.you .bar span { background: linear-gradient(90deg, var(--emerald), var(--emerald-2)); }
.clock-row.them .bar span { background: linear-gradient(90deg, #7a4a4a, #5e3838); }
.clock-row .val { width: 64px; text-align: right; font-family: "Sora"; font-size: 13px; color: var(--text); }

/* ===== Feature grid ===== */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(20, 32, 27, 0.6), rgba(10, 16, 13, 0.4));
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.feat-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(52, 211, 153, 0.12), transparent 60%);
  transition: opacity 0.4s;
}
.feat-card:hover { transform: translateY(-5px); border-color: rgba(52, 211, 153, 0.28); }
.feat-card:hover::after { opacity: 1; }
.feat-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(52, 211, 153, 0.16), rgba(52, 211, 153, 0.04));
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--emerald);
  margin-bottom: 22px;
}
.feat-ico svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 19px; margin-bottom: 9px; font-weight: 500; }
.feat-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.feat-step { position: absolute; top: 22px; right: 24px; font-family: "Sora"; font-size: 13px; color: var(--emerald-dim); }

/* ===== Practice / scenario timeline ===== */
.practice { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--emerald), rgba(52, 211, 153, 0.05)); }
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .node { position: absolute; left: -30px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 2px solid var(--emerald); box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12); }
.tl-item .t { font-family: "Sora"; font-size: 13px; color: var(--emerald); margin-bottom: 5px; letter-spacing: 0.02em; }
.tl-item h4 { font-size: 18px; font-weight: 500; margin-bottom: 6px; }
.tl-item p { font-size: 14.5px; color: var(--muted); }

/* ===== CRM tabs ===== */
.crm-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.crm-tab {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: left;
}
.crm-tab .ti { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(52, 211, 153, 0.08); color: var(--emerald); flex-shrink: 0; transition: all 0.3s; }
.crm-tab .ti svg { width: 18px; height: 18px; }
.crm-tab .tt { display: flex; flex-direction: column; line-height: 1.3; }
.crm-tab .tt b { font-family: "Sora"; font-weight: 500; font-size: 15px; color: var(--text); white-space: nowrap; }
.crm-tab .tt small { font-size: 12px; color: var(--faint); white-space: nowrap; }
.crm-tab:hover { border-color: var(--line-2); }
.crm-tab.active { border-color: rgba(52, 211, 153, 0.4); background: linear-gradient(180deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.02)); }
.crm-tab.active .ti { background: linear-gradient(160deg, var(--emerald), var(--emerald-deep)); color: #04130d; }
.crm-tab.active .tt b { color: var(--ink); }

.crm-stage {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 26px;
  background: linear-gradient(180deg, #0b1310, #080c0a);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 520px;
}
.crm-stage::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.4), transparent); }
.crm-chrome { display: flex; align-items: center; gap: 8px; padding: 16px 20px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.015); }
.crm-chrome .dots { display: flex; gap: 7px; }
.crm-chrome .dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.crm-chrome .url { margin-left: 12px; font-size: 12.5px; color: var(--faint); font-family: "Sora"; display: flex; align-items: center; gap: 7px; }
.crm-chrome .url::before { content: ""; width: 12px; height: 12px; border-radius: 3px; background: var(--emerald); opacity: 0.5; }
.crm-panel { display: none; padding: 28px; animation: panelIn 0.5s var(--ease); }
.crm-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Kanban */
.kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kan-col { background: rgba(255, 255, 255, 0.015); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.kan-col h5 { font-family: "Sora"; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.kan-col h5 .cnt { background: rgba(52, 211, 153, 0.12); color: var(--emerald); border-radius: 100px; padding: 2px 9px; font-size: 11px; letter-spacing: 0; }
.kan-card {
  background: linear-gradient(180deg, #111d18, #0d1612);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 13px;
  margin-bottom: 10px;
  cursor: grab;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.kan-card:hover { transform: translateY(-3px) scale(1.02); border-color: rgba(52, 211, 153, 0.3); box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.7); }
.kan-card.drag-pulse { animation: dragPulse 2.6s var(--ease) infinite; }
@keyframes dragPulse { 0%, 100% { transform: translateY(0); } 12% { transform: translateY(-4px) rotate(-1.5deg) scale(1.04); box-shadow: 0 16px 30px -10px rgba(0,0,0,.8); } 24% { transform: translateY(0); } }
.kan-card .nm { font-family: "Sora"; font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.kan-card .meta { font-size: 11.5px; color: var(--faint); margin-bottom: 9px; }
.kan-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.kan-tag { font-size: 10.5px; padding: 3px 8px; border-radius: 100px; background: rgba(255, 255, 255, 0.04); color: var(--muted); }
.kan-tag.hot { background: rgba(52, 211, 153, 0.14); color: var(--emerald); }
.kan-tag.ai { background: rgba(110, 240, 184, 0.12); color: #6ff0b8; display: inline-flex; align-items: center; gap: 4px; }

/* AI toggle panel */
.ai-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.lead-card-lg {
  border: 1px solid var(--line-2); border-radius: 18px; padding: 24px;
  background: linear-gradient(180deg, #101b16, #0b120f);
  display: flex; flex-direction: column;
}
.lead-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.lead-head .av { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(150deg, var(--emerald), var(--emerald-deep)); display: grid; place-items: center; color: #04130d; font-family: "Sora"; font-weight: 600; font-size: 19px; }
.lead-head .nm { font-family: "Sora"; font-weight: 500; font-size: 18px; color: var(--ink); }
.lead-head .sub { font-size: 13px; color: var(--faint); }
.lead-rows { display: flex; flex-direction: column; gap: 0; }
.lead-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; }
.lead-row .k { color: var(--faint); }
.lead-row .v { color: var(--text); font-family: "Sora"; font-size: 13.5px; }
.ai-control {
  border: 1px solid var(--line-2); border-radius: 18px; padding: 24px;
  background: linear-gradient(180deg, #0d1814, #0a110e);
  display: flex; flex-direction: column;
}
.ai-control .label { font-family: "Sora"; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 18px; }
.ai-switch-row { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-radius: 14px; background: rgba(52, 211, 153, 0.05); border: 1px solid var(--line-2); margin-bottom: 18px; }
.ai-switch-row .txt b { font-family: "Sora"; font-weight: 500; color: var(--ink); display: block; font-size: 15px; }
.ai-switch-row .txt small { color: var(--faint); font-size: 12.5px; }
.toggle { width: 56px; height: 31px; border-radius: 100px; background: rgba(255,255,255,0.08); position: relative; cursor: pointer; transition: background 0.35s var(--ease); flex-shrink: 0; border: 1px solid transparent; }
.toggle .knob { position: absolute; top: 3px; left: 3px; width: 25px; height: 25px; border-radius: 50%; background: #fff; transition: transform 0.35s var(--ease); box-shadow: 0 2px 6px rgba(0,0,0,.4); }
.toggle.on { background: linear-gradient(180deg, var(--emerald), var(--emerald-2)); }
.toggle.on .knob { transform: translateX(25px); }
.ai-status { margin-top: auto; padding: 16px; border-radius: 12px; font-size: 13.5px; line-height: 1.5; transition: all 0.4s; }
.ai-status.active { background: rgba(52, 211, 153, 0.08); border: 1px solid rgba(52, 211, 153, 0.25); color: #bfeed8; }
.ai-status.paused { background: rgba(255, 200, 120, 0.06); border: 1px solid rgba(255, 200, 120, 0.18); color: #e8d3a8; }
.ai-status b { font-family: "Sora"; }

/* History log */
.hist { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; }
.hist-side { border-right: 1px solid var(--line); padding-right: 22px; }
.hist-side .h-item { padding: 13px 14px; border-radius: 12px; cursor: pointer; transition: background 0.25s; display: flex; gap: 12px; align-items: center; }
.hist-side .h-item:hover { background: rgba(255,255,255,0.025); }
.hist-side .h-item.sel { background: rgba(52, 211, 153, 0.07); }
.hist-side .h-av { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(150deg, #1d3329, #14241d); display: grid; place-items: center; color: var(--emerald); font-family: "Sora"; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.hist-side .h-tx b { font-family: "Sora"; font-weight: 500; font-size: 14px; color: var(--ink); display: block; }
.hist-side .h-tx small { font-size: 12px; color: var(--faint); }
.hist-main { padding-left: 24px; }
.hist-main .day { text-align: center; font-size: 11px; color: var(--faint); margin: 4px 0 16px; font-family: "Sora"; letter-spacing: 0.05em; }
.log-msg { max-width: 78%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; margin-bottom: 12px; }
.log-msg.in { background: #1a2620; color: #e7efe9; border-bottom-left-radius: 5px; }
.log-msg.out { background: linear-gradient(180deg, #0f5d44, #0a4c37); color: #e9fff4; margin-left: auto; border-bottom-right-radius: 5px; }
.log-msg .who { font-size: 10px; color: #6ff0b8; margin-bottom: 4px; display: flex; align-items: center; gap: 5px; font-family: "Sora"; }
.log-msg.audio { display: flex; align-items: center; gap: 11px; }
.log-msg.audio .play { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.12); display: grid; place-items: center; flex-shrink: 0; }
.log-msg.audio .wave { display: flex; align-items: center; gap: 3px; height: 22px; }
.log-msg.audio .wave i { width: 2.5px; border-radius: 2px; background: rgba(255,255,255,0.4); }

/* ===== Audience (for/not for) ===== */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.aud-col { border: 1px solid var(--line); border-radius: 22px; padding: 34px; background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.aud-col.yes { border-color: rgba(52, 211, 153, 0.2); }
.aud-col h3 { font-size: 21px; display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-weight: 500; }
.aud-col h3 .badge { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; }
.aud-col.yes h3 .badge { background: rgba(52, 211, 153, 0.14); color: var(--emerald); }
.aud-col.no h3 .badge { background: rgba(255, 255, 255, 0.05); color: var(--faint); }
.aud-list { display: flex; flex-direction: column; gap: 16px; }
.aud-item { display: flex; gap: 13px; font-size: 15px; line-height: 1.5; }
.aud-item .ck { flex-shrink: 0; margin-top: 2px; }
.aud-col.yes .ck { color: var(--emerald); }
.aud-col.no .ck { color: var(--faint); }
.aud-col.no .aud-item { color: var(--muted); }

/* ===== Results ===== */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { border: 1px solid var(--line); border-radius: 22px; padding: 36px 30px; background: linear-gradient(180deg, var(--panel-2), var(--panel)); position: relative; overflow: hidden; }
.result-card .big { font-family: "Sora"; font-size: 52px; font-weight: 300; color: var(--emerald); letter-spacing: -0.03em; line-height: 1; margin-bottom: 14px; }
.result-card .big small { font-size: 30px; }
.result-card p { font-size: 15px; color: var(--muted); line-height: 1.55; }
.result-card .spark { position: absolute; right: 22px; top: 30px; opacity: 0.5; }

/* ===== Guarantee ===== */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; border: 1px solid var(--line-2); border-radius: 28px; padding: 48px; background: linear-gradient(120deg, rgba(52, 211, 153, 0.06), rgba(10, 16, 13, 0.3)); position: relative; overflow: hidden; }
.guarantee .seal { width: 130px; height: 130px; border-radius: 50%; display: grid; place-items: center; text-align: center; border: 2px solid rgba(52, 211, 153, 0.4); background: radial-gradient(closest-side, rgba(52, 211, 153, 0.12), transparent); flex-shrink: 0; }
.guarantee .seal .num { font-family: "Sora"; font-size: 42px; font-weight: 300; color: var(--emerald); line-height: 1; }
.guarantee .seal .dd { font-size: 12px; color: var(--text); letter-spacing: 0.16em; text-transform: uppercase; }
.guarantee h3 { font-size: 28px; margin-bottom: 12px; }
.guarantee p { font-size: 16px; color: var(--muted); max-width: 620px; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(32px, 4.6vw, 56px); margin-bottom: 20px; }
.final-cta .q { color: var(--emerald); }
.final-cta p { font-size: 19px; color: var(--muted); margin-bottom: 36px; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 400px; background: radial-gradient(closest-side, rgba(16, 185, 129, 0.16), transparent); z-index: 0; pointer-events: none; }

/* ===== Footer ===== */
footer { position: relative; z-index: 1; padding: 80px 0 0; border-top: 1px solid var(--line); margin-top: 40px; overflow: hidden; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 50px; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { font-size: 14.5px; color: var(--muted); }
.foot-links { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h6 { font-family: "Sora"; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 16px; font-weight: 500; }
.foot-col a { display: block; font-size: 14.5px; color: var(--muted); margin-bottom: 11px; transition: color 0.2s; white-space: nowrap; }
.foot-col a:hover { color: var(--emerald); }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: all 0.25s; }
.foot-social a:hover { color: var(--emerald); border-color: rgba(52, 211, 153, 0.3); transform: translateY(-2px); }
.wordmark { font-family: "Sora", sans-serif; font-weight: 600; font-size: clamp(60px, 18vw, 280px); letter-spacing: -0.04em; line-height: 0.8; text-align: center; background: linear-gradient(180deg, rgba(160, 200, 184, 0.16), rgba(52, 211, 153, 0.02) 60%, transparent); -webkit-background-clip: text; background-clip: text; color: transparent; padding-top: 30px; user-select: none; overflow: hidden; }
.foot-legal { display: flex; justify-content: space-between; padding: 24px 0 30px; font-size: 13px; color: var(--faint); flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .crm-tabs {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .crm-tab {
    width: 100%;
    max-width: 460px;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .phone-stage { order: -1; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .speed-grid, .practice, .ai-panel, .aud-grid { grid-template-columns: 1fr; }
  .kanban { grid-template-columns: 1fr 1fr; }
  .results { grid-template-columns: 1fr; }
  .hist { grid-template-columns: 1fr; }
  .hist-side { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 16px; margin-bottom: 16px; }
  .hist-main { padding-left: 0; }
  .nav-links { display: none; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 36px 28px; }
}
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .kanban { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .nav-cta .btn span { display: none; }
  .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
    max-width: 100%;
  }
  .btn-lg {
    font-size: 14px;
    padding: 14px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.001s !important; }
}

/* ============================================================
   v2 — effects, organic visuals & rebuilt CRM
   ============================================================ */

/* cursor spotlight */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 1; pointer-events: none;
  width: 520px; height: 520px; margin: -260px 0 0 -260px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(52, 211, 153, 0.10), transparent 70%);
  opacity: 0; transition: opacity 0.5s ease; mix-blend-mode: screen;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow.on { opacity: 1; } }

/* gradient text */
.grad-text {
  background: linear-gradient(100deg, #eafff6 0%, #4ee9ab 42%, #2dd4bf 78%, #6ee7b7 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 8s ease infinite;
}
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* glass surface */
.glass { backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); }

/* section tighten + ambient blobs */
.section-tight { padding-top: 40px; }
.glow-blob { position: absolute; z-index: 0; width: 620px; height: 620px; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: 0.5; }
.gb-left { top: 8%; left: -200px; background: radial-gradient(closest-side, rgba(16, 185, 129, 0.16), transparent 70%); }
.gb-right { top: 12%; right: -220px; background: radial-gradient(closest-side, rgba(45, 212, 191, 0.14), transparent 70%); }
.gb-center { top: 0; left: 50%; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(16, 185, 129, 0.12), transparent 70%); }



.nav-login { font-size: 14px; }
.btn-lg { font-size: 17px; padding: 18px 30px; }

/* speed extras */
.stat-inline { margin-top: 24px; display: flex; gap: 14px; align-items: baseline; }
.big-num { font-family: "Sora"; font-size: 46px; font-weight: 300; color: var(--ink); letter-spacing: -0.02em; }
.speed-card.accent { background: linear-gradient(180deg, rgba(52,211,153,0.07), rgba(10,16,13,0.4)); border-color: rgba(52,211,153,0.18); }

/* practice */
.practice-title { font-size: clamp(28px, 3.4vw, 42px); margin: 20px 0 18px; line-height: 1.12; }
.tl-item .node-pulse { box-shadow: 0 0 0 4px rgba(52,211,153,0.12); animation: nodePulse 2s ease-in-out infinite; }
@keyframes nodePulse { 0%,100% { box-shadow: 0 0 0 4px rgba(52,211,153,0.12); } 50% { box-shadow: 0 0 0 8px rgba(52,211,153,0.04); } }

/* CRM chrome extras */
.crm-chrome { position: relative; }
.live-pill { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: "Sora"; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald); }
.live-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: livePulse 1.6s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.crm-stage { position: relative; }
.crm-glow-border { position: absolute; inset: 0; border-radius: 26px; padding: 1px; pointer-events: none; z-index: 3;
  background: conic-gradient(from var(--a, 0deg), transparent, rgba(52,211,153,0.55), transparent 30%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.7; animation: borderSpin 6s linear infinite; }
@property --a { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes borderSpin { to { --a: 360deg; } }
.crm-caption { font-size: 14px; margin-top: 22px; text-align: center; color: var(--muted); max-width: 760px; margin-inline: auto; }

/* ---- Dashboard ---- */
.dash { display: flex; flex-direction: column; gap: 18px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kpi { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 10px; background: linear-gradient(180deg, rgba(20,32,27,0.5), rgba(10,16,13,0.3)); overflow: hidden; }
.kpi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.kpi-l { font-size: 12.5px; color: var(--faint); }
.kpi-trend { font-size: 11px; font-family: "Sora"; padding: 2px 8px; border-radius: 100px; background: rgba(52,211,153,0.12); color: var(--emerald); }
.kpi-n { font-family: "Sora"; font-size: 30px; font-weight: 400; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.kpi-spark { position: absolute; right: 0; bottom: 0; width: 60%; height: 28px; opacity: 0.7; }
.dash-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.dash-chart, .dash-side { border: 1px solid var(--line); border-radius: 16px; padding: 18px; background: rgba(255,255,255,0.012); }
.dash-chart-head { display: flex; justify-content: space-between; align-items: center; font-family: "Sora"; font-size: 13px; color: var(--text); margin-bottom: 10px; }
.legend { display: flex; gap: 14px; }
.lg { font-size: 11.5px; color: var(--faint); display: inline-flex; align-items: center; gap: 6px; }
.lg::before { content: ""; width: 10px; height: 3px; border-radius: 2px; }
.lg-1::before { background: var(--emerald); }
.lg-2::before { background: #5eead4; }
.area-chart { width: 100%; height: 180px; display: block; }
.area-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.area-line.draw { transition: stroke-dashoffset 1.8s var(--ease); stroke-dashoffset: 0; }
.area-fill { opacity: 0; transition: opacity 1s ease 0.5s; }
.area-fill.draw { opacity: 1; }
.axis { display: flex; justify-content: space-between; font-size: 11px; color: var(--faint); margin-top: 8px; font-family: "Sora"; }
.dash-side-head { font-family: "Sora"; font-size: 13px; color: var(--text); margin-bottom: 16px; }
.filial { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; margin-bottom: 13px; }
.f-nm { font-size: 12px; color: var(--muted); width: 96px; }
.f-bar { height: 8px; border-radius: 100px; background: rgba(255,255,255,0.05); overflow: hidden; }
.f-bar span { display: block; height: 100%; width: 0; border-radius: 100px; background: linear-gradient(90deg, var(--emerald), var(--emerald-2)); transition: width 1.3s var(--ease); }
.f-val { font-family: "Sora"; font-size: 12px; color: var(--text); }
.donut-wrap { position: relative; display: flex; align-items: center; gap: 16px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.donut { width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(var(--emerald) 0turn, var(--emerald) var(--p, 0turn), rgba(255,255,255,0.06) var(--p, 0turn)); transition: --p 1.4s var(--ease); position: relative; }
.donut::after { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: #0a0f0c; }
@property --p { syntax: '<angle>'; initial-value: 0turn; inherits: false; }
.donut-meta { display: flex; flex-direction: column; }
.donut-meta b { font-family: "Sora"; font-size: 22px; font-weight: 400; color: var(--ink); }
.donut-meta small { font-size: 12px; color: var(--faint); }

/* ---- Followups ---- */
.follow { display: flex; justify-content: center; }
.follow-flow { width: 100%; max-width: 560px; display: flex; flex-direction: column; gap: 12px; }
.ff-item { display: flex; flex-direction: column; gap: 5px; max-width: 88%; }
.ff-item.out-msg { align-self: flex-end; align-items: flex-end; }
.ff-item.in-msg { align-self: flex-start; align-items: flex-start; }
.ff-tag { font-size: 11px; color: var(--faint); font-family: "Sora"; }
.ff-tag.em { color: var(--emerald); }
.ff-tag.auto-tag { display: inline-flex; align-items: center; gap: 6px; color: #6ff0b8; background: rgba(110,240,184,0.1); padding: 3px 10px; border-radius: 100px; }
.ff-bubble { padding: 10px 14px; font-size: 13.5px; line-height: 1.5; border-radius: 14px; }
.ff-bubble.in { background: #1a2620; color: #e7efe9; border-bottom-left-radius: 5px; }
.ff-bubble.out { background: linear-gradient(180deg, #0f5d44, #0a4c37); color: #e9fff4; border-bottom-right-radius: 5px; }
.ff-item.auto .ff-bubble.out { background: linear-gradient(180deg, #114b3a, #0c3a2c); border: 1px solid rgba(110,240,184,0.22); }
.ff-item.revived .ff-bubble.in { box-shadow: 0 0 0 1px rgba(52,211,153,0.3); }
.ff-silence { display: flex; align-items: center; gap: 12px; margin: 4px 0; }
.ff-silence .line { flex: 1; height: 1px; background: var(--line-2); }
.ff-silence .lbl { font-size: 11px; color: var(--faint); font-style: italic; }
.ff-result { display: flex; align-items: center; gap: 11px; margin-top: 8px; padding: 14px 16px; border-radius: 14px; background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.25); color: #bfeed8; font-size: 14px; }
.ff-result svg { color: var(--emerald); flex-shrink: 0; }
.ff-result b { font-family: "Sora"; font-weight: 600; color: var(--ink); }

/* ---- Hierarchy ---- */
.hier { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: center; }
.hier-tree { display: flex; flex-direction: column; align-items: center; }
.role-card { display: flex; align-items: center; gap: 13px; padding: 15px 18px; border: 1px solid var(--line-2); border-radius: 14px; background: linear-gradient(180deg, #111d18, #0d1612); min-width: 220px; position: relative; }
.role-card.admin { border-color: rgba(52,211,153,0.32); background: linear-gradient(180deg, rgba(52,211,153,0.08), rgba(13,22,18,0.6)); }
.role-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(52,211,153,0.1); color: var(--emerald); flex-shrink: 0; }
.role-tx b { font-family: "Sora"; font-weight: 500; font-size: 15px; color: var(--ink); display: block; }
.role-tx small { font-size: 12px; color: var(--faint); }
.role-badge { margin-left: auto; font-size: 10.5px; font-family: "Sora"; padding: 3px 9px; border-radius: 100px; background: rgba(52,211,153,0.14); color: var(--emerald); }
.hier-branch { width: 2px; height: 26px; background: linear-gradient(180deg, rgba(52,211,153,0.5), rgba(52,211,153,0.12)); }
.role-row { display: flex; gap: 16px; position: relative; }
.role-row::before { content: ""; position: absolute; top: -14px; left: 25%; right: 25%; height: 2px; background: rgba(52,211,153,0.18); }
.hier-matrix { border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: rgba(255,255,255,0.012); }
.matrix-head { font-family: "Sora"; font-size: 13px; color: var(--text); margin-bottom: 14px; }
.perm { width: 100%; border-collapse: collapse; }
.perm th { font-family: "Sora"; font-size: 11px; font-weight: 500; color: var(--faint); text-align: center; padding: 6px 4px; font-weight: 500; }
.perm th:first-child { text-align: left; }
.perm td { font-size: 12.5px; padding: 9px 4px; border-top: 1px solid var(--line); text-align: center; color: var(--muted); }
.perm td:first-child { text-align: left; color: var(--text); }
.perm td.y { color: var(--emerald); font-weight: 700; }
.perm td.n { color: var(--faint); }

/* ---- Learn section ---- */
.learn { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; border: 1px solid var(--line-2); border-radius: 28px; padding: 50px; background: linear-gradient(120deg, rgba(52,211,153,0.06), rgba(10,16,13,0.3)); position: relative; overflow: hidden; }
.learn-tx h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 18px 0 16px; }
.learn-tx p { font-size: 16px; color: var(--muted); line-height: 1.65; }
.learn-orbit {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #060a08;
  border: 1.5px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.25), inset 0 0 15px rgba(52, 211, 153, 0.15);
  display: grid;
  place-items: center;
  color: #34d399;
  z-index: 5;
}
.core-icon {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.5));
}
.orbit-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(52, 211, 153, 0.45);
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: pulseRing 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.orbit-pulse.p1 { animation-delay: 0s; }
.orbit-pulse.p2 { animation-delay: 1.3s; }
.orbit-pulse.p3 { animation-delay: 2.6s; }

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.orbit-ring.r1 { width: 140px; height: 140px; border: 1px solid rgba(52, 211, 153, 0.12); }
.orbit-ring.r2 { width: 210px; height: 210px; border: 1px dashed rgba(52, 211, 153, 0.18); }
.orbit-ring.r3 { width: 270px; height: 270px; border: 1px dashed rgba(52, 211, 153, 0.07); }

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
.orbit-dot.d1-wrap { width: 140px; height: 140px; animation: spinOrbit 12s linear infinite; }
.orbit-dot.d2-wrap { width: 210px; height: 210px; animation: spinOrbit 22s linear infinite reverse; }
.orbit-dot.d3-wrap { width: 270px; height: 270px; animation: spinOrbit 16s linear infinite; }
.orbit-dot.d4-wrap { width: 210px; height: 210px; animation: spinOrbit 30s linear infinite; }

.dot-bright {
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: #a7f3d0;
  border: 2px solid #10b981;
  border-radius: 50%;
  box-shadow: 0 0 12px #34d399, 0 0 20px rgba(52, 211, 153, 0.4);
}
.dot-bright-small {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #a7f3d0;
  border: 2px solid #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #34d399;
}
.dot-dim {
  position: absolute;
  top: -4px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background: #475569;
  border-radius: 50%;
  opacity: 0.65;
}
.dot-dim-small {
  position: absolute;
  bottom: -3px;
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background: #64748b;
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes spinOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- CTA aurora ---- */
.cta-aurora { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 760px; height: 440px; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(16,185,129,0.18), transparent 70%); filter: blur(30px); }
.result-card .big[data-static] { color: var(--emerald); }

@media (max-width: 960px) {
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-row { grid-template-columns: 1fr; }
  .hier { grid-template-columns: 1fr; }
  .learn { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; text-align: center; }
  .learn-tx .eyebrow { justify-content: center; }
}
@media (max-width: 600px) {
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .role-card { min-width: 0; }
  .role-row { flex-direction: column; }
  .role-row::before { display: none; }
}

/* ===== Modal de Formulário ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 5, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 20px;
  overflow-y: auto; /* Permite rolagem da janela se o modal for maior que a tela */
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(180deg, #0b1310, #080c0a);
  border: 1px solid var(--line-2);
  border-radius: 26px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.9);
  padding: 40px 36px 36px;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  margin: auto; /* Garante centralização vertical com a rolagem do overlay */
  overflow-y: auto; /* Rolagem interna se o conteúdo for muito longo */
  max-height: 90vh; /* Limita a altura do container a 90% da viewport */
}
.modal-overlay.active .modal-container {
  transform: scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 10;
}
.modal-close:hover {
  background: rgba(255, 200, 200, 0.08);
  border-color: rgba(255, 100, 100, 0.3);
  color: #ffa5a5;
  transform: rotate(90deg);
}
.modal-close svg {
  width: 14px;
  height: 14px;
}

/* Progresso */
.modal-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  z-index: 5;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-2));
  width: 20%;
  transition: width 0.4s var(--ease);
}

.modal-content {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal-content.hide {
  display: none;
  opacity: 0;
}
.modal-title {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.28;
  margin-bottom: 8px;
  text-align: center;
}
.modal-subtitle {
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.55;
}
.modal-form {
  display: flex;
  flex-direction: column;
}

/* Passos do formulário */
.form-step {
  display: none;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.form-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.form-group input,
.form-group select {
  background: #0c1411;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--ink);
  font-family: inherit;
  transition: all 0.3s var(--ease);
  outline: none;
  width: 100%;
}
.form-group input::placeholder {
  color: var(--faint);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 12px var(--glow-soft);
  background: #0e1d19;
}
/* Cards de assinalar (opções) */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.option-card {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  background: #0c1411;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  user-select: none;
  position: relative;
  width: 100%;
}
.option-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.04);
}
.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.option-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--faint);
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
  background: transparent;
}
.option-card:hover .option-marker {
  border-color: var(--emerald);
}
.option-card.selected {
  border-color: var(--emerald);
  background: rgba(52, 211, 153, 0.07);
  box-shadow: 0 0 12px var(--glow-soft);
}
.option-card.selected .option-marker {
  border-color: var(--emerald);
  background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald);
}
.option-card.selected .option-marker::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #04130d;
}
.option-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.25s;
}
.option-card.selected .option-title {
  color: var(--ink);
}

/* Ações */
.step-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.step-actions .btn {
  padding: 12px 20px;
  font-size: 14px;
}
.step-actions .btn-ghost {
  padding: 12px 18px;
}
.step-actions .btn-primary {
  flex: 1;
  justify-content: center;
}

/* Sucesso */
.success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid var(--emerald);
  color: var(--emerald);
  display: grid;
  place-items: center;
  animation: scaleUp 0.5s var(--ease) forwards;
}
@keyframes scaleUp {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-icon svg {
  width: 24px;
  height: 24px;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: strokeCheck 0.65s ease forwards 0.25s;
}
@keyframes strokeCheck {
  to { stroke-dashoffset: 0; }
}
.success-actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}



