@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter/Inter-VariableFont_opsz,wght.woff2") format("woff2"), url("../assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit/Outfit-VariableFont_wght.woff2") format("woff2"), url("../assets/fonts/Outfit/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #1F2A44;
  font-family: "Outfit", sans-serif;
  font-size: 1.2em;
}
body * {
  scroll-margin-top: 90px;
}

main {
  padding-top: 90px;
}

.bg-canvas {
  z-index: -1;
  position: absolute;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 5;
  height: 90px;
  background-color: #151d2f;
  color: #FFFFFF;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header * {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
@media (min-width: 992px) {
  header {
    padding: 25px 70px;
    flex-wrap: nowrap;
    gap: 100px;
  }
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 12px 20px;
  background: #151d2f;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 1rem;
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 0 10vw;
}

h1, h2, h3, h4, h5, .button {
  font-family: "Inter", sans-serif;
}

h1 {
  font-size: 2.5em;
}
@media (min-width: 576px) {
  h1 {
    font-size: 3em;
  }
}

h2 {
  font-size: 2em;
}
@media (min-width: 576px) {
  h2 {
    font-size: 2.3em;
  }
}

h3 {
  font-size: 1.8em;
}
@media (min-width: 576px) {
  h3 {
    font-size: 2em;
  }
}

.h3-reserve-space {
  min-height: 3em;
}

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

p {
  font-size: 22px;
  text-wrap: balance;
}

hr {
  width: 96px;
  height: 4px;
  background-color: #FF9F4C;
  border: none;
  margin-top: 5px;
}

.tweecore-logo-header {
  height: 40px;
}
.tweecore-logo-header > svg {
  height: 100%;
  width: 170px;
}
@media (min-width: 1200px) {
  .tweecore-logo-header > svg {
    width: auto;
  }
}

.tweecore-logo-footer > svg {
  width: 100%;
  height: 100%;
  max-width: 200px;
}

.padding-md {
  padding: 12px;
}

.header-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px 30px 20px;
  background-color: #151d2f;
  flex-direction: column;
}
.header-nav.open {
  display: flex;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}
.header-nav a {
  padding: 14px 0;
  border-bottom: 1px solid #2A3344;
}
.header-nav a:last-child {
  border-bottom: none;
}
@media (min-width: 992px) {
  .header-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    padding: 0;
  }
  .header-nav a {
    padding: 0;
    border-bottom: none;
    text-align: center;
  }
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 992px) {
  .burger-btn {
    display: none;
  }
}

.above-the-fold {
  min-height: calc(100vh - 90px);
}

.hero-section {
  gap: 20px;
  text-wrap: balance;
  padding: 10px 10vw 30px;
  position: relative;
}
@media (min-width: 576px) {
  .hero-section span {
    text-wrap: nowrap;
  }
}
.hero-section p {
  margin-bottom: 20px;
  font-weight: 200;
  max-width: 800px;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 90px 10vw 90px;
  }
}

.accent {
  color: #F06C00;
}

.accent-soft {
  color: #FF9F4C;
}

.container-horizontal {
  display: flex;
  gap: 20px 40px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .container-horizontal {
    flex-direction: row;
  }
}

.container-horizontal-lg {
  display: flex;
  gap: 20px 40px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .container-horizontal-lg {
    flex-direction: row;
  }
}

.button {
  font-size: 19px;
  font-weight: bold;
  padding: 15px 23px;
  border-radius: 6px;
  color: #FFFFFF;
  background-color: #2A3344;
  border: 1px solid #5d5e69;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.button:hover {
  background-color: rgb(57.5781818182, 69.9163636364, 93.2218181818);
}
.button:active {
  transform: scale(0.97);
}
.button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.button-primary {
  border: none;
  background-color: #F06C00;
  box-shadow: 0 5px 15px -5px #FF7A1A;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.button-primary:hover {
  background-color: #FF7A1A;
  box-shadow: 0 5px 20px -5px #FF7A1A;
}
.button-primary:active {
  transform: scale(0.97);
}

.button-secondary {
  border: 1px solid #FFFFFF;
  background-color: #151d2f;
}
.button-secondary:hover {
  background-color: #1F2A44;
}

