:root {
 --headline-font: "Plus Jakarta Sans", sans-serif;
 --body-font: "Manrope", sans-serif;
 --label-font: "Inter", sans-serif;
 --color-primary: #0f5a49;
 --color-secondary: #3ba98f;
 --color-primary-rgb: 15, 90, 73;
 --section-max-width: 1180px;
 --section-gutter: 1.5rem;
 --section-width: min(
  var(--section-max-width),
  calc(100% - var(--section-gutter) * 2)
 );
 --section-spacing: clamp(4rem, 8vw, 6rem);
 --section-spacing-compact: 2.5rem;
 --section-card-padding-x: 2rem;
 --section-card-padding-y: 3rem;
}

.icon {
 display: inline-block;
 width: 1em;
 height: 1em;
 flex-shrink: 0;
 background-color: currentColor;
 -webkit-mask-image: var(--icon);
 mask-image: var(--icon);
 -webkit-mask-repeat: no-repeat;
 mask-repeat: no-repeat;
 -webkit-mask-position: center;
 mask-position: center;
 -webkit-mask-size: contain;
 mask-size: contain;
}

html {
 scroll-padding-top: 7rem;
}

body {
 font-family: var(--body-font);
 background: #ffffff;
 min-height: 100vh;
 padding-top: 6rem;
}

body.menu-open {
 overflow: hidden;
}

.button {
 background: var(--color-primary);
 padding: 0.8rem 2rem;
 border-radius: 99rem;
 color: white;
 border: none;
 font-weight: 600;
 text-decoration: none;
 cursor: pointer;
}

.button--outline {
 background: transparent;
 color: var(--color-primary);
 border: 1px solid var(--color-primary);
}

.button--outline:hover {
 background: var(--color-primary);
 color: white;
}

.header {
 position: fixed;
 top: 0;
 width: 100%;
 z-index: 100;
 background: #ffffffe5;
 backdrop-filter: blur(12px);
}

.header__container {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: var(--section-width);
 margin: 0 auto;
 padding: 1rem;
 gap: 1rem;
}

.header__brand {
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 text-decoration: none;
}

.header__brand-text {
 font-family: var(--headline-font);
 font-weight: 500;
 font-size: 1.25rem;
 color: #000000;
}

.header__menu-button {
 display: none;
 width: 2.8rem;
 height: 2.8rem;
 font-size: 1.4rem;
 border: none;
 background: transparent;
}

.header__navbar {
 display: flex;
 align-items: center;
 gap: 1rem;
 z-index: 99;
}

.header__navbar a {
 text-decoration: none;
 color: black;
 font-weight: 500;
 font-size: 0.95rem;
}

.header__action {
 padding: 0.6rem 1.1rem;
 border-radius: 0.75rem;
}

.header__action--ghost {
 background: #ffffff;
 border: 1px solid #e6ece9;
 color: #153f37;
}

.header__action--primary {
 background: var(--color-primary);
 color: #ffffff !important;
 border: 1px solid var(--color-primary);
}

.hero {
 width: var(--section-width);
 margin: 0 auto;
 padding-block: var(--section-spacing);
 text-align: center;
 position: relative;
 display: flex;
 flex-direction: column;
 align-items: center;
}

.hero__content {
 position: relative;
 z-index: 2;
 width: 100%;
}

.hero__bg {
 top: 0;
 position: absolute;
}

.hero__tag {
 margin: 0 auto 1.5rem;
 width: fit-content;
 display: inline-flex;
 gap: 0.4rem;
 align-items: center;
 background: #ffffff;
 color: var(--color-primary);
 border-radius: 99px;
 padding: 0.5rem 0.85rem;
 font-size: 0.78rem;
 font-weight: 900;
 letter-spacing: 0.02em;
 text-transform: uppercase;
}

.hero h1 {
 text-align: center;
 font-family: var(--headline-font);
 margin: 0 auto;
 max-width: 760px;
 font-size: clamp(2rem, 4vw, 4rem);
 line-height: 1.06;
 letter-spacing: -0.03em;
 color: #000000;
 font-weight: 500;
}

.hero h1 span.hero__rotator {
 display: block;
 width: 100%;
}

.hero__rotator-track {
 display: grid;
 contain: layout;
}

.hero h1 .hero__rotator-phrase {
 grid-area: 1 / 1;
 color: var(--color-primary);
 opacity: 0;
 transform: translateY(0.2em);
 transition:
  opacity 0.45s ease,
  transform 0.45s ease;
 will-change: opacity, transform;
}

