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

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

:root {
  /* Backgrounds */
  --bg: #fafaf8;
  /* warm off-white — page background */
  --bg-white: #ffffff;
  /* pure white — cards, nav */
  --bg-card: #f0f0ee;
  /* light gray — secondary cards */
  --bg-blue-card: #e8f0fe;
  /* soft blue — featured cards */

  /* Text */
  --text-primary: #0a0a0a;
  /* near-black headlines */
  --text-secondary: #6b7280;
  /* gray body */
  --text-tertiary: #9ca3af;
  /* light gray captions */

  /* Blue palette */
  --blue: #4B8BF4;
  /* primary — buttons, links, accents */
  --blue-hover: #7EB3F7;
  /* hover state */
  --blue-dark: #1E3A8A;
  /* text on blue-filled cards */
  --blue-bright: #1D4ED8;
  /* strong accent */
  --blue-8: rgba(75, 139, 244, 0.08);
  --blue-15: rgba(75, 139, 244, 0.15);
  --blue-25: rgba(75, 139, 244, 0.25);

  /* Borders */
  --border: #e5e7eb;
  /* light gray borders */
  --border-h: #d1d5db;
  /* hover borders */

  /* Radius — keep exactly as before */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h3 {
  font-weight: 500;
  letter-spacing: -0.025em;
}

/* Scale */
/* Hero H1:       clamp(48px, 7vw, 88px), weight 800, letter-spacing -0.045em */
/* Section H2:    clamp(40px, 4.5vw, 52px), weight 600, letter-spacing -0.04em */
/* Card H3:       20px,                     weight 500, letter-spacing -0.025em */
/* Body:          16px,                     weight 300, color var(--text-secondary) */
/* Small body:    15px target,              color var(--text-secondary), lh 1.75 */
/* Label:         13px target,              weight 600, color var(--blue) */
/* Caption:       13px,                     color var(--text-tertiary) */

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--blue-25);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--border-h);
  transform: translateY(-2px);
  background: var(--bg-card);
}

.btn-gloss {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: -0.13px;
  line-height: 24px;
  outline: none;

  /* Cluely radial gradient — bright blue top-left, deep blue bottom-right */
  background: radial-gradient(114.65% 114.65% at 9.73% 17.27%,
      rgb(30, 130, 224) 0%,
      rgb(28, 56, 234) 100%);

  /* 8-layer shadow: depth + inset bevels for glass effect */
  box-shadow:
    rgba(12, 57, 237, 0) 0px 62px 17px,
    rgba(12, 57, 237, 0.03) 0px 40px 16px,
    rgba(12, 57, 237, 0.09) 0px 22px 13px,
    rgba(12, 57, 237, 0.15) 0px 10px 10px,
    rgba(12, 57, 237, 0.17) 0px 2px 5px,
    rgba(148, 172, 243, 0.4) 20px 20px 24px,
    rgba(191, 229, 251, 0.4) -3px -3px 4px inset,
    rgba(19, 26, 228, 0.1) 4px 4px 4px inset;

  transition: transform 0.16s ease-out;
  overflow: hidden;
}

/* Blurred glass border edge */
.btn-gloss::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0.45;
  background: linear-gradient(176.87deg,
      rgba(255, 255, 255, 0.5) 8.56%,
      rgba(255, 255, 255, 0) 85.04%);
  border-radius: 12px;
  padding: 3px;
  filter: blur(1px);
  -webkit-mask:
    linear-gradient(#fff 0, #fff 0) content-box,
    linear-gradient(#fff 0, #fff 0);
  mask:
    linear-gradient(#fff 0, #fff 0) content-box,
    linear-gradient(#fff 0, #fff 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Brightness overlay on hover */
.btn-gloss::after {
  content: '';
  position: absolute;
  inset: 1px;
  mix-blend-mode: overlay;
  border-radius: inherit;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(101.79% 101.79% at 65.61% 81.79%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%);
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

/* Hover: slightly larger + brighter overlay */
.btn-gloss:hover {
  transform: scale(1.03);
}

.btn-gloss:hover::after {
  opacity: 1;
}

/* Active: press down */
.btn-gloss:active {
  transform: scale(0.97);
}

.card {
  background: #f4f4f2;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: transform 0.2s ease;
}

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

/* Top shimmer on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 139, 244, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover::before {
  opacity: 1;
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 100px 24px;
}

section:nth-of-type(even):not(.early-access):not(.faq-section) {
  background: var(--bg-white);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

/* eyebrow label above every section title */
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: none;
  letter-spacing: 0;
  display: block;
  text-align: left;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(40px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 12px;
  text-wrap: balance;
}

.section-sub {
  font-size: 18px;
  color: #888;
  text-align: left;
  max-width: 460px;
  margin: 0 0 48px 0;
  font-weight: 300;
  line-height: 1.8;
  text-wrap: pretty;
}

nav {
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1080px) / 2));
  height: 68px;
  gap: 56px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  background-color: transparent;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.hidden {
  transform: translateY(-100%);
}

nav.scrolled {
  background: transparent;
  background-color: transparent;
  border-bottom: none;
}

.nav-sticky-cta {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-sticky-cta.visible:hover {
  transform: translateY(0) scale(1.03);
}

.nav-sticky-cta.visible:active {
  transform: translateY(0) scale(0.97);
}

.nav-sticky-cta::before,
.nav-sticky-cta::after {
  display: none;
  content: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  filter: invert(1);
}

.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  animation: bpulse 2.5s ease-in-out infinite;
}

@keyframes bpulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(75, 139, 244, 0.4);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 5px rgba(75, 139, 244, 0);
  }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #0a0a0a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, opacity 0.2s;
  letter-spacing: -0.01em;
}

.nav-dropdown-btn:hover {
  color: #0a0a0a;
  opacity: 0.7;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* "Coming soon" badge on each role link */
.nav-dropdown-menu a::after {
  content: 'soon';
  font-size: 9px;
  background: var(--border-h);
  color: var(--text-secondary);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Mobile */
.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: #0a0a0a;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 24px;
  font-weight: 400;
}

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

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

.hero-bg-grid {
  display: none;
}

/* Fade grid out toward center */
.hero-bg-fade {
  display: none;
}

.hero {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #d4cfe8 0%, #e8e0d4 40%, #cdd4e0 100%);
  padding: 140px 40px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 20;
}

.hero-glow {
  display: none;
}

@keyframes gpulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.07);
  }
}

.hero h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  line-height: 1.05;
  margin: 0 0 32px;
  max-width: 860px;
  text-align: center;
  text-wrap: balance;
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: #6b7280;
  margin: 0 0 56px;
  line-height: 1.6;
  max-width: 640px;
  text-align: center;
  text-wrap: pretty;
}

/* Hero desktop mock (below hero copy; do not alter .hero h1 / .hero-sub rules above) */
#heroDesktop {
  width: 76%;
  margin: 64px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 -8px 60px rgba(0, 0, 0, 0.2),
    0 32px 80px rgba(0, 0, 0, 0.3);
  display: block;
  flex-shrink: 0;
  background: transparent;
}

.hero-desktop-wallpaper {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125deg,
      #7ba3d4 0%,
      #a78cc4 20%,
      #d4956a 45%,
      #e8b87a 60%,
      #d4956a 75%,
      #b89ac8 90%,
      #82a8d8 100%);
  background-size: 300% 300%;
  animation: gradientShift 14s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-desktop-wallpaper-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%,
      rgba(220, 160, 80, 0.45) 0%,
      transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 60%,
      rgba(100, 140, 200, 0.4) 0%,
      transparent 50%);
}

.hero-desktop-menubar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
  z-index: 10;
  box-sizing: border-box;
}

.hero-desktop-menubar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-desktop-apple {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
}

.hero-desktop-brand {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-desktop-menu-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-desktop-menubar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-desktop-wifi {
  flex-shrink: 0;
  display: block;
}

.hero-desktop-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

#heroGmailWin.hero-gmail-window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-52%, -47%);
  width: 68%;
  height: 72%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  z-index: 5;
  overflow: hidden;
}