.center-text {
  text-align: center;
}

.border-radius-sm {
  border-radius: 8px;
}

.highlight-span {
  color: #F06C00;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: bold;
}

.section-grey {
  background-color: #F9FAFB;
  color: #1F2A44;
  padding: 45px 10vw;
  justify-content: flex-start;
}
.section-grey > h3 {
  text-align: center;
}
@media (min-width: 768px) {
  .section-grey {
    padding: 45px 10vw 100px;
  }
}

.card-area-thirds {
  margin-top: 40px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .card-area-thirds {
    flex-direction: row;
  }
  .card-area-thirds > .card-wrapper {
    width: calc(50% - 15px);
  }
}
@media (min-width: 992px) {
  .card-area-thirds > .card-wrapper {
    width: calc(33% - 20px);
  }
}

.card-wrapper {
  width: 100%;
}

.card {
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 0 3px -2px #5d5e69;
  min-height: 100%;
}
.card > img {
  width: 50px;
}
.card > h4 {
  margin: 12px 0;
}
.card > p {
  font-size: 19px;
  color: #2A3344;
}

.section-white-2 {
  background-color: #FFFFFF;
  color: #1F2A44;
  padding: 60px 10vw;
}
@media (min-width: 768px) {
  .section-white-2 {
    padding: 100px 10vw;
  }
}
.section-white-2 > div {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .section-white-2 > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.section-white-2 > div h3 {
  line-height: 1.1em;
}
.section-white-2 > div > div > p {
  margin-bottom: 40px;
  color: #4B5563;
}

.badge {
  position: absolute;
  inset: auto auto -15px auto;
  padding: 15px 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 18px -5px #aaa;
  text-wrap: nowrap;
}
@media (min-width: 768px) {
  .badge {
    inset: auto auto -15px 0;
  }
}
.badge img {
  max-width: 50px;
}
.badge p {
  color: #767d8d;
  font-size: 19px;
}

.badge-right {
  inset: auto 0 10px auto;
}

.phase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 15px;
  margin-top: 20px;
}
.phase p {
  font-size: 19px;
  color: #4B5563;
}
.phase:last-child > .circled-number {
  background-color: #F06C00;
}

.circled-number {
  font-size: 24px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #1F2A44;
  color: #FFFFFF;
  border-radius: 50px;
  grid-row: 1/3;
}

.section-grey-2 {
  padding: 70px 10vw;
  color: #1F2A44;
  background-color: #F9FAFB;
  font-family: "Inter", sans-serif;
  font-weight: bold;
}
.section-grey-2 > p {
  color: #4B5563;
  font-size: 19px;
  letter-spacing: 1.4px;
}

.technologies {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 600px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1.55em;
  color: #4B5563;
  margin: 20px 0 50px;
}
@media (min-width: 576px) {
  .technologies {
    flex-direction: row;
    justify-content: space-between;
  }
}

.reference {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-family: "Outfit", sans-serif;
  font-size: 1.4em;
  font-weight: normal;
  max-width: 800px;
  padding: 50px 10% 40px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 0 3px -2px #5d5e69;
}
@media (min-width: 576px) {
  .reference {
    font-size: 1.7em;
    padding: 50px 50px 40px;
  }
}

.quote-icon {
  position: absolute;
  top: -22px;
  background-color: #F06C00;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 10px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 44px;
  text-align: center;
}

.person {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  font-family: "Inter", sans-serif;
}
.person img {
  border-radius: 50px;
}
.person div p {
  font-size: 19px;
}
.person div p:first-child {
  font-weight: bold;
}
.person div p:last-child {
  color: #4B5563;
}

.contact {
  padding: 45px 10vw;
  gap: 10px;
  text-align: center;
}
.contact .article {
  font-size: 20px;
}
@media (min-width: 576px) {
  .contact {
    padding: 100px 10vw;
  }
}

.contact-form {
  margin-top: 30px;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #1F2A44;
  border-radius: 12px;
  border: 1px solid #2A3344;
}

