:root {
  --background: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f5f5f7;
  --primary-text: #1d1d1f;
  --secondary-text: #6e6e73;
  --muted-text: #86868b;
  --hero-hightlight: #0071e3;
  --accent-warm: #ff9f0a;
  --border: #e5e5ea;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --content-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  background: var(--background);
  margin: 0;
  color: var(--primary-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  padding: 14px 24px;
  margin-bottom: 54px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(229, 229, 234, 0.82);
  backdrop-filter: blur(18px);
}

nav {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

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

a:hover {
  color: var(--hero-hightlight);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
}

.logo-text img {
  width: 44px;
  border-radius: 8px;
  box-shadow: none;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--secondary-text);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0;
  border: 1px solid transparent;
  border-radius: 999px;
}

.nav-link:hover {
  color: var(--hero-hightlight);
  background: transparent;
  border-color: transparent;
}

main {
  max-width: 100%;
  padding-bottom: 40px;
}

.hero {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  padding: 36px 24px 0;
  vertical-align: top;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.app-hero-product {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 0;
}

.app-hero-icon {
  width: 132px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: none;
}

.app-hero-copy {
  min-width: 0;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 64px;
  line-height: 1.03;
  font-weight: 720;
  letter-spacing: 0;
}

.app-hero-product h1 {
  margin: 0 auto;
}

h2 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.25;
}

h3 {
  max-width: 680px;
  margin: 18px auto 0;
  padding: 0;
  color: var(--secondary-text);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
}

.app-hero-product h3 {
  margin-left: auto;
  margin-right: auto;
}

.app-hero-copy a[class*="plausible-event-name"] {
  margin-top: 22px;
}

.highlight {
  color: var(--hero-hightlight);
}

.hero-inner a[class*="plausible-event-name"] {
  display: inline-flex;
  transition: transform 180ms ease, filter 180ms ease;
}

.hero-inner a[class*="plausible-event-name"]:hover,
.call-to-action a[class*="plausible-event-name"]:hover {
  transform: translateY(-2px);
  filter: none;
}

.gallery {
  max-width: 100%;
  padding-top: 32px;
  padding-bottom: 36px;
  background: var(--surface-muted);
}

.gallery-inside,
.reviews-inside {
  display: flex;
  width: 100%;
  gap: 24px;
  overflow-x: auto;
  padding: 34px 24px 34px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-inside::-webkit-scrollbar,
.reviews-inside::-webkit-scrollbar {
  display: none;
}

.gallery-inside {
  justify-content: center;
}

.gallery-inside img {
  width: 280px;
  flex: 0 0 auto;
  border-radius: 26px;
  box-shadow: none;
  scroll-snap-align: center;
}

.gallery-inside video {
  width: min(960px, calc(100vw - 48px));
  border-radius: var(--radius);
  box-shadow: none;
  scroll-snap-align: center;
}

.reviews {
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 54px;
}

.reviews-inside {
  justify-content: center;
}

.reviews-inside img {
  width: min(620px, calc(100vw - 48px));
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.features {
  max-width: 100%;
  padding: 76px 24px 78px;
}

.features-grid-wrapper {
  display: flex;
  justify-content: center;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  width: 100%;
  max-width: var(--content-width);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 0;
  border-top: 1px solid var(--border);
}

.features-grid-item {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.features-grid-item-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
  color: var(--primary-text);
  background: transparent;
  border-radius: 0;
}

.features-grid-item-icon svg {
  max-width: 44px;
  max-height: 44px;
  fill: currentColor !important;
}

.features-grid-item .bold {
  margin: 0 0 8px;
  font-size: 18px;
}

.features-desc {
  color: var(--secondary-text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.bold {
  font-weight: 680;
}

.call-to-action {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  padding: 12px 24px 0;
  vertical-align: top;
}

.call-to-action-inside {
  text-align: center;
  padding: 42px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.call-to-action-inside a {
  display: inline-flex;
  transition: transform 180ms ease, filter 180ms ease;
}

.banner {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.banner p {
  margin: 0;
  padding: 14px 24px;
  color: var(--primary-text);
  background: #fff8e8;
  border: 1px solid #f1d59a;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  cursor: pointer;
}

.page {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page h1 {
  text-align: left;
  font-size: 48px;
}

.page p,
.page li {
  color: var(--secondary-text);
  font-size: 17px;
  line-height: 1.75;
}

.page a {
  color: var(--hero-hightlight);
  font-weight: 620;
}

.page table {
  margin-top: 40px;
  width: 100%;
  table-layout: fixed;
  border-spacing: 0 18px;
  color: var(--secondary-text);
}

.page table td {
  vertical-align: baseline;
}

footer {
  display: flex;
  padding: 92px 24px 32px;
}

.footer-inside {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-text {
  color: var(--secondary-text);
  font-size: 14px;
}

.footer-right {
  display: flex;
  gap: 24px;
  align-self: center;
}

@media (max-width: 1100px) {
  .gallery-inside {
    justify-content: flex-start;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  header {
    padding: 14px 16px;
    margin-bottom: 30px;
  }

  nav {
    gap: 14px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo-text img {
    width: 38px;
  }

  .menu {
    gap: 4px;
  }

  .nav-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    padding: 16px 16px 0;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .app-hero-product {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 26px;
  }

  .app-hero-icon {
    width: 104px;
    border-radius: 24px;
  }

  h3 {
    font-size: 17px;
    line-height: 1.55;
  }

  .gallery {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .gallery-inside,
  .reviews-inside {
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-inside img {
    width: 230px;
    border-radius: 22px;
  }

  .features {
    padding: 56px 16px 52px;
  }

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

  .features-grid-item {
    min-height: 0;
  }

  .call-to-action {
    padding-left: 16px;
    padding-right: 16px;
  }

  .call-to-action-inside {
    padding: 28px 0 0;
  }

  .page {
    padding: 24px;
  }

  .page h1 {
    font-size: 36px;
  }

  footer {
    padding: 64px 16px 28px;
  }

  .footer-inside {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .logo-text span {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  .app-hero-product {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-hero-icon {
    margin: 0 auto;
  }

  .app-hero-product h3 {
    margin-right: auto;
    margin-left: auto;
  }

  .menu {
    max-width: calc(100vw - 86px);
    overflow-x: auto;
  }
}