.hero-gmail-titlebar {
  height: 36px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
  flex-shrink: 0;
}

.hero-gmail-traffic {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-gmail-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-gmail-dot-r {
  background: #ff5f57;
}

.hero-gmail-dot-y {
  background: #febc2e;
}

.hero-gmail-dot-g {
  background: #28c840;
}

.hero-gmail-titlebar-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #888888;
  font-weight: 400;
  white-space: nowrap;
}

#heroGmailBody.hero-gmail-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 0;
}

/* Hero Gmail mock — inbox + reader (children of #heroGmailBody) */
.hero-gmail-inbox-col {
  width: 36%;
  border-right: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-gmail-search {
  margin: 10px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-gmail-search-label {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 300;
}

#heroNewEmailRow.hero-gmail-new-email-row {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 500ms ease,
    opacity 400ms ease;
}

#heroNewEmailRow.hero-gmail-new-email-row.visible {
  max-height: 80px;
  opacity: 1;
}

.hero-gmail-new-email-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 12px;
  background: #eff6ff;
}

.hero-gmail-unread-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4b8bf4;
  flex-shrink: 0;
  margin-top: 3px;
}

.hero-gmail-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.hero-gmail-avatar--pink {
  background: #ec4899;
}

.hero-gmail-avatar--cyan {
  background: #06b6d4;
}

.hero-gmail-avatar--green {
  background: #10b981;
}

.hero-gmail-row-info {
  flex: 1;
  min-width: 0;
}

.hero-gmail-row-top {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.hero-gmail-row-name {
  font-size: 11px;
  font-weight: 500;
  color: #1a1a1a;
}

.hero-gmail-row-time {
  font-size: 9px;
  color: #9ca3af;
  margin-left: auto;
}

.hero-gmail-row-subj {
  font-size: 10px;
  color: #374151;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-gmail-row-preview {
  font-size: 9px;
  color: #9ca3af;
  font-weight: 300;
  margin-top: 1px;
}

.hero-gmail-static-row {
  padding: 9px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.hero-gmail-spacer-7 {
  width: 7px;
  flex-shrink: 0;
}

#heroRightPanel.hero-gmail-right-panel {
  flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  min-width: 0;
}

.hero-gmail-right-inner {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#heroEmailContent.hero-gmail-email-content {
  opacity: 0;
  transition: opacity 350ms ease;
}

.hero-gmail-email-subject {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.hero-gmail-email-from {
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.hero-gmail-email-body {
  font-size: 11px;
  font-weight: 300;
  color: #374151;
  line-height: 1.7;
}

#heroReplyComposer.hero-gmail-reply-composer {
  opacity: 0;
  transition: opacity 300ms ease;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#heroReplyComposer.hero-gmail-reply-composer.visible {
  opacity: 1;
}

.hero-gmail-reply-header {
  display: flex;
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #f3f4f6;
}

.hero-gmail-reply-to {
  color: #374151;
}

#heroReplyText.hero-gmail-reply-text {
  font-size: 12px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.8;
  min-height: 56px;
  font-family: 'DM Sans', sans-serif;
}

.hero-gmail-reply-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 0.5px solid #f3f4f6;
}

#heroAttachPill.hero-gmail-attach-pill {
  display: none;
  background: #dbeafe;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 9px;
  color: #1e40af;
  align-items: center;
  gap: 4px;
}

#heroAttachPill.hero-gmail-attach-pill.visible {
  display: inline-flex;
}

#heroSendBtn.hero-gmail-send-btn {
  opacity: 0;
  transition: opacity 200ms ease;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  animation: raindrop 4s ease-in-out infinite;
}

#heroSendBtn.hero-gmail-send-btn.visible {
  opacity: 1;
}

#heroSentMsg.hero-gmail-sent-msg {
  display: none;
  font-size: 12px;
  color: #22c55e;
  font-weight: 500;
}

#heroAmbPopup.hero-gmail-amb-popup {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 230px;
  z-index: 10;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 300ms cubic-bezier(0.16, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.16, 1, 0.32, 1);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 0.5px solid #e5e7eb;
  overflow: hidden;
}

#heroAmbPopup.hero-gmail-amb-popup.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-gmail-amb-popup-head {
  padding: 11px 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-gmail-amb-popup-head-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-gmail-amb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4b8bf4;
  box-shadow: 0 0 5px rgba(75, 139, 244, 0.6);
}

.hero-gmail-amb-title {
  font-size: 11px;
  font-weight: 500;
  color: #1a1a1a;
}

.hero-gmail-amb-ready-pill {
  background: #f0fdf4;
  color: #16a34a;
  font-size: 9px;
  border-radius: 100px;
  padding: 2px 7px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero-gmail-amb-ready-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #22c55e;
}

.hero-gmail-amb-popup-body {
  padding: 9px 13px 11px;
  font-size: 10px;
  font-weight: 300;
  color: #374151;
  line-height: 1.6;
}

.hero-gmail-amb-popup-actions {
  padding: 0 13px 11px;
  display: flex;
  gap: 6px;
}

.hero-gmail-amb-popup-foot {
  border-top: 0.5px solid #f3f4f6;
  padding: 7px 13px;
}

.hero-gmail-amb-file-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f3f4f6;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 9px;
  color: #4b5563;
}

.hero-desktop-dock {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-desktop-dock-pill {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
}

.hero-desktop-dock-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-desktop-dock-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-desktop-dock-divider {
  width: 0.5px;
  height: 34px;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 3px;
  flex-shrink: 0;
}

.hero-desktop-dock-icon--ambient {
  background: linear-gradient(145deg, #3b7fe8, #5b9cf6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-desktop-dock-icon--ambient svg {
  display: block;
}

.hero-desktop-dock-icon--trash {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-desktop-dock-icon--trash svg {
  display: block;
}

#heroFadeOverlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  z-index: 15;
  pointer-events: none;
  transition: opacity 500ms ease;
}

#heroFadeOverlay.visible {
  opacity: 1;
}

#heroCursor {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  left: 70%;
  top: 15%;
  transition:
    left 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 200ms ease;
}

#heroClickRing {
  position: absolute;
  z-index: 21;
  pointer-events: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  opacity: 0;
}

#heroClickRing.go {
  animation: ringPop 380ms ease-out forwards;
}

@keyframes ringPop {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes clickPulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(0.92);
  }

  100% {
    transform: scale(1);
  }
}

.hero-btn-click {
  animation: clickPulse 220ms ease forwards !important;
}

.hero-reply-cursor {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: #4b8bf4;
  vertical-align: middle;
  margin-left: 1px;
  animation: blink 0.8s step-end infinite;
}

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

  50% {
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mac-window {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 24px 64px rgba(0, 0, 0, 0.12);
}

.mac-titlebar {
  height: 38px;
  background: linear-gradient(180deg, #f5f5f5, #efefef);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.mac-titlebar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #888888;
  font-weight: 500;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-r {
  background: #ff5f57;
}

.dot-y {
  background: #ffbd2e;
}

.dot-g {
  background: #28c840;
}

.mac-body {
  display: grid;
  grid-template-columns: 1fr;
  /* agent popup overlays absolutely */
  position: relative;
  height: calc(480px - 38px);
  overflow: hidden;
}

.gmail-pane {
  display: flex;
  flex-direction: column;
}

.gmail-toolbar {
  height: 44px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
}

.gmail-search {
  flex: 1;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  font-size: 11px;
  color: var(--text-tertiary);
}

.email-row {
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.email-row.active {
  background: var(--blue-8);
  border-bottom-color: rgba(75, 139, 244, 0.1);
}

.email-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.av-pink {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
}

.av-blue {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
}

.av-green {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: #fff;
}

.email-from {
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
}

.email-time {
  font-size: 10px;
  color: #aaaaaa;
}

.email-subj {
  font-size: 11px;
  color: #444444;
}

.email-preview {
  font-size: 10px;
  color: #888888;
}

.unread-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 5px;
}

.agent-popup {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--blue-25);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(75, 139, 244, 0.1);
  overflow: hidden;
  /* Entrance animation */
  animation: popupSlide 0.5s 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-play-state: paused;
  backdrop-filter: blur(20px);
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.agent-popup-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.agent-popup-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.agent-popup-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.agent-popup-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--blue);
}

.agent-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: bpulse 1.5s infinite;
}

