:root {
  color-scheme: light;
  --ink: #101827;
  --muted: #667085;
  --soft: #f5f7f2;
  --paper: #ffffff;
  --line: rgba(16, 24, 39, 0.14);
  --blue: #2867f0;
  --green: #069668;
  --coral: #e9584f;
  --amber: #f4a51c;
  --violet: #7357e8;
  --shadow: 0 22px 70px rgba(16, 24, 39, 0.18);
  --shadow-soft: 0 16px 44px rgba(16, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(245, 247, 242, 0.98), rgba(235, 243, 244, 0.95) 46%, rgba(248, 248, 242, 1));
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::selection {
  background: rgba(40, 103, 240, 0.2);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2rem;
  color: var(--ink);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links a,
.button {
  min-height: 42px;
  border-radius: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.72rem;
  color: #344054;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(16, 24, 39, 0.06);
}

.nav-links .lang-link {
  margin-left: 0.25rem;
  border: 1px solid rgba(16, 24, 39, 0.18);
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding-top: 1.25rem;
}

.hero-content {
  display: grid;
  grid-column: span 5;
  align-content: center;
  min-height: 500px;
  border-radius: 8px;
  padding: 2rem;
  padding-left: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green);
}

.hero h1,
.section h2,
.download-section h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: 4rem;
}

.hero-copy {
  max-width: 560px;
  margin: 1.25rem 0 0;
  color: #526071;
  font-size: 1.13rem;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.78rem 1rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible,
.gallery-control:hover,
.gallery-control:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  border-color: rgba(16, 24, 39, 0.22);
  color: var(--ink);
  background: #fff;
}

.download-section .button.secondary {
  border-color: rgba(16, 24, 39, 0.22);
  color: var(--ink);
  background: #fff;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 560px;
  margin: 1.9rem 0 0;
}

.proof-row div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0.75rem;
}

.proof-row dt {
  font-weight: 900;
}

.proof-row dd {
  margin: 0.1rem 0 0;
  color: #667085;
  font-size: 0.92rem;
}

.hero-product,
.hero-tile {
  border-radius: 8px;
}

.hero-product {
  grid-column: span 7;
  min-height: 500px;
  overflow: hidden;
}

