:root {
  --base-rgb: 11, 16, 32;
  --accent-rgb: 109, 124, 255;
  --accent2-rgb: 124, 44, 255;
  --bg0: #f6f7ff;
  --bg1: #ffffff;
  --card: rgb(255 255 255 / .72);
  --card2: rgb(255 255 255 / .86);
  --stroke: rgb(11 16 32 / .10);
  --text: rgb(11 16 32 / .92);
  --muted: rgb(11 16 32 / .68);
  --muted2: rgb(11 16 32 / .60);
  --r: 18px;
  --r2: 26px;
  --w: 1120px;
  --header-h: 72px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h)
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-family: Inter, "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  background:
    radial-gradient(1200px 800px at 18% 8%, rgba(var(--accent2-rgb), .14), transparent 55%),
    radial-gradient(1200px 900px at 85% 12%, rgba(var(--accent-rgb), .14), transparent 52%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 50%, #ffffff 100%);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--header-h)
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), .55);
  outline-offset: 3px
}

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

button {
  font: inherit;
  color: inherit;
  user-select: none
}

.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
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999
}

.skip:focus {
  left: 10px
}

.container {
  max-width: var(--w);
  margin: 0 auto;
  padding-left: max(22px, env(safe-area-inset-left));
  padding-right: max(22px, env(safe-area-inset-right));
  padding-top: 0;
  padding-bottom: 0
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none
}

.blob {
  position: absolute;
  filter: blur(18px);
  opacity: .9
}

.blob--a {
  width: 520px;
  height: 520px;
  left: -120px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent2-rgb), .36), rgba(var(--accent-rgb), .12) 55%, transparent 70%);
  animation: floatA 18s ease-in-out infinite
}

.blob--b {
  width: 560px;
  height: 560px;
  right: -180px;
  top: 120px;
  background: radial-gradient(circle at 45% 35%, rgba(var(--accent-rgb), .34), rgba(var(--accent2-rgb), .12) 55%, transparent 72%);
  animation: floatB 20s ease-in-out infinite
}

.grid {
  position: absolute;
  inset: -2px;
  background-image: linear-gradient(rgba(var(--base-rgb), .06) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--base-rgb), .06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 40% 20%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 68%)
}

@keyframes floatA {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1)
  }

  50% {
    transform: translate3d(80px, 40px, 0) scale(1.05)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1)
  }

  50% {
    transform: translate3d(-70px, 30px, 0) scale(1.06)
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(var(--base-rgb), .08);
}

.header.is-scrolled {
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px
}

.brand__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain
}

.brand__text {
  font-weight: 700;
  letter-spacing: .02em
}

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

.nav__link {
  color: var(--muted);
  font-size: 14px;
  padding: 8px;
  border-radius: 10px;
  position: relative;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  user-select: none
}

.nav__link:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(220px 90px at 20% 20%, rgba(var(--accent-rgb), .18), transparent 60%), radial-gradient(240px 90px at 80% 80%, rgba(var(--accent2-rgb), .14), transparent 60%);
  transition: opacity .18s ease;
  pointer-events: none
}

.nav__link:hover {
  color: var(--text);
  background: rgba(var(--base-rgb), .03);
  transform: translateY(-1px)
}

.nav__link:hover:before {
  opacity: 1
}

.nav__link:active {
  transform: translateY(0);
  background: rgba(var(--base-rgb), .04)
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  line-height: 1;
  border-radius: 14px;
  border: 1px solid rgba(var(--base-rgb), .12);
  background: rgba(255, 255, 255, .70);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
  user-select: none
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--card2);
  border-color: rgba(var(--base-rgb), .18)
}

.btn:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .12)
}

.btn--primary {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .95), rgba(var(--accent2-rgb), .9));
  border-color: var(--stroke);
  color: rgba(255, 255, 255, .96)
}

