@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-VariableFont_opsz,wght.ttf")
    format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-scale: 0.8;
  --bg: #fefdfa;
  --surface: #fefdfa;
  --ink: #001140;
  --muted: #2a3b5b;
  --brand: #0b63df;
  --brand-dark: #001140;
  --mint: #4ec4a3;
  --line: #d7deec;
  --radius-lg: 28px;
  --radius-md: 20px;
  --page-pad-x: clamp(24px, 7vw, 140px);
  --hero-band-h: 296px;
  --fs-hero: 55px;
  --fs-intro: 52px;
  --fs-title: 68px;
  --fs-body: 24px;
  --fs-list: 21px;
  --space-block: 128px;
  --script-font: "Mynerve", "Segoe Script", "Bradley Hand", cursive;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}

.page-wrap {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  background: var(--surface);
}

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

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

.shell {
  width: 100%;
  max-width: 1920px;
  padding-inline: var(--page-pad-x);
  margin-inline: auto;
}

.intro.shell {
  max-width: none;
}

.topbar {
  background: var(--bg);
  padding: 34px 0 24px;
  position: relative;
  z-index: 40;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand img {
  width: 182px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: calc(17px * var(--font-scale));
  font-weight: 600;
  margin-right: 7px;
}

.desktop-nav a {
  color: var(--ink);
}

.desktop-nav a:not(.btn-login) {
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.desktop-nav a:not(.btn-login):hover,
.desktop-nav a:not(.btn-login):focus-visible {
  color: var(--brand);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  text-decoration-color: currentColor;
}

.desktop-nav a[aria-current="page"]:not(.btn-login),
.mobile-nav a[aria-current="page"] {
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  text-decoration-color: currentColor;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  border: 1px solid var(--brand);
  padding: 8px 32px;
  font-weight: 700;
  font-size: calc(17px * var(--font-scale));
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-login:hover {
  background: var(--surface);
  color: var(--brand) !important;
}

.desktop-nav .btn-login {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  margin: 5px auto;
}

.mobile-nav {
  display: none;
}

.hero-reference {
  display: none;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.shops-main {
  background: var(--surface);
}

.shops-intro {
  padding: 36px 0 56px;
}

.shops-intro h1 {
  margin: 0;
  font-size: calc(44px * var(--font-scale));
  line-height: 1.08;
  font-weight: 700;
  color: #000000;
}

.shops-intro-block {
  margin-top: 54px;
}

.shops-intro-kicker {
  margin: 0;
  color: #ff0000;
  font-size: calc(28px * var(--font-scale));
  line-height: 1.2;
  font-weight: 500;
}

.shops-intro-lead {
  margin: 4px 0 0;
  color: #000000;
  font-size: calc(36px * var(--font-scale));
  line-height: 1.2;
  font-weight: 700;
}

.shops-intro-block p:last-child {
  margin: 4px 0 0;
  color: #000000;
  font-size: calc(31px * var(--font-scale));
  line-height: 1.28;
  font-weight: 400;
}

.shops-intro-outro {
  margin: 56px 0 0;
  color: #000000;
  font-size: calc(36px * var(--font-scale));
  line-height: 1.2;
  font-weight: 700;
}

.shops-intro-image {
  padding: 36px 0 56px;
}

.shops-intro-image img {
  width: min(100%, 1200px);
  height: auto;
}

.shops-image {
  background: #f5f5f5;
}

.shops-profit {
  padding-bottom: 72px;
}

.shops-profit .profit-card {
  max-width: 520px;
}

.founders {
  padding-bottom: 92px;
}

.founders h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: calc(42px * var(--font-scale));
  line-height: 1.05;
  font-weight: 600;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.founder-card {
  background: #e9edf4;
  border-radius: 24px;
  padding: 20px;
}

.founder-card img {
  width: min(100%, 220px);
  margin: 0 auto;
  border-radius: 16px;
}

.founder-card h3 {
  margin: 14px 0 6px;
  color: var(--ink);
  font-size: calc(28px * var(--font-scale));
  line-height: 1.15;
  font-weight: 700;
}

.founder-card p {
  margin: 0;
  color: #2d4468;
  font-size: calc(21px * var(--font-scale));
  line-height: 1.25;
}

.hero-reference img {
  display: block;
  width: 100%;
  max-width: 1900px;
  height: auto;
  margin-inline: auto;
}

.hero-handwrite {
  display: inline-block;
  margin: 0 0 50px;
  font-family: var(--script-font);
  font-size: calc(58px * var(--font-scale));
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  color: #d11f1f;
  max-width: 640px;
}

.hero-handwrite::before,
.hero-handwrite::after {
  content: none;
}

.hero-reference-handwrite {
  position: absolute;
  left: calc(36% + 290px);
  top: calc(36% - 130px);
  width: 740px;
  max-width: calc(100% - (2 * var(--page-pad-x)));
  margin: 0;
  text-align: left;
  z-index: 4;
  pointer-events: none;
}

.hero {
  background: var(--bg);
  padding-top: 0;
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(280px, 332px);
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vw, 90px);
  min-height: clamp(480px, 45vw, 620px);
  margin-bottom: -195px;
  position: relative;
  z-index: 2;
}

.hero-phone-wrap {
  display: flex;
  justify-content: center;
  order: 2;
}

.hero-frame {
  width: min(332px, 100%);
  transform: translateY(calc(clamp(16px, 2.6vw, 40px) - 30px)) scale(1.2);
  transform-origin: center top;
  position: relative;
  z-index: 3;
}

.device-frame.hero-frame .device {
  position: relative;
  width: 100%;
  z-index: 2;
}

.device-frame.hero-frame .hero-screen {
  top: 4.0%;
  left: 6.4%;
  width: 87.2%;
  height: 91.2%;
  transform: translateY(5px);
  border-radius: clamp(16px, 3.2vw, 32px);
  z-index: 1;
  object-fit: cover;
  object-position: top center;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  filter: none;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: calc(60px * var(--font-scale));
  line-height: 1.05;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
}

.hero-copy {
  order: 1;
  width: 100%;
  max-width: 740px;
  margin-left: 0;
  transform: translateY(clamp(-50px, -4vw, 0px));
}

.hero-copy .hero-handwrite {
  max-width: 740px;
}

.hero-band {
  margin-top: 46px;
  background: var(--brand-dark);
  min-height: clamp(220px, 20vw, 304px);
  height: auto;
  box-sizing: border-box;
  display: flex;
  align-items: end;
  padding: 0 0 clamp(24px, 2.6vw, 38px);
  position: relative;
  z-index: 1;
}

.hero-rating {
  padding-top: 20px;
}

.hero-rating-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.hero-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f4b400;
}

.hero-rating-stars i {
  font-size: 12px;
  line-height: 1;
}

.hero-rating-score {
  color: #ffffff;
  font-size: calc(20px * var(--font-scale));
  font-weight: 400;
  line-height: 1.1;
}

.hero-rating-meta {
  font-size: calc(18px * var(--font-scale));
}

.hero-rating-quote {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: calc(16px * var(--font-scale));
  font-style: italic;
  line-height: 1.25;
  text-align: left;
}

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
  flex-wrap: wrap;
  transform: none;
}

.store-badges img {
  height: 51px;
  width: auto;
}

.store-badges .store-qrcode {
  height: 64px;
  width: auto;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .hero-top {
    grid-template-columns: minmax(0, 740px) minmax(280px, 332px);
    gap: clamp(48px, 7vw, 110px);
  }

  .hero-phone-wrap {
    transform: translateX(-1cm);
  }

  .hero-copy .hero-handwrite {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .hero-reference {
    display: none;
  }

  .hero-band {
    border-bottom: 0;
    align-items: center;
    padding: 0;
  }

  .hero-band .store-badges {
    position: relative;
    width: min(
      100%,
      calc(332px + 740px + clamp(48px, 7vw, 110px))
    );
    margin: 80px auto 0;
    padding: 0;
    box-sizing: border-box;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 34px;
    transform: none;
  }

  .hero-band .hero-rating {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: min(
      100%,
      calc(332px + 740px + clamp(48px, 7vw, 110px))
    );
    margin: 0;
    padding-inline: 0;
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .brand img {
    width: 168px;
  }

  .desktop-nav {
    gap: 24px;
    font-size: calc(16px * var(--font-scale));
  }

  .btn-login {
    padding: 8px 24px;
  }

  .hero-top {
    grid-template-columns: minmax(0, 620px) minmax(240px, 300px);
    gap: clamp(28px, 4vw, 52px);
  }

  .hero-copy {
    max-width: 620px;
    transform: translateY(clamp(-26px, -2vw, 0px));
  }

  .hero-copy h1 {
    font-size: calc(52px * var(--font-scale));
    line-height: 1.06;
  }

  .hero-band .store-badges {
    width: min(
      100%,
      calc(300px + 620px + clamp(28px, 4vw, 52px))
    );
    gap: 22px;
  }

  .hero-band .hero-rating {
    width: min(
      100%,
      calc(300px + 620px + clamp(28px, 4vw, 52px))
    );
  }
}

.intro {
  background: var(--surface);
  padding: 116px 0 140px;
}

.intro-title {
  margin: 0 auto;
  max-width: 760px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(50px * var(--font-scale));
  line-height: 0.95;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}

.intro-subtitle {
  margin: 28px auto 0;
  max-width: 760px;
  font-size: calc(20px * var(--font-scale));
  line-height: 1.28;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}

.intro-highlights {
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 40px);
  max-width: 980px;
}

.intro-highlight {
  display: grid;
  justify-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: calc(20px * var(--font-scale));
  line-height: 1.28;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

.intro-highlight-icon {
  width: 84px;
  height: 84px;
  border-radius: 25px;
  background: linear-gradient(180deg, #001f63 0%, #001a55 100%);
  border: 1px solid #00174b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.intro-highlight-icon i {
  font-size: 42px;
  line-height: 1;
}

@media (min-width: 1200px) {
  .intro {
    padding: 86px 0 102px;
  }

  .intro-title,
  .intro-subtitle,
  .intro-highlights {
    margin-left: auto;
    margin-right: auto;
  }
}

.feature {
  padding: var(--space-block) 0;
}

.feature-soft {
  background: #f5f5f5;
}

.feature-white {
  background: var(--surface);
}

.feature-orders-style {
  padding: 60px 0 0;
  margin-bottom: -118px;
}

.feature-plus-bottom-20 {
  padding-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 640px 1fr;
  align-items: center;
  gap: 120px;
}

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

.feature.reverse .feature-copy {
  order: 1;
}

.feature.reverse .feature-media {
  order: 2;
}

.feature-media {
  display: flex;
  justify-content: center;
}

.device-static {
  width: min(316px, 100%);
}

.device-frame {
  position: relative;
  width: min(360px, 100%);
  margin-inline: auto;
}

.device-frame .device {
  width: 100%;
}

.device-frame .screen {
  position: absolute;
  top: 8.15%;
  left: 14.2%;
  width: 71.6%;
  height: 84.2%;
  object-fit: cover;
  border-radius: clamp(12px, 2.4vw, 24px);
}

.screen.app-screen {
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
}

.device-frame .screen.returns-screen {
  object-position: 87% 50%;
  top: calc(1.2% + 5px);
}

.kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: var(--script-font);
  font-weight: 400;
  font-size: calc(36px * var(--font-scale));
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: none;
}

.feature-copy h2 {
  margin: 0;
  font-size: calc(var(--fs-title) * var(--font-scale));
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 860px;
}

.feature-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: calc(var(--fs-body) * var(--font-scale));
  line-height: 1.24;
  max-width: 920px;
}

.tick-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 36px;
}

.tick-list li {
  position: relative;
  padding-left: 20px;
  color: #173058;
  font-weight: 600;
  font-size: calc(var(--fs-list) * var(--font-scale));
  line-height: 1.25;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.feature-orders {
  background: #f1f1f1;
  padding: 60px 0 0;
  margin-bottom: -118px;
}

.feature-orders .feature-grid,
.feature-orders-style .feature-grid {
  grid-template-columns: minmax(280px, 328px) minmax(0, 650px);
  justify-content: center;
  gap: clamp(40px, 6vw, 104px);
  align-items: flex-start;
}

.feature-orders-media {
  justify-content: center;
  padding-left: 0;
  padding-top: 8px;
}

.feature-orders .orders-frame,
.feature-orders-style .orders-frame {
  width: 328px;
  min-width: 328px;
  max-width: 328px;
  aspect-ratio: 695 / 1428;
  overflow: hidden;
  margin-inline: 0;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 65%,
    rgba(0, 0, 0, 0.75) 69%,
    rgba(0, 0, 0, 0.35) 72%,
    transparent 75%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 65%,
    rgba(0, 0, 0, 0.75) 69%,
    rgba(0, 0, 0, 0.35) 72%,
    transparent 75%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.feature-orders .orders-frame .device,
.feature-orders-style .orders-frame .device {
  position: absolute;
  top: -2.59%;
  left: -4.75%;
  width: 109.64%;
  max-width: none;
  z-index: 2;
}

.feature-orders .orders-screen,
.feature-orders-style .orders-screen {
  top: 1.2%;
  left: 4.24%;
  width: 91.66%;
  height: 94.77%;
  border-radius: clamp(16px, 3.4vw, 34px);
  z-index: 1;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: none;
  mask-image: none;
}

.feature-orders-copy {
  padding-top: 52px;
  max-width: 650px;
}

.feature-orders-copy .orders-label {
  margin: 0 0 30px;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(20px * var(--font-scale));
  font-weight: 500;
  line-height: 1.2;
}

.feature-orders-copy .orders-label.orders-label-shipped {
  color: #3660d6;
}

.feature-orders-copy .orders-label.orders-label-delivered {
  color: #48be9e;
}

.feature-orders-copy .orders-label.orders-label-returned {
  color: #6094b7;
}

.feature-orders-copy .orders-label.orders-label-myshops {
  color: #2f56be;
}

.feature-orders-copy .orders-label.orders-label-archive {
  color: #6f8fda;
}

.feature-orders-copy .orders-handwrite {
  margin: 0 0 50px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(52px * var(--font-scale));
  font-weight: 500;
  line-height: calc(0.95em + 4px);
  color: var(--ink);
  max-width: 640px;
}

.feature-orders-shipped .feature-orders-copy .orders-handwrite {
  line-height: calc(0.95em + 6px);
}

.feature-orders-copy h2 {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(52px * var(--font-scale));
  font-weight: 500;
  line-height: 0.95;
  max-width: 680px;
}

.feature-orders-copy .orders-description {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: calc(20px * var(--font-scale));
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.28;
  max-width: 640px;
}

.feature-orders-shipped .feature-orders-copy .orders-description {
  font-size: calc(24px * var(--font-scale));
}

.orders-list {
  margin-top: 22px;
  max-width: 650px;
  grid-template-columns: repeat(2, max-content);
  justify-content: start;
  gap: 10px 54px;
}

.feature-orders-copy .orders-list li {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding-left: 0;
  white-space: nowrap;
  font-size: calc(20px * var(--font-scale));
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.22;
}

.feature-orders-shipped .feature-orders-copy .orders-list li {
  font-size: calc(22px * var(--font-scale));
}

.feature-orders-shipped .orders-list {
  margin-top: 50px;
}

.orders-list li::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  flex: 0 0 7px;
  width: 7px;
  height: 14px;
  border-radius: 0;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: none;
  transform: rotate(45deg);
}

.feature-orders-copy .orders-list.orders-list-shipped li {
  color: #3660d6;
}

.orders-list.orders-list-shipped li::before {
  border-right-color: #3660d6;
  border-bottom-color: #3660d6;
}

.feature-orders-copy .orders-list.orders-list-delivered li {
  color: #48be9e;
}

.orders-list.orders-list-delivered li::before {
  border-right-color: #48be9e;
  border-bottom-color: #48be9e;
}

.feature-orders-copy .orders-list.orders-list-returned li {
  color: #6094b7;
}

.orders-list.orders-list-returned li::before {
  border-right-color: #6094b7;
  border-bottom-color: #6094b7;
}

.feature-orders-copy .orders-list.orders-list-myshops li {
  color: #2f56be;
}

.orders-list.orders-list-myshops li::before {
  border-right-color: #2f56be;
  border-bottom-color: #2f56be;
}

.feature-orders-copy .orders-list.orders-list-archive li {
  color: #6f8fda;
}

.orders-list.orders-list-archive li::before {
  border-right-color: #6f8fda;
  border-bottom-color: #6f8fda;
}

.feature-orders-copy .orders-list.orders-list-delivered,
.feature-orders-copy .orders-list.orders-list-returned,
.feature-orders-copy .orders-list.orders-list-archive {
  grid-template-columns: repeat(3, max-content);
  gap: 10px 36px;
}

@media (min-width: 768px) {
  .feature.feature-orders-style.reverse .feature-grid {
    grid-template-columns: minmax(0, 650px) minmax(280px, 328px);
    justify-content: center;
    gap: clamp(40px, 6vw, 104px);
  }

  .feature.feature-orders-style.reverse .feature-orders-copy {
    padding-left: 0;
    max-width: 650px;
  }

  .feature.feature-orders-style.reverse .feature-media {
    justify-content: center;
    padding-right: 0;
  }
}

.more-features {
  background: #f5f5f5;
  padding: 96px 0 8px;
}

.section-mini-title {
  margin: 90px 0 44px;
  text-align: center;
  color: #2e3f5c;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: calc(50px * var(--font-scale));
  line-height: 0.95;
}

.more-features .section-mini-title {
  margin: 0 0 94px;
}

.feature-more-start {
  padding-top: 0;
}

.feature-more-end {
  margin-bottom: -118px;
  padding-top: 60px;
  padding-bottom: 0;
}

.more-features .mini-grid {
  gap: 48px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.more-features .mini-card {
  grid-template-columns: 250px 1fr;
  row-gap: 18px;
  column-gap: 42px;
}

.mini-card {
  display: grid;
  grid-template-columns: 312px 1fr;
  row-gap: 22px;
  column-gap: 52px;
  align-items: start;
}

.mini-card .mini-frame {
  width: 100%;
  aspect-ratio: 695 / 1428;
  overflow: hidden;
  isolation: isolate;
}

.mini-card .mini-frame .device {
  position: absolute;
  top: -2.59%;
  left: -4.75%;
  width: 109.64%;
  max-width: none;
  z-index: 2;
}

.mini-card .mini-frame .mini-screen {
  top: 1.2%;
  left: 4.24%;
  width: 91.66%;
  height: 94.77%;
  border-radius: clamp(16px, 3.4vw, 34px);
  z-index: 1;
  object-fit: cover;
  object-position: top center;
}

.more-features .mini-card .mini-frame .mini-screen {
  border-radius: clamp(14px, 2.7vw, 27px);
}

.mini-card h3 {
  margin: 0;
  font-size: calc(52px * var(--font-scale));
  line-height: 0.95;
}

.mini-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: calc(24px * var(--font-scale));
  line-height: 1.24;
}

.tick-list.compact {
  margin-top: 16px;
  grid-template-columns: 1fr;
}

.more-features .tick-list.compact {
  margin-top: 13px;
}

.more-features .mini-card .kicker {
  margin: 0 0 40px;
  color: #d11f1f;
  font-size: calc(32px * var(--font-scale));
  font-weight: 400;
  line-height: 1.06;
  max-width: 512px;
}

.more-features .mini-card h3 {
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(40px * var(--font-scale));
  font-weight: 500;
  line-height: 0.95;
  max-width: 544px;
}

.more-features .mini-card > div > p:not(.kicker) {
  margin: 40px 0 0;
  color: var(--ink);
  font-size: calc(14px * var(--font-scale));
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.28;
  max-width: 512px;
}

.more-features .tick-list.compact li {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  padding-left: 0;
  color: var(--ink);
  font-size: calc(14px * var(--font-scale));
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.22;
}

.more-features .tick-list.compact li::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  flex: 0 0 6px;
  width: 6px;
  height: 11px;
  border-radius: 0;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: none;
  transform: rotate(45deg);
}

.showcase {
  --showcase-pad-top: 66px;
  --showcase-pad-x: 48px;
  --showcase-pad-bottom: 42px;
  --showcase-blue-top-gap: var(--showcase-pad-top);
  --showcase-content-offset: var(--showcase-pad-top);
  --showcase-gray-bottom-gap: 200px;
  margin-top: 18px;
  margin-bottom: 111px;
  max-width: calc(1920px - (2 * var(--page-pad-x)));
  margin-inline: auto;
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: var(--showcase-pad-top) var(--showcase-pad-x) var(--showcase-pad-bottom);
  overflow: visible;
  position: relative;
  isolation: isolate;
}

.showcase::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: var(--showcase-blue-top-gap);
  bottom: 0;
  background: #0d61d4;
  border-radius: 38px;
  z-index: 0;
}

