/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Surfaces */
  --surface-1: rgb(255, 255, 255);
  --surface-2: rgb(240, 240, 240);
  --surface-3: rgb(212, 212, 212);
  --surface-4: rgb(23, 23, 23);

  /* Text */
  --txt-heavy: rgb(23, 23, 23);
  --txt-medium: rgb(82, 82, 82);
  --txt-light: rgb(163, 163, 163);
  --txt-inverted: rgb(255, 255, 255);

  /* Accents */
  --accent-green: rgb(23, 23, 23);
  --accent-orange: rgb(23, 23, 23);
  --accent-yellow: rgb(23, 23, 23);

  /* Grays */
  --gray-100: rgb(240, 240, 240);
  --gray-200: rgb(212, 212, 212);
  --gray-300: rgb(163, 163, 163);
  --gray-400: rgb(115, 115, 115);
  --gray-500: rgb(82, 82, 82);
  --gray-600: rgb(38, 38, 38);

  /* Layout */
  --max-width: 1200px;
  --container-max: 1400px;
  --section-gap: 140px;
  --padding-x: 48px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--txt-medium);
  background: var(--surface-1);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
.h1 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  color: var(--txt-heavy);
  text-align: center;
}

.h2 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  color: var(--txt-heavy);
  text-align: center;
}

.h3 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3em;
  letter-spacing: -0.03em;
  color: var(--txt-heavy);
}

.body-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: var(--txt-medium);
}

.body-text-lg {
  font-size: 16px;
}

.label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4em;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ===== LAYOUT ===== */
.page-wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  padding: 0 var(--padding-x);
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-container {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 640px;
  margin-bottom: 64px;
}

/* ===== CHIP ===== */
.chip {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--surface-4);
  color: var(--txt-inverted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.chip--light {
  background: var(--surface-1);
  color: var(--txt-heavy);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  line-height: 1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--primary {
  background: var(--surface-4);
  color: var(--txt-inverted);
}

.btn--primary:hover {
  background: rgb(40, 40, 40);
}

.btn--primary .btn-arrow {
  color: var(--txt-inverted);
}

.btn--green .btn-arrow {
  color: var(--txt-inverted);
}

.btn--secondary {
  background: var(--surface-1);
  color: var(--txt-heavy);
  border: 1px solid var(--gray-200);
}

.btn--secondary:hover {
  border-color: var(--gray-300);
}

.btn--green {
  background: var(--surface-4);
  color: var(--txt-inverted);
}

.btn--green:hover {
  background: rgb(40, 40, 40);
}

.btn-arrow {
  font-size: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 16px;
  border-radius: 100px;
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 500;
  color: var(--txt-medium);
  transition: background 0.2s;
}

.eyebrow:hover {
  background: var(--gray-200);
}

.eyebrow .chip {
  font-size: 10px;
  padding: 4px 10px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(212, 212, 212, 0.4);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Serif', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--txt-heavy);
}

.navbar-logo img {
  height: 45px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-medium);
  transition: color 0.2s;
}

.navbar-link:hover {
  color: var(--txt-heavy);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--txt-heavy);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding-top: 156px;
  padding-bottom: 0;
  position: relative;
  overflow: clip;
  overflow-x: clip;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 640px;
}

.hero-subtitle {
  max-width: 600px;
  text-align: center;
  font-size: 20px;
}

.hero-social-proof {
  text-align: center;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 64px;
}

.hero-visual-bg {
  background: var(--surface-4);
  border-radius: 40px;
  padding: 48px 48px 0;
  position: relative;
  overflow: hidden;
}

.hero-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/eSKsiFDuKFu9WHCOaL2VvSrlyk0.svg');
  background-size: cover;
  opacity: 0.15;
  pointer-events: none;
}