.btn--primary:before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  transform: translateX(-120%) rotate(12deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .14) 35%, rgba(255, 255, 255, .42) 50%, rgba(255, 255, 255, .14) 65%, transparent 100%);
  transition: transform .55s cubic-bezier(.2, .9, .2, 1), opacity .18s ease;
  pointer-events: none
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent2-rgb), .95))
}

.btn--primary:hover:before {
  opacity: 1;
  transform: translateX(120%) rotate(12deg)
}

.btn--ghost {
  background: rgba(255, 255, 255, .55)
}

.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(var(--base-rgb), .12);
  background: rgba(255, 255, 255, .65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .10)
}

.iconbtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(var(--base-rgb), .18)
}

.iconbtn:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .10)
}

.iconbtn[data-menu] {
  display: none
}

.iconbtn__bar {
  width: 16px;
  height: 2px;
  background: rgba(var(--base-rgb), .84);
  border-radius: 2px;
  display: block
}

.mobile {
  display: none;
  border-top: 1px solid rgba(var(--base-rgb), .08)
}

.mobile__inner {
  padding-top: 14px;
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.mobile__link {
  padding: 12px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--stroke);
  color: rgba(var(--base-rgb), .86);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  user-select: none
}

.mobile__link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .90);
  border-color: rgba(var(--base-rgb), .16)
}

.mobile__link:active {
  transform: translateY(0) scale(.99);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .08)
}

.hero {
  padding: 56px 0 26px
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center
}

.kicker {
  display: flex;
  align-items: center;
  margin: 0 0 14px
}

.kicker__logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 630px;
  opacity: .86
}

.h1 {
  font-size: 56px;
  line-height: 1.02;
  margin: 0 0 16px;
  letter-spacing: -.02em
}

.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 22px;
  max-width: 56ch
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px
}

.hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 8px
}

.pill {
  font-size: 12px;
  color: rgba(var(--base-rgb), .72);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--base-rgb), .06);
  background: rgba(255, 255, 255, .40);
  cursor: default
}

.fine {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.6
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero__img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-left: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none
}

.trust {
  padding: 10px 0 0
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(var(--base-rgb), .06);
  background: rgba(255, 255, 255, .56);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
  border-radius: var(--r2);
  padding: 16px 18px
}

.trust__label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  user-select: none
}

.trust__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(var(--base-rgb), .78);
  padding: 6px 10px;
  border: 1px solid rgba(var(--base-rgb), .06);
  background: rgba(255, 255, 255, .40);
  box-shadow: none;
  border-radius: 999px;
  cursor: default;
  user-select: none
}

.trust__item:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .92), rgba(var(--accent2-rgb), .86));
  box-shadow: 0 10px 18px rgba(var(--accent-rgb), .14)
}

.section {
  padding: 68px 0
}

.section--demo {
  padding-top: 54px
}

.section--how {
  padding-top: 54px
}

.section--pricing {
  padding-top: 48px
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px
}

.price {
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.price--recommended {
  border-color: rgba(var(--accent-rgb), .30)
}

.price__cta {
  margin-top: auto;
  width: 100%;
  text-align: center
}

.price--enterprise {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: 32px;
  border-color: rgba(var(--accent-rgb), .20);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .06), rgba(var(--accent2-rgb), .04));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .10)
}

.price--enterprise .price__head {
  flex-direction: column;
  gap: 4px
}

.price__copy {
  flex: 1;
  min-width: 280px
}

.price__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0
}

.price__unit {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--base-rgb), .62)
}

.price__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .96);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .95), rgba(var(--accent2-rgb), .9));
  padding: 4px 12px;
  border-radius: 999px
}

.price__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px
}

.price__title {
  font-weight: 700
}

.price__note {
  color: rgba(var(--base-rgb), .62);
  font-size: 12px
}

.price__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(var(--base-rgb), .62);
  font-size: 13px;
  line-height: 1.7
}

.price__list li {
  margin: 6px 0
}

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

.price__plan {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--card2);
  padding: 12px
}

