/* ============================================
   PRIMEORA — LIGHT MODE PREMIUM CSS
   ============================================ */

:root {
  --bg:        #FFFFFF;
  --bg2:       #F8FAFC;
  --bg3:       #F1F5F9;
  --surface:   #FFFFFF;
  --surfaceHi: #F8FAFC;
  --border:    #E2E8F0;
  --borderHi:  rgba(124,58,237,0.3);
  --primary:   #7C3AED;
  --primary2:  #6D28D9;
  --primaryLt: #EDE9FE;
  --blue:      #0EA5E9;
  --blueLt:    #E0F2FE;
  --orange:    #F59E0B;
  --orangeLt:  #FEF3C7;
  --green:     #10B981;
  --greenLt:   #D1FAE5;
  --red:       #EF4444;
  --redLt:     #FEE2E2;
  --text:      #0F172A;
  --textMed:   #334155;
  --textMuted: #64748B;
  --textDim:   #94A3B8;
  --radius:    12px;
  --radiusLg:  20px;
  --radiusXl:  28px;
  --shadow:    0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadowMd:  0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadowLg:  0 8px 40px rgba(0,0,0,0.1);
  --shadowPurple: 0 8px 32px rgba(124,58,237,0.2);
  --trans:     0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  /* Mesh Gradient Background */
  background-image: 
    radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.05) 0, transparent 50%), 
    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.05) 0, transparent 50%), 
    radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.05) 0, transparent 50%), 
    radial-gradient(at 0% 100%, rgba(16, 185, 129, 0.05) 0, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ——— UTILITIES ——— */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.gradient-text {
  background: linear-gradient(135deg, #7C3AED 0%, #0EA5E9 60%, #7C3AED 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shiftGrad 4s linear infinite;
}
@keyframes shiftGrad { to { background-position: 200% center; } }

.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary);
  background: var(--primaryLt);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: var(--text); }
.section-header p { color: var(--textMuted); font-size: 1.05rem; }

/* ——— BUTTONS ——— */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), #5B21B6);
  color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem;
  padding: 12px 24px; border-radius: 999px; text-decoration: none; border: none;
  cursor: pointer; transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.4); }
.btn-primary.btn-large { padding: 15px 32px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg3); color: var(--textMed); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .95rem; padding: 12px 24px; border-radius: 999px;
  text-decoration: none; border: 1.5px solid var(--border);
  cursor: pointer; transition: all var(--trans);
}
.btn-secondary:hover { background: var(--bg2); border-color: #CBD5E1; transform: translateY(-1px); }
.btn-secondary.btn-large { padding: 15px 28px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--textMuted); font-weight: 600; font-size: .9rem;
  padding: 9px 18px; border-radius: 999px; text-decoration: none;
  background: transparent; border: 1.5px solid var(--border);
  transition: all var(--trans); cursor: pointer;
}
.btn-ghost:hover { color: var(--text); border-color: #CBD5E1; background: var(--bg2); }

.btn-outline-card {
  display: block; text-align: center; color: var(--primary); font-weight: 700;
  font-size: .9rem; padding: 12px 20px; border-radius: 12px; text-decoration: none;
  border: 1.5px solid var(--borderHi); background: var(--primaryLt);
  transition: all var(--trans); cursor: pointer; margin-top: auto;
}
.btn-outline-card:hover { background: #DDD6FE; transform: translateY(-1px); }

/* ——— NAVBAR ——— */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--trans);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  max-width: 1200px; margin: 0 auto; padding: 14px 28px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #0EA5E9);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; box-shadow: 0 2px 8px rgba(124,58,237,.3);
}
.logo-text { font-size: 1.2rem; font-weight: 900; color: var(--text); letter-spacing: -.03em; }
.logo-badge {
  font-size: .58rem; font-weight: 800; letter-spacing: .12em;
  background: var(--primaryLt); color: var(--primary);
  padding: 3px 7px; border-radius: 6px; border: 1px solid #DDD6FE;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--textMuted); font-weight: 500; font-size: .9rem;
  padding: 6px 14px; border-radius: 8px; transition: all var(--trans);
}
.nav-links a:hover { color: var(--text); background: var(--bg3); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--textMuted); border-radius: 2px; transition: all var(--trans); }
.mobile-menu {
  display: none; flex-direction: column; gap: 2px; padding: 10px 24px 20px;
  border-top: 1px solid var(--border); background: var(--bg);
}
.mobile-menu a { text-decoration: none; color: var(--textMuted); padding: 10px 12px; font-weight: 500; border-radius: 10px; transition: all var(--trans); }
.mobile-menu a:hover { background: var(--bg3); color: var(--text); }
.mobile-menu a:last-child { margin-top: 8px; text-align: center; }
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .mobile-menu.open { display: flex; }
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: var(--bg);
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: .2;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob-1 { width: 800px; height: 800px; background: radial-gradient(circle, var(--primary), transparent); top: -300px; left: -200px; }
.blob-2 { width: 700px; height: 700px; background: radial-gradient(circle, var(--blue), transparent); bottom: -200px; right: -150px; animation-duration: 15s; animation-delay: -4s; }
.blob-3 { width: 500px; height: 500px; background: radial-gradient(circle, var(--orange), transparent); top: 30%; left: 60%; transform: translate(-50%,-50%); animation-duration: 10s; opacity: .12; }
.blob-4 { width: 600px; height: 600px; background: radial-gradient(circle, var(--green), transparent); top: 60%; left: 10%; animation: blobFloat 18s ease-in-out infinite alternate-reverse; opacity: .08; }
@keyframes blobFloat { 
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(60px, 40px) rotate(10deg) scale(1.05); }
  100% { transform: translate(-20px, 80px) rotate(-10deg) scale(0.95); }
}