.copy-link {
  font-size: inherit;
  color: inherit;
  background-color: inherit;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.copy-link:hover, .copy-link:active {
  background-color: inherit;
}
.copy-link:hover {
  text-decoration: underline;
}

.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background-color: #1F2A44;
  color: #FFFFFF;
  border: 1px solid #2A3344;
  border-left: 3px solid #FF7A1A;
  padding: 11px 18px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.875em;
  box-shadow: 0 6px 24px -4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  pointer-events: none;
  white-space: nowrap;
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

footer {
  background-color: #151d2f;
  border-top: 1px solid #2A3344;
  padding: 50px 10vw;
  text-align: start;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  footer > div {
    flex-direction: row;
  }
}
footer p, footer b, footer a {
  color: #9ca3af;
  font-size: 19px;
}
footer p, footer a {
  font-weight: 300;
}
footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
@media (min-width: 576px) {
  footer .footer-column {
    width: 45%;
  }
}
@media (min-width: 992px) {
  footer .footer-column {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  footer .footer-column {
    width: auto;
  }
  footer .footer-column:first-child {
    max-width: 250px;
  }
}
footer .footer-column:nth-child(5) img {
  height: 70px;
  border-radius: 5px;
  background-color: #fff;
}
footer .footer-column:nth-child(5) span {
  font-family: "Inter", sans-serif;
  font-weight: bold;
}
footer > p {
  padding-top: 30px;
  border-top: 1px solid #2A3344;
}

.tag {
  padding: 3px 8px;
  color: #FF7A1A;
  border: 2px solid #FF7A1A;
  border-radius: 50px;
  align-self: start;
}

.tag-dark {
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 19px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  background-color: #1F2A44;
  border: 1px solid #4B5563;
}

.width-100 {
  width: 100%;
}

.text-bold {
  font-weight: bold;
}

.scroll-helper {
  display: none;
  position: absolute;
  bottom: 20px;
  overflow: hidden;
  height: 50px;
  width: 1px;
}
@media (min-width: 768px) {
  .scroll-helper {
    display: block;
  }
}

.scroll-helper > *::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 100%;
  width: 1px;
  background: #FFF;
}

.scroll-helper > *::after {
  animation: scrollTo 2.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 1px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 100%;
  background: #FF9F4C;
}

@keyframes scrollTo {
  from {
    top: -100%;
  }
  to {
    top: 100%;
  }
}
.phone-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-frame {
  position: relative;
  width: 240px;
  height: 500px;
  background: linear-gradient(160deg, #2a3550 0%, #101722 100%);
  border-radius: 40px;
  box-shadow: 0 0 0 2px #3a4560, 0 0 0 3px #0d1220, 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  z-index: 1;
}

.phone-mockup-screen {
  position: absolute;
  inset: 8px;
  border-radius: 33px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  background: #2A3344;
}
.phone-mockup-screen iframe {
  width: 320px;
  height: 820px;
  border: none;
  transform: scale(0.7);
  transform-origin: top left;
  margin-right: -96px;
  margin-bottom: -246px;
  display: block;
  will-change: transform;
}
.phone-mockup-screen--tall iframe {
  height: 1300px;
  margin-bottom: -390px;
}

.laptop-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.laptop-mockup {
  zoom: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-mockup-frame {
  position: relative;
  width: 460px;
  padding: 12px;
  background: linear-gradient(160deg, #2a3550 0%, #101722 100%);
  border-radius: 16px;
  box-shadow: 0 0 0 2px #3a4560, 0 0 0 3px #0d1220, 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  z-index: 1;
}

.laptop-mockup-screen {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 4px;
  background: #2A3344;
}
.laptop-mockup-screen iframe {
  width: 800px;
  height: 490px;
  border: none;
  transform: scale(0.545);
  transform-origin: top left;
  margin-right: -364px;
  margin-bottom: -223px;
  display: block;
}

@media (min-width: 576px) {
  .laptop-mockup {
    zoom: 1;
  }
}
.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.content-section-halves {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .content-section-halves {
    flex-direction: row;
  }
  .content-section-halves > * {
    width: 50%;
  }
}

.bg-light {
  background-color: #FFFFFF;
  color: #1F2A44;
}

.bg-grey {
  background-color: #F9FAFB;
  color: #1F2A44;
}

.bg-accent-light {
  background-color: #fff5eb;
}

.bg-accent {
  background-color: #F06C00;
}

.container-md {
  width: calc(100% - 10vw);
  max-width: 1000px;
  margin: 50px 10vw;
}

.container-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}

.container-switch {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
@media (min-width: 992px) {
  .container-switch {
    flex-direction: column;
  }
}

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

.container-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 20px;
}

.container-horizontal-space {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

@media (min-width: 992px) {
  .container-center-halves {
    padding: 50px;
  }
  .container-center-halves > * {
    max-width: 450px;
  }
  .container-center-halves:first-child {
    justify-content: end;
  }
  .container-center-halves:last-child {
    justify-content: start;
  }
}

.padding-default {
  padding: 50px 10vw;
}

.container-horizontal-fixed {
  display: flex;
  align-items: center;
  gap: 40px;
}

.container-full-width {
  max-width: 1600px;
  width: 100%;
  padding: 20px 50px;
}

.container-symmetric {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .container-symmetric {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
  }
}

.layout-basis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px 0;
}

@media (min-width: 768px) {
  .layout-basis-md {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .layout-basis-lg {
    flex-direction: row;
  }
}

.layout-halves-md {
  gap: 50px;
}
@media (min-width: 768px) {
  .layout-halves-md > * {
    width: 50%;
  }
}

.layout-halves-lg {
  gap: 50px;
}
@media (min-width: 992px) {
  .layout-halves-lg > * {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .layout-thirds > * {
    max-width: 33%;
  }
}

.layout-quarts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 576px) {
  .layout-quarts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .layout-quarts {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.layout-one-to-two {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .layout-one-to-two {
    grid-template-columns: 1fr 2fr;
  }
}

@media (min-width: 768px) {
  .max-width-sm {
    max-width: 350px;
  }
}

.align-start {
  align-self: start;
}

.align-center {
  align-self: center;
}

.align-center-sm {
  align-self: center;
}
@media (min-width: 576px) {
  .align-center-sm {
    align-self: baseline;
  }
}

.stretch-content {
  align-items: stretch;
}

.image-l {
  max-width: 100%;
  max-height: 400px;
}

.image-md {
  max-width: 100%;
  max-height: 300px;
}

.image-sm {
  max-width: 100%;
  max-height: 60px;
}

.advantage-card .image-sm {
  transition: opacity 0.4s ease;
}

.image-xs {
  max-width: 100%;
  max-height: 35px;
}

.image-xxs {
  max-width: 100%;
  max-height: 20px;
}

.image-md-dynamic {
  max-height: 180px;
}
@media (min-width: 576px) {
  .image-md-dynamic {
    max-height: 240px;
  }
}

.image-background {
  position: absolute;
  bottom: -40px;
  right: -60px;
}
@media (min-width: 768px) {
  .image-background {
    right: -40px;
  }
}
@media (min-width: 992px) {
  .image-background {
    right: 10px;
  }
}

.article {
  font-weight: 200;
}

.width-fixed-m {
  width: 85px;
  flex-shrink: 0;
}

.text-xs {
  font-size: 0.8em;
}

.text-sm {
  font-size: 18px;
}

.text-lg {
  font-size: 2.5em;
}

.text-lg-dynamic {
  font-size: 1.7em;
}
@media (min-width: 576px) {
  .text-lg-dynamic {
    font-size: 2.5em;
  }
}

.text-xl {
  font-size: 3.2em;
}

.text-xxl {
  font-size: 4em;
}

.text-xxxl {
  font-size: 8em;
}

.text-lg, .text-lg-dynamic, .text-xl, .text-xxl, .text-xxxl {
  font-weight: bold;
  font-family: "Inter", sans-serif;
}

.text-flat {
  line-height: 1.2em;
}

.font-weight-default {
  font-weight: 400;
}

.text-grey {
  color: #9ca3af;
}

.text-grey-dark {
  color: #5d5e69;
}

.text-center {
  text-align: center;
}

.text-center-lg {
  text-align: start;
}
@media (min-width: 992px) {
  .text-center-lg {
    text-align: center;
  }
}

.spacing-bot-sm {
  margin-bottom: 5px;
}

.spacing-bot-lg {
  margin-bottom: 20px;
}

.spacing-top-xl {
  margin-top: 30px;
}

.spacing-vertical-md {
  margin-top: 20px;
  margin-bottom: 20px;
}

.gap-xs {
  gap: 5px;
}

.gap-sm {
  gap: 15px;
}

.gap-md {
  gap: 25px;
}

.vertical-pipes {
  align-items: start;
}
.vertical-pipes > * {
  flex-grow: 1;
  padding: 30px 20px;
  border-left: 1px solid #767d8d;
}

@media (min-width: 992px) {
  .vertical-pipes-lg {
    align-items: center;
  }
  .vertical-pipes-lg > *:first-child {
    border: none;
  }
}

.vertical-pipes-xl {
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
}
.vertical-pipes-xl > div {
  padding: 10px 0;
  max-width: unset;
  border-left: none;
  border-top: 1px solid #767d8d;
}
.vertical-pipes-xl > *:first-child {
  border: none;
}
@media (min-width: 1200px) {
  .vertical-pipes-xl {
    flex-direction: row;
  }
  .vertical-pipes-xl > div {
    border-left: 1px solid #767d8d;
    border-top: none;
    padding: 20px 30px;
  }
}

.vertical-pipes-accent {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.vertical-pipes-accent > * {
  display: flex;
  align-items: center;
  padding: 10px;
  flex-grow: 1;
}
.vertical-pipes-accent > *:last-child {
  border-left: 2px solid #FF9F4C;
}
@media (min-width: 768px) {
  .vertical-pipes-accent {
    flex-direction: row;
  }
  .vertical-pipes-accent > * {
    padding: 0 30px 0 0;
  }
  .vertical-pipes-accent > *:last-child {
    max-width: 60%;
    padding: 0 0 0 30px;
    justify-content: end;
  }
}

@media (min-width: 768px) {
  .child-card-hover .card {
    position: relative;
    transition: 0.25s ease;
    inset: 0;
  }
  .child-card-hover.hover-right .card-wrapper:hover > .card {
    left: 20px;
  }
  .child-card-hover.hover-top .card-wrapper:hover > .card {
    top: -20px;
  }
}

.card-dark {
  border-radius: 10px;
  padding: 50px;
  background-color: #151d2f;
  color: #FFFFFF;
  max-width: 800px;
}

.advantage-card {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 3px -2px #5d5e69;
  background-color: #FFFFFF;
  color: #1F2A44;
  line-height: 1.5em;
}
@media (min-width: 576px) {
  .advantage-card {
    flex-direction: row;
    align-items: center;
  }
}

.exchange-icon {
  height: 75px;
  width: 75px;
  padding: 10px;
  border-radius: 50px;
  background-color: #FF7A1A;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exchange-icon img {
  width: 100%;
}

.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 80%;
}
@media (min-width: 568px) {
  .chat-bubbles {
    min-width: 400px;
  }
}
@media (min-width: 992px) {
  .chat-bubbles {
    min-width: unset;
  }
}

.bubble {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 80%;
  font-family: inherit;
  font-size: 20px;
  background-color: #FFFFFF;
  color: #1F2A44;
}

.bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bubble-left {
  align-self: flex-start;
  border-radius: 18px 18px 18px 4px;
  padding: 12px 18px;
}

.bubble-right {
  align-self: flex-end;
  border-radius: 18px 18px 4px 18px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

.chat-typing {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-typing.visible {
  opacity: 1;
  transform: scale(1);
}

.typing-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF7A1A;
  animation: typing-pulse 1s infinite ease-in-out;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

.chat-typing.settled .typing-dot {
  animation: none;
  opacity: 1;
  transform: scale(1);
}

@keyframes typing-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}
.chat-rating {
  display: flex;
  gap: 6px;
  line-height: 1;
}

.rating-star {
  width: 30px;
  height: 30px;
  color: #FFB800;
  opacity: 0;
  transform: scale(0);
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linejoin: round;
}
.rating-star.visible {
  animation: star-pop 0.5s cubic-bezier(0.34, 1.7, 0.5, 1) forwards;
}

@keyframes star-pop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  55% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.time-line {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.time-line .time-line-item {
  color: #5d5e69;
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-weight: 600;
  padding-bottom: 50px;
}
.time-line .time-line-item .time-line-number {
  position: relative;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50px;
  border: 3px solid #5d5e69;
  font-family: "Courier New", monospace;
  font-size: 2em;
  display: flex;
  justify-content: center;
}
.time-line .time-line-item .time-line-text {
  min-width: 120px;
  line-height: 20px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
}
.time-line .time-line-item .tl-text-desktop {
  position: absolute;
  top: 60px;
  align-self: center;
}
.time-line .time-line-item .time-line-separator {
  height: 3px;
  width: 7vw;
  max-width: 150px;
  background-color: #5d5e69;
  border-radius: 50px;
}
.time-line .time-line-item.active .time-line-number {
  border: 3px solid #F06C00;
  color: #FFFFFF;
  background-color: #F06C00;
}
.time-line .time-line-item.active .time-line-text {
  color: #1F2A44;
}
.time-line .time-line-item.active .time-line-separator {
  background-color: #F06C00;
}
@media (min-width: 768px) {
  .time-line {
    display: flex;
  }
}

.accordion {
  position: relative;
}
.accordion > * {
  position: absolute;
  inset: 0;
  display: none;
}
.accordion > *.active {
  display: block;
  position: relative;
}

@keyframes shopware-btn-click {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.88);
  }
  100% {
    transform: scale(1);
  }
}
.shopware-reveal {
  position: relative;
  display: inline-flex;
}
.shopware-reveal__image {
  opacity: 0;
  transition: opacity 0.7s ease 0.1s;
}
.shopware-reveal__image.visible {
  opacity: 1;
}
.shopware-reveal__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.shopware-reveal__stage.hidden {
  opacity: 0;
}
.shopware-reveal__btn {
  background: #F06C00;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.8rem;
  font-size: 19px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255, 122, 26, 0.4);
  transition: opacity 0.4s ease;
}
.shopware-reveal__btn.clicking {
  animation: shopware-btn-click 0.2s ease;
}
.shopware-reveal__btn.hidden {
  opacity: 0;
}
.shopware-reveal__cursor {
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% + 18px);
  width: 28px;
  height: 32px;
  filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.3));
  transform: translate(70px, 60px);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.shopware-reveal__cursor.move {
  transform: translate(0, 0);
}

@keyframes inventory-badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(52, 199, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
  }
}
.inventory-badge-wrap {
  position: relative;
  display: inline-flex;
}

.inventory-badge {
  position: absolute;
  top: 12px;
  left: -12px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 10px 14px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(31, 42, 68, 0.18);
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  pointer-events: none;
}
.inventory-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34C759;
  flex-shrink: 0;
  animation: inventory-badge-pulse 2s ease-out infinite;
}
.inventory-badge__text {
  color: #1F2A44;
  font-size: 14px;
  font-weight: 600;
}
.inventory-badge__num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  .inventory-badge__dot {
    animation: none;
  }
}

.migration-graphic {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 0;
  container-type: inline-size;
}
.migration-graphic.is-visible .mg-core,
.migration-graphic.is-visible .mg-box {
  animation-play-state: running;
}

.mg-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.mg-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56.25%;
  height: 48%;
  transform: scale(1);
  background: linear-gradient(155deg, #7d5473 0%, #63415a 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  z-index: 2;
  animation: mg-core-life 3.4s cubic-bezier(0.2, 0.75, 0.3, 1) 1.2s forwards;
  animation-play-state: paused;
}
.mg-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}
.mg-core__logo {
  position: relative;
  display: block;
  width: 66%;
  height: auto;
}

.mg-box {
  position: absolute;
  width: 28%;
  height: 23%;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 3.75cqw;
  line-height: 1.15;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  z-index: 1;
  animation: mg-reveal 1.6s cubic-bezier(0.3, 0.8, 0.3, 1) forwards, mg-absorb 1s cubic-bezier(0.6, 0, 0.7, 0.3) forwards;
  animation-play-state: paused;
}
.mg-box--sap {
  left: 3.5%;
  top: 3.5%;
  background: linear-gradient(155deg, #4E7CDD 0%, #2E5AB8 100%);
  --cx: 62.5%;
  --cy: 97.8%;
  --ax: 116.1%;
  --ay: 152.2%;
  animation-delay: 0s, 2.2s;
}
.mg-box--dynamics {
  left: 68.5%;
  top: 3.5%;
  background: linear-gradient(155deg, #F7C255 0%, #D9971A 100%);
  --cx: -62.5%;
  --cy: 97.8%;
  --ax: -116.1%;
  --ay: 152.2%;
  animation-delay: 0s, 2.45s;
}
.mg-box--sage {
  left: 3.5%;
  top: 73.5%;
  background: linear-gradient(155deg, #63CB5C 0%, #45A63F 100%);
  --cx: 62.5%;
  --cy: -97.8%;
  --ax: 116.1%;
  --ay: -152.2%;
  animation-delay: 0s, 2.7s;
}
.mg-box--lexware {
  left: 68.5%;
  top: 73.5%;
  background: linear-gradient(155deg, #CF564E 0%, #A6362F 100%);
  --cx: -62.5%;
  --cy: -97.8%;
  --ax: -116.1%;
  --ay: -152.2%;
  animation-delay: 0s, 2.95s;
}

@media (prefers-reduced-motion: reduce) {
  .mg-core {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .mg-box {
    display: none;
  }
}
@keyframes mg-reveal {
  0% {
    transform: translate(var(--cx), var(--cy));
  }
  22% {
    transform: translate(var(--cx), var(--cy));
  }
  70% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes mg-absorb {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--ax), var(--ay));
  }
}
@keyframes mg-core-life {
  0% {
    opacity: 0;
    transform: scale(0.333);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  9% {
    opacity: 1;
    transform: scale(0.707);
  }
  15% {
    transform: scale(0.667);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  }
  62% {
    transform: scale(0.667);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  }
}
.sg-wrap {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.support-graphic {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.support-graphic.is-visible .sg-icon,
.support-graphic.is-visible .sg-line,
.support-graphic.is-visible .sg-node--logo {
  animation-play-state: running;
}

.sg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.sg-line {
  fill: none;
  stroke: #9ca3af;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 7;
  vector-effect: non-scaling-stroke;
  transform-box: view-box;
  transform: scale(0);
  animation: sg-draw 0.5s ease-out both;
  animation-play-state: paused;
}
.sg-line--db {
  transform-origin: 205px 54px;
  animation-delay: 0.9s;
}
.sg-line--register {
  transform-origin: 615px 54px;
  animation-delay: 1.02s;
}
.sg-line--receipt {
  transform-origin: 640px 299px;
  animation-delay: 1.14s;
}
.sg-line--card {
  transform-origin: 180px 299px;
  animation-delay: 1.26s;
}

.sg-node {
  position: absolute;
  z-index: 2;
  height: auto;
}

.sg-node--logo {
  left: 50%;
  top: 51.389%;
  width: 19%;
  margin-left: -9.5%;
  margin-top: -9.5%;
  animation: sg-pulse 0.7s ease-in-out 1.6s both;
  animation-play-state: paused;
}

.sg-icon {
  width: 15%;
  margin-left: -7.5%;
  margin-top: -7.5%;
  opacity: 0;
  animation: sg-pop 0.45s cubic-bezier(0.2, 0.85, 0.3, 1.2) both;
  animation-play-state: paused;
}
.sg-icon--db {
  left: 25%;
  top: 15%;
  animation-delay: 0s;
}
.sg-icon--register {
  left: 75%;
  top: 15%;
  animation-delay: 0.12s;
}
.sg-icon--receipt {
  left: 78%;
  top: 83%;
  animation-delay: 0.24s;
}
.sg-icon--card {
  left: 22%;
  top: 83%;
  animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .sg-icon {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .sg-node--logo {
    transform: none;
    animation: none;
  }
  .sg-line {
    transform: scale(1);
    animation: none;
  }
}
@keyframes sg-pop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes sg-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
@keyframes sg-draw {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/*# sourceMappingURL=pages.css.map */