.agent-popup-body {
  padding: 14px;
}

.agent-popup-msg {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  min-height: 60px;
}

.agent-popup-actions {
  display: flex;
  gap: 8px;
}

.agent-btn-primary {
  flex: 1;
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.agent-btn-primary:hover {
  background: var(--blue-hover);
}

.agent-btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}

.agent-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.agent-popup-footer {
  padding: 8px 14px 12px;
  border-top: 1px solid var(--border);
}

.agent-context-tag {
  font-size: 10px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-moments {
  background: var(--bg);
}

.moment-card {
  background: #f4f4f2;
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;
}

.moment-card:hover {
  transform: translateY(-3px);
}

.moment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 139, 244, 0.18), transparent);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.moment-card:hover::before {
  opacity: 1;
}

.moment-persona {
  padding: 16px 28px 0;
}

.moment-role-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: none;
  letter-spacing: 0;
  background: rgba(75, 139, 244, 0.08);
  border: 1px solid rgba(75, 139, 244, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

.moment-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 320px;
}

.moment-body-reverse {
  direction: rtl;
}

.moment-body-reverse>* {
  direction: ltr;
}

.moment-text {
  padding: 32px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.moment-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.moment-text h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.moment-text p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.moment-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(75, 139, 244, 0.06);
  border: 1px solid rgba(75, 139, 244, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 18px;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.8;
}

.moment-result-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: bpulse 1.5s infinite;
}

.moment-mockup {
  border-left: 1px solid var(--border);
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Floating white panel for mockup area */
.moment-mockup>* {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Make the scaled mac window feel like a floating panel */
.moment-mockup .mini-scale {
  background: transparent;
  box-shadow: none;
}

.moment-mockup .mac-window {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Moment 1 scaled mockup */
.mini-scale {
  transform: scale(0.5);
  transform-origin: top left;
  width: 200%;
  height: 200%;
}

/* Moment 2 & 3 mockups */
.desktop-notification {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 260px;
  background: rgba(30, 30, 32, 0.95);
  border: 1px solid rgba(75, 139, 244, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(20px);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: notifSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-play-state: paused;
  /* triggered by observer */
  backdrop-filter: blur(20px);
}

@keyframes notifSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(75, 139, 244, 0.15);
  border: 1px solid rgba(75, 139, 244, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-weight: 600;
  font-size: 12px;
}

.notif-title {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.notif-body {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
  line-height: 1.4;
}

.slack-pane,
.dash-pane {
  position: absolute;
  inset: 0;
  padding: 18px;
}

.slack-pane {
  background: #0f0f12;
}

.slack-header {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.slack-msg {
  margin-bottom: 12px;
  line-height: 1.45;
}

.slack-name {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  margin-right: 8px;
}

.slack-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.dash-pane {
  background: #0c0c0f;
}

.dash-header {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.dash-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
}

.dash-k {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.dash-v {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.04em;
}

@media (max-width: 768px) {

  .moment-body,
  .moment-body-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .moment-mockup {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 200px;
  }
}

.how-it-works {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f0ede8 15%,
    #ebe9f2 40%,
    #edeae5 60%,
    #eaede8 85%,
    #ffffff 100%
  ) !important;
  padding: 100px 24px;
  text-align: center;
}

.how-headline {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  margin: 0 0 32px;
}

.how-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.how-tab {
  border: none;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.25;
  background: #f3f4f6;
  color: #6b7280;
}

.how-tab.active {
  background: #0a0a0a;
  color: #ffffff;
  font-weight: 500;
}

.how-context-line {
  font-size: 18px;
  font-weight: 300;
  color: #6b7280;
  max-width: 560px;
  margin: 24px auto 40px;
  text-align: center;
  line-height: 1.8;
}

.how-panel {
  display: none;
  max-width: 760px;
  margin: 0 auto;
}

.how-panel.active {
  display: block;
}

#how-it-works .how-panel[data-panel="3"] {
  text-align: left;
}

@keyframes how-it-works-shadow-shift {
  0% {
    box-shadow: 0 4px 14px rgba(75, 139, 244, 0.5);
  }

  33% {
    box-shadow: 0 4px 14px rgba(83, 74, 183, 0.5);
  }

  66% {
    box-shadow: 0 4px 14px rgba(29, 158, 117, 0.5);
  }

  100% {
    box-shadow: 0 4px 14px rgba(75, 139, 244, 0.5);
  }
}

@keyframes how-it-works-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* How it works — Inbound / Scheduled mac chrome */
#how-it-works .how-inb-window,
#how-it-works .how-sch-window {
  text-align: left;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

#how-it-works .how-inb-titlebar,
#how-it-works .how-sch-titlebar {
  position: relative;
  height: 40px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

#how-it-works .how-inb-traffic,
#how-it-works .how-sch-traffic {
  display: flex;
  align-items: center;
  gap: 8px;
}

#how-it-works .how-inb-tlight,
#how-it-works .how-sch-tlight {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

#how-it-works .how-inb-tlight-r,
#how-it-works .how-sch-tlight-r {
  background: #ff5f57;
}

#how-it-works .how-inb-tlight-y,
#how-it-works .how-sch-tlight-y {
  background: #febc2e;
}

#how-it-works .how-inb-tlight-g,
#how-it-works .how-sch-tlight-g {
  background: #28c840;
}

#how-it-works .how-inb-titlebar-label,
#how-it-works .how-sch-titlebar-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #888888;
  font-weight: 400;
  font-family: 'DM Sans', system-ui, sans-serif;
  pointer-events: none;
  white-space: nowrap;
}

/* How it works — Scheduled document (panel 2) */
#how-it-works .how-sch-doc {
  background: #ffffff;
  height: 420px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

#how-it-works .how-sch-anim-layer {
  flex: 1;
  min-height: 0;
  position: relative;
  opacity: 1;
  transition: none;
}

#how-it-works .how-sch-anim-layer.how-sch-anim-fade-out {
  opacity: 0;
  transition: opacity 400ms ease;
}

#how-it-works .how-sch-anim-layer.how-sch-anim-fade-in {
  opacity: 1;
  transition: opacity 300ms ease;
}

#how-it-works .how-sch-popup.how-sch-popup--prep {
  opacity: 0;
  transform: translateY(16px);
  transition: none;
}

#how-it-works .how-sch-popup.how-sch-popup--entering {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 300ms cubic-bezier(0.16, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.16, 1, 0.32, 1);
}

#how-it-works .how-sch-doc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

#how-it-works .how-sch-doc-title {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.025em;
}

#how-it-works .how-sch-doc-time {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 300;
}

#how-it-works .how-sch-bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

#how-it-works .how-sch-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  margin-top: 6px;
  flex-shrink: 0;
}

#how-it-works .how-sch-bullet-text {
  font-size: 17px;
  font-weight: 300;
  color: #374151;
  line-height: 1.8;
}

#how-it-works .how-sch-caret {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #4b8bf4;
  margin-left: 2px;
  vertical-align: middle;
  animation: how-it-works-blink 1s step-end infinite;
}

#how-it-works .how-sch-progress {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  width: auto;
}

#how-it-works .how-sch-progress-track {
  width: 100%;
  height: 4px;
  background: #f3f4f6;
  border-radius: 100px;
  overflow: hidden;
}

#how-it-works .how-sch-progress-fill {
  width: 90%;
  height: 100%;
  background: #4b8bf4;
  border-radius: 100px;
}

#how-it-works .how-sch-progress-label {
  margin-top: 8px;
  font-size: 18px;
  color: #9ca3af;
  font-weight: 300;
  line-height: 1.8;
}

