:root {
  --color-primary: #1865c1;
  --color-primary-strong: #1f5ed7;
  --color-primary-soft: rgba(24, 101, 193, 0.12);
  --color-bg: #f8f9fc;
  --color-surface: #ffffff;
  --color-muted: #475569;
  --color-subtle: #94a3b8;
  --color-border: rgba(30, 41, 59, 0.08);
  --surface-border: rgba(30, 41, 59, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --max-width: 1280px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #0f172a;
  background: var(--color-bg);
  height: 100%;
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(24, 101, 193, 0.5);
  outline-offset: 3px;
  border-radius: 10px;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}

.page::before {
  width: 420px;
  height: 420px;
  background: rgba(24, 101, 193, 0.25);
  top: -120px;
  left: -140px;
}

.page::after {
  width: 520px;
  height: 520px;
  background: rgba(24, 101, 193, 0.18);
  bottom: -220px;
  right: -160px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.academy-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.academy-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: var(--header-height);
  padding: 0;
  width: 100%;
}

.academy-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #0f172a;
  justify-self: center;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}

.academy-nav {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-muted);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.academy-nav-left {
  justify-self: end;
}

.academy-nav-right {
  justify-self: start;
}

@media (min-width: 768px) {
  .academy-nav {
    display: inline-flex;
  }

  .academy-write {
    display: inline-flex;
  }

  .academy-user-name {
    display: inline-flex;
  }
}

.academy-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.academy-nav a:hover {
  background: rgba(227, 235, 255, 0.6);
  color: #1865c1;
}

.academy-nav a.is-active {
  background: rgba(227, 235, 255, 1);
  color: #1865c1;
}

.academy-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
}

.academy-write {
  display: none;
  border: 1px solid var(--surface-border);
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1865c1;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.academy-write:hover {
  border-color: #1865c1;
  color: #1865c1;
}

.academy-user {
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}

.academy-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4169e1, #7c3aed);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.academy-user-name {
  color: var(--color-muted);
  font-size: 0.8rem;
  display: none;
}

.academy-chevron {
  color: #94a3b8;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn.primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(24, 101, 193, 0.25);
}

.btn.primary:hover {
  background: var(--color-primary-strong);
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(24, 101, 193, 0.2);
  color: var(--color-primary);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero {
  padding: 0;
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(24, 101, 193, 0.08);
}

.hero .container {
  width: min(100% - 32px, 1440px);
}

.hero-shell {
  position: relative;
  width: 100%;
  padding: 56px clamp(20px, 6vw, 96px) 64px;
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary-strong);
}

.hero h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: #1e293b;
}

.hero-subtitle {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 1rem;
}

.hero-indicator {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.hero-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.15);
}

.hero-indicator span.active {
  width: 34px;
  height: 7px;
  background: linear-gradient(90deg, rgba(24, 101, 193, 0.9), rgba(30, 64, 175, 0.7));
  border-radius: 999px;
}

.trust {
  padding-top: 24px;
  padding-bottom: 40px;
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-subtle);
  margin-bottom: 16px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.trust-logos span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 101, 193, 0.12);
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(1400px, 100%);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.product-card {
  min-height: 320px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(24, 101, 193, 0.12);
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card h3 {
  margin-top: 6px;
}

.product-preview {
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(140deg, rgba(24, 101, 193, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(24, 101, 193, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 18px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
  aspect-ratio: 16 / 9;
  min-height: 130px;
  overflow: hidden;
  position: relative;
}

.product-preview img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-preview.eval {
  background: linear-gradient(140deg, rgba(24, 101, 193, 0.18), rgba(255, 255, 255, 0.96));
}

.product-preview.lms {
  background: linear-gradient(140deg, rgba(47, 122, 216, 0.18), rgba(255, 255, 255, 0.96));
}

.product-preview.academy {
  background: linear-gradient(140deg, rgba(124, 58, 237, 0.16), rgba(255, 255, 255, 0.96));
}

.product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(24, 101, 193, 0.18);
}

.product-card:hover .product-preview img {
  transform: scale(1.04) translateY(-2px);
}

.product-card:hover .product-preview::after {
  opacity: 0.5;
}

.product-card:nth-child(1) {
  transform: translateY(10px);
  animation: float 14s ease-in-out infinite;
}

.product-card:nth-child(2) {
  transform: translateY(-12px);
  animation: float 16s ease-in-out infinite;
}

.product-card:nth-child(3) {
  transform: translateY(10px);
  animation: float 15s ease-in-out infinite;
}

.product-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 101, 193, 0.12);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-link {
  font-size: 0.78rem;
  color: var(--color-primary-strong);
  font-weight: 600;
  position: relative;
  padding-right: 16px;
}

.card-link::after {
  content: "->";
  position: absolute;
  right: 0;
  top: 0;
}

.product-card h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.08rem;
}

.product-card p {
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.84rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.68rem;
  color: var(--color-subtle);
}

.card-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(24, 101, 193, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(250, 251, 253, 0.8);
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--color-muted);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-strong);
}