.hero h1 .hero__rotator-phrase.is-active {
 opacity: 1;
 transform: translateY(0);
}

.hero h1 .hero__rotator-phrase.is-leaving {
 opacity: 0;
 transform: translateY(0.2em);
}

@media (prefers-reduced-motion: reduce) {
 .hero h1 .hero__rotator-phrase {
  transition: opacity 0.2s ease;
  transform: none;
 }

 .hero h1 .hero__rotator-phrase.is-active,
 .hero h1 .hero__rotator-phrase.is-leaving {
  transform: none;
 }
}

.hero p {
 max-width: 760px;
 margin: 2rem auto;
 line-height: 1.6;
}

.hero__actions {
 margin-top: 2.2rem;
 display: flex;
 gap: 0.8rem;
 justify-content: center;
 flex-wrap: wrap;
}

.hero__visual {
 position: relative;
 margin-top: 3rem;
 width: 100%;
 max-width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}

.hero__visual-glow {
 position: absolute;
 width: min(90%, 520px);
 aspect-ratio: 1;
 border-radius: 50%;
 background: radial-gradient(
  circle,
  rgba(var(--color-primary-rgb), 0.14) 0%,
  rgba(59, 169, 143, 0.08) 42%,
  transparent 72%
 );
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 z-index: 0;
 pointer-events: none;
}

.hero__screenshot {
 position: relative;
 z-index: 1;
 flex: 0 1 auto;
 min-width: 0;
 width: min(100%, 480px);
 height: auto;
 display: block;
 filter: drop-shadow(0 24px 128px #00000050);
 opacity: 0;
 will-change: opacity, transform;
 animation: hero-screenshot-main 1s ease 0.15s both;
}

.hero__screenshot--main {
 width: clamp(9rem, 28vw, 22.5rem);
 z-index: 2;
}

.hero__screenshot--side {
 width: clamp(7rem, 22vw, 18.125rem);
 z-index: 1;
}

.hero__screenshot--side:first-of-type {
 margin-right: clamp(-2.5rem, -5vw, -1.5rem);
 transform: translateY(2.5rem);
 animation: hero-screenshot-side 1s ease 0.9s both;
}

.hero__screenshot--side:last-of-type {
 margin-left: clamp(-2.5rem, -5vw, -1.5rem);
 transform: translateY(2.5rem);
 animation: hero-screenshot-side 1s ease 1.4s both;
}

@keyframes hero-screenshot-main {
 from {
  opacity: 0;
  transform: translateY(48px);
 }
 to {
  opacity: 1;
  transform: translateY(0);
 }
}

@keyframes hero-screenshot-side {
 from {
  opacity: 0;
  transform: translateY(calc(2.5rem + 48px));
 }
 to {
  opacity: 1;
  transform: translateY(2.5rem);
 }
}

@media (prefers-reduced-motion: reduce) {
 .hero__screenshot {
  opacity: 1;
  animation: none;
 }

 .hero__screenshot--side:first-of-type,
 .hero__screenshot--side:last-of-type {
  transform: translateY(2.5rem);
 }
}

.hero__button {
 text-decoration: none;
 border-radius: 0.85rem;
 padding: 0.85rem 1.55rem;
 font-weight: 600;
 font-size: 0.95rem;
 border: 1px solid transparent;
}

.hero__button--primary {
 background: var(--color-primary);
 color: #ffffff;
 box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.22);
}

.hero__button--secondary {
 background: #ffffff;
 color: #0f4e41;
 border-color: #deebe4;
}

.hero__badge {
 position: absolute;
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: #ffffff;
 border-radius: 999px;
 padding: 0.38rem 0.6rem 0.38rem 0.4rem;
 z-index: 3;
 box-shadow: 0 12px 24px rgba(11, 45, 37, 0.09);
}

