@import url('./fonts/fonts.css');

:root {
  --ink: #0c1322;
  --ink2: #3b4658;
  --muted: #64708a;
  --bg: #fff;
  --soft: #f6f8fb;
  --line: #e6e9f0;
  --accent: #2563eb;
  --accent2: #1d4fd7;
  --violet: #7c3aed;
  --ok: #12833b;
  --warn: #a16110;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(12, 19, 34, 0.1);
  --font-head: 'Sora', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font: 16px/1.7 var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 15.5px;
  transition: 0.16s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn svg {
  flex: none;
  transition: transform 0.16s;
}

.btn.primary:hover svg {
  transform: translateX(3px);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

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

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 30px;
}

.badge svg {
  flex: none;
}

.badge.live {
  background: #e7f6ec;
  color: var(--ok);
}

.badge.soon {
  background: #fbf3e4;
  color: var(--warn);
}

.badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(18, 131, 59, 0.15);
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

header.nav .wrap {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}

.logo-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  min-width: 99px;
  white-space: nowrap;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .logo-word {
    padding-right: 0.08em;
    background-image: linear-gradient(92deg, var(--accent), var(--violet));
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  footer.foot .logo-word {
    background-image: linear-gradient(var(--ink2), var(--ink2));
  }

  .logo-dud {
    color: var(--accent);
    opacity: 0.72;
  }
}

.logo .mark {
  transform-box: view-box;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo:hover .mark,
.logo:focus-visible .mark {
  transform: rotate(-90deg);
}

@media (prefers-reduced-motion: reduce) {
  .logo .mark {
    transition: none;
  }
}

nav.menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

nav.menu > a {
  color: var(--ink2);
  font: 500 15px var(--font-body);
  padding: 9px 14px;
  border-radius: 9px;
}

nav.menu > a:hover {
  background: var(--soft);
  color: var(--ink);
}

nav.menu > a.signin {
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--line);
  padding: 8px 13px;
  margin-left: 8px;
}

nav.menu > a.signin:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: none;
}

.nav-cta {
  margin-left: 10px;
  padding: 10px 20px;
}