.showcase::after {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: 0;
  bottom: var(--showcase-gray-bottom-gap);
  background: #f1f1f1;
  z-index: -1;
}

.showcase-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.showcase-bg-icons .showcase-bag {
  position: absolute;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  animation: showcase-bag-float 7.2s ease-in-out infinite;
}

.showcase-grid {
  position: relative;
  z-index: 1;
}

@keyframes showcase-bag-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 328px) minmax(0, 650px);
  justify-content: center;
  gap: clamp(36px, 5vw, 67px);
  align-items: flex-start;
  width: 100%;
  max-width: calc(1920px - (2 * var(--page-pad-x)));
  margin-inline: auto;
  margin-top: var(--showcase-content-offset);
}

.showcase-frame {
  width: min(328px, 100%);
  min-width: 0;
  max-width: 328px;
  aspect-ratio: 695 / 1428;
  overflow: hidden;
  margin-inline: auto;
  isolation: isolate;
}

.showcase-frame .device {
  position: absolute;
  top: -2.59%;
  left: -4.75%;
  width: 109.64%;
  max-width: none;
  z-index: 2;
  pointer-events: none;
}

.showcase-frame .orders-screen {
  top: 1.2%;
  left: 4.24%;
  width: 91.66%;
  height: calc(96.2% + 5px);
  border-radius: clamp(16px, 3.4vw, 34px);
  z-index: 1;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: none;
  mask-image: none;
}

