@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;
}
.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;
  }
}

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