.hero-mockup {
  width: 100%;
  border-radius: 16px 16px 0 0;
  background: var(--surface-1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* ===== DASHBOARD MOCKUP ===== */
.dash {
  display: flex;
  width: 100%;
  min-height: 420px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  overflow: hidden;
}

.dash {
  filter: grayscale(100%);
}

/* Sidebar */
.dash-sidebar {
  width: 64px;
  background: var(--surface-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
  flex-shrink: 0;
}

.dash-sidebar-logo {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.dash-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  padding: 0 6px;
}

.dash-sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 8px;
  font-weight: 500;
  cursor: default;
  transition: all 0.2s;
}

.dash-sidebar-item--active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Main */
.dash-main {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  min-width: 0;
}

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

.dash-greeting {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--txt-heavy);
}

.dash-subgreeting {
  font-size: 10px;
  color: var(--txt-medium);
  margin-top: 2px;
}

.dash-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-cta-btn {
  padding: 6px 14px;
  background: var(--surface-4);
  color: #fff;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  cursor: default;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 9px;
  color: var(--txt-heavy);
}

/* Cards */
.dash-row {
  display: flex;
  gap: 10px;
}

.dash-row--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dash-card {
  background: var(--surface-1);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px;
  flex: 1;
}

.dash-card--half {
  flex: 1;
  min-width: 0;
}

.dash-card-title {
  font-size: 10px;
  font-weight: 500;
  color: var(--txt-medium);
}

.dash-metric-big {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--txt-heavy);
  margin-top: 6px;
  line-height: 1;
}

.dash-metric-change {
  font-size: 9px;
  color: var(--txt-medium);
  margin-top: 6px;
}

/* Ring */
.dash-ring-container {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.dash-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--txt-heavy);
}

.dash-ring-progress {
  animation: dashRingFill 1.5s ease-out forwards;
}

@keyframes dashRingFill {
  from { stroke-dashoffset: 213.6; }
  to { stroke-dashoffset: 47; }
}

/* Actions */
.dash-action-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.dash-action {
  font-size: 10px;
  color: var(--txt-medium);
  padding: 8px 10px;
  background: var(--gray-100);
  border-radius: 8px;
}

/* Posts list */
.dash-posts-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.dash-post-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.dash-post-item:last-child {
  border-bottom: none;
}

.dash-post-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--txt-medium);
}

.dash-post-badge--ready {
  background: var(--surface-4);
  color: #fff;
}

/* AI Panel */
.dash-ai-panel {
  width: 200px;
  background: var(--surface-1);
  border-left: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.dash-ai-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.dash-ai-messages {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.dash-ai-msg {
  display: flex;
  gap: 6px;
}

.dash-ai-msg-icon {
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.dash-ai-msg-text {
  font-size: 10px;
  color: var(--txt-medium);
  line-height: 1.4;
}

.dash-ai-suggestions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-ai-chip {
  padding: 5px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 500;
  color: var(--txt-heavy);
  text-align: center;
}

.dash-ai-summary {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 10px;
}

.dash-ai-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--txt-heavy);
  font-weight: 500;
}

.dash-ai-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: 8px;
}

.dash-ai-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
  justify-content: flex-end;
}

.dash-ai-bar-label {
  font-size: 7px;
  color: var(--txt-light);
}

.dash-ai-bar {
  width: 100%;
  background: var(--surface-4);
  border-radius: 2px;
  animation: barGrow 1s ease-out forwards;
}

@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

.dash-ai-format {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.dash-ai-format-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--txt-medium);
}

.dash-ai-format-row span:first-child {
  width: 50px;
  flex-shrink: 0;
}

.dash-ai-format-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.dash-ai-format-bar > div {
  height: 100%;
  background: var(--surface-4);
  border-radius: 3px;
  animation: formatBarGrow 1.2s ease-out forwards;
}

@keyframes formatBarGrow {
  from { width: 0 !important; }
}

.dash-ai-input {
  padding: 10px 12px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive dash */
@media (max-width: 810px) {
  .dash-sidebar {
    width: 44px;
  }
  .dash-sidebar-item span {
    display: none;
  }
  .dash-ai-panel {
    display: none;
  }
  .dash-header-right {
    display: none;
  }
  .dash-row {
    flex-direction: column;
  }
  .dash-row--3 {
    grid-template-columns: 1fr;
  }
}

/* ===== LOGO TICKER ===== */
.logo-ticker-section {
  width: 100%;
  overflow: hidden;
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.logo-ticker-track {
  display: flex;
  gap: 64px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.logo-ticker-track img {
  height: 24px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.logo-ticker-track img:hover {
  opacity: 0.7;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RICH / WHATSAPP ===== */
.rich-section {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--padding-x);
}

.rich-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rich-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rich-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--txt-heavy);
}

.rich-feature-title {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--txt-heavy);
  margin-bottom: 4px;
}

.rich-feature-item .body-text {
  font-size: 13px;
  color: var(--txt-medium);
}

.rich-chat {
  flex: 1;
  max-width: 400px;
  background: var(--surface-2);
  border-radius: 16px;
  overflow: hidden;
}

.rich-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface-4);
  color: var(--txt-inverted);
}

