/* Fonts mirrored from major.bot.
   local() skips the download on Apple devices that already have SF Pro.
   unicode-range is Latin-only: the landing copy is English. */
@font-face {
  font-family: "SF Pro Display";
  src: local("SF Pro Display"), local("SFProDisplay-Regular"),
    url("../fonts/SF-Pro-Display-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: "SF Pro Display";
  src: local("SF Pro Display"), local("SFProDisplay-Semibold"),
    url("../fonts/SF-Pro-Display-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: "SF Pro Display";
  src: local("SF Pro Display"), local("SFProDisplay-Bold"),
    url("../fonts/SF-Pro-Display-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
/* major.bot name for SF Rounded */
@font-face {
  font-family: telegram_level;
  src: local("SF Pro Rounded"), local("SFProRounded-Semibold"),
    url("../fonts/SFRounded-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: telegram_level;
  src: local("SF Pro Rounded"), local("SFProRounded-Bold"),
    url("../fonts/SFRounded-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f8f8f8;
  --text: #000000;
  --muted: #8e8e93;
  --blue: #007aff;
  --blue-tint: rgba(0, 122, 255, 0.1);
  --blue-token: #2f97ff;
  --orange: #ff9500;
  --yellow: #ffdd00;
  --content: 1065px;
  --inset: 100px;
  --radius-card: 40px;
  --radius-btn: 12px;
  --radius-social: 20px;
  --nav-h: 68px;
  --font: "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-rounded: telegram_level, "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-smooth: cubic-bezier(0.45, 0, 0.15, 1);
  --ease-decel: cubic-bezier(0.05, 0.7, 0.1, 1);
  --motion-fast: 0.28s;
  --motion-med: 0.45s;
  --motion-slow: 0.85s;
  --shadow-soft: 0 12px 40px rgba(0, 122, 255, 0.08);
}
























*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 22px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, p {
  margin: 0;
}

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

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: calc(var(--content) + var(--inset) * 2);
  margin: 0 auto;
  padding-left: var(--inset);
  padding-right: var(--inset);
}

/* —— Nav —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}


.nav.is-open {
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav__link {
  font-family: var(--font-rounded);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.is-active {
  background: transparent;
  color: var(--blue);
}





.nav__burger {
  position: static;
  transform: none;
}

.nav__burger {
  /* position overridden in .nav__actions on mobile */

  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: #000;
  margin: 6px 0;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.is-open .nav__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav.is-open .nav__burger span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__drawer {
  display: none;
}


/* Body lock when mobile menu open */
body.nav-lock {
  overflow: hidden;
  height: 100%;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 120px var(--inset) 0;
  min-height: 602px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -80px;
  right: 8%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.14) 0%, rgba(0, 122, 255, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glow-pulse 8s ease-in-out infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
  max-width: var(--content);
}

.hero__grid {
  display: flex;
  align-items: center;
  gap: 100px;
}

.hero__copy {
  flex: 1 1 0;
  min-width: 0;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  cursor: default;}

.hero__logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.hero__wordmark {
  font-family: var(--font-rounded);
  font-size: 80px;
  line-height: 92px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}


.hero__pitch {
  font-size: 17px;
  line-height: 22px;
  color: var(--text);
  max-width: 460px;
}

.hero__pitch + .hero__pitch,
.hero__lede {
  margin-top: 16px;
}

.hero__lede {
  font-size: 17px;
  line-height: 22px;
  color: var(--text);
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero__visual {
  flex: 1 1 0;
  min-width: 0;
  will-change: transform;
}

.hero__visual-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(145deg, #e8f3ff 0%, #d6ebff 45%, #c5e2ff 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.hero__visual-frame img,
.hero__visual-frame .lottie {
  width: 100%;
  height: 100%;
}

/* Buttons */
.btn {
  box-sizing: border-box;
  font-family: var(--font-rounded);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform var(--motion-med) var(--ease-decel), opacity var(--motion-fast) var(--ease-out-soft), background var(--motion-fast) var(--ease-out-soft), box-shadow var(--motion-med) var(--ease-out-soft), color var(--motion-fast) var(--ease-out-soft);
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 12px 28px rgba(0, 122, 255, 0.35);
}

.btn--tinted {
  background: var(--blue-tint);
  color: var(--blue);
}

.btn--tinted:hover {
  background: rgba(0, 122, 255, 0.16);
}

.btn--ghost {
  background: var(--bg);
  color: var(--blue);
  border: 1.5px solid rgba(0, 122, 255, 0.25);
  flex: 0 1 auto;
}

.btn--ghost:hover {
  background: var(--blue-tint);
  border-color: transparent;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
  padding-bottom: 40px;
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.stats__heading {
  grid-column: 1 / -1;
  font-family: var(--font-rounded);
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text);
}

.stats__item {
  text-align: center;
  padding: 20px 12px;
  border-radius: 24px;
  background: transparent;
  transition: background var(--motion-med) var(--ease-out-soft), transform var(--motion-med) var(--ease-decel);
}

.stats__item:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.stats__value {
  font-family: var(--font-rounded);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stats__label {
  margin-top: 8px;
  font-size: 15px;
  line-height: 20px;
  color: var(--muted);
}

/* Sections */
.section,
.strip {
  padding: 120px var(--inset) 0;
}

.section .container,
.strip .container {
  padding-left: 0;
  padding-right: 0;
  max-width: var(--content);
}

.section-title {
  font-family: var(--font);
  font-size: 40px;
  line-height: 38px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-lede {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
  line-height: 24px;
  color: var(--muted);
}

/* Built for Telegram strip */
.strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 24px;
}

.strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100px;
  transition: transform var(--motion-med) var(--ease-decel);
}

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

.strip__item img,
.strip__item .lottie {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  overflow: hidden;
  background: #f2f5f8;
  transition: box-shadow 0.25s ease;
}

.strip__item:hover .lottie {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.strip__item span {
  font-size: 13px;
  line-height: 16px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

/* Trust / privacy band */
.trust__band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 36px;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.trust__band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(0, 122, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.trust__mascot {
  position: relative;
  z-index: 1;
}

.lottie--trust {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  overflow: hidden;
}

.trust__copy {
  position: relative;
  z-index: 1;
}

.trust__title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.trust__text {
  font-size: 17px;
  line-height: 24px;
  color: var(--text);
  max-width: 640px;
}

.trust__pills {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.trust__pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--blue);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

/* About — 2x2 cards */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card,
.about-card {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  padding: 40px;
  border: none;
  box-shadow: none;
  transition: transform var(--motion-med) var(--ease-decel), box-shadow var(--motion-med) var(--ease-out-soft);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.about-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  overflow: hidden;
  background: #f2f5f8;
}

.lottie--about {
  width: 64px;
  height: 64px;
}

.about-card h3 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 17px;
  line-height: 22px;
  color: var(--text);
}

/* What you can do — compact benefit cards */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.included-card {
  background: var(--bg-soft);
  border-radius: 28px;
  padding: 28px 26px;
  border: none;
  box-shadow: none;
  transition: transform var(--motion-med) var(--ease-decel), box-shadow var(--motion-med) var(--ease-out-soft);
}

.included-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.included-card h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.included-card p {
  font-size: 16px;
  line-height: 22px;
  color: var(--muted);
}

/* Get started CTAs under timeline */
.start-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  justify-content: flex-start;
}

.start-ctas .btn {
  min-width: 160px;
  text-align: center;
}

.faq__a a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.how-card {
  background: var(--blue-tint);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: none;
  transition: transform var(--motion-med) var(--ease-decel), box-shadow var(--motion-med) var(--ease-out-soft);
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 122, 255, 0.12);
}

.how-card__num {
  font-family: var(--font-rounded);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: var(--blue-token);
  letter-spacing: -0.03em;
}

.how-card__title {
  margin-top: 12px;
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  color: var(--blue-token);
}

.how-card__text {
  margin-top: 10px;
  font-size: 17px;
  line-height: 22px;
  color: var(--text);
  max-width: 320px;
}

.how-card__art {
  margin-top: auto;
  margin-left: auto;
  margin-right: -12px;
  margin-bottom: -16px;
  width: min(220px, 70%);
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

/* Timeline detail under how */
.timeline {
  --rail: 32px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 0;
  list-style: none;
}

.timeline__step {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  column-gap: 20px;
  padding: 12px 0;
  align-items: stretch;
}

.timeline__rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--rail);
  min-height: 100%;
}

/* Continuous line through the rail, clipped to marker centers on ends */
.timeline__rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--blue-tint), rgba(0, 122, 255, 0.35), var(--blue-tint));
  border-radius: 2px;
  z-index: 0;
}

.timeline__step:first-child .timeline__rail::before {
  top: 50%;
}

.timeline__step:last-child .timeline__rail::before {
  bottom: 50%;
}

.timeline__marker {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 6px var(--blue-tint);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline__body {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 24px 28px;
  transition: transform var(--motion-med) var(--ease-decel), background 0.25s ease;
}

.timeline__step:hover .timeline__body {
  transform: translateX(4px);
  background: #f3f3f5;
}

.timeline__body h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.timeline__body p {
  font-size: 16px;
  line-height: 22px;
  color: var(--muted);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  transition: transform var(--motion-med) var(--ease-decel), box-shadow var(--motion-med) var(--ease-out-soft);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.feature-card__media {
  padding: 20px 20px 0;
}

.feature-card__media img,
.feature-card__media .lottie {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: #eef3f8;
}

.feature-card__body {
  padding: 28px 40px 40px;
}

.feature-card__body h3 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.feature-card__body p {
  font-size: 17px;
  line-height: 22px;
  color: var(--muted);
}

/* Use cases */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usecase-card {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--motion-med) var(--ease-decel), box-shadow var(--motion-med) var(--ease-out-soft);
  min-height: 100%;
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.usecase-card__art {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
}

.lottie--usecase {
  width: 80px;
  height: 80px;
}

.usecase-card h3 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.usecase-card > p {
  font-size: 16px;
  line-height: 22px;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}

.usecase-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.usecase-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text);
}

.usecase-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* FAQ accordion */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-soft);
  border-radius: 24px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq__item.is-open {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq__q:hover {
  color: var(--blue);
}

.faq__chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq__chev::before,
.faq__chev::after {
  content: "";
  position: absolute;
  background: var(--muted);
  border-radius: 1px;
  transition: transform var(--motion-med) var(--ease-decel), background 0.2s ease;
}

.faq__chev::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq__chev::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq__item.is-open .faq__chev::after {
  transform: scaleY(0);
}

.faq__item.is-open .faq__chev::before,
.faq__item.is-open .faq__chev::after {
  background: var(--blue);
}

.faq__a {
  padding: 0 28px 24px;
}

.faq__a[hidden] {
  display: none;
}

.faq__a p {
  font-size: 16px;
  line-height: 24px;
  color: var(--muted);
}

/* Closing CTA band */
.cta-band__card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.12) 0%, rgba(47, 151, 255, 0.18) 50%, rgba(0, 122, 255, 0.08) 100%);
  border-radius: var(--radius-card);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.cta-band__card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.cta-band__visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.lottie--cta {
  width: 112px;
  height: 112px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.12);
}

