:root {
  --navy: #102b3a;
  --navy-2: #243644;
  --coral: #f26545;
  --coral-dark: #d94f35;
  --coral-soft: #fde7df;
  --sage: #5e8d7e;
  --sage-dark: #456f62;
  --sage-mid: #86a79b;
  --sage-soft: #dce7e1;
  --cream: #f7f5f0;
  --cream-2: #efeee8;
  --white: #ffffff;
  --ink: #20313f;
  --muted: #66717a;
  --line: #dce2de;
  --shadow-sm: 0 10px 30px rgba(16, 43, 58, 0.08);
  --shadow-md: 0 22px 65px rgba(16, 43, 58, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--navy);
  background: rgba(242, 101, 69, 0.28);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(242, 101, 69, 0.15);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid rgba(16, 43, 58, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 225px;
  text-decoration: none;
}

.brand img,
.footer__brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

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

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.screenshot-card:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
.dialog-close:focus-visible {
  outline: 3px solid rgba(242, 101, 69, 0.42);
  outline-offset: 4px;
}

.button[aria-disabled="true"] {
  cursor: default;
}

.button[aria-disabled="true"]:hover {
  transform: none;
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.button--large {
  min-height: 56px;
  padding: 16px 25px;
}

.button--primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(16, 43, 58, 0.18);
}

.button--primary:hover {
  background: #173849;
  box-shadow: 0 16px 36px rgba(16, 43, 58, 0.22);
}

.button--secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(16, 43, 58, 0.16);
}

.button--secondary:hover {
  background: var(--white);
  border-color: rgba(16, 43, 58, 0.3);
  box-shadow: var(--shadow-sm);
}

.button--coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 36px rgba(242, 101, 69, 0.25);
}

.button--coral:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 42px rgba(242, 101, 69, 0.3);
}

.button__icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.button__icon svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 92px 0 104px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 10%, rgba(242, 101, 69, 0.09), transparent 29%),
    radial-gradient(circle at 18% 50%, rgba(94, 141, 126, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, var(--cream) 100%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: -90px;
  bottom: -300px;
  width: 670px;
  height: 670px;
  content: "";
  background: linear-gradient(145deg, rgba(94, 141, 126, 0.35), rgba(94, 141, 126, 0.07));
  border-radius: 53% 47% 37% 63% / 54% 36% 64% 46%;
  transform: rotate(-14deg);
}

.hero__orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
}

.hero__orb--one {
  top: 140px;
  right: 42%;
  width: 16px;
  height: 16px;
  background: var(--coral);
  box-shadow: 32px 22px 0 -3px rgba(242, 101, 69, 0.5), -22px 40px 0 -5px var(--sage);
}

.hero__orb--two {
  bottom: 100px;
  left: 4%;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(94, 141, 126, 0.2);
  box-shadow: 40px 45px 0 -10px rgba(94, 141, 126, 0.06);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.8fr);
  gap: 76px;
  align-items: center;
}

.hero__copy {
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--coral);
  font-size: 18px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section-heading h2,
.professionals h2,
.download h2 {
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.45rem);
}

.hero h1 span {
  color: var(--coral);
}

.hero__lead {
  max-width: 625px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  margin: 27px 0 0;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

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

.hero__facts span {
  display: grid;
  width: 21px;
  height: 21px;
  color: var(--white);
  background: var(--sage);
  border-radius: 999px;
  font-size: 12px;
  place-items: center;
}

.hero__visual-wrap {
  position: relative;
  width: min(100%, 455px);
  margin-left: auto;
}

.hero__visual-accent {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -14%;
  width: 82%;
  height: 84%;
  background: rgba(94, 141, 126, 0.17);
  border-radius: 44% 56% 52% 48% / 44% 41% 59% 56%;
  transform: rotate(8deg);
}

.hero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 9px solid rgba(255, 255, 255, 0.76);
  border-radius: 40px;
  box-shadow: var(--shadow-md);
  transform: rotate(1.8deg);
}

.hero__visual img {
  width: 100%;
  height: auto;
}

.hero__badge {
  position: absolute;
  right: -42px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 12px 16px 12px 12px;
  color: var(--navy-2);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 43, 58, 0.08);
  border-radius: 19px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.hero__badge img {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.section {
  padding: 112px 0;
}

.section--tint {
  background: var(--cream-2);
}

.section-heading {
  max-width: 700px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.professionals h2,
.download h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.8vw, 4.15rem);
}

.section-heading > p:last-child,
.professionals__copy > p,
.download__inner > p {
  color: var(--muted);
  font-size: 18px;
}

.intro {
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.92fr);
  gap: 80px;
  align-items: start;
}

.intro__copy {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.intro__copy p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 19px;
}

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

.step-card {
  position: relative;
  min-height: 315px;
  padding: 34px 31px 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 43, 58, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 45px rgba(16, 43, 58, 0.06);
}

.step-card::after {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  content: "";
  background: var(--sage-soft);
  border-radius: 52% 48% 40% 60% / 50% 55% 45% 50%;
  opacity: 0.65;
}

.step-card:nth-child(2)::after {
  background: var(--coral-soft);
}

.step-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(16, 43, 58, 0.13);
  font-size: 47px;
  font-weight: 900;
  line-height: 1;
}

.step-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--sage-dark);
  background: var(--sage-soft);
  border-radius: 18px;
  place-items: center;
}

.step-card:nth-child(2) .step-card__icon {
  color: var(--coral-dark);
  background: var(--coral-soft);
}

.step-card__icon svg {
  width: 30px;
  height: 30px;
}