.price__label {
  color: rgba(var(--base-rgb), .62);
  font-size: 12px
}

.price__value {
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 22px
}

.legal__link {
  color: rgba(var(--base-rgb), .70);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--card);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  user-select: none
}

.legal__link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(var(--base-rgb), .16)
}

.legal__link:active {
  transform: translateY(0) scale(.99)
}

.section__head {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center
}

.h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.sub {
  color: var(--muted);
  margin: 0;
  line-height: 1.8
}

.demo {
  position: relative;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.demo .video {
  width: min(920px, 100%);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .60);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .10)
}

.demo:before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(700px 300px at 30% 30%, rgba(var(--accent-rgb), .22), transparent 55%), radial-gradient(600px 260px at 70% 70%, rgba(var(--accent2-rgb), .18), transparent 55%);
  opacity: .9;
  pointer-events: none
}

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

.card {
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--card);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .10)
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgba(255, 255, 255, .84);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .20), rgba(var(--accent2-rgb), .16));
  border: 1px solid rgba(255, 255, 255, .10);
  margin-bottom: 12px;
  user-select: none
}

.h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px
}

.p {
  color: var(--muted);
  margin: 0;
  line-height: 1.8
}

.cards+.h3 {
  margin-top: 40px
}

.usecases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px
}

.usecase {
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--card);
  padding: 14px
}

.usecase__title {
  font-weight: 700;
  margin: 0 0 6px
}

.usecase__text {
  color: rgba(var(--base-rgb), .62);
  font-size: 13px;
  line-height: 1.7
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px
}

.step {
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: var(--card);
  padding: 16px;
  display: flex;
  gap: 12px
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .18), rgba(var(--accent2-rgb), .14));
  border: 1px solid rgba(255, 255, 255, .10);
  user-select: none
}

.step__title {
  font-weight: 700
}

.step__text {
  margin-top: 6px;
  color: rgba(var(--base-rgb), .62);
  font-size: 13px;
  line-height: 1.7
}

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

.review {
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--card);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
  display: flex;
  flex-direction: column
}

.stars {
  letter-spacing: .06em;
  color: rgba(var(--base-rgb), .86);
  margin-bottom: 10px;
  user-select: none
}

.review__title {
  margin: 0 0 8px;
  font-size: 16px
}

.review__text {
  margin: 0;
  color: rgba(var(--base-rgb), .66);
  line-height: 1.8
}

.review__meta {
  margin-top: auto;
  padding-top: 10px;
  color: rgba(var(--base-rgb), .56);
  font-size: 12px
}

.section--event {
  padding: 48px 0
}

.event {
  border-radius: 32px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .12), rgba(var(--accent2-rgb), .08));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
  padding: 28px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.event__copy {
  max-width: 620px
}

.event__copy .h2 {
  font-size: 28px
}

.event__copy .sub {
  margin-bottom: 16px
}

.event__points {
  margin: 0;
  padding-left: 18px;
  color: rgba(var(--base-rgb), .66);
  font-size: 14px;
  line-height: 1.9
}

.event__points li {
  margin: 4px 0
}

.event__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 8px
}

.section--cta {
  padding: 56px 0
}

.cta {
  border-radius: 32px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .26), rgba(var(--accent2-rgb), .18));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .12);
  padding: 28px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.cta__copy {
  max-width: 520px
}

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

.cta__fine {
  color: rgba(var(--base-rgb), .62);
  font-size: 12px;
  margin-top: 6px
}

.cta__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.cta__link {
  color: rgba(var(--base-rgb), .70);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--card);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  user-select: none
}

.cta__link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(var(--base-rgb), .16)
}

.cta__link:active {
  transform: translateY(0) scale(.99)
}

.store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none
}

.store__badge {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px
}

.faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq__item {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--card);
  padding: 0;
  overflow: hidden
}

.faq__q {
  cursor: pointer;
  padding: 14px;
  list-style: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none
}