#how-it-works .how-inb-anim-layer {
  opacity: 1;
  transition: none;
}

#how-it-works .how-inb-anim-layer.how-inb-anim-fade-out {
  opacity: 0;
  transition: opacity 600ms ease;
}

#how-it-works .how-inb-anim-layer.how-inb-anim-fade-in {
  opacity: 1;
  transition: opacity 450ms ease;
}

#how-it-works .how-inb-gmail {
  display: flex;
  height: 420px;
  background: #ffffff;
}

#how-it-works .how-inb-list {
  width: 40%;
  flex-shrink: 0;
  border-right: 1px solid #f3f4f6;
  padding-top: 12px;
  box-sizing: border-box;
}

#how-it-works .how-inb-search {
  margin: 0 12px 12px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#how-it-works .how-inb-search-icon {
  flex-shrink: 0;
  color: #9ca3af;
}

#how-it-works .how-inb-search-text {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 300;
}

#how-it-works .how-inb-mail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
}

#how-it-works .how-inb-mail-row-active {
  background: #eff6ff;
}

#how-it-works .how-inb-unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b8bf4;
  flex-shrink: 0;
  align-self: center;
}

#how-it-works .how-inb-unread-spacer {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  align-self: center;
}

#how-it-works .how-inb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
}

#how-it-works .how-inb-avatar-pink {
  background: #ec4899;
}

#how-it-works .how-inb-avatar-cyan {
  background: #06b6d4;
}

#how-it-works .how-inb-avatar-green {
  background: #10b981;
}

#how-it-works .how-inb-mail-main {
  flex: 1;
  min-width: 0;
}

#how-it-works .how-inb-mail-top {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

#how-it-works .how-inb-mail-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

#how-it-works .how-inb-mail-time {
  font-size: 11px;
  color: #9ca3af;
  margin-left: auto;
  flex-shrink: 0;
}

#how-it-works .how-inb-mail-subject {
  font-size: 18px;
  font-weight: 300;
  color: #374151;
  margin-top: 2px;
  line-height: 1.8;
}

#how-it-works .how-inb-mail-preview {
  font-size: 18px;
  font-weight: 300;
  color: #9ca3af;
  margin-top: 1px;
  line-height: 1.8;
}

#how-it-works .how-inb-detail {
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

#how-it-works .how-inb-detail-placeholder {
  position: absolute;
  inset: 0;
  background: #f9fafb;
  z-index: 1;
  opacity: 1;
  transition: opacity 525ms ease;
  pointer-events: none;
}

#how-it-works .how-inb-detail.how-inb-detail--article-visible .how-inb-detail-placeholder {
  opacity: 0;
}

#how-it-works .how-inb-detail-article {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: none;
}

#how-it-works .how-inb-detail.how-inb-detail--article-visible .how-inb-detail-article {
  opacity: 1;
  transition: opacity 525ms ease;
}

#how-it-works .how-inb-mail-row-how-inb-slide {
  opacity: 0;
  transform: translateY(-16px);
  transition: none;
}

#how-it-works .how-inb-mail-row-how-inb-slide.how-inb-mail-row-how-inb-slide-run {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.32, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.32, 1);
}

#how-it-works .how-inb-popup.how-inb-popup--prep {
  opacity: 0;
  transform: translateY(16px);
  transition: none;
}

#how-it-works .how-inb-popup.how-inb-popup--entering {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 450ms cubic-bezier(0.16, 1, 0.32, 1),
    transform 450ms cubic-bezier(0.16, 1, 0.32, 1);
}

#how-it-works .how-inb-detail-subject {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

#how-it-works .how-inb-detail-from {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
}

#how-it-works .how-inb-detail-body {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 300;
  color: #374151;
  line-height: 1.8;
}

#how-it-works .how-inb-detail-body p {
  margin: 0 0 0.85em;
}

#how-it-works .how-inb-detail-body p:last-child {
  margin-bottom: 0;
}

#how-it-works .how-inb-popup,
#how-it-works .how-sch-popup {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 280px;
  z-index: 2;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 0.5px solid #e5e7eb;
  overflow: hidden;
  box-sizing: border-box;
}

#how-it-works .how-inb-popup-head,
#how-it-works .how-sch-popup-head {
  padding: 14px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#how-it-works .how-inb-popup-brand,
#how-it-works .how-sch-popup-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

#how-it-works .how-inb-popup-brand-dot,
#how-it-works .how-sch-popup-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b8bf4;
  box-shadow: 0 0 5px rgba(75, 139, 244, 0.6);
  flex-shrink: 0;
}

#how-it-works .how-inb-popup-brand-name,
#how-it-works .how-sch-popup-brand-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

#how-it-works .how-inb-popup-status,
#how-it-works .how-sch-popup-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 11px;
  border-radius: 100px;
  padding: 3px 9px;
  font-weight: 400;
}

#how-it-works .how-inb-popup-status-dot,
#how-it-works .how-sch-popup-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

#how-it-works .how-inb-popup-body,
#how-it-works .how-sch-popup-body {
  padding: 12px 16px 14px;
  font-size: 17px;
  font-weight: 300;
  color: #374151;
  line-height: 1.8;
}

#how-it-works .how-inb-popup-actions,
#how-it-works .how-sch-popup-actions {
  padding: 0 16px 14px;
  display: flex;
  gap: 8px;
  align-items: stretch;
}

#how-it-works .how-inb-popup-btn,
#how-it-works .how-sch-popup-btn {
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  letter-spacing: -0.01em;
  animation: how-it-works-shadow-shift 4s ease-in-out infinite;
}

#how-it-works .how-inb-popup-btn-primary,
#how-it-works .how-sch-popup-btn-primary {
  flex: 1;
  font-weight: 500;
  animation-delay: 0s;
}

#how-it-works .how-inb-popup-btn-secondary,
#how-it-works .how-sch-popup-btn-secondary {
  font-weight: 400;
  white-space: nowrap;
  animation-delay: 0.6s;
}

#how-it-works .how-inb-popup-foot,
#how-it-works .how-sch-popup-foot {
  border-top: 0.5px solid #f3f4f6;
  padding: 10px 16px;
}

#how-it-works .how-inb-popup-file,
#how-it-works .how-sch-popup-file {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.8;
}

#how-it-works .how-inb-popup-file-icon,
#how-it-works .how-sch-popup-file-icon {
  flex-shrink: 0;
  display: block;
}

@media (max-width: 768px) {
  .how-headline {
    font-size: clamp(28px, 8vw, 52px);
  }
}

/* Inside step-visual-box */
.sv-keys {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.key-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.key {
  background: #ffffff;
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--border-h);
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.15s;
  min-width: 38px;
  text-align: center;
}

.key.pressed {
  border-bottom-width: 1px;
  transform: translateY(2px);
  background: var(--blue-8);
  border-color: var(--blue-25);
  color: var(--blue);
}

.sv-scan {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.scan-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scan-row {
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.scan-row.hl {
  background: rgba(75, 139, 244, 0.14);
  border: 1px solid rgba(75, 139, 244, 0.18);
}

.scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(75, 139, 244, 0.6), transparent);
  animation: scanAnim 2.5s linear infinite;
}