.step-card h3,
.feature-card h3,
.boundary-card h3 {
  margin: 25px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.step-card p,
.feature-card p,
.boundary-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.gallery-section {
  padding-bottom: 120px;
  overflow: hidden;
  background: var(--white);
}

.gallery-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.gallery-help {
  flex: 0 0 auto;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
}

.screenshot-rail {
  display: grid;
  grid-auto-columns: minmax(265px, 340px);
  grid-auto-flow: column;
  gap: 22px;
  max-width: 1480px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2)) 28px;
  margin-inline: auto;
  overflow-x: auto;
  scroll-padding-inline: max(20px, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sage-mid) transparent;
  scrollbar-width: thin;
}

.screenshot-rail::-webkit-scrollbar {
  height: 8px;
}

.screenshot-rail::-webkit-scrollbar-thumb {
  background: var(--sage-mid);
  border-radius: 999px;
}

.screenshot-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(16, 43, 58, 0.09);
  border-radius: 31px;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screenshot-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.screenshot-card img {
  width: 100%;
  height: auto;
}

.screenshot-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(16, 43, 58, 0.89);
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  backdrop-filter: blur(8px);
}

.section--dark {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.section--dark::before,
.section--dark::after {
  position: absolute;
  content: "";
  border-radius: 53% 47% 61% 39% / 45% 55% 45% 55%;
}

.section--dark::before {
  top: -250px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: rgba(94, 141, 126, 0.23);
}

.section--dark::after {
  bottom: -250px;
  left: -130px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 78px;
  align-items: start;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.feature-card {
  min-height: 230px;
  padding: 29px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.feature-card__mark {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  color: var(--white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.67);
}

.professionals {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.professionals__shape {
  position: absolute;
  top: 8%;
  left: -180px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--sage-soft), rgba(220, 231, 225, 0.15));
  border-radius: 44% 56% 62% 38% / 56% 43% 57% 44%;
}

.professionals__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}

.professionals__visual {
  display: grid;
  place-items: center;
}

.professionals__visual img {
  width: min(100%, 390px);
  filter: drop-shadow(0 28px 35px rgba(16, 43, 58, 0.18));
  transform: rotate(-4deg);
}

.professionals__copy {
  max-width: 690px;
}

.professionals__copy .button {
  margin-top: 12px;
}

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

.boundary-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16, 43, 58, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(16, 43, 58, 0.05);
}

.boundary-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--sage-dark);
  background: var(--sage-soft);
  border-radius: 19px;
  place-items: center;
}

.boundary-card:nth-child(2) .boundary-card__icon {
  color: var(--coral-dark);
  background: var(--coral-soft);
}

.boundary-card__icon svg {
  width: 31px;
  height: 31px;
}

.privacy-action {
  margin-top: 32px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  color: var(--coral);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
  gap: 85px;
  align-items: start;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 820;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--coral);
  border-radius: 10px;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item div {
  padding: 0 50px 22px 0;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.download {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--sage-dark);
  isolation: isolate;
}

.download::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, #517d70 0%, #375e55 100%);
}

.download__shape {
  position: absolute;
  z-index: -2;
  border-radius: 48% 52% 45% 55% / 57% 42% 58% 43%;
}

.download__shape--one {
  top: -250px;
  right: -190px;
  width: 590px;
  height: 590px;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(20deg);
}

.download__shape--two {
  bottom: -330px;
  left: -140px;
  width: 570px;
  height: 570px;
  border: 2px solid rgba(255, 255, 255, 0.09);
}

.download__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.download__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 25px;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(16, 43, 58, 0.22);
}

.download__inner .eyebrow {
  justify-content: center;
}

.download h2 {
  color: var(--white);
}

.download__inner > p {
  max-width: 600px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding: 65px 0 28px;
  background: #0b202c;
  color: rgba(255, 255, 255, 0.67);
}

.footer__top {
  display: grid;
  grid-template-columns: 220px minmax(200px, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: block;
  width: 220px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 13px;
}

.footer__top > p {
  margin: 0;
  font-weight: 750;
}

.footer__top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer__top nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer__top nav a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  font-size: 12px;
}

.footer__bottom p {
  margin: 0;
}

.image-dialog {
  width: min(92vw, 610px);
  max-height: 92vh;
  padding: 18px;
  overflow: auto;
  background: var(--white);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.35);
}

.image-dialog::backdrop {
  background: rgba(8, 25, 34, 0.82);
  backdrop-filter: blur(5px);
}

.image-dialog img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.image-dialog p {
  margin: 15px 8px 5px;
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 750;
  text-align: center;
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 -42px;
  color: var(--white);
  background: rgba(16, 43, 58, 0.92);
  border: 0;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay {
  transition-delay: 90ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 19px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 42px;
  }

  .hero__badge {
    right: -12px;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-heading--light {
    max-width: 790px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand {
    width: 196px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 43, 58, 0.1);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero {
    padding: 72px 0 92px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual-wrap {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .intro__grid,
  .professionals__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .professionals__visual img {
    width: min(72vw, 360px);
  }

  .professionals__grid {
    text-align: center;
  }

  .professionals__copy .eyebrow {
    justify-content: center;
  }

  .steps,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 245px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__top nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .announcement {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .brand {
    width: 177px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    display: grid;
    gap: 10px;
  }

  .hero__visual-wrap {
    width: min(92%, 385px);
  }

  .hero__badge {
    right: -5%;
    bottom: 28px;
    min-width: 220px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .professionals h2,
  .download h2 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .intro {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .gallery-heading-row {
    display: block;
  }

  .gallery-help {
    margin-top: 18px;
  }

  .screenshot-rail {
    grid-auto-columns: minmax(255px, 82vw);
  }

  .footer__bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