.showcase-video {
  display: block;
  background: #08183e;
}

.showcase-copy {
  max-width: 650px;
}

.showcase-copy.feature-orders-copy .orders-label.orders-label-shoppen {
  color: #ffffff;
}

.showcase-copy.feature-orders-copy .orders-handwrite {
  color: #ffffff;
}

.showcase-copy.feature-orders-copy h2,
.showcase-copy.feature-orders-copy .orders-description {
  color: #ffffff;
}

.showcase-copy.feature-orders-copy .orders-list li {
  color: #ffffff;
}

.showcase-copy.feature-orders-copy .orders-list li::before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

.showcase-copy:not(.feature-orders-copy) h2 {
  margin: 0;
  font-size: calc(58px * var(--font-scale));
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 850px;
}

.showcase-copy:not(.feature-orders-copy) p {
  margin: 16px 0 0;
  color: #deebff;
  font-size: calc(24px * var(--font-scale));
  line-height: 1.24;
  max-width: 900px;
}

.kicker-light {
  color: #d7e8ff;
}

.tick-list.light li {
  color: #deebff;
}

.tick-list.light li::before {
  background: #9ed0ff;
}

@media (min-width: 1200px) {
  .showcase-copy {
    padding-top: 52px;
  }
}

.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 82px);
  align-items: start;
  padding-bottom: 96px;
}