.rich-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Serif', serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--txt-inverted);
}

.rich-chat-name {
  font-weight: 600;
  font-size: 14px;
}

.rich-chat-status {
  font-size: 11px;
  opacity: 0.7;
}

.rich-chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.rich-chat-messages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, var(--surface-2), transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rich-chat-messages.has-overflow::before {
  opacity: 1;
}

.rich-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  animation: richBubbleIn 0.3s ease-out;
}

.rich-bubble--rich {
  background: var(--surface-1);
  color: var(--txt-heavy);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.rich-bubble--user {
  background: var(--surface-4);
  color: var(--txt-inverted);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.rich-bubble--image {
  background: var(--surface-1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  padding: 8px;
}

.rich-bubble--image .rich-image-placeholder {
  width: 100%;
  height: 160px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-light);
  font-size: 12px;
}

.rich-bubble--image .body-text {
  font-size: 12px;
  margin-top: 8px;
  color: var(--txt-medium);
}

@keyframes richBubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .rich-section {
    flex-direction: column;
    gap: 48px;
  }

  .rich-chat {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== EXEMPLOS POR SEGMENTO ===== */
.exemplos-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.exemplos-wrapper::before,
.exemplos-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.exemplos-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-1), transparent);
}

.exemplos-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-1), transparent);
}

.exemplos-scroll {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.exemplos-scroll::-webkit-scrollbar {
  display: none;
}

.exemplos-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.exemplos-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.exemplo-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--surface-2);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.exemplo-card:hover {
  transform: translateY(-4px);
}

.exemplo-badge {
  display: inline-flex;
  padding: 6px 12px;
  margin: 20px 20px 0;
  border-radius: 100px;
  background: var(--surface-4);
  color: var(--txt-inverted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.exemplo-image {
  width: calc(100% - 40px);
  margin: 16px 20px 0;
  aspect-ratio: 4 / 5;
  background: var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
}

.exemplo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
  display: flex;
  align-items: center;
  justify-content: center;
}

.exemplo-image-placeholder {
  font-size: 12px;
  color: var(--txt-light);
}

.exemplo-content {
  padding: 16px 20px 24px;
}

.exemplo-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--txt-medium);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exemplo-hashtags {
  font-size: 12px;
  color: var(--txt-light);
  margin-top: 8px;
}

.exemplo-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--txt-heavy);
}

/* ===== BENTO CARDS (Benefits) ===== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.bento-card {
  background: var(--surface-2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card:hover {
  transform: translateY(-4px);
}

.bento-card--dark {
  background: var(--surface-4);
  color: var(--txt-inverted);
}

.bento-card--dark .h3 {
  color: var(--txt-inverted);
}

.bento-card--dark .body-text {
  color: var(--gray-300);
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-card-visual {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-1);
}

.bento-card-visual--dark {
  background: var(--gray-600);
  padding: 24px;
  border-radius: 16px;
}

/* ===== APP MOCKUP ===== */
.app-mockup {
  background: var(--surface-1);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.app-mockup--dark {
  background: rgb(30, 30, 30);
  border-color: rgb(50, 50, 50);
}

.app-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.app-metric-title {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--txt-heavy);
}

.app-metric--dark .app-metric-title {
  color: var(--txt-inverted);
}

.app-metric-value {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.04em;
  color: var(--txt-heavy);
  line-height: 1;
}

.app-metric--dark .app-metric-value {
  color: var(--txt-inverted);
}

.app-metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--txt-light);
}

.app-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--txt-heavy);
  font-size: 11px;
  font-weight: 600;
}

.app-metric-badge svg {
  width: 12px;
  height: 12px;
}