.hero__avatar {
 width: 2rem;
 height: 2rem;
 border-radius: 50%;
 display: grid;
 place-items: center;
 color: white;
 font-size: 1rem;
 background: linear-gradient(135deg, #0f3f35 0%, #76d9c5 100%);
}

.hero__badge span {
 font-size: 0.8rem;
 font-weight: 600;
 color: #24584d;
}

.hero__badge--top-left {
 top: 3rem;
 left: 3rem;
}

.hero__badge--top-right {
 top: 10rem;
 right: 3rem;
}

.hero__badge--bottom-left {
 bottom: 3.5rem;
 left: -1rem;
}

.hero__badge--bottom-right {
 bottom: 3.5rem;
 right: 6rem;
}

.services {
 padding-block: var(--section-spacing);
}

.services__inner {
 width: var(--section-width);
 margin: 0 auto;
}

.services__header {
 max-width: 720px;
 margin: 0 auto;
 text-align: center;
}

.services__header h2 {
 font-family: var(--headline-font);
 font-size: clamp(1.8rem, 3.2vw, 2.6rem);
 font-weight: 700;
 line-height: 1.25;
 letter-spacing: -0.02em;
}

.services__header h2 span {
 color: var(--color-primary);
 font-weight: 700;
}

.services__header p {
 margin: 2rem 0;
 line-height: 1.6;
}

.services__board {
 margin-top: 2.8rem;
 padding: 2.5rem 2.25rem 2.75rem;
 background: white;
 box-shadow: 0 2rem 4rem #00000010;
 border-radius: 1.4rem;
}

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

.service-card {
 padding: 2rem;
 background: #00000006;
 border-radius: 1.4rem;
}

.service-card__top {
 display: flex;
 align-items: center;
}

.service-card__top .icon {
 font-size: 2.75rem;
 color: var(--color-primary);
}

.service-card h3 {
 font-family: var(--headline-font);
 margin-top: 1.5rem;
 font-size: 1.25rem;
 font-weight: 700;
 line-height: 1.3;
 letter-spacing: -0.01em;
}

.service-card p {
 margin-top: 0.65rem;
 color: #00000099;
 font-size: 0.95rem;
}

.workflow {
 padding-block: var(--section-spacing);
 position: relative;
 overflow: hidden;
}

.workflow__inner {
 width: var(--section-width);
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: clamp(2rem, 5vw, 4.5rem);
 align-items: center;
}

.workflow__content h2 {
 font-family: var(--headline-font);
 font-size: clamp(1.8rem, 3.2vw, 2.6rem);
 font-weight: 700;
 line-height: 1.25;
 letter-spacing: -0.02em;
}

.workflow__content h2 span {
 color: var(--color-primary);
 font-weight: 700;
}

.workflow__content > p {
 margin: 2rem 0;
 line-height: 1.6;
}

.workflow__accordion {
 margin-top: 2rem;
 background: #ffffff;
 border-radius: 1.75rem;
 box-shadow: 0 1.5rem 3.5rem #0000000d;
 padding: 0.5rem;
}

.workflow-step {
 border-radius: 1.25rem;
 overflow: hidden;
}

.workflow-step:not(:first-child) {
 margin-top: 0.25rem;
}

.workflow-step--open {
 background: #00000006;
}

.workflow-step__trigger {
 width: 100%;
 border: 0;
 background: transparent;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 padding: 1.15rem 1.25rem;
 text-align: left;
 cursor: pointer;
}

.workflow-step__title {
 font-family: var(--headline-font);
 font-size: 1rem;
 font-weight: 600;
 line-height: 1.35;
 color: #000000;
}

.workflow-step__toggle {
 flex-shrink: 0;
 width: 2rem;
 height: 2rem;
 border-radius: 50%;
 background: #0000000a;
 display: grid;
 place-items: center;
 font-size: 1.1rem;
 color: #00000080;
}

.workflow-step__body {
 display: none;
 padding: 0 1.25rem 1.15rem;
}

.workflow-step__body p {
 line-height: 1.65;
 color: #00000099;
 font-size: 0.95rem;
}

.workflow-step--open .workflow-step__body {
 display: block;
}

.workflow__visual {
 display: flex;
 justify-content: center;
 align-items: center;
}

.workflow__screenshot {
 width: min(100%, 19.5rem);
 height: auto;
 display: block;
 filter: drop-shadow(0 1.5rem 3rem #00000025);
 opacity: 1;
 transition: opacity 0.25s ease;
}

.workflow__screenshot.is-changing {
 opacity: 0;
}

.impact {
 width: var(--section-width);
 margin-block: var(--section-spacing);
 margin-inline: auto;
 padding: 2.2rem var(--section-card-padding-x);
 border-radius: 1.25rem;
 border: 1px solid transparent;
 box-shadow: 0 2rem 4rem #00000010;
 position: relative;
 isolation: isolate;
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 2rem;
}

.impact__intro {
 max-width: 640px;
}

.impact__tag {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 height: 1.5rem;
 padding: 0 0.55rem;
 border-radius: 999px;
 background: rgba(var(--color-primary-rgb), 0.1);
 color: var(--color-primary);
 font-size: 0.64rem;
 font-weight: 900;
 letter-spacing: 0.03em;
 text-transform: uppercase;
}

.impact__intro h2 {
 font-family: var(--headline-font);
 margin-top: 0.95rem;
 font-size: clamp(1.55rem, 2.8vw, 2.4rem);
 line-height: 1.25;
 letter-spacing: -0.02em;
}

.impact__intro p {
 margin-top: 0.9rem;
 max-width: 590px;
 line-height: 1.65;
}

.impact__highlight {
 padding: 1.1rem 0.2rem 0.2rem;
}

.impact__highlight h3 {
 font-size: clamp(1.55rem, 2.8vw, 2.4rem);

 line-height: 1.1;
 letter-spacing: -0.02em;
}

.impact__highlight p {
 margin-top: 0.9rem;
 line-height: 1.65;
 max-width: 390px;
}

.impact__highlight a {
 margin-top: 1.2rem;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 2.45rem;
 padding: 0 1.1rem;
 border-radius: 999px;
 text-decoration: none;
 font-weight: 600;
 font-size: 0.86rem;
}

.pricing {
 width: var(--section-width);
 margin-block: var(--section-spacing);
 margin-inline: auto;
 padding: var(--section-card-padding-y) var(--section-card-padding-x)
  2.2rem;
 border-radius: 1.4rem;
 background: white;
 box-shadow: 0 2rem 4rem #00000010;
}

.pricing__header {
 text-align: center;
 padding: 0 4rem;
}

.pricing__header h2 {
 font-family: var(--headline-font);
 font-size: clamp(1.8rem, 3.2vw, 2.6rem);
 font-weight: 700;
 line-height: 1.25;
 letter-spacing: -0.02em;
}

.pricing__header h2 strong {
 color: var(--color-primary);
 font-weight: inherit;
}

.pricing__header p {
 margin: 2rem 0;
 line-height: 1.6;
}

.pricing__billing {
 margin: 1.1rem auto 0;
 width: fit-content;
 background: #ffffff;
 border-radius: 999px;
 display: inline-flex;
 padding: 0.2rem;
}

.pricing__billing-option {
 min-height: 2rem;
 border: 0;
 background: transparent;
 color: #7f7a9d;
 border-radius: 999px;
 padding: 0 0.9rem;
 font-size: 0.76rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.03em;
}

.pricing__billing-option--active {
 background: #7f7cf2;
 color: #ffffff;
}

.pricing__cards {
 margin-top: 1.7rem;
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1.15rem;
}

.pricing-card {
 position: relative;
 background: #00000006;
 border-radius: 2rem;
 padding: 1.7rem 1.55rem 1.4rem;
 display: flex;
 flex-direction: column;
 height: 100%;
 overflow: hidden;
}

.pricing-card > * {
 position: relative;
 z-index: 1;
}

.pricing-card__plan {
 font-family: var(--headline-font);
 font-size: 1.25rem;
 line-height: 1;
 letter-spacing: -0.02em;
}

.pricing-card__price-line {
 font-family: var(--label-font);
 margin-top: 0.85rem;
 color: #1c1f26;
 font-size: 1rem;
 line-height: 1.2;
 font-weight: 500;
 letter-spacing: -0.02em;
}

.pricing-card__price-line span {
 font-weight: 700;
 font-size: 2rem;
 line-height: 1;
 margin-right: 0.3rem;
}

.pricing-card__description {
 margin-top: 0.6rem;
 line-height: 1.5;
 min-height: auto;
 font-size: 1.08rem;
}

.pricing-card > a {
 margin-top: 1.15rem;
}

.pricing-card a button {
 width: 100%;
}

.pricing-card ul {
 padding: 0 1rem;
 margin: 1.4rem 0 0;
 display: grid;
 gap: 0.85rem;
}

.pricing-card li {
 display: flex;
 align-items: center;
 gap: 0.7rem;
 color: #1f222b;
 line-height: 1.35;
 font-size: 1rem;
}

.pricing-card li i {
 font-size: 1.2rem;
}

.pricing-card__footnote {
 margin-top: auto;
 padding-top: 1.4rem;
 color: #8a8d95;
 font-size: 0.9rem;
}

.faq {
 width: var(--section-width);
 margin-block: var(--section-spacing);
 margin-inline: auto;
}

.faq__header {
 text-align: center;
 max-width: 760px;
 margin: 0 auto;
}

.faq__header h2 {
 font-family: var(--headline-font);
 font-size: clamp(1.8rem, 3.2vw, 2.6rem);
 font-weight: 700;
 line-height: 1.25;
 letter-spacing: -0.02em;
}

.faq__header p {
 margin: 2rem 0;
 line-height: 1.6;
}

.faq__categories {
 margin-top: 1.25rem;
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 0.55rem;
}

.faq__category {
 min-height: 2.1rem;
 border-radius: 999px;
 border: 1px solid #171725;
 background: #ffffff;
 color: #171725;
 font-size: 0.78rem;
 font-weight: 600;
 padding: 0 0.95rem;
}

.faq__category--active {
 background: #171725;
 color: #ffffff;
}

.faq__list {
 margin-top: 2rem;
}

.faq-item {
 padding: 0.5rem 1rem;
 border-radius: 1.4rem;
 background: white;
 box-shadow: 0 1rem 1rem #00000007;
}

.faq-item:not(:first-child) {
 margin-top: 1rem;
}

.faq-item__trigger {
 width: 100%;
 border: 0;
 background: transparent;
 min-height: 4rem;
 display: grid;
 grid-template-columns: auto 1fr auto;
 align-items: center;
 gap: 0.85rem;
 padding: 0.55rem 0;
 text-align: left;
 cursor: pointer;
}

.faq-item__icon {
 color: var(--color-primary);
 font-size: 1.5rem;
 margin: 0 0.5rem;
}

.faq-item__question {
 font-family: var(--headline-font);
 font-size: 1rem;
 font-weight: 600;
 line-height: 1.4;
}

.faq-item__arrow {
 font-size: 1.35rem;
}

.faq-item__answer {
 display: none;
 padding: 1rem;
}

.faq-item--open .faq-item__answer {
 display: block;
}

.download-cta {
 width: var(--section-width);
 margin-block: var(--section-spacing);
 margin-inline: auto;
 border-radius: 2rem;
 border: 1px solid transparent;
 padding: var(--section-card-padding-y) var(--section-card-padding-x);
 text-align: center;
 position: relative;
 isolation: isolate;
 overflow: hidden;
 box-shadow: 0 2rem 4rem #00000010;
}

.download-cta h2,
.download-cta p,
.download-cta__actions {
 position: relative;
 z-index: 2;
}

.download-cta h2 {
 max-width: 760px;
 margin: 0 auto;
 font-family: var(--headline-font);
 font-size: clamp(1.55rem, 3vw, 2.9rem);
 line-height: 1.2;
 letter-spacing: -0.02em;
}

.download-cta p {
 max-width: 760px;
 margin: 1rem auto 0;
 line-height: 1.65;
}

.download-cta__actions {
 margin-top: 1.4rem;
 display: flex;
 justify-content: center;
 gap: 0.75rem;
 flex-wrap: wrap;
}

.store-button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.55rem;
 padding: 0.8rem 1.75rem;
 border-radius: 99rem;
 font-family: var(--body-font);
 font-weight: 600;
 font-size: 0.95rem;
 text-decoration: none;
 cursor: pointer;
 border: 1px solid transparent;
 transition:
  background 0.2s ease,
  border-color 0.2s ease,
  transform 0.2s ease;
}

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

.store-button__icon {
 flex-shrink: 0;
 line-height: 1;
}

.store-button--apple {
 background: #000000;
 color: #ffffff;
}

.store-button--apple:hover {
 background: #1a1a1a;
}

.store-button--apple .store-button__icon {
 font-size: 1.25rem;
}

.store-button--google {
 background: #ffffff;
 color: #1f1f1f;
 border-color: #dadce0;
}

.store-button--google:hover {
 background: #f8f9fa;
 border-color: #c6c9cc;
}

.store-button__icon--google {
 width: 1.35rem;
 height: 1.35rem;
 display: block;
}

.footer {
 padding-block: var(--section-spacing-compact);
 background: #ffffff;
}

.footer__top {
 width: var(--section-width);
 margin-inline: auto;
 display: grid;
 grid-template-columns: 1.45fr repeat(3, 1fr);
 gap: 1.2rem;
}

.footer__brand {
 font-family: var(--headline-font);
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 text-decoration: none;
 color: black;
 font-size: 1.15rem;
 font-weight: 700;
}

.footer__brand-block p {
 font-size: 0.8rem;
 max-width: 360px;
 color: #00000090;
 line-height: 1.65;
}

.footer__social {
 margin-top: 1rem;
 display: flex;
 gap: 0.5rem;
}

.footer__social a {
 color: black;
 font-size: 1.5rem;
 text-decoration: none;
}

.footer__links {
 display: grid;
 align-content: flex-start;
 gap: 0.5rem;
}

.footer__links h3 {
 font-family: var(--headline-font);
 font-size: 1rem;
 margin-bottom: 0.2rem;
}

.footer__links a {
 font-size: 0.8rem;
 color: #00000090;
 text-decoration: none;
 line-height: 1.5;
}

.footer__bottom {
 width: var(--section-width);
 margin: 1rem auto 0;
 padding: 1rem 0;
 border-top: 1px solid #ededed;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.8rem;
 flex-wrap: wrap;
}

.footer__bottom p {
 font-size: 0.9rem;
 color: #00000090;
}

.footer__bottom-links {
 display: flex;
 gap: 0.85rem;
}

.footer__bottom-links a {
 font-size: 0.9rem;
 color: #00000090;
}

@media (max-width: 1088px) {
 :root {
  --section-gutter: 1rem;
 }

 .header__container {
  position: relative;
  z-index: 102;
 }

 .header--open {
  background: transparent;
  backdrop-filter: none;
 }

 .header__brand,
 .header__menu-button {
  position: relative;
  z-index: 102;
 }

 .header__menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
 }

 .header__navbar {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background:
   radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(var(--color-primary-rgb), 0.08) 0%,
    transparent 70%
   ),
   #ffffff;
  border: none;
  border-radius: 0;
  padding: 6rem var(--section-gutter) 2.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
   opacity 0.3s ease,
   visibility 0.3s ease;
 }

 .header--open .header__navbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
 }

 .header__navbar a {
  font-family: var(--headline-font);
  font-size: clamp(1.4rem, 5vw, 1.85rem);
  font-weight: 600;
  padding: 0.85rem 0;
  width: 100%;
  text-align: center;
  transition: color 0.2s ease;
 }

 .header__navbar a:hover {
  color: var(--color-primary);
 }

 .header__navbar a:last-child {
  margin-top: 1.75rem;
  width: auto;
  padding: 0;
 }

 .header__navbar a:last-child .button {
  font-size: 1rem;
  padding: 1rem 2.75rem;
 }

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

 .hero__visual {
  margin-top: 2.5rem;
 }

 .hero__screenshot--main {
  width: clamp(7.5rem, 32vw, 14rem);
 }

 .hero__screenshot--side {
  width: clamp(5.5rem, 24vw, 10rem);
 }

 .hero__screenshot--side:first-of-type {
  margin-right: clamp(-1.75rem, -8vw, -0.75rem);
 }

 .hero__screenshot--side:last-of-type {
  margin-left: clamp(-1.75rem, -8vw, -0.75rem);
 }

 .hero__badge {
  position: static;
  margin: 0.35rem;
 }

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

 .workflow__inner {
  grid-template-columns: 1fr;
  gap: 3rem;
 }

 .workflow__content h2,
 .workflow__content > p {
  max-width: none;
 }

 .workflow__visual {
  order: -1;
 }

 .impact {
  grid-template-columns: 1fr;
  gap: 1.25rem;
 }

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

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