.proof-testimonials {
  align-self: stretch;
  min-width: 0;
  background: var(--surface);
}

.testimonial-carousel {
  display: grid;
  gap: 18px;
  background: var(--surface);
}

.testimonial-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.testimonial-carousel-label {
  margin: 0;
  color: #54c8ab;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(20px * var(--font-scale));
  font-weight: 500;
  line-height: 1.2;
}

.testimonial-carousel-nav {
  display: none;
  align-items: center;
  gap: 10px;
}

.testimonial-carousel.is-ready .testimonial-carousel-nav {
  display: none;
}

.testimonial-carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 36, 71, 0.14);
  border-radius: 50%;
  background: var(--surface);
  color: #0f2447;
  font-size: calc(22px * var(--font-scale));
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.testimonial-carousel-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 36, 71, 0.28);
  box-shadow: 0 14px 28px rgba(15, 36, 71, 0.1);
}

.testimonial-carousel-viewport {
  min-width: 0;
}

.testimonial-carousel.is-ready .testimonial-carousel-viewport {
  overflow: hidden;
  transition: height 260ms ease;
}

.testimonial-carousel-track {
  display: grid;
  gap: 24px;
}

.testimonial-carousel.is-ready .testimonial-carousel-track {
  display: flex;
  gap: 0;
  transition: transform 320ms ease;
  will-change: transform;
}

