/* ============== Daata — static landing styles ============== */
:root {
  --color-canvas: #ffffff;
  --color-canvas-soft: #f6f5f4;
  --color-surface: #ffffff;
  --color-ink: #000000;
  --color-ink-secondary: #31302e;
  --color-ink-muted: #615d59;
  --color-ink-faint: #a39e98;
  --color-hairline: #e6e6e6;

  --color-brand: #0075de;
  --color-brand-active: #005bab;
  --color-brand-deep: #213183;
  --color-on-brand: #ffffff;

  --color-sticker-sky: #62aef0;
  --color-sticker-purple: #d6b6f6;
  --color-sticker-purple-deep: #391c57;
  --color-sticker-pink: #ff64c8;
  --color-sticker-orange: #dd5b00;
  --color-sticker-teal: #2a9d99;
  --color-sticker-green: #1aae39;

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-soft:
    0 0.175px 1.041px rgba(0, 0, 0, .01),
    0 0.8px 2.925px rgba(0, 0, 0, .02),
    0 2.025px 7.847px rgba(0, 0, 0, .027),
    0 4px 18px rgba(0, 0, 0, .04);

  --font-sans: "Inter", -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "lnum", "locl";
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

/* ===== Type ===== */
.t-display-1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.t-display-2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.25px;
}

.t-h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.t-h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.625px;
}

.t-h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: -.25px;
}

.t-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.125px;
}

.t-body {
  font-size: 16px;
  line-height: 1.5;
}

.t-body-sm {
  font-size: 15px;
  line-height: 1.33;
}

.t-caption {
  font-size: 14px;
  line-height: 1.43;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: inline-block;
}

@media (max-width: 768px) {
  .t-display-1 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .t-display-2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .t-h1 {
    font-size: 28px;
    letter-spacing: -.75px;
  }

  .t-h2 {
    font-size: 24px;
  }
}

/* ===== Color helpers ===== */
.text-brand {
  color: var(--color-brand);
}

.text-orange {
  color: var(--color-sticker-orange);
}

.text-teal {
  color: var(--color-sticker-teal);
}

.text-pink {
  color: var(--color-sticker-pink);
}

.text-purple {
  color: var(--color-sticker-purple-deep);
}

.text-sky {
  color: var(--color-sticker-sky);
}

.muted {
  color: var(--color-ink-muted);
}

.muted-2 {
  color: var(--color-ink-secondary);
}

.muted-faint {
  color: var(--color-ink-faint);
}

.white-75 {
  color: rgba(255, 255, 255, .75);
}

.white-80 {
  color: rgba(255, 255, 255, .8);
}

/* ===== Layout ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 920px;
}

.container--md {
  max-width: 980px;
}

.section {
  padding: 96px 0;
}

.section--canvas {
  background: var(--color-canvas);
}

.section--soft {
  background: var(--color-canvas-soft);
}

.section--deep {
  background: var(--color-brand-deep);
  color: #fff;
}

.section__head {
  max-width: 820px;
}

.section__head.center {
  margin: 0 auto;
  text-align: center;
}

.section__head h2 {
  margin-top: 12px;
}

.section__head p {
  margin-top: 16px;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

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

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

@media (max-width: 960px) {

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

@media (max-width: 600px) {

  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: baseline;
}

.nav__logo img {
  height: 30px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-right: 2px;
}

.logo-word {
  color: var(--color-ink);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
  text-decoration: none;
  line-height: 1;
}

.btn--sm {
  padding: 8px 16px;
}

.btn--lg {
  padding: 14px 24px;
  font-size: 16px;
}

.btn--brand {
  background: var(--color-brand);
  color: var(--color-on-brand);
  box-shadow: var(--shadow-soft);
}

.btn--brand:hover {
  background: var(--color-brand-active);
}

.btn--white {
  background: #fff;
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}

.btn--white:hover {
  background: var(--color-canvas-soft);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  transform: scale(1.02);
}

.btn:active {
  transform: scale(.97);
}

/* ===== Hero ===== */
.hero {
  background: var(--color-canvas-soft);
  padding: 80px 0 96px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    padding: 112px 0 128px;
  }
}

.hero__head {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero__head h1 {
  margin-top: 24px;
}

.hero__head .lead {
  margin: 24px auto 0;
  max-width: 780px;
  color: var(--color-ink-muted);
  font-size: 17px;
}

.eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--color-brand);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  display: inline-block;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* Chat mock */
.chat-mock-wrap {
  position: relative;
  max-width: 640px;
  margin: 64px auto 0;
}

.chat-mock {
  background: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.chat-mock__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-hairline);
}

.dots {
  display: inline-flex;
  gap: 6px;
}