.stats {
  background: rgba(250, 251, 253, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stats .stat-card {
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 101, 193, 0.1);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.stats .stat-card h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.stats .stat-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.testimonials {
  background: rgba(248, 249, 252, 0.8);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 101, 193, 0.12);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--color-subtle);
}

.testimonial-meta .name {
  color: #0f172a;
  font-weight: 600;
}

.faq {
  background: rgba(255, 255, 255, 0.8);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(24, 101, 193, 0.1);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: #0f172a;
}

.faq details p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.preview-card {
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(140deg, rgba(24, 101, 193, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(24, 101, 193, 0.16);
  box-shadow: var(--shadow-md);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-card h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.1rem;
}

.preview-stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stack {
  background: radial-gradient(circle at top, rgba(24, 101, 193, 0.08), rgba(255, 255, 255, 0.98));
}

.stack-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.stack-card {
  position: relative;
  border-radius: 34px;
  padding: 28px 26px 30px;
  background: #ffffff;
  border: 1px solid rgba(24, 101, 193, 0.14);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  min-height: 300px;
  display: grid;
  gap: 12px;
}

.stack-line {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 101, 193, 0.9), rgba(74, 141, 232, 0.9));
}

.stack-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stack-card h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.25rem;
}

.stack-card p {
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.efaixbot {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: "Inter", "Manrope", sans-serif;
}

.efaixbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.efaixbot-toggle img {
  width: 28px;
  height: 28px;
}

.efaixbot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(24, 101, 193, 0.35);
  animation: pulse 2.4s ease-out infinite;
}

.efaixbot-peek {
  max-width: 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 101, 193, 0.14);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  font-size: 0.82rem;
  color: #0f172a;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.efaixbot-peek[data-show="true"] {
  opacity: 1;
  transform: translateY(0);
}

.coming-soon-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(24, 101, 193, 0.08), rgba(255, 255, 255, 0.98));
}

.coming-soon {
  padding: 120px 0 140px;
}

.coming-soon-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
  border-radius: 36px;
  padding: 48px;
  background: linear-gradient(150deg, rgba(24, 101, 193, 0.08), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(24, 101, 193, 0.14);
  box-shadow: var(--shadow-lg);
}

.coming-soon-copy h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  margin: 10px 0 12px;
}

.coming-soon-copy p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.coming-soon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.coming-soon-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 101, 193, 0.08);
  border: 1px solid rgba(24, 101, 193, 0.16);
  font-size: 0.82rem;
  color: var(--color-primary);
  font-weight: 600;
}

.coming-soon-media {
  display: flex;
  justify-content: center;
}

.coming-soon-frame {
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(24, 101, 193, 0.16);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.coming-soon-frame img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
}

.efaixbot-panel {
  width: 320px;
  max-height: 520px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(24, 101, 193, 0.14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: all 0.2s ease;
}

.efaixbot[data-state="open"] .efaixbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.efaixbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(120deg, rgba(24, 101, 193, 0.12), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(24, 101, 193, 0.12);
}

.efaixbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.efaixbot-title img {
  width: 28px;
  height: 28px;
}

.efaixbot-title strong {
  display: block;
  font-size: 0.95rem;
}

.efaixbot-title span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.efaixbot-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-muted);
}

.efaixbot-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  min-height: 180px;
}

.efaixbot-msg {
  display: flex;
}

.efaixbot-msg--bot {
  justify-content: flex-start;
}

.efaixbot-msg--user {
  justify-content: flex-end;
}

.efaixbot-bubble {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.efaixbot-msg--bot .efaixbot-bubble {
  background: rgba(24, 101, 193, 0.08);
  color: #0f172a;
}

.efaixbot-msg--user .efaixbot-bubble {
  background: linear-gradient(120deg, #1865c1, #3f7fd6);
  color: #ffffff;
}

.efaixbot-typing .efaixbot-bubble {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.efaixbot-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(24, 101, 193, 0.6);
  animation: blink 1s infinite;
}

.efaixbot-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.efaixbot-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.efaixbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.efaixbot-quick button {
  border: 1px solid rgba(24, 101, 193, 0.2);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  cursor: pointer;
}

.efaixbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(24, 101, 193, 0.12);
}

.efaixbot-input input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 8px 12px;
  font-size: 0.85rem;
}