@keyframes scanAnim {
  0% {
    top: 0;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.scan-context-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(75, 139, 244, 0.1);
  border: 1px solid rgba(75, 139, 244, 0.25);
  border-radius: 5px;
  padding: 3px 7px;
  font-size: 8px;
  color: var(--blue);
  animation: tagpulse 1.2s ease-in-out infinite alternate;
}

@keyframes tagpulse {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.sv-tasks {
  height: 100%;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.s-task {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: var(--text-secondary);
}

.s-chk {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.s-chk.done {
  background: rgba(75, 139, 244, 0.12);
  border: 1px solid rgba(75, 139, 244, 0.28);
  color: var(--blue);
}

.s-chk.pend {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--text-tertiary);
}

@keyframes chkpop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── Hub wrap — fixed-height rectangle ── */
.hub-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 580px;
  margin: 0 auto 64px;
}

.hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

/* ── Center icon ── */
.hub-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  z-index: 3;
}
.hub-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Cluster groups ── */
.hub-cluster {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.hub-cluster-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  margin-bottom: 2px;
}

.hub-cluster-row {
  display: flex;
  gap: 12px;
}

/* ── Cluster positions ── */
.hc-office {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  align-items: center;
}
.hc-office .hub-cluster-label  { text-align: center; }
.hc-office .hub-cluster-row    { justify-content: center; }

.hc-messaging {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-start;
}

.hc-calendar {
  right: 0;
  top: 4%;
  align-items: flex-end;
}
.hc-calendar .hub-cluster-row  { justify-content: flex-end; }

.hc-files {
  left: 0;
  bottom: 0;
  align-items: flex-start;
}

.hc-email {
  right: 0;
  bottom: 4%;
  align-items: flex-end;
}
.hc-email .hub-cluster-row     { justify-content: flex-end; }

/* ── Icon node ── */
.hub-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
}
.hub-node span {
  font-size: 10px;
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* ── White icon circle ── */
.hi-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.hub-node:hover .hi-circle,
.hub-ai-icon:hover .hi-circle {
  border-color: rgba(75,139,244,0.35);
  box-shadow: 0 4px 14px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.hi-circle img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

/* ── Brand colors (filter on icon only — circle bg is a separate element) ── */
.si-gmail    { filter: invert(27%) sepia(90%) saturate(1500%) hue-rotate(340deg) brightness(95%); }
.si-outlook  { filter: invert(28%) sepia(90%) saturate(1400%) hue-rotate(195deg) brightness(90%); }
.si-yahoo    { filter: invert(22%) sepia(90%) saturate(1400%) hue-rotate(255deg) brightness(85%); }
.si-gcal     { filter: invert(40%) sepia(80%) saturate(700%)  hue-rotate(10deg)  brightness(100%); }
.si-calendly { filter: invert(35%) sepia(80%) saturate(600%)  hue-rotate(120deg) brightness(90%); }
.si-meet     { filter: invert(35%) sepia(80%) saturate(600%)  hue-rotate(100deg) brightness(90%); }
.si-slack    { filter: invert(15%) sepia(80%) saturate(900%)  hue-rotate(270deg) brightness(90%); }
.si-teams    { filter: invert(28%) sepia(90%) saturate(800%)  hue-rotate(220deg) brightness(90%); }
.si-whatsapp { filter: invert(40%) sepia(90%) saturate(600%)  hue-rotate(100deg) brightness(90%); }
.si-gdocs    { filter: invert(35%) sepia(90%) saturate(800%)  hue-rotate(200deg) brightness(100%); }
.si-word     { filter: invert(28%) sepia(90%) saturate(900%)  hue-rotate(195deg) brightness(90%); }
.si-notion   { filter: invert(8%)  sepia(10%) saturate(200%)  hue-rotate(0deg)   brightness(80%); }
.si-gsheets  { filter: invert(40%) sepia(80%) saturate(600%)  hue-rotate(100deg) brightness(95%); }
.si-excel    { filter: invert(30%) sepia(90%) saturate(700%)  hue-rotate(110deg) brightness(90%); }
.si-gslides  { filter: invert(55%) sepia(90%) saturate(600%)  hue-rotate(355deg) brightness(100%); }
.si-ppt      { filter: invert(38%) sepia(90%) saturate(800%)  hue-rotate(355deg) brightness(95%); }
.si-gdrive   { filter: invert(40%) sepia(80%) saturate(600%)  hue-rotate(175deg) brightness(95%); }
.si-dropbox  { filter: invert(32%) sepia(90%) saturate(900%)  hue-rotate(195deg) brightness(100%); }
.si-onedrive { filter: invert(28%) sepia(90%) saturate(900%)  hue-rotate(195deg) brightness(90%); }
.si-gemini   { filter: invert(30%) sepia(100%) saturate(900%) hue-rotate(190deg) brightness(95%); }
.si-openai   { filter: brightness(0.15); }
.si-anthropic{ filter: brightness(0.15); }

/* ── Powered by pillars ── */
.hub-powered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.hub-powered-label {
  font-size: 9px;
  font-weight: 700;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hub-powered-icons {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.hub-ai-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: default;
}

.hub-ai-icon img {
  border: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.hub-ai-icon span {
  font-size: 10px;
  color: #aaa;
  font-weight: 300;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hub-wrap { display: none; }
}




.roles-section {
  background: #ffffff;
}

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

/* 5th card centered on second row */
.role-card:nth-child(4) {
  grid-column: 1;
}

.role-card:nth-child(5) {
  grid-column: 2;
}

.role-card {
  background: #f4f4f2;
  border: none;
  border-radius: var(--radius-xl);
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 139, 244, 0.22), transparent);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.role-card:hover {
  transform: translateY(-3px);
}

.role-card:hover::before {
  opacity: 1;
}

.role-card-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-8);
  border: 1px solid var(--blue-25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: border-color 0.2s, background 0.2s;
}

.role-card:hover .role-card-icon {
  background: rgba(75, 139, 244, 0.12);
  border-color: rgba(75, 139, 244, 0.4);
}

.role-card h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.role-card p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.role-card-link {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}

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

  .role-card:nth-child(4),
  .role-card:nth-child(5) {
    grid-column: auto;
  }
}

.skills-section {
  background: var(--bg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.skill-card {
  background: #f4f4f2;
  border: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: transform 0.2s ease;
}

.step-card {
  border: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.skill-card:hover {
  transform: translateY(-3px);
}

.skill-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.skill-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.skill-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.skill-author {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.skill-activate-btn {
  margin-left: auto;
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  transition: background 0.2s;
}

.skill-activate-btn:hover {
  background: var(--blue-hover);
}

.skill-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.skill-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.skill-tag {
  font-size: 10px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 2px 8px;
}

.skills-cta {
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.skills-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

@keyframes things-possible-raindrop {
  0% {
    box-shadow: 0 4px 32px rgba(75, 139, 244, 0.35);
  }

  33% {
    box-shadow: 0 4px 32px rgba(83, 74, 183, 0.35);
  }

  66% {
    box-shadow: 0 4px 32px rgba(29, 158, 117, 0.35);
  }

  100% {
    box-shadow: 0 4px 32px rgba(75, 139, 244, 0.35);
  }
}

.things-possible-section {
  background: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.things-possible-headline {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  margin: 0 auto 64px;
  max-width: 1080px;
  padding: 0 40px;
}

.things-possible-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.things-possible-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  border: none;
  margin: 0;
  box-shadow: 0 4px 32px rgba(75, 139, 244, 0.35);
  animation: things-possible-raindrop 4s ease-in-out infinite;
  text-align: center;
}

.things-possible-card:nth-child(1) {
  animation-delay: 0s;
}

.things-possible-card:nth-child(2) {
  animation-delay: 0.8s;
}

.things-possible-card:nth-child(3) {
  animation-delay: 1.6s;
}

.things-possible-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  white-space: nowrap;
}

.things-possible-card-body {
  font-size: 18px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) {
  .things-possible-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes sec-rotate3d {
  0% {
    transform: perspective(500px) rotateY(-20deg) rotateX(5deg);
  }

  50% {
    transform: perspective(500px) rotateY(20deg) rotateX(-5deg);
  }

  100% {
    transform: perspective(500px) rotateY(-20deg) rotateX(5deg);
  }
}

@keyframes sec-shield-raindrop {
  0% {
    filter: drop-shadow(0 8px 24px rgba(75, 139, 244, 0.6));
  }

  33% {
    filter: drop-shadow(0 8px 24px rgba(83, 74, 183, 0.6));
  }

  66% {
    filter: drop-shadow(0 8px 24px rgba(29, 158, 117, 0.6));
  }

  100% {
    filter: drop-shadow(0 8px 24px rgba(75, 139, 244, 0.6));
  }
}

@keyframes sec-raindroppill {
  0% {
    box-shadow: 0 4px 14px rgba(75, 139, 244, 0.45);
  }

  33% {
    box-shadow: 0 4px 14px rgba(83, 74, 183, 0.45);
  }

  66% {
    box-shadow: 0 4px 14px rgba(29, 158, 117, 0.45);
  }

  100% {
    box-shadow: 0 4px 14px rgba(75, 139, 244, 0.45);
  }
}

@keyframes sec-float1 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes sec-float2 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

section.security-section {
  background: #ffffff;
  padding: 120px max(80px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.sec-visual {
  position: relative;
  flex: 1;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  min-width: 0;
}

.sec-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e5e7eb 1px, transparent 1px),
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.sec-shield-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sec-shield-3d {
  animation: sec-rotate3d 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.sec-shield-svg {
  width: 130px;
  height: 155px;
  display: block;
  animation: sec-shield-raindrop 4s ease-in-out infinite;
}

.sec-float {
  position: absolute;
  z-index: 3;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.sec-float--1 {
  top: 20px;
  left: 0;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  color: #9ca3af;
  letter-spacing: 0.12em;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  animation: sec-float1 3s ease-in-out infinite;
}

.sec-float--2 {
  bottom: 32px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  animation:
    sec-float2 3.5s ease-in-out 0.5s infinite,
    sec-raindroppill 4s ease-in-out infinite;
}

.sec-float-check {
  flex-shrink: 0;
  display: block;
}

.sec-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}

.sec-headline {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  line-height: 1.1;
  margin: 0 0 16px;
  text-align: left;
}

.sec-subline {
  font-size: 17px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.75;
  margin: 0 0 40px;
  text-align: left;
}

.sec-stats {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sec-stat {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 24px 0;
  box-sizing: border-box;
}

.sec-stat-token {
  font-size: 32px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  min-width: 110px;
  flex-shrink: 0;
  line-height: 1.1;
  text-align: left;
}

.sec-stat-body {
  flex: 1;
  min-width: 0;
}

.sec-stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.sec-stat-desc {
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  section.security-section {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    padding: 80px max(40px, calc((100vw - 1200px) / 2));
  }

  .sec-visual {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  section.security-section {
    padding: 64px max(24px, calc((100vw - 1200px) / 2));
  }

  .sec-headline {
    font-size: clamp(28px, 8vw, 52px);
  }

  .sec-stat {
    flex-direction: column;
    gap: 12px;
  }

  .sec-stat-token {
    min-width: 0;
  }
}

.comparison-section {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f0ede8 15%,
    #ebe9f2 40%,
    #edeae5 60%,
    #eaede8 85%,
    #ffffff 100%
  ) !important;
  padding: 120px 40px;
  box-sizing: border-box;
}

.cmp-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cmp-headline {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.1;
}

.cmp-subline {
  font-size: 18px;
  font-weight: 300;
  color: #6b7280;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 32px;
}

.cmp-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cmp-panels {
  width: 100%;
}

.cmp-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cmp-panel.is-active {
  display: grid;
}

.cmp-col--left {
  padding-right: 48px;
  box-sizing: border-box;
}

.cmp-col--right {
  padding-left: 48px;
  box-sizing: border-box;
}

.cmp-col-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin: 0 0 6px;
  text-align: left;
}

.cmp-col-tagline {
  font-size: 14px;
  font-weight: 300;
  color: #0a0a0a;
  margin: 0 0 28px;
  line-height: 1.6;
  text-align: left;
}

.cmp-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.cmp-point:last-child {
  margin-bottom: 0;
}

.cmp-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.cmp-icon svg {
  display: block;
}

.cmp-icon--minus {
  background: #f3f4f6;
}

.cmp-icon--check {
  background: #0a0a0a;
}

.cmp-point-text {
  font-size: 15px;
  font-weight: 300;
  color: #374151;
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

.cmp-point-text strong {
  font-weight: 500;
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 24px;
  }

  .cmp-headline {
    font-size: clamp(28px, 8vw, 52px);
  }

  .cmp-panel.is-active {
    grid-template-columns: 1fr;
  }

  .cmp-col--left {
    padding-right: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }

  .cmp-col--right {
    padding-left: 0;
    padding-top: 24px;
  }
}

.stats-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  text-align: center;
  padding: 60px 40px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-accent {
  color: var(--blue);
}

.stat-bar {
  width: 28px;
  height: 2px;
  background: var(--blue);
  margin: 10px auto;
  border-radius: 1px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

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

  .stat-item::after {
    display: none;
  }
}

section.early-access {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f0ede8 15%,
    #ebe9f2 40%,
    #edeae5 60%,
    #eaede8 85%,
    #ffffff 100%
  );
  padding: 120px 40px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  position: relative;
}

.ea-headline {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  margin: 0 0 16px;
}

.ea-subline {
  font-size: 18px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 8px;
}

.ea-urgency {
  font-size: 17px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 48px;
}

.ea-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 520px;
}

.ea-input {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 300;
  color: #0a0a0a;
  font-family: 'DM Sans', system-ui, sans-serif;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ea-input::placeholder {
  color: #9ca3af;
}

.ea-submit {
  flex-shrink: 0;
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  animation: raindrop 4s ease-in-out infinite;
}

.ea-submit:hover {
  opacity: 0.92;
}

.ea-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ea-benefits {
  text-align: center;
}

.ea-benefits-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.8;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.ea-benefit {
  display: inline;
}

.ea-benefit-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9ca3af;
  display: inline-block;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 640px) {
  .early-access .ea-form {
    flex-direction: column;
    align-items: stretch;
  }

  .early-access .ea-input,
  .early-access .ea-submit {
    width: 100%;
  }
}

section.faq-section {
  position: relative;
  z-index: 0;
  background: #ffffff;
  background-image: none;
  padding: 100px 40px;
  max-width: 720px;
  margin: 0 auto;
}

/* Full-bleed white strip: body uses --bg (#fafaf8); FAQ column is max-width 720px */
section.faq-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #ffffff;
  z-index: -1;
  pointer-events: none;
}

.faq-headline {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  margin: 0 0 48px;
  text-align: center;
}

.faq-list {
  margin: 0;
}

.faq-item {
  border: none;
  border-radius: 0;
  padding: 24px 0;
  margin: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: -0.025em;
  text-align: left;
}

.faq-q:hover {
  color: #0a0a0a;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #0a0a0a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-icon-svg {
  display: block;
}

.faq-icon-svg--minus {
  display: none;
}

.faq-item.open .faq-icon-svg--plus {
  display: none;
}

.faq-item.open .faq-icon-svg--minus {
  display: block;
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.8;
  transition:
    max-height 300ms ease,
    opacity 150ms ease;
}

.faq-item.open .faq-ans {
  max-height: 1200px;
  opacity: 1;
  padding-top: 12px;
}

.cta-bottom {
  background: #ffffff;
  text-align: left;
}

.cta-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 28px;
}

.cta-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 2px;
}

.cta-shortcut .key {
  background: #ffffff;
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--border-h);
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  min-width: 38px;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-bottom-actions {
    flex-direction: column;
  }
}

footer,
.footer {
  background: #ffffff;
  padding: 64px 40px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.footer-brand p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
  color: var(--text-secondary);
}

.footer-col a {
  font-size: 17px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #0a0a0a;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-badges {
  display: flex;
  gap: 7px;
}

.footer-badge {
  font-size: 10px;
  color: var(--text-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--border-h);
  color: var(--text-primary);
  background: var(--bg-card);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer,
  .footer {
    padding: 48px 20px 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

.slack-demo-section {
  background: var(--bg);
  padding: 100px 24px;
}

.slack-demo-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}

.slack-demo-window {
  width: 100%;
}

.slack-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 480px;
  background: #1a1d21;
}

.slack-sidebar {
  background: #19171d;
  padding: 16px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.slack-sidebar-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 8px;
  margin-bottom: 8px;
}

.slack-channel {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.slack-channel:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

.slack-channel.active {
  background: #4B8BF4;
  color: #ffffff;
  font-weight: 500;
}

.slack-main {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.slack-channel-header {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.slack-messages {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.slack-msg-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.slack-msg-animated {
  animation: slackMsgIn 0.3s ease both;
}

@keyframes slackMsgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slack-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  color: #ffffff;
}

.av-red {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.slack-avatar-ambient {
  background: var(--blue);
  border-radius: 6px;
}

.slack-msg-content {
  flex: 1;
}

.slack-msg-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.slack-msg-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.slack-msg-name-ambient {
  color: var(--blue);
}

.slack-app-badge {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  padding: 1px 4px;
  letter-spacing: 0.04em;
}

.slack-msg-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.slack-msg-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.slack-agent-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.slack-agent-btn-primary {
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.slack-agent-btn-primary:hover {
  background: var(--blue-hover);
}

.slack-agent-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}

.slack-agent-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.slack-typing {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slack-typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.slack-typing-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: slackTyping 1.2s infinite ease-in-out;
}

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

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

.slack-typing-name {
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  animation: none !important;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 6px;
}

@keyframes slackTyping {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.slack-notif {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(75, 139, 244, 0.3);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 260px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.slack-notif.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.slack-notif-icon {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.slack-notif-title {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.slack-notif-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.slack-demo-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 16px;
}

.slack-replay-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.slack-replay-btn:hover {
  border-color: var(--border-h);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .slack-demo-layout {
    grid-template-columns: 1fr;
  }

  .slack-body {
    grid-template-columns: 1fr;
  }

  .slack-sidebar {
    display: none;
  }

  .slack-demo-controls {
    align-items: flex-start;
  }
}

.platform-section {
  background: var(--bg);
  padding: 100px 24px;
}

.platform-header {
  text-align: center;
  margin-bottom: 48px;
}

.platform-header .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.platform-header .section-sub {
  text-align: center;
  margin: 0 auto;
}

.platform-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.platform-tab {
  padding: 9px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.platform-tab:hover {
  border-color: var(--border-h);
  color: var(--text-primary);
}

.platform-tab.active {
  background: var(--text-primary);
  color: #ffffff;
  border-color: var(--text-primary);
}

.platform-window {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.platform-scene {
  display: none;
}

.platform-scene.active {
  display: block;
  animation: sceneFadeIn 0.3s ease both;
}

@keyframes sceneFadeIn {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WhatsApp UI */
.wa-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: #ffffff;
  position: relative;
}

/* Sidebar */
.wa-sidebar {
  background: #ffffff;
  border-right: 1px solid #e9edef;
  display: flex;
  flex-direction: column;
}

.wa-sidebar-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #f0f2f5;
  height: 50px;
  flex-shrink: 0;
}

.wa-profile-pic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-topbar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-topbar-icons svg {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.wa-topbar-icons svg:hover {
  opacity: 1;
}

.wa-search-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 12px;
  margin: 8px 10px;
  background: #f0f2f5;
  border-radius: 8px;
  font-size: 12px;
  color: #54656f;
  flex-shrink: 0;
}

.wa-chat-list {
  flex: 1;
  overflow-y: auto;
}

.wa-sidebar-header {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid #e9edef;
}

.wa-chat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f2f5;
}

.wa-chat-item:hover {
  background: #f5f6f6;
}

.wa-chat-active {
  background: #f0f2f5;
}

.wa-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.wa-chat-info {
  flex: 1;
  min-width: 0;
}

.wa-chat-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.wa-chat-name {
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.wa-chat-time-label {
  font-size: 11px;
  color: #667781;
  flex-shrink: 0;
}

.wa-chat-preview {
  font-size: 12px;
  color: #667781;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Main chat area */
.wa-main {
  display: flex;
  flex-direction: column;
  background: #efeae2;
  position: relative;
}

/* Subtle wallpaper pattern */
.wa-main::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c3ba' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-chat-header {
  background: #f0f2f5;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e9edef;
  flex-shrink: 0;
  z-index: 1;
}

.wa-chat-header-info {
  flex: 1;
}

.wa-chat-header-name {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.wa-chat-header-status {
  font-size: 12px;
  color: #00a884;
}

.wa-header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wa-header-icons svg {
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.wa-header-icons svg:hover {
  opacity: 1;
}

.wa-messages {
  flex: 1;
  padding: 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.wa-msg {
  display: flex;
  flex-direction: column;
}

.wa-msg-in {
  align-items: flex-start;
}

.wa-msg-out {
  align-items: flex-end;
}

.wa-msg-bubble {
  max-width: 72%;
  padding: 6px 8px 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.8;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13);
}

.wa-msg-bubble-in {
  background: #ffffff;
  color: #111b21;
  border-radius: 0 8px 8px 8px;
}

.wa-msg-bubble-out {
  background: #d9fdd3;
  color: #111b21;
  border-radius: 8px 0 8px 8px;
}

.wa-msg-meta {
  float: right;
  margin-left: 10px;
  margin-top: 4px;
  font-size: 10px;
  color: #667781;
  white-space: nowrap;
  line-height: 1;
}

.wa-read-receipt {
  color: #53bdeb;
}

.wa-msg-time {
  font-size: 10px;
  color: #667781;
  margin-top: 3px;
  padding: 0 4px;
}

.wa-input-bar {
  background: #f0f2f5;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1;
}

.wa-input-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wa-input-icons svg,
.wa-input-mic svg {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.wa-input-icons svg:hover,
.wa-input-mic svg:hover {
  opacity: 1;
}

.wa-input {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #667781;
}

.wa-input-mic {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.platform-window .agent-popup {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 300px;
  animation: popupSlide 0.5s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* WhatsApp scene: popup on the left, flashing highlight */
#pt-wa-popup {
  right: auto;
  left: 24px;
  bottom: 60px;
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(75, 139, 244, 0.4);
  box-shadow:
    0 0 0 4px rgba(75, 139, 244, 0.08),
    0 8px 40px rgba(0, 0, 0, 0.12),
    0 0 48px rgba(75, 139, 244, 0.18),
    0 0 80px rgba(75, 139, 244, 0.10);
  animation: popupSlide 0.5s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both,
    waPopupPulse 2.4s 1.3s ease-in-out infinite;
}

@keyframes waPopupPulse {

  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(75, 139, 244, 0.08),
      0 8px 40px rgba(0, 0, 0, 0.12),
      0 0 48px rgba(75, 139, 244, 0.18),
      0 0 80px rgba(75, 139, 244, 0.10);
    border-color: rgba(75, 139, 244, 0.4);
  }

  50% {
    box-shadow:
      0 0 0 6px rgba(75, 139, 244, 0.14),
      0 8px 40px rgba(0, 0, 0, 0.12),
      0 0 64px rgba(75, 139, 244, 0.30),
      0 0 100px rgba(75, 139, 244, 0.16);
    border-color: rgba(75, 139, 244, 0.6);
  }
}

/* Shimmer sweep across popup */
#pt-wa-popup::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg,
      transparent 38%,
      rgba(255, 255, 255, 0.5) 44%,
      rgba(75, 139, 244, 0.15) 50%,
      rgba(255, 255, 255, 0.5) 56%,
      transparent 62%);
  transform: skewX(-15deg);
  animation: waPopupShimmer 3.2s 1.3s ease-in-out infinite;
  pointer-events: none;
  z-index: 20;
}

@keyframes waPopupShimmer {
  0% {
    left: -75%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  45% {
    left: 150%;
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    left: 150%;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .platform-window {
    max-width: 100%;
  }

  .wa-body {
    grid-template-columns: 1fr;
  }

  .wa-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 20px;
  }

  section.early-access {
    padding: 80px 24px;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* All 2-column and 3-column grids → 1 column */
  .moment-body,
  .stats-grid,
  .roles-grid,
  .skills-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  /* Moment card mockup moves below text */
  .moment-mockup {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 200px;
  }

  .moment-body-reverse {
    direction: ltr;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Stats */
  .stat-item::after {
    display: none;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

.integrations-section {
  background: #ffffff;
  padding: 100px 24px 80px;
}

.integrations-section .container {
  text-align: center;
  margin-bottom: 0;
}

.integrations-section .section-title {
  text-align: center;
}

.integrations-section .section-sub {
  text-align: center;
  margin: 0 auto 32px;
}

.carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  /* Space so icon box-shadows are not clipped at top/bottom */
  padding: 10px 0 16px;
}

.carousel-row {
  display: flex;
  overflow: hidden;
  align-items: center;
  /* Extra vertical room inside clip so shadows render fully */
  padding: 8px 0 12px;
  box-sizing: content-box;
}

.carousel-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  will-change: transform;
}

.carousel-left .carousel-track {
  animation: integrationsScrollLeft 45s linear infinite;
}

.carousel-right .carousel-track {
  animation: integrationsScrollRight 45s linear infinite;
}

/* Three identical icon sequences per track; move exactly one sequence width for a seamless loop */
@keyframes integrationsScrollLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-100% / 3), 0, 0);
  }
}

@keyframes integrationsScrollRight {
  0% {
    transform: translate3d(calc(-100% / 3), 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.carousel-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.carousel-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Pause on hover */
.carousel-left:hover .carousel-track {
  animation-play-state: paused;
}
.carousel-right:hover .carousel-track {
  animation-play-state: paused;
}

/* Left and right fade overlays */
.carousel-fade-left {
  position: absolute;
  top: 0; left: 0;
  width: 120px; height: 100%;
  background: linear-gradient(to right, #ffffff, transparent);
  pointer-events: none;
  z-index: 2;
}
.carousel-fade-right {
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 100%;
  background: linear-gradient(to left, #ffffff, transparent);
  pointer-events: none;
  z-index: 2;
}

.integrations-powered {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.integrations-powered-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.integrations-powered-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .integrations-section {
    padding: 64px 20px 56px;
  }

  .carousel-icon {
    width: 48px;
    height: 48px;
  }

  .carousel-icon img {
    width: 28px;
    height: 28px;
  }

  .carousel-fade-left,
  .carousel-fade-right {
    width: 60px;
  }
}

@keyframes pullup-spotlight-raindrop {
  0% {
    box-shadow: 0 8px 40px rgba(75, 139, 244, 0.45);
  }

  33% {
    box-shadow: 0 8px 40px rgba(83, 74, 183, 0.45);
  }

  66% {
    box-shadow: 0 8px 40px rgba(29, 158, 117, 0.45);
  }

  100% {
    box-shadow: 0 8px 40px rgba(75, 139, 244, 0.45);
  }
}

section.pull-up-section {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f0ede8 15%,
    #ebe9f2 40%,
    #edeae5 60%,
    #eaede8 85%,
    #ffffff 100%
  );
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.pull-up-headline {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  text-align: center;
  line-height: 1.1;
  margin: 0;
}

.pull-up-subline {
  font-size: 18px;
  font-weight: 300;
  color: #6b7280;
  text-align: center;
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

.kbd-key {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  vertical-align: middle;
  margin: 0 2px;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.pull-up-spotlight {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  animation: pullup-spotlight-raindrop 4s ease-in-out infinite;
}

.pull-up-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 0.5px solid #f3f4f6;
  box-sizing: border-box;
}

.pull-up-input-brand {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pull-up-input-brand svg {
  display: block;
}

.pull-up-input-placeholder {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  color: #aaa;
  letter-spacing: -0.01em;
  text-align: left;
  min-width: 0;
}

.pull-up-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pullup-spotlight-raindrop 4s ease-in-out infinite;
  animation-delay: 1s;
}

.pull-up-send svg {
  display: block;
}

.pull-up-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 20px 14px;
  box-sizing: border-box;
}

.pull-up-context {
  padding: 12px 20px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.pull-up-context-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.pull-up-context-title {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.pull-up-context-sub {
  font-size: 11px;
  font-weight: 300;
  color: #6b7280;
}

.pull-up-context-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pull-up-context-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.pull-up-context-btn-primary {
  background: #2a2a2a;
  color: #ffffff;
  border: 0.5px solid #3a3a3a;
}

.pull-up-context-btn-secondary {
  background: transparent;
  color: #6b7280;
  border: 0.5px solid #2a2a2a;
}

@media (max-width: 640px) {
  section.pull-up-section {
    padding: 80px 24px;
  }

  .pull-up-headline {
    font-size: clamp(28px, 9vw, 52px);
  }

  .pull-up-context {
    flex-direction: column;
    align-items: flex-start;
  }

  .pull-up-context-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@keyframes raindrop {
  0% {
    box-shadow: 0 4px 14px rgba(75, 139, 244, 0.55);
  }

  33% {
    box-shadow: 0 4px 14px rgba(83, 74, 183, 0.55);
  }

  66% {
    box-shadow: 0 4px 14px rgba(29, 158, 117, 0.55);
  }

  100% {
    box-shadow: 0 4px 14px rgba(75, 139, 244, 0.55);
  }
}

/* Ambient console (How it works panel 3) */
.console-scene {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 460px;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.console-titlebar {
  height: 40px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
  flex-shrink: 0;
}

.console-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.console-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.console-dot-r {
  background: #ff5f57;
}

.console-dot-y {
  background: #febc2e;
}

.console-dot-g {
  background: #28c840;
}

.console-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
  color: #888888;
  pointer-events: none;
  white-space: nowrap;
}

.console-body {
  flex: 1;
  min-height: 0;
  display: flex;
  overflow: hidden;
  background: #ffffff;
}

.console-rail {
  width: 58px;
  flex-shrink: 0;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 6px;
  box-sizing: border-box;
}

.console-rail-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
  animation: raindrop 4s ease-in-out infinite;
}

.console-rail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.console-rail-inbound {
  background: #eeedfe;
  box-shadow: 0 2px 8px rgba(83, 74, 183, 0.25);
}

.console-rail-scheduled {
  background: #faeeda;
  box-shadow: 0 2px 8px rgba(133, 79, 11, 0.2);
}

.console-rail-ondemand {
  background: #e8e8e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.console-rail-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
}

.console-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eaf6 0%, #f0ece8 60%, #e8f0e8 100%);
}

.console-hi {
  font-size: 20px;
  font-weight: 300;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin: 0;
}

.console-hi-light {
  font-weight: 300;
}

.console-hi strong {
  font-weight: 600;
}

.console-sub {
  font-size: 12px;
  color: #888888;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.console-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.console-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.7);
  flex-shrink: 0;
}

.console-status span {
  font-size: 11px;
  color: #aaaaaa;
  font-weight: 300;
}

.console-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.console-card {
  background: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.console-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.console-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.console-card-icon-inbound {
  background: #eeedfe;
}

.console-card-icon-scheduled {
  background: #faeeda;
}

.console-card-icon-ondemand {
  background: #ebebea;
}

.console-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.025em;
}

.console-card-desc {
  font-size: 11px;
  color: #555555;
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

.console-chat {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.console-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-bottom: 0.5px solid #f3f4f6;
  box-sizing: border-box;
}

.console-attach {
  flex-shrink: 0;
  opacity: 0.3;
  color: #0a0a0a;
}

.console-placeholder {
  flex: 1;
  font-size: 12px;
  font-weight: 300;
  color: #aaaaaa;
  letter-spacing: -0.01em;
  min-width: 0;
}

.console-mic {
  flex-shrink: 0;
  opacity: 0.3;
  color: #0a0a0a;
}

.console-send {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: raindrop 4s ease-in-out infinite;
}

.console-send svg {
  display: block;
}

.console-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 10px;
  box-sizing: border-box;
}

.console-pill-rain {
  animation: raindrop 4s ease-in-out infinite;
}

.console-pill-rain--0 {
  animation-delay: 0s;
}

.console-pill-rain--08 {
  animation-delay: 0.8s;
}

.console-pill-rain--16 {
  animation-delay: 1.6s;
}