.profit-card {
  background: #4abf9e;
  color: #ffffff;
  border-radius: 38px;
  padding: 42px 44px;
}

.profit-card h2 {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(50px * var(--font-scale));
  line-height: 0.95;
  font-weight: 500;
}

.profit-card ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.profit-card li {
  position: relative;
  min-height: 32px;
  padding-left: 46px;
  display: flex;
  align-items: center;
  font-size: calc(22px * var(--font-scale));
  line-height: 1.3;
}

.profit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--surface);
  transform: translateY(-50%);
}

.profit-card li::after {
  content: "";
  position: absolute;
  left: 12.5px;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid #4abf9e;
  border-bottom: 2px solid #4abf9e;
  transform: translate(-50%, -55%) rotate(45deg);
}

.quote-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: start;
  align-content: start;
  min-height: 100%;
  padding: 26px 28px 24px;
  background: var(--surface);
  border-radius: 28px;
  box-shadow: none;
}

.testimonial-carousel.is-ready .quote-card {
  flex: 0 0 100%;
}

.quote-mark {
  margin: 0 0 0 -0.16em;
  color: var(--ink);
  font-size: calc(204px * var(--font-scale));
  line-height: 0.32;
  font-weight: 800;
  font-style: italic;
}

.quote-text {
  margin: 0;
  color: var(--ink);
  font-size: calc(26px * var(--font-scale));
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.28;
  max-width: none;
}

.quote-author {
  margin: 36px 0 0;
  color: #21395e;
  font-size: calc(17px * var(--font-scale));
  font-weight: 700;
}

.testimonial-carousel-dots {
  display: none;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  align-self: start;
  padding-left: 28px;
  gap: 10px;
}

.testimonial-carousel.is-ready .testimonial-carousel-dots {
  display: flex;
}

.testimonial-carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5d2e3;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-carousel-dot.is-active {
  background: #54c8ab;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel-btn,
  .testimonial-carousel.is-ready .testimonial-carousel-viewport,
  .testimonial-carousel.is-ready .testimonial-carousel-track,
  .testimonial-carousel-dot {
    transition: none;
  }
}

.faq {
  background: #e9edf4;
  padding: 106px 0 120px;
}

.faq-head {
  display: block;
  margin-bottom: 44px;
}