.hero-product img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.hero-tile span {
  display: block;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-tile {
  display: grid;
  align-content: start;
  grid-column: span 4;
  min-height: 150px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.1rem;
}

.hero-tile-search {
  color: var(--blue);
}

.hero-tile-save {
  color: var(--coral);
}

.hero-tile-private {
  color: var(--amber);
}

.hero-tile strong {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-tile p {
  margin: 0.65rem 0 0;
  color: #526071;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head.narrow {
  max-width: 680px;
}

.section h2,
.download-section h2 {
  font-size: 3.25rem;
}

.section-head p:not(.eyebrow),
.flow-copy > p,
.download-section p {
  color: #526071;
  font-size: 1.06rem;
}

.feature-grid article,
.gallery-main,
.download-section {
  border-radius: 8px;
}

.feature-section {
  padding-top: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  min-height: 255px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.1rem;
}

.feature-grid article:nth-child(1) {
  color: var(--blue);
}

.feature-grid article:nth-child(2) {
  color: var(--green);
}

.feature-grid article:nth-child(3) {
  color: var(--coral);
}

.feature-grid article:nth-child(4) {
  color: var(--amber);
}

.feature-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-grid h3 {
  margin: 2.7rem 0 0.55rem;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.feature-grid p {
  margin: 0;
  color: #526071;
}

.flow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.flow-copy h2 {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #344054;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3px;
  background: var(--green);
  content: "";
}

.screenshot-stack {
  position: relative;
  min-height: 520px;
  margin: 0;
}

.screenshot-stack img {
  border-radius: 8px;
}

.stack-main {
  width: min(360px, 74%);
}

.stack-overlap {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: min(470px, 86%);
}

.screenshot-stack figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #526071;
  font-size: 0.88rem;
}

.screens-section {
  padding-top: 3rem;
}

.gallery {
  display: grid;
  gap: 0.85rem;
}

.gallery-main {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}

.gallery-frame {
  position: relative;
  background: #e5e7eb;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 7.45;
  object-fit: contain;
  object-position: center;
  background: #e5e7eb;
}

.gallery-main figcaption {
  min-height: 54px;
  border-top: 1px solid var(--line);
  padding: 0.9rem 1rem;
  color: #344054;
  font-weight: 800;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 24, 39, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(16, 24, 39, 0.16);
  transform: translateY(-50%);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.gallery-control-prev {
  left: 1rem;
}

.gallery-control-next {
  right: 1rem;
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.gallery-dots button {
  position: relative;
  width: 28px;
  height: 16px;
  border: 0;
  background: transparent;
  padding: 0;
}

.gallery-dots button:focus-visible {
  outline: 2px solid rgba(40, 103, 240, 0.38);
  outline-offset: 2px;
}

.gallery-dots button::before {
  position: absolute;
  inset: 3px 9px;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.28);
  content: "";
  transition:
    inset 160ms ease,
    background 160ms ease;
}

.gallery-dots button[aria-pressed="true"]::before {
  inset: 3px 1px;
  background: var(--blue);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 4rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 2rem;
}

.download-section p {
  max-width: 650px;
  margin: 1rem 0 0;
}

.download-section .button.primary {
  background: var(--ink);
  color: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 2.5rem;
  color: #526071;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: min(360px, calc(100% - 2rem));
  border: 1px solid rgba(16, 24, 39, 0.14);
  border-radius: 8px;
  background: #101827;
  color: #fff;
  padding: 0.85rem 1rem;
}

.error-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.error-main {
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.error-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 2rem;
}

.error-card h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.error-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: #526071;
  font-size: 1.13rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.error-page .site-footer {
  width: 100%;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hero-content,
  .hero-product {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .hero-content {
    padding: 1.6rem;
  }

  .hero-product img {
    min-height: 430px;
  }

  .hero-tile {
    grid-column: span 2;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .flow-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .hero {
    padding-bottom: 2.2rem;
  }

  .site-nav {
    align-items: center;
    padding: 0.85rem 0;
  }

  .brand span {
    max-width: 112px;
    line-height: 1.05;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% - 0.25rem);
    z-index: 20;
    display: grid;
    width: min(260px, calc(100vw - 2rem));
    max-width: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 0.45rem;
    box-shadow: 0 16px 44px rgba(16, 24, 39, 0.14);
    gap: 0.2rem;
    justify-content: stretch;
    justify-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
    visibility: hidden;
  }

  .site-nav.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    min-height: 34px;
    padding: 0.56rem 0.65rem;
    font-size: 0.86rem;
  }

  .nav-links .lang-link {
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-grid;
    margin-left: auto;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-copy {
    margin-top: 0.9rem;
    font-size: 1rem;
  }

  .proof-row {
    display: none;
  }

  .hero-actions {
    margin-top: 1.1rem;
  }

  .hero-product img {
    min-height: 320px;
  }

  .hero-tile {
    display: none;
  }

  .section {
    padding: 3.4rem 0;
  }

  .section h2,
  .download-section h2,
  .error-card h1 {
    font-size: 2.2rem;
  }

  .feature-grid,
  .download-section {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 210px;
  }

  .feature-grid h3 {
    margin-top: 1.8rem;
  }

  .screenshot-stack {
    min-height: 410px;
  }

  .stack-main {
    width: 62%;
  }

  .stack-overlap {
    width: 78%;
    bottom: 2.4rem;
  }

  .gallery-main img {
    aspect-ratio: 4 / 3;
  }

  .gallery-control {
    width: 36px;
    height: 36px;
    font-size: 1.45rem;
  }

  .gallery-control-prev {
    left: 0.55rem;
  }

  .gallery-control-next {
    right: 0.55rem;
  }

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

  .error-main {
    padding: 3rem 0;
  }

  .error-card {
    padding: 1.25rem;
  }

  .error-card p:not(.eyebrow) {
    font-size: 1rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .download-actions,
  .error-actions {
    width: 100%;
  }

  .hero-actions .button,
  .download-actions .button,
  .error-actions .button {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