.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primaryLt); border: 1px solid #DDD6FE; color: var(--primary);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 28px;
  animation: fadeDown .7s ease both;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(16,185,129,.4);
  animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.08;
  letter-spacing: -.04em; margin-bottom: 24px; color: var(--text);
  animation: fadeDown .8s .1s ease both;
}
.hero-sub {
  max-width: 580px; color: var(--textMuted); font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 40px; animation: fadeDown .8s .2s ease both;
}
.hero-sub strong { color: var(--primary); }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 56px; animation: fadeDown .8s .3s ease both;
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }

/* TERMINAL */
.hero-terminal {
  width: 100%; max-width: 700px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radiusXl); overflow: hidden;
  box-shadow: var(--shadowLg);
  animation: fadeUp 1s .4s ease both; margin-bottom: 40px;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.terminal-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg2); padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.t-dots { display: flex; gap: 6px; }
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-dot.red { background: #FF5F57; }
.t-dot.yellow { background: #FFBD2E; }
.t-dot.green { background: #28CA42; }
.t-title { margin-left: 6px; font-size: .8rem; color: var(--textMuted); font-family: 'JetBrains Mono', monospace; flex: 1; }
.t-live { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: var(--green); font-weight: 600; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulseRing 2s infinite; }

.terminal-body { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.t-msg { display: flex; gap: 12px; align-items: flex-start; text-align: left; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.user-av { background: linear-gradient(135deg, var(--orange), #F97316); color: #fff; }
.ai-av { background: linear-gradient(135deg, var(--primary), var(--blue)); color: #fff; font-size: 1.1rem; }
.t-bubble {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 4px 16px 16px 16px; padding: 12px 16px;
  font-size: .88rem; color: var(--textMed); line-height: 1.5; font-style: italic;
}
.user-bubble { border-radius: 4px 16px 16px 16px; }
.t-text { display: flex; flex-direction: column; gap: 3px; padding-top: 4px; }
.typing-line {
  display: block; opacity: 0; font-family: 'JetBrains Mono', monospace;
  font-size: .79rem; color: var(--textMuted); line-height: 1.6;
  animation: typeIn .5s var(--d) ease both;
}
.typing-line.success { color: var(--green); font-weight: 600; }
@keyframes typeIn { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

.trust-bar { text-align: center; animation: fadeDown .8s .6s ease both; }
.trust-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--textDim); margin-bottom: 12px; }
.trust-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.trust-logo { font-size: .8rem; font-weight: 700; color: var(--textMuted); }
.trust-sep { color: var(--border); font-size: 1rem; }

/* ——— STATS ——— */
.stats-bar {
  background: linear-gradient(135deg, var(--primaryLt), var(--blueLt));
  border-top: 1px solid #DDD6FE; border-bottom: 1px solid #BAE6FD;
  padding: 40px 0;
}
.stats-grid {
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; }
.stat-top { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; color: var(--primary); line-height: 1; }
.stat-unit { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .78rem; color: var(--textMuted); margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 48px; background: #DDD6FE; }
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ——— FEATURES ——— */
.features { padding: 100px 0; background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.feature-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radiusLg); padding: 28px;
  transition: all var(--trans); position: relative; overflow: hidden;
}
.feature-card:hover { border-color: #DDD6FE; transform: translateY(-4px); box-shadow: var(--shadowMd); }
.feature-large { grid-column: span 2; }
.feat-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  transition: all var(--trans);
}
.feature-card:hover .feat-icon-wrap { transform: scale(1.1); }
.feat-icon-wrap.purple { background: var(--primaryLt); }
.feat-icon-wrap.blue { background: var(--blueLt); }
.feat-icon-wrap.orange { background: var(--orangeLt); }
.feat-icon-wrap.green { background: var(--greenLt); }
.feat-icon-wrap.red { background: var(--redLt); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { color: var(--textMuted); font-size: .88rem; line-height: 1.65; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.tag.purple { background: var(--primaryLt); color: var(--primary); }
.tag.blue { background: var(--blueLt); color: #0369A1; }
.tag.green { background: var(--greenLt); color: #065F46; }
.feat-highlight { background: linear-gradient(135deg, var(--greenLt), #ECFDF5); border-color: #A7F3D0; }
.data-visual { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.dv-node { font-size: .78rem; font-weight: 600; padding: 6px 12px; border-radius: 8px; background: var(--greenLt); color: #065F46; border: 1px solid #A7F3D0; }
.dv-node.blocked { background: var(--redLt); color: #991B1B; border-color: #FECACA; }
.dv-arrow { color: var(--green); font-size: 1rem; font-weight: 700; }
.dv-arrow.blocked { color: var(--red); }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } .feature-large { grid-column: 1; } }

/* ——— HOW IT WORKS ——— */
.how { 
  padding: 100px 0; 
  background: var(--bg2); 
  background-image: radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.04) 0, transparent 40%);
}
.pipeline-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.p-step {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radiusLg); padding: 24px;
  transition: all var(--trans); position: relative;
}
.p-step:hover { border-color: #DDD6FE; transform: translateY(-3px); box-shadow: var(--shadowMd); }
.p-num {
  font-family: 'JetBrains Mono', monospace; font-size: 1.8rem; font-weight: 700;
  color: var(--border); margin-bottom: 12px; line-height: 1;
  transition: color var(--trans);
}
.p-step:hover .p-num { color: var(--primary); }
.success-num { color: var(--green) !important; }
.p-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.p-step p { font-size: .8rem; color: var(--textMuted); line-height: 1.55; }
.p-time {
  display: inline-block; margin-top: 12px; font-size: .7rem; font-weight: 700;
  color: var(--textDim); background: var(--bg3); padding: 3px 8px; border-radius: 6px;
}
.success-time { color: var(--green) !important; background: var(--greenLt) !important; }
.p-step-last { border-color: #A7F3D0; background: linear-gradient(135deg, #ECFDF5, var(--surface)); }
@media (max-width: 900px) { .pipeline-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .pipeline-steps { grid-template-columns: 1fr; } }

/* ——— INTEGRAÇÕES ——— */
.integracoes { padding: 100px 0; background: var(--bg); }
.integrations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 14px;
}
.int-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  transition: all var(--trans); cursor: default;
}
.int-card:hover { border-color: #DDD6FE; transform: translateX(4px); box-shadow: var(--shadow); }
.int-logo { font-size: 1.8rem; flex-shrink: 0; }
.int-info { flex: 1; }
.int-info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); }
.int-info span { font-size: .75rem; color: var(--textMuted); }
.badge { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.badge.active { background: var(--greenLt); color: #065F46; }
.badge.beta { background: var(--orangeLt); color: #92400E; }
.badge.dev { background: var(--bg3); color: var(--textMuted); }

/* ——— COMPARE ——— */
.compare { 
  padding: 100px 0; 
  background: var(--bg2); 
  background-image: radial-gradient(at 0% 100%, rgba(245, 158, 11, 0.04) 0, transparent 40%);
}
.compare-wrap { overflow-x: auto; border-radius: var(--radiusLg); border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.compare-table th {
  padding: 16px 18px; text-align: left; font-weight: 700;
  background: var(--bg3); border-bottom: 1.5px solid var(--border);
  color: var(--textMuted); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
}
.compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--textMuted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg2); }
.compare-table td:first-child { color: var(--text); font-weight: 600; }
.col-hl { background: var(--primaryLt) !important; color: var(--primary) !important; font-weight: 700 !important; }
.compare-table th.col-hl { background: linear-gradient(135deg,var(--primaryLt),var(--blueLt)) !important; color: var(--primary) !important; }

/* ——— PRICING ——— */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; align-items: stretch;
}
.price-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radiusLg); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; transition: all var(--trans);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadowMd); border-color: #DDD6FE; }
.featured-card {
  border-color: var(--primary); background: linear-gradient(160deg, #FAF5FF, var(--surface));
  box-shadow: var(--shadowPurple);
}
.featured-card:hover { box-shadow: 0 16px 48px rgba(124,58,237,.25); }
.price-provider { border-color: #FDE68A; background: linear-gradient(160deg, var(--orangeLt), var(--surface)); }

.featured-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px; box-shadow: 0 4px 12px rgba(124,58,237,.3);
}
.price-tier { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--textMuted); }
.featured-card .price-tier { color: var(--primary); }
.price-amount { display: flex; align-items: baseline; gap: 3px; }
.price-cur { font-size: .85rem; color: var(--textMuted); }
.price-val { font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; }
.featured-card .price-val { color: var(--primary); }
.price-per { font-size: .85rem; color: var(--textMuted); }
.price-desc { font-size: .82rem; color: var(--textMuted); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-list li { font-size: .83rem; color: var(--textMuted); display: flex; align-items: center; gap: 6px; }
.price-list li.on::before { content: '✅'; font-size: .75rem; }
.price-list li.off { opacity: .45; }
.price-list li.off::before { content: '⬜'; font-size: .75rem; }

/* ——— PERSONALITY ——— */
.personality { 
  padding: 100px 0; 
  background: var(--bg2); 
  background-image: radial-gradient(at 50% 50%, rgba(124, 58, 237, 0.04) 0, transparent 60%);
}
.pers-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pers-text .section-tag { display: inline-block; }
.pers-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: var(--text); }
.pers-text p { color: var(--textMuted); margin-bottom: 28px; font-size: .95rem; }
.pers-pillars { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: .8rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  transition: all var(--trans); cursor: default;
}
.pill.purple { background: var(--primaryLt); color: var(--primary); border: 1px solid #DDD6FE; }
.pill.orange { background: var(--orangeLt); color: #92400E; border: 1px solid #FDE68A; }
.pill.blue { background: var(--blueLt); color: #0369A1; border: 1px solid #BAE6FD; }
.pill.green { background: var(--greenLt); color: #065F46; border: 1px solid #A7F3D0; }
.pill.red { background: var(--redLt); color: #991B1B; border: 1px solid #FECACA; }
.pill:hover { transform: scale(1.05); }

.pers-chat { display: flex; flex-direction: column; gap: 14px; }
.chat-bubble {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 6px 20px 20px 20px; padding: 18px 20px;
  box-shadow: var(--shadow); transition: all var(--trans);
}
.chat-bubble:hover { border-color: #DDD6FE; transform: translateX(4px); box-shadow: var(--shadowMd); }
.chat-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.chat-ai-dot {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem; flex-shrink: 0;
}
.chat-header strong { font-size: .8rem; font-weight: 700; color: var(--primary); letter-spacing: .05em; text-transform: uppercase; }
.chat-bubble p { font-size: .87rem; color: var(--textMed); line-height: 1.6; }
@media (max-width: 768px) { .pers-inner { grid-template-columns: 1fr; } }

/* ——— EARLY ACCESS ——— */
.early { padding: 100px 0; background: var(--bg); }
.early-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.early-badge {
  display: inline-block; background: var(--orangeLt); border: 1px solid #FDE68A;
  color: #92400E; font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.early-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: var(--text); }
.early-text p { color: var(--textMuted); margin-bottom: 24px; }
.early-text strong { color: var(--text); }
.early-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.early-perks li { font-size: .9rem; color: var(--textMed); display: flex; align-items: center; gap: 8px; }

.early-form-wrap {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radiusXl); padding: 36px;
  box-shadow: var(--shadowMd);
}
.early-form h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.early-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--textMed); letter-spacing: .02em; }
.early-form input, .early-form select {
  font-family: 'Outfit', sans-serif; font-size: .9rem; color: var(--text);
  background: var(--bg2); border: 1.5px solid var(--border);
  padding: 12px 14px; border-radius: 10px; outline: none; transition: all var(--trans);
  width: 100%;
}
.early-form input::placeholder { color: var(--textDim); }
.early-form input:focus, .early-form select:focus {
  border-color: var(--primary); background: var(--bg);
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}
.form-note { font-size: .75rem; color: var(--textDim); text-align: center; }

.early-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.early-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.early-success p { color: var(--textMuted); }

@media (max-width: 768px) { .early-inner { grid-template-columns: 1fr; } }

/* ——— FOOTER ——— */
.footer { padding: 64px 0 0; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; padding-bottom: 48px; }
.footer-brand .logo { display: inline-flex; margin-bottom: 14px; }
.footer-brand p { color: var(--textMuted); font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-brand strong { color: var(--primary); }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg3); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--textMuted); font-size: .85rem;
  transition: all var(--trans);
}
.social-btn:hover { border-color: #DDD6FE; background: var(--primaryLt); color: var(--primary); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--textDim); margin-bottom: 4px; }
.footer-col a { text-decoration: none; color: var(--textMuted); font-size: .85rem; transition: color var(--trans); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); background: var(--bg2); }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 18px 0; font-size: .78rem; color: var(--textDim); }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } .footer-links { grid-template-columns: repeat(2,1fr); } }

/* ——— SCROLL ANIMATIONS ——— */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ——— NAVBAR SCROLLED STATE ——— */
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }
