:root {
  --surface: #ffffff;
  --text: #162839;
  --shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Public Sans", "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin-block: 0;
}

h1 {
  font-weight: 600;
}

h2,
h3 {
  font-weight: 500;
}

h4 {
  font-weight: 400;
}

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

img {
  max-width: 100%;
}

.page-shell {
  min-height: 100dvh;
}

.section-width {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding-left: clamp(1.75rem, 4vw, 4.5rem);
  padding-right: clamp(1.75rem, 4vw, 4.5rem);
}

.hero-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-shell-dark {
  background: rgb(16, 20, 21);
  color: #f7f7f7;
}

.hero-shell-dark .button-primary {
  background: #f7f7f7;
  border-color: #f7f7f7;
  color: #060606;
}

.hero-shell-dark .hero-title,
.hero-shell-dark .brand-wordmark-main,
.hero-shell-dark .topnav {
  color: #f7f7f7;
}

.hero-shell-dark .hero-app-dot {
  background: rgba(247, 247, 247, 0.92);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.5rem;
}

.brand-logo-footer {
  height: clamp(2.6rem, 4.2vw, 3.6rem);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark-main {
  color: #071B35;
}

.brand-wordmark-accent {
  color: #FF5A1F;
  font-weight: 400;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.4rem, 2.4vw, 3.2rem);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.hero-copy {
  width: min(100%, 1160px);
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

.hero-copy > .hero-title,
.hero-copy > .hero-heading-lockup,
.hero-copy > .hero-apps,
.hero-copy > .button,
.hero-copy > .hero-text-link {
  position: relative;
  z-index: 2;
}

.hero-ambient {
  --ambient-color-a: #f7f7f7;
  --ambient-color-b: rgba(247, 247, 247, 0.34);
  position: absolute;
  inset: -7rem -8rem 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.hero-ambient[data-ambient-theme="sell-more"] {
  --ambient-color-a: #f7f7f7;
  --ambient-color-b: rgba(247, 247, 247, 0.34);
}

.hero-ambient[data-ambient-theme="build-trust"] {
  --ambient-color-a: #f7f7f7;
  --ambient-color-b: rgba(247, 247, 247, 0.34);
}

.hero-ambient[data-ambient-theme="capture-attention"] {
  --ambient-color-a: #f7f7f7;
  --ambient-color-b: rgba(247, 247, 247, 0.34);
}

.hero-ambient[data-ambient-theme="do-more"] {
  --ambient-color-a: #f7f7f7;
  --ambient-color-b: rgba(247, 247, 247, 0.34);
}

.hero-ambient-symbol {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ambient-color-a);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  text-shadow:
    0 0 24px var(--ambient-color-b),
    0 0 64px var(--ambient-color-b);
  opacity: var(--ambient-opacity, 0.34);
  transform: translate3d(0, 0, 0) rotate(var(--ambient-rotate, 0deg)) scale(1);
  transition:
    opacity 150ms ease,
    color 280ms ease,
    text-shadow 280ms ease,
    transform 210ms cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: hero-ambient-float var(--ambient-speed, 8s) ease-in-out infinite alternate;
}

.hero-ambient.is-changing .hero-ambient-symbol {
  opacity: 0;
  transform: translate3d(0, 8px, 0) rotate(var(--ambient-rotate, 0deg)) scale(0.96);
}

.hero-ambient-symbol:nth-child(1) {
  left: 8%;
  top: 16%;
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  --ambient-opacity: 0.34;
  --ambient-rotate: -14deg;
  --ambient-speed: 8s;
}

.hero-ambient-symbol:nth-child(2) {
  left: 19%;
  top: 39%;
  font-size: clamp(1.1rem, 1.8vw, 2rem);
  --ambient-opacity: 0.28;
  --ambient-rotate: 12deg;
  --ambient-speed: 7s;
}

.hero-ambient-symbol:nth-child(3) {
  left: 10%;
  top: 74%;
  font-size: clamp(1.25rem, 2.2vw, 2.5rem);
  --ambient-opacity: 0.32;
  --ambient-rotate: 18deg;
  --ambient-speed: 9s;
}

.hero-ambient-symbol:nth-child(4) {
  left: 31%;
  top: 8%;
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  --ambient-opacity: 0.26;
  --ambient-rotate: -8deg;
  --ambient-speed: 7.5s;
}

.hero-ambient-symbol:nth-child(5) {
  left: 28%;
  top: 60%;
  font-size: clamp(1.4rem, 2.4vw, 2.8rem);
  --ambient-opacity: 0.2;
  --ambient-rotate: 16deg;
  --ambient-speed: 9.4s;
}

.hero-ambient-symbol:nth-child(6) {
  left: 46%;
  top: 29%;
  font-size: clamp(0.95rem, 1.4vw, 1.7rem);
  --ambient-opacity: 0.24;
  --ambient-rotate: -18deg;
  --ambient-speed: 7.2s;
}

.hero-ambient-symbol:nth-child(7) {
  right: 32%;
  top: 84%;
  font-size: clamp(1.1rem, 1.8vw, 2.1rem);
  --ambient-opacity: 0.26;
  --ambient-rotate: 22deg;
  --ambient-speed: 8.6s;
}

.hero-ambient-symbol:nth-child(8) {
  right: 18%;
  top: 17%;
  font-size: clamp(1.6rem, 2.8vw, 3.2rem);
  --ambient-opacity: 0.35;
  --ambient-rotate: 10deg;
  --ambient-speed: 8.8s;
}

.hero-ambient-symbol:nth-child(9) {
  right: 7%;
  top: 42%;
  font-size: clamp(1.15rem, 2vw, 2.35rem);
  --ambient-opacity: 0.26;
  --ambient-rotate: -16deg;
  --ambient-speed: 7.8s;
}

.hero-ambient-symbol:nth-child(10) {
  right: 11%;
  top: 72%;
  font-size: clamp(1.8rem, 3.2vw, 3.8rem);
  --ambient-opacity: 0.22;
  --ambient-rotate: 14deg;
  --ambient-speed: 10s;
}

.hero-ambient-symbol:nth-child(11) {
  left: 22%;
  top: 88%;
  font-size: clamp(0.95rem, 1.5vw, 1.7rem);
  --ambient-opacity: 0.24;
  --ambient-rotate: -10deg;
  --ambient-speed: 8.2s;
}

.hero-ambient-symbol:nth-child(12) {
  right: 29%;
  top: 46%;
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  --ambient-opacity: 0.2;
  --ambient-rotate: 20deg;
  --ambient-speed: 9.2s;
}

.hero-ambient-symbol:nth-child(13) {
  left: 3%;
  top: 50%;
  font-size: clamp(0.9rem, 1.4vw, 1.6rem);
  --ambient-opacity: 0.2;
  --ambient-rotate: 8deg;
  --ambient-speed: 8.4s;
}

.hero-ambient-symbol:nth-child(14) {
  right: 2%;
  top: 56%;
  font-size: clamp(0.9rem, 1.5vw, 1.7rem);
  --ambient-opacity: 0.23;
  --ambient-rotate: -12deg;
  --ambient-speed: 7.6s;
}

.hero-heading-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 3.2vw, 3.4rem);
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.hero-heading-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hero-heading-logo img {
  display: block;
  width: clamp(8rem, 14vw, 13.125rem);
  height: auto;
}

.hero-title {
  max-width: 15.3ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7.6vw, 7rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-title-rotating {
  max-width: 13.8ch;
  perspective: 800px;
}

.hero-title-static,
.hero-title-phrase {
  display: block;
}

.hero-title-static {
  color: rgba(247, 247, 247, 0.9);
  font-size: 0.58em;
  line-height: 1.04;
  margin-bottom: 0.06em;
  white-space: nowrap;
}

.hero-title-phrase {
  min-height: 1.08em;
  color: #f7f7f7;
  transform-origin: center 62%;
  will-change: opacity, transform, filter;
  transition:
    opacity 150ms ease,
    transform 210ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 210ms ease;
}

.hero-title-phrase.is-exiting {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-0.14em) rotateX(-34deg);
}

.hero-title-phrase.is-entering {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0.2em) rotateX(34deg);
}

.hero-title-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title-letter {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-apps {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin: 9rem 0 3.6rem;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(205, 216, 228, 0.42);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.34)),
    linear-gradient(180deg, rgba(207, 218, 230, 0.42), rgba(171, 184, 199, 0.28));
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.hero-apps::before {
  display: none;
}

.hero-apps::after {
  display: none;
}

.hero-dock-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 35px);
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.85rem;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.9), rgba(226, 231, 237, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18));
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(167, 176, 188, 0.12);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  color: rgba(22, 40, 57, 0.78);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 140ms ease, transform 180ms ease;
  z-index: 10;
}

.hero-app {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  width: 6rem;
  justify-content: end;
}

.hero-app:hover .hero-dock-label,
.hero-app:focus-visible .hero-dock-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-app-image {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.25rem;
  overflow: hidden;
  transform-origin: center bottom;
  transform: translateX(var(--dock-shift, 0px)) translateY(var(--dock-lift, 0px)) scale(var(--dock-scale, 1));
  transition: transform 90ms linear, filter 160ms ease, box-shadow 160ms ease;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.12));
  will-change: transform;
}

.hero-app-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.hero-app-soon .hero-app-image img {
  filter: blur(3.5px) saturate(0.92);
  transform: scale(1.02);
}

.hero-app-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #0f172a;
  opacity: 0;
  flex: 0 0 auto;
  transform: scale(0.7);
  transition: background 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.hero-app:hover .hero-app-dot,
.hero-app:focus-visible .hero-app-dot,
.hero-app.is-active .hero-app-dot {
  background: #000000;
  opacity: 1;
  transform: scale(1);
}

.hero-text-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: clamp(3rem, 5vw, 5rem) auto 0;
  color: rgba(247, 247, 247, 0.86);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  gap: 0.45rem;
  transition: color 160ms ease, opacity 160ms ease;
}

.hero-text-link:hover {
  color: #f7f7f7;
  opacity: 0.82;
}

.hero-text-link span {
  display: inline-block;
  animation: hero-text-link-arrow-bounce 10s ease-in-out infinite;
}

.hero-text-link:hover span {
  animation-play-state: running;
}

@keyframes hero-dock-glow-drift {
  0% {
    transform: translate3d(-1.5%, 0.8%, 0) scale(0.96);
  }

  50% {
    transform: translate3d(1.4%, -1.2%, 0) scale(1.02);
  }

  100% {
    transform: translate3d(0.8%, 1.1%, 0) scale(0.98);
  }
}

@keyframes hero-text-link-arrow-bounce {
  0%,
  6%,
  100% {
    transform: translateY(0);
  }

  2% {
    transform: translateY(4px);
  }

  4% {
    transform: translateY(4px);
  }
}

@keyframes hero-ambient-float {
  0% {
    transform: translate3d(-4px, 8px, 0) rotate(var(--ambient-rotate, 0deg)) scale(0.96);
  }

  50% {
    transform: translate3d(5px, -6px, 0) rotate(calc(var(--ambient-rotate, 0deg) + 5deg)) scale(1.04);
  }

  100% {
    transform: translate3d(8px, 5px, 0) rotate(calc(var(--ambient-rotate, 0deg) - 4deg)) scale(1);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0 2.1rem;
  border: 1px solid #0f2234;
  border-radius: 1.1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    opacity 160ms ease,
    box-shadow 160ms ease;
}

.button-primary {
  background: #162839;
  border-color: #162839;
  color: #f7f7f7;
}

.button:hover {
  opacity: 0.9;
}

.section-two {
  background: #f7f7f7;
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-top: 1px solid #ececec;
}

.section-two-intro {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.section-two-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-two-copy {
  max-width: 52rem;
  margin: 1.2rem auto 0;
  color: rgba(22, 40, 57, 0.82);
  font-size: 1.16rem;
  line-height: 1.75;
}

.surface-panel {
  padding: 2.4rem 2rem;
  border-radius: 2rem;
  background: var(--surface-panel-bg, #101415);
  color: var(--surface-panel-color, #f7f7f7);
}

.section-two-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.section-two-stat {
  padding: 1.6rem 1.25rem;
  text-align: center;
}

.section-two-stat h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #f7f7f7;
}

.section-two-stat p {
  margin: 0.9rem 0 0;
  color: rgba(247, 247, 247, 0.82);
  line-height: 1.7;
}

.app-switcher {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(2.4rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(3rem, 5vw, 4.8rem);
}

.app-switcher-dock {
  flex-direction: column;
  align-self: center;
  margin: 0;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  width: auto;
  max-height: none;
  border-color: rgba(247, 247, 247, 0.1);
  background:
    linear-gradient(180deg, rgba(45, 49, 48, 0.96), rgba(16, 20, 21, 0.92)),
    linear-gradient(180deg, rgba(247, 247, 247, 0.08), rgba(247, 247, 247, 0.02));
  box-shadow:
    0 24px 62px rgba(16, 20, 21, 0.22),
    inset 0 1px 0 rgba(247, 247, 247, 0.12);
  z-index: 5;
}

.app-switcher-dock .hero-app {
  flex-direction: row;
  width: auto;
  height: 6rem;
}

.app-switcher-dock .hero-app-image {
  transform-origin: left center;
}

.app-switcher-dock .hero-dock-label {
  left: calc(100% + 2.25rem);
  bottom: auto;
  top: 50%;
  transform: translateX(-10px) translateY(-50%);
}

.app-switcher-dock .hero-app:hover .hero-dock-label,
.app-switcher-dock .hero-app:focus-visible .hero-dock-label {
  transform: translateX(0) translateY(-50%);
}

.app-switcher-dock .hero-app-dot {
  order: -1;
  background: rgba(247, 247, 247, 0.42);
  transition: background 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.app-switcher-dock .hero-app.is-active .hero-app-image {
  box-shadow: none;
}

.app-switcher-dock .hero-app.is-active .hero-app-dot {
  background: #f7f7f7;
  opacity: 1;
  transform: scale(1.25);
}

.app-switcher-dock .hero-app:hover .hero-app-dot,
.app-switcher-dock .hero-app:focus-visible .hero-app-dot {
  background: #f7f7f7;
  opacity: 1;
  transform: scale(1.25);
}

.app-switcher-panel {
  appearance: none;
  width: 100%;
  min-height: 6.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 20, 21, 0.08);
  border-radius: 1.05rem;
  background: rgba(232, 234, 235, 0.82);
  color: #101415;
  box-shadow:
    0 12px 34px rgba(16, 20, 21, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  display: grid;
  grid-template-columns: 4.15rem minmax(0, 1fr) 2.2rem;
  gap: 1rem;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.app-switcher-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 20, 21, 0.14);
  background: rgba(240, 241, 242, 0.94);
}

.app-switcher-panel.is-active {
  background: rgba(45, 49, 48, 0.96);
  border-color: rgba(247, 247, 247, 0.08);
  color: #f7f7f7;
  box-shadow:
    0 24px 62px rgba(16, 20, 21, 0.24),
    inset 0 1px 0 rgba(247, 247, 247, 0.12);
  transform: translateY(-2px);
}

.app-switcher-panel img {
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 0.85rem;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(16, 20, 21, 0.1);
}

.app-switcher-panel-copy,
.app-switcher-panel-copy small,
.app-switcher-panel-copy strong {
  display: block;
  min-width: 0;
}

.app-switcher-panel-copy small {
  color: rgba(16, 20, 21, 0.54);
  font-size: 0.95rem;
  line-height: 1.2;
}

.app-switcher-panel-copy strong {
  margin-top: 0.2rem;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.app-switcher-panel.is-active .app-switcher-panel-copy small {
  color: rgba(247, 247, 247, 0.58);
}

.app-switcher-panel-arrow {
  color: currentColor;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  line-height: 0.8;
  opacity: 0.84;
}

.app-switcher-content {
  position: relative;
  min-height: clamp(28rem, 34vw, 36rem);
}

.app-switcher-pane {
  display: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  min-height: inherit;
}

.app-switcher-pane.is-active {
  display: grid;
  animation: app-switcher-fade 260ms ease both;
}

.app-switcher-copy {
  max-width: 33rem;
}

.app-switcher-copy > p:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  color: rgba(16, 20, 21, 0.68);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-switcher-copy > p:first-child::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #FF5A1F;
  box-shadow: 0 0 26px rgba(255, 90, 31, 0.35);
}

.app-switcher-copy h3 {
  margin: 0;
  color: #101415;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.app-switcher-copy > p:nth-of-type(n + 2) {
  margin: 1.1rem 0 0;
  color: rgba(16, 20, 21, 0.8);
  font-size: 1.08rem;
  line-height: 1.72;
}

.app-switcher-copy > p:nth-of-type(n + 3) {
  margin-top: 0.7rem;
}

.app-switcher-copy .app-showcase-link-row {
  margin-top: 1.45rem;
}

.app-switcher-visual {
  min-height: clamp(25rem, 32vw, 35rem);
  border: 1px solid rgba(16, 20, 21, 0.08);
  border-radius: 2rem;
  background: #f1f2f0;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow:
    0 22px 58px rgba(16, 20, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.app-switcher-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.app-switcher-pane-cursor-fx .app-switcher-visual {
  background: linear-gradient(135deg, #C5F08C 0%, #97D542 100%);
}

.app-switcher-pane-review-control .app-switcher-visual {
  background: linear-gradient(135deg, #E2E8F0 0%, #BFD7FF 100%);
}

.app-switcher-pane-coming-soon .app-switcher-visual {
  background: linear-gradient(135deg, #DBEAFE 0%, #DDD6FE 100%);
}

.app-switcher-pane-review-control .app-switcher-visual img,
.app-switcher-pane-coming-soon .app-switcher-visual img {
  width: min(62%, 21rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(16, 20, 21, 0.18));
}

@keyframes app-switcher-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2.5rem);
  margin-top: 3.25rem;
}

.app-showcase-item {
  display: grid;
  gap: 1.45rem;
}

.app-showcase-card {
  min-height: clamp(24rem, 30vw, 31rem);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  display: block;
  background: #101415;
  box-shadow:
    0 24px 70px rgba(16, 20, 21, 0.12),
    inset 0 1px 0 rgba(247, 247, 247, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.app-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 84px rgba(16, 20, 21, 0.18),
    inset 0 1px 0 rgba(247, 247, 247, 0.16);
}

.app-showcase-card::before {
  display: none;
}

.app-showcase-visual,
.app-showcase-toast {
  position: relative;
  z-index: 1;
}

.app-showcase-content {
  display: grid;
  gap: 0.9rem;
  padding: 0 0.15rem;
}

.app-showcase-content h2 {
  max-width: 13ch;
  margin: 0;
  color: #101415;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.35vw, 2.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.app-showcase-content p {
  max-width: 27rem;
  margin: 0;
  color: rgba(16, 20, 21, 0.82);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.66;
}

.app-showcase-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 0.25rem;
}

.app-showcase-link {
  display: inline-flex;
  width: fit-content;
  color: rgba(16, 20, 21, 0.82);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.app-showcase-link:hover {
  opacity: 1;
}

.app-showcase-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #050505;
}

.app-showcase-background {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.app-showcase-card-review-control .app-showcase-background,
.app-showcase-card-cursor-fx .app-showcase-background {
  padding: 22%;
  object-fit: contain;
}

.app-showcase-card-review-control .app-showcase-visual {
  background: linear-gradient(135deg, #122032 0%, #36516f 52%, #101415 100%);
}

.app-showcase-card-cursor-fx .app-showcase-visual {
  background: linear-gradient(135deg, #17201a 0%, #315530 48%, #101415 100%);
}

.app-showcase-toast {
  position: absolute;
  left: 50%;
  top: 48%;
  bottom: auto;
  transform: translate(-50%, -50%);
  align-self: center;
  width: min(calc(100% - 2rem), 23rem);
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.8rem;
  opacity: 1;
  border: 1px solid rgba(247, 247, 247, 0.2);
  border-radius: 0.85rem;
  background: rgba(16, 20, 21, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
}

.app-showcase-toast img {
  width: 4rem;
  height: 4rem;
  border-radius: 0.7rem;
  object-fit: cover;
}

.app-showcase-toast small,
.app-showcase-toast strong {
  display: block;
}

.app-showcase-toast small {
  color: rgba(247, 247, 247, 0.7);
  font-size: 0.82rem;
  line-height: 1.2;
}

.app-showcase-toast strong {
  margin-top: 0.2rem;
  color: #f7f7f7;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.merchant-benefits-section {
  background: #f7f7f7;
  padding: 0 0 7rem;
}

.merchant-benefits-stack {
  display: grid;
  gap: 4.5rem;
}

.merchant-benefit-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}

.merchant-benefit-copy {
  max-width: 34rem;
}

.merchant-benefits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
  color: rgba(16, 20, 21, 0.74);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merchant-benefits-eyebrow span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #FF5A1F;
  box-shadow: 0 0 26px rgba(255, 90, 31, 0.35);
}

.merchant-benefit-copy h2 {
  margin: 0;
  color: #101415;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.merchant-benefit-copy > p:last-child {
  margin: 1.6rem 0 0;
  color: rgba(16, 20, 21, 0.78);
  font-size: 1.12rem;
  line-height: 1.76;
}

.merchant-benefits-visual {
  width: calc(100% - 100px);
  margin-left: 50px;
  margin-right: 50px;
  min-height: clamp(31rem, 42vw, 39rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 90, 31, 0.18), transparent 24%),
    radial-gradient(circle at 76% 74%, rgba(139, 92, 246, 0.24), transparent 28%),
    linear-gradient(180deg, #050505 0%, #101415 100%);
  position: relative;
  overflow: visible;
  box-shadow:
    0 22px 70px rgba(16, 20, 21, 0.18),
    inset 0 1px 0 rgba(247, 247, 247, 0.08);
}

.merchant-benefit-pricing .merchant-benefits-visual {
  background:
    radial-gradient(circle at 24% 24%, rgba(139, 92, 246, 0.24), transparent 25%),
    radial-gradient(circle at 78% 70%, rgba(6, 182, 212, 0.22), transparent 30%),
    linear-gradient(180deg, #050505 0%, #101415 100%);
}

.merchant-benefit-feedback .merchant-benefits-visual {
  background:
    radial-gradient(circle at 22% 26%, rgba(151, 213, 66, 0.2), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(255, 90, 31, 0.2), transparent 28%),
    linear-gradient(180deg, #050505 0%, #101415 100%);
}

.merchant-benefits-orbit {
  position: absolute;
  border: 1px solid rgba(247, 247, 247, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

.merchant-benefits-orbit-one {
  width: 42rem;
  height: 42rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.merchant-benefits-orbit-two {
  width: 28rem;
  height: 28rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.merchant-benefits-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58%, 21rem);
  min-width: 17rem;
  min-height: 28rem;
  padding: 1.1rem;
  border: 1px solid rgba(247, 247, 247, 0.16);
  border-radius: 2.5rem;
  background:
    linear-gradient(180deg, rgba(247, 247, 247, 0.96), rgba(226, 231, 237, 0.92));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 0 0.55rem rgba(247, 247, 247, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
}

.merchant-benefits-phone-bar {
  width: 4.4rem;
  height: 0.45rem;
  margin: 0.1rem auto 1.5rem;
  border-radius: 999px;
  background: rgba(16, 20, 21, 0.18);
}

.merchant-benefits-phone-card {
  border-radius: 1.25rem;
  background: #ffffff;
  color: #101415;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.merchant-benefits-phone-card span,
.merchant-benefits-floating-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(16, 20, 21, 0.7);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.merchant-benefits-phone-card strong,
.merchant-benefits-floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.merchant-benefits-phone-card p {
  margin: 0.85rem 0 0;
  color: rgba(16, 20, 21, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.merchant-benefits-phone-card-main {
  padding: 1.25rem;
}

.merchant-benefits-phone-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1rem 0;
}

.merchant-benefits-phone-row span {
  min-height: 5.2rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(191, 215, 255, 0.9), rgba(233, 213, 255, 0.9));
}

.merchant-benefits-phone-row span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(197, 240, 140, 0.9), rgba(151, 213, 66, 0.9));
}

.merchant-benefits-phone-row span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(139, 92, 246, 0.55));
}

.merchant-benefits-phone-card-alt {
  padding: 1.15rem;
}

.merchant-benefits-floating-card {
  position: absolute;
  width: min(28rem, 62%);
  padding: 1rem;
  border: 1px solid rgba(247, 247, 247, 0.14);
  border-radius: 1.35rem;
  background: rgba(16, 20, 21, 0.78);
  color: #f7f7f7;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  z-index: 2;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.merchant-benefits-floating-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: rgba(247, 247, 247, 0.92);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.merchant-benefits-floating-copy {
  min-width: 0;
}

.merchant-benefits-floating-card span {
  color: rgba(247, 247, 247, 0.7);
  font-size: 1rem;
  font-weight: 400;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.08em;
}

.merchant-benefits-floating-card strong {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.22;
  white-space: nowrap;
}

.merchant-benefits-floating-card-left {
  left: -45px;
  bottom: 16%;
}

.merchant-benefits-floating-card-right {
  right: -45px;
  top: 18%;
}

.site-footer {
  background: rgb(16, 20, 21);
  color: #f7f7f7;
  padding: 2.4rem 0 2.8rem;
}

.site-footer .brand-wordmark-main {
  color: #f7f7f7;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.site-footer-links a,
.site-footer-meta {
  color: rgba(247, 247, 247, 0.72);
}

.site-footer-meta {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}

.app-page {
  min-height: 100dvh;
  background: #ffffff;
}

.app-hero-shell {
  background: var(--app-hero-bg, rgb(16, 20, 21));
  color: #101415;
}

.app-hero-shell .brand-mark {
  background: #101415;
}

.app-hero-shell .brand-mark::after {
  background: var(--app-hero-bg, rgb(16, 20, 21));
}

.app-hero-shell .brand-name,
.app-hero-shell .topnav {
  color: #101415;
}

.app-hero-shell .button-primary {
  background: #101415;
  border-color: #101415;
  color: #f7f7f7;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.app-hero-copy {
  max-width: 46rem;
}

.app-hero-eyebrow,
.app-cta-eyebrow {
  margin: 0 0 1rem;
  color: rgba(16, 20, 21, 0.52);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #101415;
}

.app-hero-text {
  max-width: 39rem;
  margin: 1.35rem 0 0;
  color: rgba(16, 20, 21, 0.82);
  font-size: 1.15rem;
  line-height: 1.8;
}

.app-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.app-hero-secondary {
  border-color: #f7f7f7;
  background: #f7f7f7;
  color: #101415;
}

.app-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-hero-visual img {
  width: min(100%, 22rem);
  height: auto;
  display: block;
  border: 1px solid rgba(16, 20, 21, 0.16);
  border-radius: 2.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  filter: drop-shadow(0 20px 55px rgba(0, 0, 0, 0.28));
}

.app-features-section {
  background: #ffffff;
  padding: 6rem 0 6.5rem;
}

.app-features-intro {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.app-features-intro h2 {
  margin: 0;
  color: #101415;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.app-features-intro p {
  margin: 1rem 0 0;
  color: rgba(16, 20, 21, 0.8);
  font-size: 1.08rem;
  line-height: 1.8;
}

.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.app-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: 1.8rem 0;
}

.app-feature-row-reversed .app-feature-copy {
  order: 2;
}

.app-feature-row-reversed .app-feature-shot {
  order: 1;
}

.app-feature-copy {
  padding-right: clamp(0rem, 2vw, 2rem);
  align-self: center;
}

.app-feature-index {
  margin: 0 0 0.9rem;
  color: rgba(16, 20, 21, 0.4);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.app-feature-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: rgba(16, 20, 21, 0.68);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-feature-label::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #FF5A1F;
  box-shadow: 0 0 26px rgba(255, 90, 31, 0.35);
}

.app-feature-copy h3 {
  margin: 0;
  color: #101415;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.app-feature-copy > p:last-child {
  margin: 1rem 0 0;
  color: rgba(16, 20, 21, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.app-feature-shot {
  min-height: 22rem;
  padding: 1.6rem;
  border: 1px solid rgba(16, 20, 21, 0.08);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66)),
    var(--app-hover-tint, rgba(16, 20, 21, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 45px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.app-feature-main-image {
  width: clamp(6.5rem, 12vw, 9rem);
  height: clamp(6.5rem, 12vw, 9rem);
  object-fit: contain;
  align-self: center;
  margin: auto;
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.16));
}

.app-feature-shot span {
  color: rgba(16, 20, 21, 0.48);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}

.app-feature-shot-media {
  padding: 0;
  background: #dfe7dc;
}

.app-feature-shot-media .app-feature-main-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  align-self: stretch;
  margin: 0;
  filter: none;
}

.app-feature-shot-contain {
  background: #f7faf4;
}

.app-feature-shot-contain .app-feature-main-image {
  object-fit: contain;
}

.app-feature-overlay-image {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  width: 67%;
  height: auto;
  border-radius: 10px;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 38px rgba(15, 23, 42, 0.16));
  z-index: 2;
}

.app-cta-section {
  padding: 0 0 6.5rem;
  background: #ffffff;
}

.app-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.app-cta-panel .app-cta-eyebrow,
.app-cta-panel h2,
.app-cta-panel > div > p:last-child {
  color: #f7f7f7;
}

.app-cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.app-cta-panel > div > p:last-child {
  max-width: 42rem;
  margin: 0.95rem 0 0;
  color: rgba(247, 247, 247, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.app-cta-panel > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-cta-panel .app-cta-eyebrow {
  color: rgba(247, 247, 247, 0.56);
}

.app-cta-panel .button-primary {
  background: #f7f7f7;
  border-color: #f7f7f7;
  color: #060606;
}

.app-related-section {
  padding: 0 0 6.5rem;
  background: #ffffff;
}

.app-related-intro {
  max-width: 54rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.app-related-intro h2 {
  margin: 0;
  color: #101415;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.app-related-intro p {
  max-width: 48rem;
  margin: 0.85rem auto 0;
  color: rgba(16, 20, 21, 0.78);
  font-size: 1.12rem;
  line-height: 1.65;
}

.app-related-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.app-related-card {
  flex: 0 1 calc((100% - 2.4rem) / 3);
  min-width: min(100%, 20rem);
  min-height: 8.5rem;
  padding: 1.1rem;
  border-radius: 1.35rem;
  background: #f7f7f7;
  color: #101415;
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.app-related-card:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.app-related-card img {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 1rem;
  object-fit: cover;
}

.app-related-card span,
.app-related-card strong,
.app-related-card small {
  display: block;
}

.app-related-card strong {
  color: #101415;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.15;
}

.app-related-card small {
  display: -webkit-box;
  margin-top: 0.55rem;
  color: rgba(16, 20, 21, 0.74);
  font-size: 0.96rem;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-cta-section {
  padding: 0 0 6.5rem;
  background: #f7f7f7;
}

.home-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.home-cta-panel-blobs {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #1e293b 0%, #1b2c40 100%);
}

.home-cta-panel-blobs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, rgba(139, 92, 246, 0.82), transparent 48%),
    radial-gradient(circle at 72% 70%, rgba(6, 182, 212, 0.72), transparent 46%),
    radial-gradient(circle at 46% 82%, rgba(245, 158, 11, 0.48), transparent 42%),
    radial-gradient(circle at 58% 28%, rgba(233, 213, 255, 0.62), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  filter: blur(52px);
  transform: scale(1.08) translate3d(0, 0, 0);
  transform-origin: center;
  animation: home-cta-blobs-float 22s ease-in-out infinite alternate;
  z-index: -2;
}

.home-cta-panel-blobs::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.18), transparent 38%),
    radial-gradient(circle at 72% 66%, rgba(255, 255, 255, 0.12), transparent 36%),
    radial-gradient(circle at 54% 50%, rgba(255, 255, 255, 0.1), transparent 44%);
  filter: blur(38px);
  transform: translate3d(0, 0, 0);
  animation: home-cta-blobs-float-secondary 16s ease-in-out infinite alternate;
  z-index: -1;
}

.home-cta-panel > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-cta-eyebrow {
  margin: 0 0 1rem;
  color: #f7f7f7;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-cta-panel h2 {
  color: #f7f7f7;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.home-cta-panel p:last-child {
  max-width: 42rem;
  margin: 0.95rem 0 0;
  color: rgba(247, 247, 247, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.home-cta-panel .button-primary {
  background: #f7f7f7;
  border-color: #f7f7f7;
  color: #060606;
}

@keyframes home-cta-blobs-float {
  0% {
    transform: scale(1.08) translate3d(-2%, -1%, 0);
  }

  50% {
    transform: scale(1.14) translate3d(2%, 2%, 0);
  }

  100% {
    transform: scale(1.1) translate3d(1%, -2%, 0);
  }
}

@keyframes home-cta-blobs-float-secondary {
  0% {
    transform: translate3d(-1.5%, 1%, 0) scale(1);
  }

  50% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(1%, 1.5%, 0) scale(1.02);
  }
}

.privacy-hero {
  min-height: auto;
}

.privacy-hero-copy {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.privacy-title {
  max-width: 12ch;
  color: #f7f7f7;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.privacy-copy {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: rgba(247, 247, 247, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.privacy-section {
  background: #ffffff;
  padding: clamp(5rem, 8vw, 7.5rem) 0 clamp(6rem, 9vw, 8.5rem);
}

.privacy-policy {
  max-width: 1160px;
  display: grid;
  gap: clamp(2.25rem, 4vw, 4rem);
}

.privacy-summary,
.privacy-jump-list {
  border-radius: 1.4rem;
  background: #f7f7f7;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 0;
}

.privacy-summary p {
  margin: 0;
  color: rgba(16, 20, 21, 0.82);
  font-size: 0.98rem;
  line-height: 1.5;
}

.privacy-summary strong {
  color: #101415;
  font-weight: 500;
}

.privacy-summary a,
.privacy-block a {
  color: #101415;
  text-decoration: underline;
  text-decoration-color: rgba(255, 90, 31, 0.5);
  text-underline-offset: 0.18em;
  transition: text-decoration-color 160ms ease;
}

.privacy-summary a:hover,
.privacy-block a:hover {
  text-decoration-color: #FF5A1F;
}

.privacy-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 0;
}

.privacy-jump-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  color: rgba(16, 20, 21, 0.76);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 400;
  box-shadow: inset 0 0 0 1px rgba(16, 20, 21, 0.06);
  transition:
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.privacy-jump-list a:hover {
  color: #101415;
  box-shadow: inset 0 0 0 1px rgba(16, 20, 21, 0.14);
  transform: translateY(-1px);
}

.privacy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2.5rem);
}

.privacy-block {
  scroll-margin-top: 2rem;
}

.privacy-block-wide {
  grid-column: 1 / -1;
}

.privacy-app-block {
  padding: clamp(1.35rem, 2.2vw, 1.85rem);
  border-radius: 1.4rem;
  background: #f7f7f7;
}

.privacy-block h2 {
  color: #101415;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.privacy-block h3 {
  margin: 1.45rem 0 0;
  color: #101415;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.privacy-block p {
  margin: 0.95rem 0 0;
  color: rgba(16, 20, 21, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.privacy-block code {
  padding: 0.12rem 0.32rem;
  border-radius: 0.38rem;
  background: rgba(16, 20, 21, 0.08);
  color: #101415;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .surface-panel {
    padding: 2rem 1.5rem;
  }

  .app-showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .app-switcher-dock {
    flex-direction: row;
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }

  .app-switcher-dock .hero-app {
    flex-direction: column;
    width: 6rem;
    height: auto;
  }

  .app-switcher-dock .hero-app-image {
    transform-origin: center bottom;
  }

  .app-switcher-dock .hero-app-dot {
    order: initial;
  }

  .app-switcher-dock .hero-dock-label {
    left: 50%;
    bottom: calc(100% + 35px);
    top: auto;
    transform: translateX(-50%) translateY(10px);
  }

  .app-switcher-dock .hero-app:hover .hero-dock-label,
  .app-switcher-dock .hero-app:focus-visible .hero-dock-label {
    transform: translateX(-50%) translateY(0);
  }

  .app-switcher-pane {
    grid-template-columns: 1fr;
  }

  .app-switcher-visual {
    min-height: 25rem;
  }

  .app-showcase-card {
    min-height: 30rem;
    padding: 1.6rem;
  }

  .app-showcase-visual {
    width: 100%;
    min-height: 100%;
  }

  .merchant-benefit-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .merchant-benefit-copy {
    max-width: 46rem;
  }

  .merchant-benefits-visual {
    width: calc(100% - 70px);
    margin-left: 35px;
    margin-right: 35px;
    min-height: 34rem;
  }

  .app-hero {
    grid-template-columns: 1fr;
    padding-bottom: 5rem;
  }

  .app-hero-visual {
    justify-content: flex-start;
  }

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

  .app-feature-row-reversed .app-feature-copy,
  .app-feature-row-reversed .app-feature-shot {
    order: initial;
  }

  .app-feature-copy {
    padding-right: 0;
  }

  .app-feature-shot {
    min-height: 18rem;
  }

  .app-related-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .topbar {
    padding-top: 1.4rem;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .brand-logo {
    height: clamp(2.15rem, 8vw, 2.75rem);
  }

  .brand-logo-footer {
    height: clamp(2.3rem, 9vw, 3rem);
  }

  .brand-wordmark {
    font-size: clamp(1rem, 3.8vw, 1.24rem);
  }

  .hero-heading-lockup {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-heading-logo img {
    width: clamp(6.5rem, 32vw, 9.5rem);
  }

  .hero-title {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
    margin: 0 auto;
  }

  .hero-ambient {
    inset: -4rem -1rem 1rem;
  }

  .hero-ambient-symbol:nth-child(n + 9) {
    display: none;
  }

  .hero-apps {
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 5.8rem;
    width: 100%;
    padding: 1rem;
  }

  .app-switcher-dock {
    width: fit-content;
    margin: 0 auto;
  }

  .hero-dock-label {
    display: none;
  }

  .hero-app-image {
    width: 4.25rem;
    height: 4.25rem;
  }

  .hero-app {
    width: 5.1rem;
  }

  .button {
    width: 100%;
    padding: 0 1.5rem;
    font-size: 1.05rem;
  }

  .app-hero {
    padding-top: 3rem;
  }

  .app-hero-title {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .app-hero-text,
  .app-features-intro p,
  .app-feature-copy > p:last-child,
  .app-related-intro p,
  .app-cta-panel > div > p:last-child {
    font-size: 1rem;
    line-height: 1.7;
  }

  .app-related-section {
    padding-bottom: 5rem;
  }

  .app-related-intro {
    margin-bottom: 2rem;
    text-align: left;
  }

  .app-related-card {
    grid-template-columns: 4.75rem minmax(0, 1fr);
    min-height: 7.6rem;
    padding: 0.95rem;
  }

  .app-related-card img {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 0.85rem;
  }

  .app-feature-row {
    padding: 1.4rem 0;
  }

  .app-feature-copy h3 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .app-feature-shot {
    min-height: 15rem;
    padding: 1.2rem;
  }

  .app-switcher {
    margin-top: 3rem;
  }

  .app-switcher-dock {
    width: fit-content;
    max-width: 100%;
  }

  .app-switcher-content {
    min-height: auto;
  }

  .app-switcher-copy h3 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .app-switcher-copy > p:nth-of-type(2) {
    font-size: 1rem;
    line-height: 1.68;
  }

  .app-switcher-visual {
    min-height: 20rem;
    border-radius: 1.4rem;
  }

  .app-showcase-card {
    min-height: 31rem;
    padding: 1.6rem;
    border-radius: 1.35rem;
  }

  .app-showcase-visual {
    width: 100%;
    min-height: 100%;
  }

  .app-showcase-toast {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .app-showcase-toast img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .merchant-benefits-section {
    padding-bottom: 5.5rem;
  }

  .merchant-benefits-stack {
    gap: 3.5rem;
  }

  .merchant-benefits-eyebrow {
    margin-bottom: 1.4rem;
  }

  .merchant-benefits-visual {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 30rem;
    border-radius: 1.5rem;
    overflow: hidden;
  }

  .merchant-benefits-phone {
    width: 72%;
    min-width: 14.5rem;
    min-height: 27rem;
    border-radius: 2rem;
  }

  .merchant-benefits-floating-card {
    width: 11.5rem;
    padding: 0.85rem;
  }

  .merchant-benefits-floating-card-left {
    left: 4%;
    bottom: 9%;
  }

  .merchant-benefits-floating-card-right {
    right: 4%;
    top: 9%;
  }
}