@media (max-width: 700px) {
 :root {
  --section-gutter: 1.1rem;
  --section-spacing: var(--section-spacing-compact);
  --section-card-padding-x: 1.1rem;
  --section-card-padding-y: 2.5rem;
 }

 .hero__screenshot--main {
  width: clamp(6.5rem, 38vw, 11rem);
 }

 .hero__screenshot--side {
  width: clamp(4.75rem, 28vw, 8rem);
 }

 .hero__screenshot--side:first-of-type {
  margin-right: clamp(-1.25rem, -10vw, -0.5rem);
 }

 .hero__screenshot--side:last-of-type {
  margin-left: clamp(-1.25rem, -10vw, -0.5rem);
 }

 .hero h1 {
  font-size: clamp(1.8rem, 9vw, 2.4rem);
 }

 .hero p {
  font-size: 0.98rem;
  line-height: 1.6;
 }

 .hero__actions {
  flex-direction: column;
  width: 100%;
 }

 .hero__actions .button {
  width: 100%;
  text-align: center;
 }

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

 .workflow__screenshot {
  width: min(100%, 15.5rem);
 }

 .service-card:last-child {
  border-bottom: none;
 }

 .impact {
  padding: 1.6rem var(--section-card-padding-x);
 }

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

 .faq-item__answer {
  padding-left: 0;
 }

 .download-cta__actions {
  flex-direction: column;
 }

 .download-cta__actions .store-button {
  width: 100%;
 }

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