.cta-band__copy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.cta-band__title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-band__text {
  font-size: 17px;
  line-height: 24px;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 28px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band__actions .btn {
  flex: 0 1 auto;
  min-width: 160px;
}

/* Socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-bottom: 40px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-social);
  padding: 20px;
  min-width: 220px;
  transition: background var(--motion-fast) var(--ease-out-soft), transform var(--motion-med) var(--ease-decel), box-shadow var(--motion-med) var(--ease-out-soft);
}

.social-pill:hover {
  background: #efefef;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.social-pill img,
.social-pill .lottie {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
}

.social-pill span {
  font-size: 22px;
  line-height: 38px;
  font-weight: 500;
}

.social-pill__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

/* Footer */
.footer {
  padding: 80px var(--inset) 60px;
  text-align: center;
}

.footer__email {
  display: inline-block;
  font-size: 17px;
  line-height: 22px;
  color: var(--muted);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer__email:hover {
  color: var(--blue);
}

.footer__note {
  font-size: 13px;
  line-height: 18px;
  color: var(--muted);
}

/* Animations — smooth decelerate (ease-out) */
.fade-up {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(2px);
  transition:
    opacity var(--motion-slow) var(--ease-decel),
    transform var(--motion-slow) var(--ease-decel),
    filter calc(var(--motion-slow) * 0.9) var(--ease-decel);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform, filter;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .float-soft,
  .float-gentle,
  .hero__glow,
  .btn,
  .card,
  .how-card,
  .feature-card,
  .usecase-card,
  .social-pill,
  .strip__item {
    animation: none !important;
    transition: none !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

@keyframes float-soft {
  0% { transform: translate3d(0, 0, 0); }
  35% { transform: translate3d(0, -7px, 0); }
  70% { transform: translate3d(0, -2px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes float-gentle {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  30% { transform: translate3d(0, -9px, 0) rotate(0.35deg); }
  65% { transform: translate3d(0, -3px, 0) rotate(-0.15deg); }
  100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes glow-pulse {
  0% { opacity: 0.82; transform: scale(1); }
  40% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.82; transform: scale(1); }
}

.float-soft {
  animation: float-soft 5.5s var(--ease-in-out-smooth) infinite;
}

.float-gentle {
  animation: float-gentle 7.5s var(--ease-in-out-smooth) infinite;
}

/* Lottie containers */
.lottie {
  display: block;
  overflow: hidden;
}

.lottie svg,
.lottie canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.lottie .tlottie-player {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero__logo.lottie {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
}

.lottie--hero {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
}

.lottie--feature {
  max-height: 360px;
}

/* —— Mobile —— */
@media (max-width: 1100px) {
  .nav__inner {
    gap: 14px;
  }

  .nav__link {
    font-size: 16px;
    padding: 0;
  }

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

@media (max-width: 960px) {
  :root {
    --inset: 20px;
    --nav-h: 60px;
  }

  .nav {
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.92);
  }

  .nav__inner {
    display: none;
  }

  .nav__burger {
    display: block;
    right: max(12px, env(safe-area-inset-right));
    z-index: 120;
  }

  .nav__drawer {
    display: none;
  }

  .nav.is-open ~ .nav__drawer {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    padding: 16px max(20px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    z-index: 110;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
  }

  .nav.is-open ~ .nav__drawer .nav__link {
    font-size: 20px;
    line-height: 1.3;
    padding: 16px 0;
    border-radius: 0;
    white-space: normal;
  }

  .nav.is-open ~ .nav__drawer .nav__link:hover,
  .nav.is-open ~ .nav__drawer .nav__link:active,
  .nav.is-open ~ .nav__drawer .nav__link.is-active {
    background: transparent;
    color: var(--blue);
  }

  .hero {
    padding: calc(var(--nav-h) + 28px) var(--inset) 0;
    min-height: 0;
    overflow: visible;
  }

  .hero__glow {
    display: none;
  }

  .hero__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    text-align: center;
  }

  .hero__visual {
    width: 100%;
    align-self: stretch;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__brand {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__wordmark {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1.1;
  }

  .hero__logo,
  .hero__logo.lottie {
    width: 56px;
    height: 56px;
  }


  .hero__pitch {
    font-size: 18px;
    line-height: 1.35;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__lede {
    font-size: 16px;
    line-height: 1.45;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    flex: 0 0 auto;
    min-height: 52px;
    height: auto;
    padding: 14px 20px;
    font-size: 17px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero__visual-frame {
    aspect-ratio: 1 / 1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
    padding: 16px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .stats__item {
    padding: 16px 12px;
  }

  .stats__value {
    font-size: 26px;
    line-height: 1.15;
  }

  .stats__label {
    font-size: 13px;
    line-height: 1.3;
  }

  .section,
  .strip {
    padding: 64px var(--inset) 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .section-lede {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 24px;
  }

  .about-grid,
  .features-grid,
  .how-grid,
  .usecase-grid,
  .included-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .included-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .included-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .start-ctas {
    margin-top: 28px;
  }

  .start-ctas .btn {
    flex: 1 1 auto;
  }

  .strip__row {
    justify-content: center;
    gap: 12px 16px;
  }

  .strip__item {
    width: 76px;
  }

  .strip__item img,
  .strip__item .lottie {
    width: 56px;
    height: 56px;
  }

  .strip__item span {
    font-size: 12px;
    line-height: 1.25;
  }

  .trust__band {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
    gap: 16px;
  }

  .trust__mascot {
    margin: 0 auto;
  }

  .trust__pills {
    justify-content: center;
  }

  .about-card,
  .how-card {
    padding: 24px;
    min-height: 0;
  }

  .about-card h3,
  .feature-card__body h3,
  .how-card__title {
    font-size: 22px;
    line-height: 1.25;
  }

  .how-card__num {
    font-size: 36px;
  }

  .feature-card__media,
  .feature-card__media .lottie {
    min-height: 180px;
  }

  .feature-card__body {
    padding: 20px 22px 24px;
  }

  .timeline {
    --rail: 28px;
    margin-top: 28px;
  }

  .timeline__step {
    column-gap: 14px;
    padding: 10px 0;
  }

  .timeline__body {
    padding: 18px 18px;
  }

  .timeline__body h3 {
    font-size: 17px;
    line-height: 1.3;
  }

  .timeline__body p {
    font-size: 15px;
    line-height: 1.4;
  }

  .usecase-card {
    padding: 24px;
  }

  .faq__q {
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .faq__a {
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .cta-band__card {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    gap: 20px;
  }

  .cta-band__title {
    font-size: 24px;
    line-height: 1.25;
  }

  .cta-band__text {
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .cta-band__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-band__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .socials {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 32px;
  }

  .social-pill {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .footer {
    padding: 48px var(--inset) max(32px, env(safe-area-inset-bottom));
  }

  /* Avoid invisible content stuck off-screen on short mobile viewports */
  .fade-up {
    transform: translate3d(0, 18px, 0) scale(0.99);
  }
}

@media (max-width: 480px) {
  :root {
    --inset: 16px;
  }

  .hero__wordmark {
    font-size: 40px;
  }

  .hero__pitch {
    font-size: 17px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stats__value {
    font-size: 22px;
  }

  .stats__label {
    font-size: 12px;
  }

  .section-title {
    font-size: 26px;
  }

  .trust__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .btn {
    font-size: 16px;
    min-height: 50px;
    padding: 13px 16px;
  }
}


/* Visually hidden but available to crawlers / assistive tech */
.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;
}