.efaixbot-input button {
  border-radius: 999px;
  border: none;
  background: var(--color-primary);
  color: #ffffff;
  padding: 8px 14px;
  font-size: 0.82rem;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes blink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.vision-card {
  border-radius: 36px;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 242, 252, 0.9));
  border: 1px solid rgba(24, 101, 193, 0.12);
  box-shadow: var(--shadow-lg);
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.vision-grid--text {
  grid-template-columns: minmax(0, 1fr);
}

.vision-copy h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 10px 0 12px;
}

.vision-lede {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.vision-values {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.vision-value {
  display: grid;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.vision-value .value-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
}

.vision-cta {
  margin-top: 4px;
}

.vision-team {
  margin-top: 42px;
  display: grid;
  gap: 24px;
}

.vision-team-heading h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 8px;
}

.vision-team-heading p {
  color: var(--color-muted);
}

.vision-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  position: relative;
  border-radius: 36px;
  padding: 24px 24px 28px;
  background: linear-gradient(180deg, #ffffff, rgba(24, 101, 193, 0.08));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(120deg, rgba(24, 101, 193, 0.45), rgba(74, 141, 232, 0.45));
  border-radius: 40px 40px 0 0;
  opacity: 0.7;
}

.team-photo {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 34px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(24, 101, 193, 0.15);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  margin-bottom: 18px;
  z-index: 1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.team-info {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.team-info h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.2rem;
}

.team-info span {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.team-info p {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.founders-intro {
  max-width: 900px;
  margin: 18px auto 32px;
  text-align: center;
  color: var(--color-muted);
  display: grid;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.founders-grid--vision {
  margin-top: 12px;
}

.founder-card--vision {
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(24, 101, 193, 0.14);
  background: linear-gradient(160deg, rgba(24, 101, 193, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 18px;
  min-height: 260px;
}

.founder-media {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  padding: 6px;
  background: rgba(24, 101, 193, 0.08);
  border: 1px solid rgba(24, 101, 193, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.founder-media img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(24, 101, 193, 0.2);
}

.founder-copy h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.founder-copy .role {
  color: var(--color-primary-strong);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.founder-copy p {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.cta {
  padding: 80px 0 100px;
}

.cta-card {
  border-radius: 32px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(24, 101, 193, 0.12), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(24, 101, 193, 0.2);
  box-shadow: var(--shadow-lg);
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
}

.cta-card h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-content h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form label {
  display: grid;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.cta-form input,
.cta-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(24, 101, 193, 0.2);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
}

.cta-form button {
  justify-self: start;
}

.academy-footer {
  padding: 40px 0;
  color: var(--color-subtle);
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid var(--surface-border);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.academy-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.academy-footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.academy-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.academy-footer-tags span {
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  color: #0f172a;
}

.academy-footer-column {
  display: grid;
  gap: 10px;
}

.academy-footer-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1f5ed7;
}

.academy-footer-inner a {
  display: block;
  color: var(--color-muted);
}

.academy-footer-inner a:hover {
  color: var(--color-primary);
}

.academy-footer-brand p {
  color: var(--color-muted);
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-subtle);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-cards,
  .ecosystem-grid,
  .preview-grid,
  .stats-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    transform: none;
  }

  .hero-shell {
    padding: 44px 20px 48px;
  }

  .hero-shell {
    padding: 44px 20px 48px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: 36px 28px;
  }

  .vision-team-grid {
    grid-template-columns: 1fr;
  }

  .stack-cards {
    grid-template-columns: 1fr;
  }

  .coming-soon-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }


  .founder-card--vision {
    padding: 24px;
    min-height: auto;
  }

  .founder-media {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-form button {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .academy-nav {
    gap: 8px;
    padding: 8px 10px;
  }

  .efaixbot {
    right: 16px;
    bottom: 16px;
  }

  .efaixbot-panel {
    width: min(92vw, 320px);
  }

  .coming-soon {
    padding: 100px 0 120px;
  }

  .coming-soon-card {
    padding: 28px 20px;
  }

  .vision-card {
    padding: 28px 20px;
  }

  .team-card {
    border-radius: 28px;
  }

  .team-photo {
    width: 96px;
    height: 96px;
    border-radius: 28px;
  }

  .academy-footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .academy-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .academy-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .academy-actions {
    justify-content: center;
  }

  .academy-footer-inner {
    grid-template-columns: 1fr;
  }
}