.faq-head h2 {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: calc(50px * var(--font-scale));
  line-height: 0.95;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, calc((100% - 24px) / 2 - 20px)));
  gap: 18px 24px;
  justify-content: space-between;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(15, 36, 71, 0.16);
  border-radius: 0;
  padding: 0;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 700;
  color: #0f2447;
  font-size: calc(20px * var(--font-scale));
  line-height: 1.2;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: calc(30px * var(--font-scale));
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0 0 18px;
  color: #2d4468;
  font-size: calc(19px * var(--font-scale));
  line-height: 1.32;
}

.faq-item p a {
  color: var(--brand);
  text-decoration: underline;
}

.site-footer {
  background: var(--brand-dark);
  color: #ffffff;
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 56px;
}

.footer-copy-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 56px;
}

.footer-logo {
  width: 42px;
  margin-bottom: 0;
}

.footer-support-top {
  display: flex;
  align-items: flex-start;
  gap: 52px;
}

.footer-support-text {
  display: grid;
  gap: 4px;
}

.site-footer h4 {
  margin: 0;
  font-size: calc(24px * var(--font-scale));
}

.footer-support h4 {
  font-weight: 700;
}

.site-footer p {
  margin: 12px 0;
  color: #d4ddf0;
  font-size: calc(19px * var(--font-scale));
  line-height: 1.32;
}

.footer-support p {
  margin: 0;
  color: #ffffff;
}

.footer-support a {
  display: inline-block;
  margin: 0;
  font-size: calc(19px * var(--font-scale));
  line-height: 1.32;
}

.site-footer a {
  color: #ffffff;
}

.site-footer a:hover {
  text-decoration: underline;
}