/* ===== CHART ===== */
.chart-container {
  width: 100%;
  height: 120px;
  position: relative;
  margin-top: 16px;
}

.chart-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
  padding-top: 8px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.chart-bar--green {
  background: var(--txt-heavy);
}

.chart-bar--gray {
  background: var(--gray-200);
}

.chart-bar--dark-gray {
  background: var(--gray-400);
}

/* ===== STANDALONE QUOTE ===== */
.standalone-quote {
  width: 100%;
  background: var(--surface-4);
  border-radius: 40px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.standalone-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/eSKsiFDuKFu9WHCOaL2VvSrlyk0.svg');
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.standalone-quote blockquote {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3em;
  letter-spacing: -0.03em;
  color: var(--txt-inverted);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.standalone-quote .quote-author {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.quote-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author-info {
  text-align: left;
}

.quote-author-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--txt-inverted);
}

.quote-author-role {
  font-size: 12px;
  color: var(--gray-300);
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.features-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--surface-2);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-inverted);
}

.feature-card-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card-title {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--txt-heavy);
}

.feature-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--txt-medium);
}

/* ===== HOW IT WORKS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.process-card {
  background: var(--surface-2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-card:hover {
  transform: translateY(-4px);
}

.process-number {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 48px;
  color: var(--gray-200);
  line-height: 1;
}

.process-card-title {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--txt-heavy);
}

.process-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--txt-medium);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.testimonial-card {
  background: var(--surface-2);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--txt-heavy);
  font-size: 16px;
}

.testimonial-quote {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: var(--txt-heavy);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--txt-heavy);
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--txt-medium);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.pricing-card {
  background: var(--surface-2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: var(--surface-4);
  color: var(--txt-inverted);
}

.pricing-card--featured .pricing-card-name,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-feature {
  color: var(--txt-inverted);
}

.pricing-card--featured .pricing-period,
.pricing-card--featured .pricing-desc {
  color: var(--gray-300);
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card-name {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--txt-heavy);
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.04em;
  color: var(--txt-heavy);
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: var(--txt-medium);
}

.pricing-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--txt-medium);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--txt-heavy);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--txt-heavy);
}

/* ===== FAQ ===== */
.faq-list {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--txt-heavy);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--txt-medium);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--txt-light);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--txt-medium);
  max-width: 600px;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.blog-card {
  background: var(--surface-2);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-card-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--txt-medium);
  background: var(--surface-1);
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-card-title {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--txt-heavy);
}

.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: var(--txt-medium);
  flex: 1;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.blog-card-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--txt-heavy);
}

/* ===== CTA SECTION ===== */
.cta-section {
  width: 100%;
  background: var(--surface-4);
  border-radius: 40px;
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/eSKsiFDuKFu9WHCOaL2VvSrlyk0.svg');
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-section .h2 {
  color: var(--txt-inverted);
}

.cta-section .body-text {
  color: var(--gray-300);
  max-width: 500px;
}

/* ===== WAITLIST FORM ===== */
.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.waitlist-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--txt-inverted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-input::placeholder {
  color: var(--gray-400);
}

.waitlist-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.waitlist-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.waitlist-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: -16px;
}

.waitlist-success {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  max-width: 480px;
}

.waitlist-success .body-text {
  color: var(--txt-inverted);
  font-size: 15px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--gray-200);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--txt-medium);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--txt-heavy);
}

.footer-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-heavy);
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--txt-medium);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
  color: var(--txt-light);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--txt-light);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--txt-heavy);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  :root {
    --section-gap: 120px;
    --padding-x: 24px;
  }

  .h1 { font-size: 51px; }
  .h2 { font-size: 38px; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 810px) {
  :root {
    --section-gap: 80px;
    --padding-x: 16px;
  }

  .h1 { font-size: 40px; }
  .h2 { font-size: 32px; }
  .body-text { font-size: 15px; }

  .navbar-links,
  .navbar-cta .btn--secondary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .bento-card--wide {
    grid-column: span 1;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .standalone-quote blockquote {
    font-size: 24px;
  }

  .hero-visual-bg {
    padding: 24px 24px 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-nav {
    gap: 12px 20px;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'IBM Plex Serif', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--txt-heavy);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--txt-heavy);
}