.faq__q:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(var(--base-rgb), .48);
  border-bottom: 2px solid rgba(var(--base-rgb), .48);
  transform: rotate(45deg);
  transition: transform .22s ease, border-color .22s ease
}

.faq__item[open] .faq__q:after {
  transform: rotate(-135deg);
  border-color: rgba(var(--base-rgb), .64)
}

.faq__q::-webkit-details-marker {
  display: none
}

.faq__a {
  padding: 0 14px 0;
  color: rgba(var(--base-rgb), .66);
  line-height: 1.8;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: height .28s ease, opacity .28s ease, transform .28s ease, padding-bottom .28s ease;
  will-change: height, opacity, transform
}

.faq__a .legal__link {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  font-size: inherit;
  color: rgba(var(--base-rgb), .72);
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: none
}

.faq__a .legal__link:hover {
  transform: none;
  background: none;
  border-color: transparent
}

.faq__a .legal__link:active {
  transform: none;
  background: none
}

.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(var(--base-rgb), .08);
  background: var(--card2)
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px
}

.brand--footer {
  opacity: .95
}

.footer__sub {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px
}

.footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.footer__link {
  color: rgba(var(--base-rgb), .70);
  padding: 6px 2px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  background-image:
    linear-gradient(rgba(var(--base-rgb), .18), rgba(var(--base-rgb), .18)),
    linear-gradient(135deg, rgba(var(--accent-rgb), .7), rgba(var(--accent2-rgb), .6));
  background-size: 100% 1px, 0% 1px;
  background-position: 0 100%, 0 100%;
  background-repeat: no-repeat;
  transition: color .18s ease, background-size .32s ease;
  user-select: none
}

.footer__link:hover {
  color: rgba(var(--base-rgb), .94);
  background-size: 100% 1px, 100% 1px
}

.footer__link:focus-visible {
  background-size: 100% 1px, 100% 1px
}

.video {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-in {
  opacity: 1;
  transform: none
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .hero__visual {
    min-height: unset
  }

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

  .usecases {
    grid-template-columns: 1fr
  }

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

  .reviews {
    grid-template-columns: 1fr
  }

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

  .event {
    flex-direction: column
  }

  .price__grid {
    grid-template-columns: 1fr
  }

  .price--enterprise {
    flex-direction: column;
    align-items: flex-start
  }

  .price__action {
    width: 100%
  }

  .price__action .btn {
    width: 100%;
    text-align: center
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(600px 400px at 10% 6%, rgba(var(--accent2-rgb), .08), transparent 55%),
      radial-gradient(600px 500px at 90% 10%, rgba(var(--accent-rgb), .08), transparent 52%),
      linear-gradient(180deg, var(--bg0), var(--bg1) 40%, #ffffff 100%)
  }

  .nav {
    display: none
  }

  .iconbtn[data-menu] {
    display: inline-flex
  }

  .mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(1.4) blur(14px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .14);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s
  }

  .mobile.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    transition: opacity .22s ease, transform .22s ease
  }

  .h1 {
    font-size: 42px
  }

  .h2 {
    font-size: 28px
  }

  .kicker__logo {
    height: 33px;
    max-width: 510px
  }

  .trust__inner {
    flex-direction: column;
    align-items: flex-start
  }

  .trust__items {
    justify-content: flex-start
  }

  .cta {
    padding: 22px 18px
  }

  .store {
    flex: 1
  }

  .store__badge {
    max-width: 100%
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  .blob--a,
  .blob--b {
    animation: none
  }

  .btn {
    transition: none
  }

  .mobile,
  .nav__link,
  .iconbtn,
  .mobile__link,
  .legal__link,
  .cta__link,
  .footer__link {
    transition: none
  }

  .btn--primary:before,
  .nav__link:before {
    transition: none;
    opacity: 0
  }

  .faq__q:after,
  .faq__a {
    transition: none
  }

  .reveal {
    transition: none
  }
}