.d {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.d--pink {
  background: var(--color-sticker-pink);
}

.d--orange {
  background: var(--color-sticker-orange);
}

.d--green {
  background: var(--color-sticker-green);
}

.chat-demo {
  min-height: 250px;
  margin-top: 20px;
  transition: opacity .5s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-demo.is-clearing {
  opacity: 0;
}

.bubble-q {
  margin-left: auto;
  max-width: 85%;
  background: var(--color-brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  border-top-right-radius: 4px;
  font-size: 15px;
  line-height: 1.33;
}

.bubble-q .caret {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: rgba(255, 255, 255, .8);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.bubble-think {
  max-width: 80px;
  background: var(--color-canvas-soft);
  border: 1px solid var(--color-hairline);
  padding: 12px 16px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  display: inline-flex;
  gap: 4px;
}

.bubble-think span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-ink-muted);
  animation: bounce 1.2s infinite;
}

.bubble-think span:nth-child(1) {
  animation-delay: -.3s;
}

.bubble-think span:nth-child(2) {
  animation-delay: -.15s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: .5;
  }

  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.bubble-a {
  max-width: 92%;
  background: var(--color-canvas-soft);
  border: 1px solid var(--color-hairline);
  padding: 12px 16px;
  border-radius: 16px;
  border-top-left-radius: 4px;
}

.bubble-a .eyebrow {
  color: var(--color-ink-muted);
  margin-bottom: 8px;
}

.bubble-a ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bubble-a li {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--color-ink-secondary);
  opacity: 0;
  transform: translateY(4px);
  transition: all .3s;
}

.bubble-a li.show {
  opacity: 1;
  transform: translateY(0);
}

.bubble-a li b {
  font-weight: 500;
  color: var(--color-ink);
}

.fade-in {
  animation: fadeIn .25s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Stickers */
.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-brand);
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-soft);
}

.sticker--tl {
  top: -24px;
  left: -24px;
}

.sticker--br {
  right: -16px;
  bottom: -16px;
}

.sticker--tr {
  top: -24px;
  right: -24px;
}

.sticker--bl {
  bottom: -16px;
  left: -16px;
}

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

.sticker--inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: var(--color-brand);
  flex: none;
}

/* ===== Generic card ===== */
.card-tile {
  background: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow .2s;
}

.card-tile:hover {
  box-shadow: var(--shadow-soft);
}

.card-tile h3 {
  margin-top: 20px;
}

.card-tile p {
  margin-top: 8px;
  color: var(--color-ink-muted);
  font-size: 15px;
}

.tile-sticker {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

/* ===== Solution ===== */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.solution h2 {
  margin-top: 12px;
}

.solution p {
  margin-top: 16px;
  color: var(--color-ink-muted);
}

.checks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-sticker-green);
  flex: none;
  display: inline-block;
  position: relative;
  margin-top: 2px;
}

.check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.solution__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: 12px;
  padding: 20px;
}

.card--soft {
  box-shadow: var(--shadow-soft);
}

.skel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
}

.skel span {
  display: block;
  height: 12px;
  width: 100%;
  border-radius: 4px;
  background: var(--color-canvas-soft);
}

.bubble {
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 12px;
}

.bubble--brand {
  background: var(--color-brand-deep);
  color: #fff;
}

.bubble--soft {
  background: var(--color-canvas-soft);
  color: var(--color-ink-secondary);
}

.banner {
  grid-column: span 2;
  background: var(--color-brand-deep);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.banner p {
  color: #fff;
}

/* ===== Steps ===== */
.steps li {
  background: var(--color-canvas-soft);
  border: 1px solid var(--color-hairline);
  border-radius: 12px;
  padding: 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.steps h3 {
  margin-top: 20px;
}

.steps p {
  margin-top: 8px;
  color: var(--color-ink-muted);
  font-size: 15px;
}

/* ===== Audiences ===== */
.aud {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-hairline);
  background: var(--color-canvas-soft);
  padding: 16px;
  border-radius: 12px;
}

.aud__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.stacks {
  margin-top: 32px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  background: #fff;
  border: 1px solid var(--color-hairline);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--color-ink-secondary);
}

/* ===== Security ===== */
.security {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}

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

.security h2 {
  margin-top: 12px;
}

.security p {
  margin-top: 16px;
}

.security__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.security__list li {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  outline: 1px solid rgba(255, 255, 255, .1);
}

.sec__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
}

/* ===== FAQ ===== */
.faq {
  margin-top: 40px;
}

.faq__item {
  border-bottom: 1px solid var(--color-hairline);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: var(--color-ink);
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.125px;
}

.faq__q .chev {
  transition: transform .2s;
}

.faq__item.open .faq__q .chev {
  transform: rotate(180deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq__a>div {
  overflow: hidden;
  color: var(--color-ink-muted);
  font-size: 16px;
  line-height: 1.5;
}

.faq__item.open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a>div>p {
  padding-bottom: 20px;
}

/* ===== Plans ===== */
.plan-box {
  position: relative;
  overflow: hidden;
  background: var(--color-brand-deep);
  color: #fff;
  border-radius: 16px;
  padding: 56px;
}

@media (max-width: 768px) {
  .plan-box {
    padding: 40px 24px;
  }
}

.plan-box h2 {
  margin-top: 20px;
  max-width: 720px;
}

.plan-box p {
  margin-top: 16px;
  max-width: 640px;
}

.eyebrow--white {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
}

.plan-box .btn {
  margin-top: 32px;
  color: var(--color-brand-deep);
  font-weight: 600;
}

.help-box {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.help-box p {
  margin-top: 12px;
}

.help-box .btn {
  margin-top: 24px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--color-hairline);
  background: var(--color-canvas-soft);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer__tag {
  margin-top: 12px;
  max-width: 420px;
}

.footer__meta {
  color: var(--color-ink-secondary);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__name {
  font-weight: 500;
  color: var(--color-ink);
}

.footer__copy {
  padding-top: 8px;
}