nav.menu > a.nav-cta:hover {
  background: var(--accent2);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 920px) {
  .hamburger {
    display: flex;
  }

  nav.menu {
    position: fixed;
    inset: 70px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ nav.menu {
    display: flex;
  }

  .nav-cta {
    margin: 10px 0 0;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background:
    radial-gradient(720px 420px at 82% -10%, rgba(124, 58, 237, 0.1), transparent 60%),
    radial-gradient(900px 480px at 8% -20%, rgba(37, 99, 235, 0.12), transparent 60%),
    linear-gradient(180deg, #fafbfe 0%, #fff 100%);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

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

  .hero {
    padding: 56px 0 64px;
  }
}

.hero .badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.08;
  font-weight: 800;
}

.hero h1 .grad {
  background: linear-gradient(92deg, var(--accent), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .hero-type {
  display: inline-block;
  min-width: 5.05em;
  white-space: nowrap;
}

.hero h1 .hero-type::after {
  content: '';
  display: inline-block;
  width: 0.075em;
  height: 0.88em;
  margin-left: 0.07em;
  vertical-align: -0.06em;
  background: var(--violet);
  animation: caret 0.85s steps(1, end) infinite;
}

@keyframes caret {
  0%,
  46% {
    opacity: 1;
  }
  47%,
  100% {
    opacity: 0;
  }
}

.hero p.lead {
  margin: 22px 0 10px;
  font-size: 18.5px;
  color: var(--ink2);
  max-width: 540px;
}

.hero ul.ticks {
  list-style: none;
  padding: 0;
  margin: 18px 0 30px;
  display: grid;
  gap: 9px;
}

.hero ul.ticks li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink2);
  font-size: 15.5px;
}

.hero ul.ticks svg {
  flex: 0 0 auto;
}

.ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .guarantee {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
}

.window {
  position: relative;
}

.app {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.bar .url {
  margin-left: 10px;
  flex: 1;
  background: #eef1f6;
  border-radius: 7px;
  font: 500 12px var(--font-body);
  color: var(--muted);
  padding: 5px 12px;
}

.rowline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid #f0f2f7;
  font-size: 13.5px;
}

.rowline:last-child {
  border-bottom: 0;
}

.rowline .ic {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rowline b {
  font-size: 13.5px;
  font-weight: 600;
}

.rowline small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.rowline .st {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.st.ok {
  background: #e7f6ec;
  color: var(--ok);
}

.st.info {
  background: #e8effd;
  color: var(--accent);
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.float-card small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 11.5px;
}

.fc1 {
  top: -22px;
  right: -14px;
  animation: floaty 5s ease-in-out infinite;
}

.fc2 {
  bottom: -54px;
  left: -18px;
  animation: floaty 6s ease-in-out 0.8s infinite;
}

@media (max-width: 960px) {
  .fc1 {
    right: 0;
  }

  .fc2 {
    left: 0;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .fc1,
  .fc2 {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.platforms {
  padding: 34px 0 38px;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.platforms .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cap {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.chips-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
}

.chip.pending {
  color: var(--muted);
  background: transparent;
  border-style: dashed;
}

.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}

.chip.pending .dot {
  background: #c3cad8;
}

.block {
  padding: 84px 0;
}

.block.tint {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.kicker {
  display: block;
  line-height: 1.2;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.block > .wrap > h2 {
  font-size: clamp(26px, 3.1vw, 36px);
  font-weight: 800;
  margin: 9px 0 12px;
}

.block > .wrap > p.sub {
  color: var(--ink2);
  font-size: 17px;
  max-width: 660px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.card .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8effd;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  color: var(--ink2);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 44px;
}

.split + .split {
  margin-top: 72px;
}

.split.rev .win-col {
  order: -1;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split.rev .win-col {
    order: 0;
  }
}

.split h3 {
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 800;
  margin-bottom: 12px;
}

.split p {
  color: var(--ink2);
  font-size: 16px;
}

.split ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.split li {
  position: relative;
  padding-left: 28px;
  color: var(--ink2);
  font-size: 15px;
}

.split li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e7f6ec
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2312833b' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center no-repeat;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
  align-items: start;
}

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

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
}

.plan.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.plan .tag {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.plan h3 {
  font-size: 19px;
  font-weight: 800;
}

.plan .price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 2px;
}

.plan .price span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.plan .yearly {
  font-size: 13.5px;
  color: var(--muted);
}

.plan p.who {
  color: var(--ink2);
  font-size: 15px;
  margin: 14px 0 20px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink2);
}

.plan li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 9px;
}

.plan li:last-child {
  border-bottom: 0;
}

.plan li b {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.plan .btn {
  width: 100%;
}

.pricing-note {
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.faq {
  margin-top: 38px;
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 21px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: '\2212';
}

.faq p {
  color: var(--ink2);
  font-size: 15px;
  margin-top: 12px;
}

.cta-end {
  padding: 78px 0;
  background: linear-gradient(120deg, #0c1322, #16224a 60%, #2b1a55);
  color: #fff;
  text-align: center;
}

.cta-end h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
}

.cta-end p {
  color: #c3cbdd;
  margin: 14px auto 26px;
  max-width: 560px;
}

.cta-end .btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.cta-end .btn.ghost:hover {
  border-color: #fff;
  color: #fff;
}

.cta-end .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

footer.foot {
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 46px 0 34px;
  font-size: 14.5px;
}

footer.foot .cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

@media (max-width: 780px) {
  footer.foot .cols {
    grid-template-columns: 1fr 1fr;
  }
}

footer.foot h4 {
  font: 600 13px var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

footer.foot ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

footer.foot a {
  color: var(--ink2);
}

footer.foot a:hover {
  color: var(--accent);
}

footer.foot .about {
  color: var(--ink2);
  max-width: 320px;
  margin-top: 12px;
  font-size: 14px;
}

footer.foot .legal {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.channelgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.channelcard {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--ink);
  transition: 0.16s;
}

.channelcard:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.chmark {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.chmark img {
  width: 28px;
  height: 28px;
  display: block;
}

.channelcard h3 {
  font-size: 18px;
  font-weight: 700;
}

.channelcard p {
  color: var(--ink2);
  font-size: 14.5px;
  margin-top: 8px;
}

.channelcard ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.channelcard li {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 10px;
}

.channelcard .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent);
}

.channelcard.building {
  border-style: dashed;
  background: transparent;
}

.channelcard.building .chmark {
  opacity: 0.5;
}

.everything {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.everything > section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.everything h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.everything ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.everything li {
  position: relative;
  padding-left: 26px;
  color: var(--ink2);
  font-size: 14.5px;
  line-height: 1.55;
}

.everything li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e7f6ec
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2312833b' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center no-repeat;
}

.pagehero {
  padding: 60px 0 54px;
  background:
    radial-gradient(700px 380px at 78% -20%, rgba(124, 58, 237, 0.09), transparent 60%),
    linear-gradient(180deg, #fafbfe 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.pagehero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .pagehero .wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.pagehero .chmark {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.pagehero .chmark img {
  width: 34px;
  height: 34px;
}

.pagehero h1 {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  margin: 4px 0 0;
}

.pagehero p.lead {
  margin: 18px 0 26px;
  font-size: 17.5px;
  color: var(--ink2);
  max-width: 540px;
}

.crumb {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.crumb a {
  color: var(--muted);
}

.crumb a:hover {
  color: var(--accent);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 20px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 52px;
  color: var(--ink2);
  font-size: 15.5px;
  counter-increment: step;
}

.steps li b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8effd;
  color: var(--accent);
  font: 700 15px var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tablewrap {
  overflow-x: auto;
  margin-top: 34px;
}

.syncs {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 520px;
}

.syncs th,
.syncs td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.syncs th {
  font: 600 12.5px var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.syncs td:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.syncs td:last-child {
  color: var(--ink2);
}

.assistant {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .assistant {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.chat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.chat .ask {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 600;
}

.chat .said {
  font-size: 14.5px;
  color: var(--ink2);
}

.chat ol {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--ink2);
}

.chat ol b {
  color: var(--ink);
}

.chat .note {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.st.warn {
  background: #fbf3e4;
  color: var(--warn);
}

.st.plain {
  background: var(--soft);
  color: var(--muted);
  border: 1px solid var(--line);
}

.meter {
  height: 6px;
  border-radius: 99px;
  background: #eef1f6;
  overflow: hidden;
  margin-top: 8px;
}

.meter > span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
}

.meter.calm > span {
  background: var(--ok);
}

.appfoot {
  display: flex;
  gap: 18px;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  background: #fbfcfe;
  flex-wrap: wrap;
}

.appfoot div {
  display: grid;
  gap: 2px;
}

.appfoot b {
  font: 700 15px var(--font-head);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.appfoot small {
  font-size: 11.5px;
  color: var(--muted);
}

.mono {
  font-family: ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Menlo, monospace;
  font-size: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 6px;
  color: var(--ink2);
}

.rowline.note {
  background: #fbfcfe;
  color: var(--muted);
  font-size: 12.5px;
  display: block;
  padding: 11px 18px;
}

.channelcard.opening {
  border-style: dashed;
  background: transparent;
}

.channelcard.opening .chmark {
  background: #e8effd;
  border-color: transparent;
  color: var(--accent);
  font: 700 24px var(--font-head);
  line-height: 1;
}

.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 42px;
  align-items: stretch;
}

.flowstep {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flowstep header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flowstep .num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font: 700 14px var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.flowstep .when {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

.flowstep h3 {
  font-size: 17px;
  font-weight: 700;
}

.flowstep p {
  color: var(--ink2);
  font-size: 14.5px;
  margin: 0;
}

.flowstep .shows {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.fakefield {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--muted);
}

.fakefield b {
  color: var(--ink);
  font-weight: 600;
}

.fakefield + .fakefield {
  margin-top: 8px;
}

.logorow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.logorow span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logorow img {
  width: 20px;
  height: 20px;
}

.flowstep .figures {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 8px;
}

.flowstep .figures b {
  color: var(--ink);
  font-weight: 600;
}

.apanel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.apanel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
  font-weight: 600;
  font-size: 14px;
}

.apanel__head .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  margin-left: auto;
}

.apanel__head .state {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.apanel__body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.bubble {
  justify-self: end;
  max-width: 85%;
  background: var(--accent);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 11px 15px;
  font-size: 14.5px;
  font-weight: 500;
}

.answered {
  font-size: 14px;
  color: var(--ink2);
}

.blocker {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.blocker .n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fdf1e2;
  color: var(--warn);
  font: 700 12px var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}

.blocker.done .n {
  background: #e7f6ec;
  color: var(--ok);
}

.blocker b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.blocker small {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 2px;
}

.blocker .go {
  margin-left: auto;
  align-self: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: #e8effd;
  border-radius: 20px;
  padding: 5px 11px;
  white-space: nowrap;
}

.apanel__foot {
  border-top: 1px dashed var(--line);
  padding: 13px 18px;
  font-size: 12.5px;
  color: var(--muted);
  background: #fbfcfe;
}

.claims {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.claims div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.claims .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e8effd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.claims b {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.claims small {
  display: block;
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.55;
}

.bento {
  display: grid;
  margin-top: 30px;
}

.bento > section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.bento > section:last-child {
  border-bottom: 0;
  padding-bottom: 8px;
}

.bento .side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.bento > section > ul {
  display: grid;
  gap: 13px;
  max-width: 30rem;
}

.bento > section:nth-child(even) > .side {
  order: 2;
}

.bento > section:nth-child(even) > ul {
  order: 1;
  justify-self: end;
}

@media (max-width: 900px) {
  .bento > section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 0;
  }

  .bento > section:nth-child(even) > .side {
    order: 0;
  }

  .bento > section:nth-child(even) > ul {
    order: 0;
    justify-self: stretch;
  }
}

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

.bento header .ic {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #e8effd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.bento h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
}

.bento ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.bento li {
  position: relative;
  padding-left: 30px;
  color: var(--ink2);
  font-size: 15.5px;
  line-height: 1.6;
}

.bento li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e7f6ec
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%2312833b' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center no-repeat;
}

.shot {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  gap: 11px;
}

.shot .line {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 11px;
  font-size: 12.5px;
}

.shot .line b {
  font-weight: 600;
}

.shot .line small {
  color: var(--muted);
  font-size: 11.5px;
}

.shot .line .tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 9px;
  background: #e7f6ec;
  color: var(--ok);
  white-space: nowrap;
}

.shot .line .tag.blue {
  background: #e8effd;
  color: var(--accent);
}

.shot .line .tag.amber {
  background: #fbf3e4;
  color: var(--warn);
}

.shot .line .tag.grey {
  background: var(--soft);
  color: var(--muted);
}

.shot .line img {
  width: 16px;
  height: 16px;
  flex: none;
}

.chain {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.chain span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
}

.chain i {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.chain span.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.figs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.figs div {
  display: grid;
  gap: 1px;
}

.figs b {
  font: 800 22px var(--font-head);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.figs small {
  font-size: 11.5px;
  color: var(--muted);
}

.block.centred > .wrap > .kicker,
.block.centred > .wrap > h2,
.block.centred > .wrap > p.sub {
  display: block;
  text-align: center;
  margin-inline: auto;
}

.block.centred .faq {
  margin-inline: auto;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

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

.factcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.6;
}

.factcard .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e7f6ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.factcard.link {
  grid-column: 1 / -1;
  background: linear-gradient(130deg, #0c1322, #1c2a55 65%, #2b1a55);
  border-color: transparent;
  color: #c3cbdd;
  padding: 26px 28px;
}

.factcard.link .ic {
  background: rgba(255, 255, 255, 0.12);
}

.factcard.link b {
  display: block;
  color: #fff;
  font-size: 17px;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.factcard.link a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.logorow span.plus {
  background: transparent;
  border-style: dashed;
  color: var(--accent);
  font: 700 20px var(--font-head);
  line-height: 1;
}

.askintro {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

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

.asks span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--ink2);
}

.moves {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.movecard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.movecard .top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.movecard h3 {
  font-size: 16px;
  font-weight: 700;
}

.movecard p {
  color: var(--ink2);
  font-size: 14.5px;
  margin: 0;
}

.dir {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.dir img {
  width: 15px;
  height: 15px;
}

.dir svg {
  flex: none;
}

.dir b {
  color: var(--ink2);
  font-weight: 700;
}

/* ---- Long-form pages: docs, privacy, terms -------------------------------
   One layout for all three. They are the pages somebody reads rather than
   scans, so the measure is narrow, the headings carry their own anchor, and
   the side navigation is the whole page rather than a summary of it. */

.doc {
  padding: 46px 0 80px;
}

.doc .wrap {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .doc .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.toc {
  position: sticky;
  top: 84px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

@media (max-width: 900px) {
  .toc {
    position: static;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px;
  }
}

.toc h4 {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.toc a {
  display: block;
  padding: 5px 0;
  font-size: 14.5px;
  color: var(--ink2);
}

.toc a:hover {
  color: var(--accent);
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 25px;
  font-weight: 800;
  margin: 46px 0 14px;
  scroll-margin-top: 90px;
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin: 26px 0 8px;
}

.prose p,
.prose li {
  color: var(--ink2);
  font-size: 16px;
}

.prose p {
  margin: 12px 0;
}

.prose ul {
  margin: 12px 0;
  padding-left: 20px;
}

.prose li {
  margin: 6px 0;
}

.prose strong {
  color: var(--ink);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
}

.prose th,
.prose td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink2);
}

.prose th {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose .note {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}

.prose .note p {
  margin: 0;
  font-size: 15px;
}

.updated {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 12px;
  margin-top: 16px;
}

footer.foot .legal .links a {
  color: var(--muted);
  margin-left: 16px;
}

footer.foot .legal .links a:first-child {
  margin-left: 0;
}

footer.foot .legal .links a:hover {
  color: var(--accent);
}