.social-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.social-list img {
  width: auto;
  height: 24px;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-list i {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.footer-links {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-store {
  margin-top: 14px;
  display: grid;
  grid-template-columns: max-content;
  justify-content: start;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.footer-store-qr {
  grid-column: auto;
}

.footer-store.is-row {
  grid-template-columns: repeat(3, max-content);
}

.footer-store.is-row .footer-store-qr {
  grid-column: 1 / -1;
}

.footer-store img {
  height: 38px;
  width: auto;
}

.footer-store .footer-qrcode {
  height: 76px;
  border-radius: 10px;
}

.footer-copy {
  margin: 12px 0 0;
  grid-column: 1;
  color: #c7d4ea;
  font-size: calc(16px * var(--font-scale));
}

@media (max-width: 1024px) and (min-width: 768px) {
  .footer-support-top {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .footer-grid,
  .footer-copy-row {
    gap: 24px;
  }

  .footer-store img {
    height: 34px;
  }

  .footer-store .footer-qrcode {
    height: 68px;
  }
}

@media (max-width: 767px) {
  :root {
    --page-pad-x: 34px;
    --hero-band-h: 236px;
    --fs-hero: 46px;
    --fs-intro: 34px;
    --fs-title: 48px;
    --fs-body: 19px;
    --fs-list: 17px;
    --space-block: 88px;
  }

  .desktop-nav {
    display: none;
  }

  .feature-orders {
    padding: 72px 0;
    margin-bottom: 0;
  }

  .feature-orders-style {
    padding: 72px 0;
    margin-bottom: 0;
  }

  .feature-plus-bottom-20 {
    padding-bottom: 112px;
  }

  .feature-orders .feature-grid,
  .feature-orders-style .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-orders-media {
    justify-content: center;
    padding-left: 0;
    padding-top: 0;
  }

  .feature-orders .orders-frame,
  .feature-orders-style .orders-frame {
    width: min(328px, 100%);
    min-width: 0;
    max-width: 328px;
    margin-inline: auto;
  }

  .device-frame {
    width: min(360px, 90vw);
  }

  .feature-orders-copy {
    padding-top: 0;
    max-width: min(720px, 100%);
    margin-inline: auto;
  }

  .feature-orders-copy .orders-label {
    margin-bottom: 12px;
    font-size: calc(20px * var(--font-scale));
    font-weight: 500;
  }

  .feature-orders-copy .orders-handwrite {
    margin-bottom: 28px;
    font-size: calc(54px * var(--font-scale));
    line-height: calc(1.02em + 4px);
    max-width: none;
  }

  .feature-orders-shipped .feature-orders-copy .orders-handwrite {
    line-height: calc(1.02em + 6px);
  }

  .feature-orders-copy h2 {
    font-size: calc(54px * var(--font-scale));
    line-height: 1.02;
    max-width: none;
  }

  .feature-orders-copy .orders-description {
    margin-top: -2px;
    font-size: calc(20px * var(--font-scale));
    max-width: none;
  }

  .feature-orders-shipped .feature-orders-copy .orders-description {
    font-size: calc(22px * var(--font-scale));
  }

  .feature-orders-shipped .orders-list {
    margin-top: 28px;
  }

  .orders-list {
    margin-top: 18px;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
  }

  .orders-list li {
    font-size: calc(19px * var(--font-scale));
    white-space: normal;
  }

  .feature-orders-shipped .orders-list li {
    font-size: calc(21px * var(--font-scale));
  }

  .more-features .mini-card .kicker {
    margin-bottom: 45px;
    font-size: calc(27px * var(--font-scale));
    line-height: 1.08;
    max-width: none;
  }

  .more-features .mini-card h3 {
    font-size: calc(42px * var(--font-scale));
    max-width: none;
  }

  .more-features .mini-card > div > p:not(.kicker) {
    margin-top: 21px;
    font-size: calc(14px * var(--font-scale));
    max-width: none;
  }

  .more-features .tick-list.compact li {
    font-size: calc(14px * var(--font-scale));
  }

  .feature-more-end {
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .menu-btn.is-open {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: var(--brand-dark);
    height: 100dvh;
    padding: 114px 24px 36px;
    gap: 0;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 17, 64, 0.2);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    font-weight: 500;
    color: #ffffff;
    font-size: calc(28px * var(--font-scale));
    line-height: 1.18;
    padding: 0;
    margin: 0 0 22px;
  }

  .mobile-nav a[aria-current="page"] {
    text-decoration: none;
  }

  .kicker {
    font-size: calc(30px * var(--font-scale));
  }

  .section-mini-title {
    font-size: calc(56px * var(--font-scale));
  }

  .mobile-nav .btn-login {
    margin-top: 84px;
    margin-bottom: 0;
    align-self: flex-start;
    min-width: 230px;
    background: #ffffff;
    border-color: #ffffff;
    color: var(--brand-dark) !important;
    justify-content: center;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding: 17px 34px;
  }

  .mobile-nav .btn-login:hover,
  .mobile-nav .btn-login:focus-visible {
    color: var(--brand-dark) !important;
  }

  .mobile-nav .mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
  }

  body.menu-open {
    overflow: hidden;
  }

  .intro-title {
    max-width: 640px;
    font-size: calc(56px * var(--font-scale));
  }

  .intro-subtitle {
    font-size: calc(20px * var(--font-scale));
    line-height: 1.28;
    max-width: 640px;
  }

  .intro-highlights {
    margin-top: 56px;
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .intro-highlight {
    justify-items: center;
    text-align: center;
  }

  .intro-highlight-icon {
    width: 74px;
    height: 74px;
  }

  .intro-highlight-icon i {
    font-size: 37px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    margin-bottom: 0;
  }

  .hero-phone-wrap {
    order: 2;
    margin-top: 8px;
    margin-bottom: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-frame {
    width: 48.4vw;
    max-width: none;
    transform: translateY(-30px) scale(1);
  }

  .hero-copy {
    order: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    transform: none;
  }

  .hero-copy .hero-handwrite {
    margin: 0 auto 28px;
    max-width: 720px;
    font-size: calc((58px * var(--font-scale)) - 25px);
  }

  .hero-copy h1 {
    margin-inline: auto;
  }

  .hero-band {
    margin-top: 0;
    min-height: auto;
    padding: 28px 0 34px;
  }

  .hero-rating {
    width: 100%;
    margin: 0 auto 28px;
    padding-top: 0;
  }

  .hero-rating-row {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-rating-score {
    font-size: calc(18px * var(--font-scale));
  }

  .hero-rating-quote {
    font-size: calc(15px * var(--font-scale));
    text-align: left;
  }

  .hero-band .store-badges {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    gap: 16px 22px;
    flex-wrap: wrap;
  }



  .kicker {
    font-size: calc(25px * var(--font-scale));
  }

  .section-mini-title {
    font-size: calc(44px * var(--font-scale));
    margin-bottom: 26px;
  }

  .feature-grid,
  .feature.reverse .feature-grid,
  .proof,
  .showcase-grid,
  .mini-grid,
  .faq-grid,
  .footer-grid,
  .footer-copy-row,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .footer-support-top {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .feature.reverse .feature-copy,
  .feature.reverse .feature-media {
    order: initial;
  }

  .feature-copy h2 {
    max-width: none;
  }

  .quote-card {
    grid-template-columns: 1fr;
  }

  .faq-head {
    margin-bottom: 36px;
  }

  .mini-card h3 {
    font-size: calc(42px * var(--font-scale));
  }

  .mini-card p {
    font-size: calc(19px * var(--font-scale));
  }

  .showcase-copy:not(.feature-orders-copy) h2 {
    font-size: calc(44px * var(--font-scale));
    max-width: none;
  }

  .showcase-copy:not(.feature-orders-copy) p {
    font-size: calc(19px * var(--font-scale));
    max-width: none;
  }

  .profit-card h2 {
    font-size: calc(56px * var(--font-scale));
  }

  .quote-mark {
    font-size: calc(180px * var(--font-scale));
  }

  .quote-text {
    font-size: calc(24px * var(--font-scale));
  }

  .quote-author {
    font-size: calc(16px * var(--font-scale));
  }

  .faq-head h2 {
    font-size: calc(56px * var(--font-scale));
  }

  .faq-item summary {
    font-size: calc(18px * var(--font-scale));
  }

  .faq-item p {
    font-size: calc(17px * var(--font-scale));
  }

  .site-footer h4 {
    font-size: calc(20px * var(--font-scale));
  }

  .site-footer p,
  .footer-links a {
    font-size: calc(17px * var(--font-scale));
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad-x: 16px;
    --hero-band-h: 164px;
    --fs-hero: 35px;
    --fs-intro: 26px;
    --fs-title: 36px;
    --fs-body: 16px;
    --fs-list: 15px;
    --space-block: 58px;
  }

  .topbar {
    padding-top: 14px;
    padding-bottom: 30px;
  }

  .mobile-nav {
    padding: 106px 22px 28px;
  }

  .mobile-nav .mobile-nav-close {
    top: 14px;
    right: 12px;
    font-size: 40px;
  }

  .mobile-nav a {
    font-size: calc(24px * var(--font-scale));
    margin-bottom: 20px;
  }

  .mobile-nav .btn-login {
    min-width: 220px;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding: 15px 30px;
  }

  .feature-orders {
    padding: 58px 0 56px;
  }

  .feature-orders-style {
    padding: 58px 0 56px;
  }

  .feature-plus-bottom-20 {
    padding-bottom: 96px;
  }

  .feature-orders-copy .orders-label {
    margin-bottom: 10px;
    font-size: calc(20px * var(--font-scale));
    font-weight: 500;
  }

  .feature-orders-copy .orders-handwrite {
    margin-bottom: 52px;
    font-size: calc(44px * var(--font-scale));
    line-height: calc(0.98em + 4px);
  }

  .feature-orders-shipped .feature-orders-copy .orders-handwrite {
    line-height: calc(0.98em + 6px);
  }

  .feature-orders-copy h2 {
    font-size: calc(44px * var(--font-scale));
    line-height: 0.98;
  }

  .feature-orders-copy .orders-description {
    margin-top: 4px;
    font-size: calc(17px * var(--font-scale));
  }

  .feature-orders-shipped .feature-orders-copy .orders-description {
    font-size: calc(22px * var(--font-scale));
  }

  .feature-orders-shipped .orders-list {
    margin-top: 52px;
  }

  .orders-list {
    margin-top: 16px;
    gap: 6px 0;
  }

  .orders-list li {
    font-size: calc(17px * var(--font-scale));
  }

  .feature-orders-shipped .orders-list li {
    font-size: calc(19px * var(--font-scale));
  }

  .more-features .mini-card .kicker {
    margin-bottom: 42px;
    font-size: calc(22px * var(--font-scale));
    line-height: 1.1;
  }

  .more-features .mini-card h3 {
    font-size: calc(34px * var(--font-scale));
    line-height: 0.98;
  }

  .more-features .mini-card > div > p:not(.kicker) {
    margin-top: 19px;
    font-size: calc(14px * var(--font-scale));
  }

  .more-features .tick-list.compact li {
    font-size: calc(12px * var(--font-scale));
  }

  .more-features {
    padding-bottom: 0;
  }

  .feature-more-start {
    padding-top: 0;
  }

  .feature-more-end {
    padding-top: 58px;
    padding-bottom: 16px;
  }

  .brand img {
    width: 138px;
  }

  .hero-frame {
    width: 48.4vw;
    max-width: none;
    transform: translateY(-6px) scale(1);
  }

  .hero-band {
    padding-bottom: 12px;
  }

  .store-badges img,
  .footer-store img {
    height: 30px;
  }

  .footer-store .footer-qrcode {
    height: 56px;
  }

  .intro {
    padding: 48px 0 72px;
  }

  .intro-title {
    font-size: calc(44px * var(--font-scale));
    max-width: 420px;
  }

  .intro-subtitle {
    margin-top: 20px;
    font-size: calc(20px * var(--font-scale));
    line-height: 1.28;
    max-width: 100%;
  }

  .intro-highlights {
    margin-top: 38px;
    gap: 20px 16px;
  }

  .intro-highlight {
    font-size: calc(20px * var(--font-scale));
    gap: 10px;
  }

  .intro-highlight-icon {
    width: 58px;
    height: 58px;
    border-radius: 21px;
  }

  .intro-highlight-icon i {
    font-size: 31px;
  }

  .feature,
  .more-features,
  .faq {
    padding: 58px 0;
  }

  .showcase {
    --showcase-pad-top: 30px;
    --showcase-pad-x: 18px;
    --showcase-pad-bottom: 20px;
    --showcase-blue-top-gap: var(--showcase-pad-top);
    padding: var(--showcase-pad-top) var(--showcase-pad-x)
      var(--showcase-pad-bottom);
    margin-bottom: 52px;
  }

  .tick-list {
    grid-template-columns: 1fr;
  }

  .mini-card {
    grid-template-columns: 184px 1fr;
  }

  .more-features .mini-card {
    grid-template-columns: 147px 1fr;
    row-gap: 14px;
    column-gap: 34px;
  }

  .mini-card h3 {
    font-size: calc(34px * var(--font-scale));
  }

  .proof {
    gap: 1.75rem;
    padding-bottom: 3.2rem;
  }

  .showcase-copy:not(.feature-orders-copy) h2 {
    font-size: calc(34px * var(--font-scale));
  }

  .showcase-copy:not(.feature-orders-copy) p {
    font-size: calc(16px * var(--font-scale));
  }

  .profit-card {
    padding: 24px 20px;
  }

  .profit-card h2 {
    font-size: calc(44px * var(--font-scale));
  }

  .profit-card li {
    font-size: calc(16px * var(--font-scale));
  }

  .quote-mark {
    font-size: calc(156px * var(--font-scale));
  }

  .quote-text {
    font-size: calc(24px * var(--font-scale));
  }

  .quote-author {
    font-size: calc(14px * var(--font-scale));
  }

  .testimonial-carousel-head {
    align-items: start;
    flex-direction: column;
  }

  .faq-head h2 {
    font-size: calc(44px * var(--font-scale));
  }

  .faq-item {
    padding: 0;
    border-radius: 0;
  }

  .faq-item summary {
    padding: 13px 28px 13px 0;
    font-size: calc(15px * var(--font-scale));
  }

  .faq-item p {
    font-size: calc(14px * var(--font-scale));
    margin-bottom: 13px;
  }

  .site-footer {
    padding: 38px 0 18px;
  }

  .site-footer h4 {
    font-size: calc(18px * var(--font-scale));
  }

  .site-footer p,
  .footer-links a {
    font-size: calc(14px * var(--font-scale));
  }

  .footer-copy {
    margin-top: 1.2rem;
    font-size: calc(13px * var(--font-scale));
  }
}
