:root {
  --fw-bg: #051424;
  --fw-bg-soft: #0d1c2d;
  --fw-bg-deep: #010f1f;
  --fw-panel: rgba(18, 33, 49, 0.4);
  --fw-panel-strong: rgba(6, 11, 26, 0.4);
  --fw-border: rgba(255, 255, 255, 0.1);
  --fw-border-cyan: rgba(0, 219, 233, 0.2);
  --fw-heading: #d4e4fa;
  --fw-text: #c6c6cd;
  --fw-muted: #545f72;
  --fw-blue-muted: #83b4e4;
  --fw-cyan: #00dbe9;
  --fw-purple: #7000ff;
  --fw-lavender: #d1bcff;
  --fw-input: #87acda;
  --fw-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --fw-font-heading: "Space Grotesk", "Inter", Arial, sans-serif;
  --fw-shell: 1920px;
  --fw-header-h: 110px;
  --fw-radius-sm: 12px;
  --fw-radius: 18px;
  --fw-radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body.fw-site {
  background: var(--fw-bg);
  color: var(--fw-text);
  font-family: var(--fw-font-body);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

.fw-site a {
  text-decoration: none;
}

.fw-site h1,
.fw-site h2,
.fw-site h3,
.fw-site p {
  margin: 0;
}

.fw-site [data-aos="fade-left"] {
  transform: translate3d(72px, 0, 0);
}

.fw-site [data-aos="fade-right"] {
  transform: translate3d(-72px, 0, 0);
}

.fw-shell {
  margin: 0 auto;
  max-width: var(--fw-shell);
  padding-left: 48px;
  padding-right: 48px;
  width: 100%;
}

.fw-header {
  backdrop-filter: blur(18px);
  background: rgba(6, 11, 26, 0.4);
  border-bottom: 1.5px solid rgba(198, 198, 205, 0.1);
  box-shadow:
    0 30px 38px -8px rgba(0, 0, 0, 0.1),
    0 12px 15px -9px rgba(0, 0, 0, 0.1);
  height: var(--fw-header-h);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

.fw-nav {
  align-items: center;
  display: flex;
  gap: 48px;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1920px;
  padding: 24px 48px;
}

.fw-logo,
.fw-mobile-logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.fw-logo img {
  height: 72px;
  object-fit: contain;
  width: 231px;
}

.fw-nav-links {
  align-items: center;
  display: flex;
  gap: 96px;
  justify-content: center;
}

.fw-nav-links a {
  border-bottom: 3px solid transparent;
  color: var(--fw-muted);
  font-size: 24px;
  line-height: 36px;
  padding-bottom: 9px;
  transition:
    border-color 160ms ease,
    color 160ms ease;
  white-space: nowrap;
}

.fw-nav-links a:hover,
.fw-nav-links a.active {
  border-color: var(--fw-cyan);
  color: var(--fw-cyan);
}

.fw-btn {
  align-items: center;
  border: 0;
  border-radius: var(--fw-radius-sm);
  display: inline-flex;
  font-family: var(--fw-font-heading);
  font-size: 24px;
  justify-content: center;
  line-height: 36px;
  min-height: 60px;
  padding: 12px 36px;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.fw-btn:hover {
  transform: translateY(-1px);
}

.fw-btn-solid {
  background: var(--fw-purple);
  color: #fff;
}

.fw-btn-solid:hover {
  background: #810fff;
  color: #fff;
}

.fw-header-cta {
  color: #ddcdff;
  text-transform: capitalize;
  white-space: nowrap;
}

.fw-hero .fw-btn {
  text-transform: none;
}

.fw-btn-outline {
  background: transparent;
  border: 1.5px solid var(--fw-cyan);
  color: var(--fw-cyan);
  min-height: 75px;
  padding: 19px 37px;
}

.fw-btn-outline:hover {
  background: rgba(0, 219, 233, 0.1);
  color: var(--fw-cyan);
}

.fw-btn-icon {
  gap: 12px;
  min-height: 86px;
  padding: 25px 48px;
}

.fw-btn-icon img {
  flex: 0 0 auto;
}

.fw-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 7px;
  height: 52px;
  justify-content: center;
  padding: 10px;
  width: 68px;
}

.fw-menu-toggle span {
  background: var(--fw-purple);
  border-radius: 999px;
  display: block;
  height: 3px;
  width: 48px;
}

.fw-mobile-menu {
  --bs-offcanvas-width: min(80vw, 600px);
  background: #10253a;
  border: 0;
  border-bottom-left-radius: 23px;
  border-top-left-radius: 23px;
  box-shadow:
    0 38px 48px -10px rgba(0, 0, 0, 0.1),
    0 15px 19px -12px rgba(0, 0, 0, 0.1);
  color: var(--fw-blue-muted);
  padding: 46px;
}

.fw-mobile-menu:not(.show):not(.showing):not(.hiding) {
  display: none;
}

.fw-mobile-menu-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
  width: 100%;
}

.fw-mobile-logo img {
  height: auto;
  width: 318px;
}

.fw-menu-close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  padding: 15px;
}

.fw-menu-close img {
  height: 24px;
  width: 24px;
}

.fw-mobile-links {
  display: grid;
  gap: 15px;
  width: 100%;
}

.fw-mobile-links a {
  align-items: center;
  border-radius: 15px;
  color: var(--fw-blue-muted);
  display: flex;
  font-size: 31px;
  gap: 31px;
  line-height: 46px;
  padding: 31px;
  transition: color 160ms ease;
  white-space: nowrap;
}

.fw-mobile-links a:hover,
.fw-mobile-links a.active {
  color: var(--fw-cyan);
}

.fw-mobile-links img {
  flex: 0 0 auto;
  height: 30px;
  object-fit: contain;
  width: 30px;
}

.fw-mobile-menu-foot {
  border-top: 2px solid rgba(135, 172, 218, 0.1);
  padding-top: 48px;
  width: 100%;
}

.fw-btn-wide {
  border-radius: 23px;
  box-shadow:
    0 8px 12px -2px rgba(0, 0, 0, 0.1),
    0 4px 8px -4px rgba(0, 0, 0, 0.1);
  font-family: var(--fw-font-body);
  font-size: 31px;
  font-weight: 600;
  line-height: 46px;
  min-height: 109px;
  padding: 31px;
  text-transform: none;
  width: 100%;
}

.fw-hero {
  align-items: center;
  display: flex;
  min-height: 1305px;
  overflow: hidden;
  position: relative;
}

.fw-hero::after {
  background: linear-gradient(
    90deg,
    var(--fw-bg) 0%,
    var(--fw-bg) 30%,
    rgba(5, 20, 36, 0) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.fw-home-page .fw-hero::before {
  background:
    radial-gradient(circle at 23% 42%, rgba(0, 219, 233, 0.24) 0, rgba(0, 219, 233, 0.08) 18%, transparent 38%),
    radial-gradient(circle at 72% 30%, rgba(112, 0, 255, 0.34) 0, rgba(112, 0, 255, 0.08) 22%, transparent 44%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 46%, transparent 52% 100%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.fw-hero-media {
  inset: 0;
  position: absolute;
}

.fw-hero-bg,
.fw-hero-character,
.fw-hero-mobile-bg {
  position: absolute;
}

.fw-hero-bg {
  height: 147%;
  left: 0;
  object-fit: cover;
  top: -24%;
  width: 100%;
  z-index: 0;
}

.fw-hero-character {
  animation: fwHeroFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 0 42px rgba(0, 219, 233, 0.18)) drop-shadow(0 0 70px rgba(112, 0, 255, 0.14));
  height: 101%;
  left: 13.3%;
  object-fit: cover;
  top: -1%;
  width: 103%;
  z-index: 1;
}

.fw-hero-mobile-bg {
  display: none;
}

.fw-hero-content {
  position: relative;
  z-index: 3;
}

.fw-home-page .fw-hero-content::before {
  background: linear-gradient(180deg, rgba(0, 219, 233, 0.36), rgba(112, 0, 255, 0));
  border-radius: 999px;
  content: "";
  height: 75%;
  left: 20px;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
  top: 12%;
  width: 2px;
}

.fw-kicker {
  align-items: center;
  background: rgba(0, 219, 233, 0.2);
  border: 1.5px solid rgba(0, 219, 233, 0.3);
  border-radius: 999px;
  color: var(--fw-cyan);
  display: inline-flex;
  font-family: var(--fw-font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 21px;
  padding: 8px 20px;
  text-transform: uppercase;
}

.fw-about-hero {
  align-items: center;
  display: flex;
  margin-bottom: 60px;
  min-height: 750px;
  overflow: hidden;
  padding: 190px 0 205px;
  position: relative;
}

.fw-about-hero::after {
  background: linear-gradient(180deg, rgba(5, 20, 36, 0.2) 0%, var(--fw-bg) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.fw-about-hero-media {
  inset: 0;
  position: absolute;
}

.fw-about-hero-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.fw-about-hero .fw-shell {
  position: relative;
  z-index: 2;
}

.fw-about-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 1152px;
  padding-bottom: 60px;
}

.fw-about-hero .fw-kicker {
  letter-spacing: 2.1px;
  width: fit-content;
}

.fw-about-hero h1 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 96px;
}

.fw-about-hero-copy > p:last-child {
  color: var(--fw-text);
  font-size: 27px;
  line-height: 43px;
}

.fw-about-story {
  background: var(--fw-bg-soft);
  padding: 120px 0 96px;
}

.fw-story-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto 96px;
  text-align: center;
}

.fw-story-heading .fw-kicker {
  letter-spacing: 4.2px;
}

.fw-story-heading h2 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 106px;
}

.fw-story-heading h2 span {
  color: var(--fw-cyan);
}

.fw-story-heading > p:last-child {
  color: var(--fw-heading);
  font-size: 27px;
  font-weight: 600;
  line-height: 43px;
  max-width: 1152px;
}

.fw-story-grid {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 48px;
  align-items: flex-start;
}

.fw-story-offset-one {
  padding-top: 72px;
}

.fw-story-offset-two {
  padding-top: 144px;
}

.fw-story-card {
  backdrop-filter: blur(9px);
  background: var(--fw-panel-strong);
  border: 1.5px solid var(--fw-border-cyan);
  border-radius: var(--fw-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 935px;
  padding: 50px;
}

.fw-story-card-lavender {
  border-color: rgba(209, 188, 255, 0.2);
}

.fw-story-grid > div:first-child .fw-story-card {
  min-height: 1079px;
  padding-bottom: 302px;
}

.fw-story-offset-one .fw-story-card {
  min-height: 1007px;
  padding-bottom: 158px;
}

.fw-story-icon {
  align-items: flex-start;
  display: flex;
  height: 45px;
  width: 100%;
}

.fw-story-card h3 {
  color: #fff;
  font-family: var(--fw-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 47px;
  padding-top: 12px;
}

.fw-story-card p {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
}

.fw-story-media {
  border-radius: var(--fw-radius-sm);
  height: 300px;
  margin: auto 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.fw-story-media > img {
  position: absolute;
}

.fw-story-card:not(.fw-story-card-future) .fw-story-media > img {
  height: 168%;
  left: 0;
  object-fit: cover;
  top: -34%;
  width: 100%;
}

.fw-story-card-future .fw-story-future-team {
  height: 100%;
  inset: 0;
  object-fit: cover;
  width: 100%;
}

.fw-core.fw-about-core {
  padding: 120px 0 75px;
}

.fw-cta.fw-about-cta {
  padding: 17px 0 81px;
}

.fw-benefits-hero {
  align-items: center;
  display: flex;
  margin-top: 10px;
  min-height: 921px;
  overflow: hidden;
  position: relative;
}

.fw-benefits-hero::after {
  background: linear-gradient(
    0deg,
    var(--fw-bg) 0%,
    rgba(5, 20, 36, 0) 50%,
    rgba(5, 20, 36, 0) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.fw-benefits-hero-media {
  inset: 0;
  position: absolute;
}

.fw-benefits-hero-media img {
  height: 139%;
  left: 0;
  object-fit: cover;
  opacity: 0.4;
  position: absolute;
  top: -19.5%;
  width: 100%;
}

.fw-benefits-hero .fw-shell {
  position: relative;
  z-index: 2;
}

.fw-benefits-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin: 0 auto;
  max-width: 1000px;
}

.fw-benefits-hero h1 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 106px;
  white-space: nowrap;
}

.fw-benefits-hero h1 span {
  color: var(--fw-cyan);
}

.fw-benefits-hero-copy p {
  color: var(--fw-text);
  font-size: 27px;
  line-height: 43px;
  max-width: 1008px;
}

.fw-benefits-grid-section {
  background: var(--fw-bg);
  padding: 120px 0 81px;
}

.fw-benefits-grid {
  --bs-gutter-x: 36px;
  --bs-gutter-y: 36px;
}

.fw-benefit-card {
  backdrop-filter: blur(9px);
  background: var(--fw-panel-strong);
  border: 1.5px solid var(--fw-border);
  border-radius: var(--fw-radius);
  min-height: 419px;
  padding: 50px;
}

.fw-benefits-grid > div:nth-child(n + 4) .fw-benefit-card {
  min-height: 466px;
}

.fw-benefit-icon {
  align-items: center;
  background: rgba(112, 0, 255, 0.2);
  border-radius: var(--fw-radius-sm);
  display: flex;
  height: 72px;
  justify-content: center;
  margin-bottom: 24px;
  width: 72px;
}

.fw-benefit-card h3 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 47px;
  margin-bottom: 22px;
}

.fw-benefit-card p {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 38px;
}

.fw-cta.fw-benefits-cta {
  padding: 0 0 86px;
}

.fw-version-page .fw-version-vision {
  margin-top: 10px;
}

.fw-version-page .fw-media-card {
  border-radius: var(--fw-radius-lg);
}

.fw-cta.fw-version-cta {
  padding: 85px 0 94px;
}

.fw-contact-section {
  background: #273647;
  margin-top: 48px;
  padding: 120px 0;
}

.fw-contact-layout {
  display: grid;
  gap: 96px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fw-contact-copy h1 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 37px;
}

.fw-contact-lede {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
}

.fw-contact-methods {
  display: grid;
  font-style: normal;
  gap: 48px;
  margin: 0;
  padding-top: 73px;
}

.fw-contact-method {
  align-items: flex-start;
  display: grid;
  gap: 24px;
  grid-template-columns: 26px minmax(0, 1fr);
}

.fw-contact-method img {
  height: auto;
  margin-top: 2px;
  width: 26px;
}

.fw-contact-method h2 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
}

.fw-contact-method p,
.fw-contact-method a {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
}

.fw-contact-method a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fw-contact-card {
  backdrop-filter: blur(9px);
  background: var(--fw-panel);
  border: 1.5px solid var(--fw-border);
  border-radius: var(--fw-radius-lg);
  padding: 61px;
}

.fw-contact-form {
  display: grid;
  gap: 36px;
  position: relative;
}

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

.fw-form-field {
  display: grid;
  gap: 12px;
}

.fw-form-field label {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
}

.fw-form-field input,
.fw-form-field select,
.fw-form-field textarea {
  background-color: var(--fw-bg);
  border: 1.5px solid rgba(70, 70, 76, 1);
  border-radius: var(--fw-radius-sm);
  color: var(--fw-heading);
  font-family: var(--fw-font-body);
  font-size: 24px;
  line-height: 36px;
  outline: 0;
  padding: 18px 20px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

.fw-form-field input,
.fw-form-field select {
  min-height: 75px;
}

.fw-form-field textarea {
  min-height: 183px;
  resize: vertical;
}

.fw-form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #c6c6cd 50%),
    linear-gradient(135deg, #c6c6cd 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 50px;
}

.fw-form-field input::placeholder,
.fw-form-field textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

.fw-form-field input:focus,
.fw-form-field select:focus,
.fw-form-field textarea:focus {
  border-color: var(--fw-cyan);
  box-shadow: 0 0 0 3px rgba(0, 219, 233, 0.14);
}

.fw-field-error,
.fw-form-status {
  color: #ff8da1;
  display: none;
  font-size: 14px;
  line-height: 20px;
}

.fw-contact-form.was-submitted .fw-form-field [aria-invalid="true"] {
  border-color: #ff8da1;
}

.fw-contact-form.was-submitted .fw-form-field [aria-invalid="true"] + .fw-field-error {
  display: block;
}

.fw-form-status {
  color: var(--fw-cyan);
  display: block;
  left: 0;
  min-height: 0;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
}

.fw-contact-submit {
  background: var(--fw-cyan);
  border: 0;
  border-radius: var(--fw-radius-sm);
  color: #00363a;
  font-family: var(--fw-font-heading);
  font-size: 24px;
  line-height: 36px;
  min-height: 84px;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
  width: 100%;
}

.fw-contact-submit:hover {
  background: #19edf8;
  transform: translateY(-1px);
}

.fw-hero h1 {
  color: var(--fw-heading);
  display: flex;
  flex-direction: column;
  font-family: var(--fw-font-heading);
  font-size: 96px;
  font-weight: 700;
  line-height: 120px;
  max-width: 1008px;
  text-transform: uppercase;
}

.fw-home-page .fw-hero h1 {
  text-shadow:
    0 0 18px rgba(0, 219, 233, 0.18),
    0 14px 48px rgba(0, 0, 0, 0.48);
}

.fw-hero h1 span:first-child {
  color: var(--fw-cyan);
}

.fw-home-page .fw-hero h1 span:first-child {
  color: #73f6ff;
  text-shadow:
    0 0 20px rgba(0, 219, 233, 0.52),
    0 0 56px rgba(0, 219, 233, 0.2);
}

.fw-hero-copy {
  color: var(--fw-text);
  font-size: 27px;
  line-height: 43px;
  margin-top: 24px;
  max-width: 855px;
}

.fw-hero-copy span {
  display: block;
}

.fw-hero .fw-btn {
  margin-top: 60px;
}

.fw-home-page .fw-hero .fw-btn,
.fw-home-page .fw-cta .fw-btn {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 28px rgba(112, 0, 255, 0.32),
    0 18px 46px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  position: relative;
}

.fw-home-page .fw-hero .fw-btn::before,
.fw-home-page .fw-cta .fw-btn::before {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 62%);
  content: "";
  inset: -30% -80%;
  opacity: 0.7;
  position: absolute;
  transform: translateX(-42%);
  transition: transform 520ms ease;
}

.fw-home-page .fw-hero .fw-btn:hover::before,
.fw-home-page .fw-cta .fw-btn:hover::before {
  transform: translateX(42%);
}

.fw-home-page .fw-hero .fw-btn > *,
.fw-home-page .fw-cta .fw-btn > * {
  position: relative;
  z-index: 1;
}

.fw-about,
.fw-core,
.fw-vision,
.fw-culture,
.fw-collaboration,
.fw-cta {
  position: relative;
}

.fw-about,
.fw-vision,
.fw-culture,
.fw-collaboration {
  overflow-x: hidden;
  overflow-x: clip;
}

.fw-contact-section {
  overflow-x: hidden;
  overflow-x: clip;
}

.fw-about {
  background: var(--fw-bg);
  border-top: 1.5px solid rgba(255, 255, 255, 0.05);
 
  overflow: hidden;
  padding: 120px 0;
}

.fw-about-bg {
  inset: 0;
  position: absolute;
}
.fw-about-bg-screen {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}



.fw-about-bg-screen {
  height: 110%;
  top: -1%;
  width: 114%;
}

.fw-about-layout {
  position: relative;
  z-index: 1;
}

.fw-glass-panel {
  backdrop-filter: blur(9px);
  background: var(--fw-panel);
  border: 1.5px solid var(--fw-border);
  border-left: 6px solid var(--fw-border);
  border-radius: var(--fw-radius-lg);
  box-shadow: 0 38px 75px -18px rgba(0, 0, 0, 0.25);
  max-width: 912px;
  padding: 74px 74px 72px 78px;
  position: relative;
}

.fw-about-panel::after {
  background: rgba(0, 219, 233, 0.1);
  border-radius: 999px;
  content: "";
  filter: blur(75px);
  height: 384px;
  position: absolute;
  right: -528px;
  top: 288px;
  width: 384px;
}

.fw-eyebrow {
  color: var(--fw-cyan);
  font-family: var(--fw-font-heading);
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.fw-about h2,
.fw-section-heading h2,
.fw-split-content h1,
.fw-split-content h2,
.fw-feature-copy h2 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.fw-about h2 {
  font-size: 96px;
  line-height: 106px;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.fw-about h2 span {
  color: inherit;
}

.fw-about-copy {
  display: grid;
  gap: 36px;
  padding-top: 24px;
}

.fw-about-copy p {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 39px;
  max-width: 761px;
}

.fw-about-copy span {
  display: block;
}

.fw-about .fw-btn {
  box-shadow: 0 0 15px rgba(112, 0, 255, 0.3);
  margin-top: 60px;
}

.fw-core {
  background: var(--fw-bg);
  padding: 120px 0 180px;
}

.fw-section-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 96px;
  text-align: center;
}

.fw-heading-rule {
  background: var(--fw-cyan);
  border-radius: 999px;
  display: block;
  height: 6px;
  margin-top: 24px;
  width: 144px;
}

.fw-card-grid {
  --bs-gutter-x: 36px;
  --bs-gutter-y: 36px;
}

.fw-service-card {
  backdrop-filter: blur(9px);
  background: var(--fw-panel);
  border: 1.5px solid var(--fw-border);
  border-radius: var(--fw-radius);
  height: 100%;
  min-height: 659px;
  padding: 50px;
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.fw-home-page .fw-service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    var(--fw-panel);
  overflow: hidden;
}

.fw-home-page .fw-service-card::before {
  background: linear-gradient(135deg, rgba(0, 219, 233, 0.42), rgba(112, 0, 255, 0.22), transparent 58%);
  content: "";
  height: 180px;
  left: -72px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -72px;
  transform: rotate(8deg);
  transition: opacity 220ms ease;
  width: 180px;
}

.fw-home-page .fw-service-card::after {
  background: linear-gradient(90deg, transparent, rgba(0, 219, 233, 0.58), transparent);
  content: "";
  height: 1px;
  left: 24px;
  opacity: 0.2;
  position: absolute;
  right: 24px;
  top: 0;
}

.fw-home-page .fw-service-card:hover {
  border-color: rgba(0, 219, 233, 0.36);
  box-shadow:
    0 0 0 1px rgba(0, 219, 233, 0.12) inset,
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(0, 219, 233, 0.08);
  transform: translateY(-8px);
}

.fw-home-page .fw-service-card:hover::before {
  opacity: 1;
}

.fw-icon-box {
  align-items: center;
  border-radius: var(--fw-radius-sm);
  display: flex;
  height: 96px;
  justify-content: center;
  margin-bottom: 36px;
  width: 96px;
}

.fw-home-page .fw-icon-box {
  box-shadow: 0 0 24px rgba(0, 219, 233, 0.08);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.fw-home-page .fw-service-card:hover .fw-icon-box {
  box-shadow: 0 0 34px rgba(0, 219, 233, 0.22);
  transform: translateY(-3px) scale(1.04);
}

.fw-icon-dark {
  background: #000e10;
}

.fw-icon-purple {
  background: rgba(112, 0, 255, 0.2);
}

.fw-service-card h3 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 47px;
  margin-bottom: 24px;
}

.fw-service-card p {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
}

.fw-vision,
.fw-culture,
.fw-collaboration {
  background: var(--fw-bg-soft);
}

.fw-vision {
  padding: 120px 0;
}

.fw-split {
  align-items: center;
  display: grid;
  gap: 96px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fw-media-card {
  border-radius: var(--fw-radius);
  box-shadow: 0 0 0 24px rgba(0, 219, 233, 0.04);
  overflow: hidden;
}

.fw-media-card img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fw-split-content h2 span,
.fw-split-content h1 span,
.fw-feature-copy h2 span {
  color: var(--fw-lavender);
}

.fw-highlight-list {
  display: grid;
  gap: 48px;
  margin-top: 48px;
}

.fw-highlight-list article {
  border-left: 6px solid var(--fw-cyan);
  padding-left: 24px;
}

.fw-highlight-list article.lavender {
  border-left-color: var(--fw-lavender);
}

.fw-highlight-list h2,
.fw-highlight-list h3 {
  color: var(--fw-heading);
  font-family: var(--fw-font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 12px;
}

.fw-highlight-list p {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
}

.fw-culture,
.fw-collaboration {
  padding: 91px 0;
}

.fw-feature-row {
  align-items: center;
  display: grid;
  gap: 140px;
  grid-template-columns: 584px minmax(0, 900px);
  justify-content: center;
}

.fw-feature-row-reverse {
  grid-template-columns: minmax(0, 900px) 584px;
}

.fw-feature-row-reverse .fw-feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.fw-feature-row-reverse .fw-feature-image {
  grid-column: 1;
  grid-row: 1;
}

.fw-feature-copy h2 {
  line-height: 75px;
  margin-bottom: 36px;
}

.fw-feature-copy h2 span {
  color: var(--fw-cyan);
  display: block;
}

.fw-feature-copy p {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
}

.fw-feature-image {
  border-radius: var(--fw-radius);
  overflow: hidden;
}

.fw-feature-image img {
  aspect-ratio: 900 / 586;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fw-cta {
  background: var(--fw-bg);
  padding: 85px 0;
}

.fw-cta-panel {
  backdrop-filter: blur(3px);
  background: rgba(0, 219, 233, 0.05);
  border: 1.5px solid var(--fw-border-cyan);
  border-radius: var(--fw-radius);
  margin: 0 auto;
  max-width: 1737px;
  padding: 54px 38px;
}

.fw-cta h2 {
  color: var(--fw-text);
  font-family: var(--fw-font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
  margin-bottom: 36px;
}

@keyframes fwHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -16px, 0) scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fw-hero-character {
    animation: none;
  }

  .fw-home-page .fw-service-card,
  .fw-home-page .fw-icon-box,
  .fw-home-page .fw-hero .fw-btn::before,
  .fw-home-page .fw-cta .fw-btn::before {
    transition: none;
  }
}

.fw-footer {
  background: var(--fw-bg-deep);
  color: var(--fw-text);
  padding: 120px 0 48px;
}

.fw-footer-grid {
  --bs-gutter-x: 36px;
  --bs-gutter-y: 36px;
}

.fw-footer-brand p {
  color: rgba(198, 198, 205, 0.8);
  font-size: 24px;
  line-height: 38px;
  margin-top: 35px;
  max-width: 594px;
}

.fw-socials {
  display: flex;
  gap: 24px;
  margin-top: 35px;
}

.fw-socials a {
  align-items: center;
  background: #273647;
  border-radius: 999px;
  display: inline-flex;
  height: 60px;
  justify-content: center;
  transition: background-color 160ms ease;
  width: 60px;
}

.fw-socials a:hover {
  background: #33465c;
}

.fw-footer-nav,
.fw-newsletter {
  display: flex;
  flex-direction: column;
}

.fw-footer-nav h2,
.fw-newsletter h2 {
  color: #c1c6db;
  font-family: var(--fw-font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.fw-footer-nav a {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 24px;
  transition: color 160ms ease;
}

.fw-footer-nav a:hover,
.fw-footer-nav a.active {
  color: var(--fw-cyan);
}

.fw-newsletter p {
  color: var(--fw-text);
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 36px;
  max-width: 584px;
}

.fw-newsletter-form {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  max-width: 584px;
}

.fw-newsletter-field {
  flex: 1 1 auto;
  min-width: 0;
}

.fw-newsletter-form input {
  background: #273647;
  border: 0;
  border-radius: var(--fw-radius-sm);
  color: var(--fw-heading);
  font-size: 18px;
  min-height: 71px;
  min-width: 0;
  padding: 21px 18px;
  width: 100%;
}

.fw-newsletter-form input[aria-invalid="true"] {
  box-shadow: inset 0 0 0 1px #ff8da1;
}

.fw-newsletter-form input[aria-invalid="true"] + .fw-field-error {
  display: block;
  margin: 8px 0 0;
}

.fw-newsletter-form input::placeholder {
  color: var(--fw-input);
}

.fw-newsletter-form button {
  align-items: center;
  background: var(--fw-purple);
  border: 0;
  border-radius: 16px;
  display: inline-flex;
  flex: 0 0 75px;
  justify-content: center;
  min-height: 71px;
  transition: background-color 160ms ease;
}

.fw-newsletter-form button:hover,
.fw-newsletter-form button:focus-visible {
  background: #8540ff;
}

.fw-footer-bottom {
  border-top: 1px solid rgba(198, 198, 205, 0.15);
  margin-top: 96px;
  padding-top: 48px;
  text-align: center;
}

.fw-footer-bottom p {
  color: var(--fw-text);
  font-size: 18px;
  line-height: 29px;
}

.fw-toast {
  background: var(--fw-cyan);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--fw-radius-sm);
  box-shadow:
    0 24px 70px rgba(0, 219, 233, 0.38),
    0 18px 48px rgba(0, 0, 0, 0.42);
  color: #03192b;
  font-family: var(--fw-font-heading);
  font-size: 22px;
  font-weight: 800;
  left: 50%;
  line-height: 30px;
  max-width: min(520px, calc(100vw - 32px));
  min-width: min(420px, calc(100vw - 32px));
  opacity: 0;
  padding: 22px 32px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  top: 92px;
  transform: translate(-50%, -18px) scale(0.96);
  transition: transform 220ms ease;
  z-index: 2000;
}

.fw-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.fw-toast.is-error {
  background: #ff5d7d;
  border-color: rgba(255, 255, 255, 0.92);
  color: #fff;
}

@media (max-width: 1600px) {
  .fw-nav-links {
    gap: 56px;
  }

  .fw-hero {
    min-height: 1040px;
  }

  .fw-hero h1 {
    font-size: 76px;
    line-height: 94px;
    max-width: 820px;
  }

  .fw-hero-copy {
    font-size: 23px;
    line-height: 37px;
    max-width: 720px;
  }

  .fw-about-hero {
    min-height: 620px;
    padding: 145px 0 160px;
  }

  .fw-about-hero h1,
  .fw-story-heading h2 {
    font-size: 76px;
    line-height: 86px;
  }

  .fw-about-hero-copy > p:last-child,
  .fw-story-heading > p:last-child {
    font-size: 23px;
    line-height: 37px;
  }

  .fw-benefits-hero {
    min-height: 760px;
  }

  .fw-benefits-hero h1 {
    font-size: 76px;
    line-height: 86px;
  }

  .fw-benefits-hero-copy p {
    font-size: 23px;
    line-height: 37px;
  }

  .fw-benefit-card {
    padding: 40px;
  }

  .fw-benefit-card h3 {
    font-size: 30px;
    line-height: 39px;
  }

  .fw-story-card {
    padding: 40px;
  }

  .fw-story-grid > div:first-child .fw-story-card {
    padding-bottom: 240px;
  }

  .fw-story-offset-one .fw-story-card {
    padding-bottom: 126px;
  }

  .fw-story-card h3 {
    font-size: 30px;
    line-height: 39px;
  }

  .fw-service-card {
    min-height: 570px;
    padding: 40px;
  }

  .fw-service-card h3 {
    font-size: 30px;
    line-height: 39px;
  }

  .fw-service-card p,
  .fw-highlight-list p,
  .fw-feature-copy p,
  .fw-about-copy p,
  .fw-story-card p,
  .fw-benefit-card p {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (max-width: 1200px) {
  .fw-header {
    --fw-header-h: 96px;
  }

  .fw-nav {
    gap: 24px;
  }

  .fw-nav-links {
    gap: 28px;
  }

  .fw-nav-links a,
  .fw-btn {
    font-size: 18px;
    line-height: 28px;
  }

  .fw-logo img {
    height: auto;
    width: 188px;
  }

  .fw-split,
  .fw-feature-row,
  .fw-feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .fw-feature-row,
  .fw-feature-row-reverse {
    gap: 48px;
  }

  .fw-feature-row-reverse .fw-feature-copy,
  .fw-feature-row-reverse .fw-feature-image {
    grid-column: auto;
    grid-row: auto;
  }

  .fw-story-offset-one,
  .fw-story-offset-two {
    padding-top: 0;
  }

  .fw-story-grid > div:first-child .fw-story-card,
  .fw-story-offset-one .fw-story-card,
  .fw-story-card {
    min-height: auto;
    padding-bottom: 40px;
  }

  .fw-benefits-grid > div:nth-child(n + 4) .fw-benefit-card,
  .fw-benefit-card {
    min-height: auto;
  }

  .fw-feature-image {
    max-width: 900px;
  }

  .fw-contact-layout {
    grid-template-columns: 1fr;
  }

  .fw-contact-card {
    max-width: 864px;
  }
}

@media (max-width: 767.98px) {
  .fw-site [data-aos="fade-left"] {
    transform: translate3d(20px, 0, 0);
  }

  .fw-site [data-aos="fade-right"] {
    transform: translate3d(-20px, 0, 0);
  }

  :root {
    --fw-header-h: 76px;
  }

  .fw-shell {
    padding-left: 23px;
    padding-right: 23px;
  }

  .fw-header {
    --fw-header-h: 76px;
    background: #051020;
    box-shadow: none;
  }

  .fw-nav {
    padding: 13px 17px 13px 13px;
  }

  .fw-logo img {
    width: 139px;
  }

  .fw-nav-links,
  .fw-header-cta {
    display: none;
  }

  .fw-menu-toggle {
    display: inline-flex;
    gap: 4px;
    height: 26px;
    padding: 5px;
    width: 34px;
  }

  .fw-menu-toggle span {
    height: 2px;
    width: 24px;
  }



  .fw-mobile-menu {
    --bs-offcanvas-width: min(80vw, 312px);
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    padding: 24px;
  }

  .fw-mobile-menu-head {
    margin-bottom: 32px;
  }

  .fw-mobile-logo img {
    width: 165px;
  }

  .fw-menu-close {
    padding: 8px;
  }

  .fw-menu-close img {
    height: 13px;
    width: 13px;
  }

  .fw-mobile-links {
    gap: 8px;
  }

  .fw-mobile-links a {
    border-radius: 8px;
    font-size: 16px;
    gap: 16px;
    line-height: 24px;
    padding: 16px;
  }

  .fw-mobile-links img {
    height: 16px;
    width: 16px;
  }

  .fw-mobile-menu-foot {
    margin-top: 25px;
    padding-top: 25px;
  }

  .fw-btn-wide {
    border-radius: 12px;
    font-size: 16px;
    line-height: 24px;
    min-height: 57px;
    padding: 16px;
  }

  .fw-hero {
    align-items: center;
    min-height: calc(100vw * 863 / 750);
    padding: 0;
  }

  .fw-hero-bg,
  .fw-hero-character {
    display: none;
  }

  .fw-hero-mobile-bg {
    display: block;
    height: 104%;
    left: -39%;
    object-fit: cover;
    top: -4%;
    width: 178%;
  }

  .fw-hero-content {
    padding-bottom: 0;
  }

  .fw-hero h1 {
    font-size: 38px;
    line-height: 45px;
    max-width: 344px;
    text-transform: uppercase;
  }

  .fw-hero h1 span:first-child {
    color: var(--fw-cyan);
    white-space: nowrap;
  }

  .fw-hero h1 span:last-child {
    color: var(--fw-heading);
  }

  .fw-hero-copy {
    display: block;
    font-size: 15px;
    line-height: 22px;
    margin-top: 18px;
    max-width: 315px;
  }

  .fw-hero .fw-btn {
    border-radius: 8px;
    font-size: 12px;
    gap: 8px;
    line-height: 18px;
    margin-top: 19px;
    min-height: 40px;
    padding: 10px 18px;
    text-transform: none;
  }

  .fw-hero .fw-btn img {
    height: 15px;
    width: 15px;
  }

  .fw-about-page .fw-kicker {
    border-width: 1px;
    font-size: 10.5px;
    line-height: 10.5px;
    padding: 4px 10px;
  }

  .fw-about-hero {
    margin-bottom: 0;
    min-height: calc(100vw * 720 / 750);
    padding: 76px 0 30px;
  }

  .fw-about-hero-media img {
    height: 104%;
    left: -39%;
    max-width: none;
    top: -4%;
    width: 178%;
  }

  .fw-about-hero-copy {
    gap: 17px;
    max-width: 327px;
    padding-bottom: 30px;
  }

  .fw-about-hero .fw-kicker {
    letter-spacing: 1.05px;
  }

  .fw-about-hero h1 {
    font-size: 40px;
    line-height: 48px;
    white-space: nowrap;
  }

  .fw-about-hero-copy > p:last-child {
    font-size: 13.5px;
    line-height: 22px;
  }

  .fw-benefits-hero {
    margin-bottom: 10px;
    margin-top: -5px;
    min-height: 345px;
  }

  .fw-benefits-hero::after {
    background: linear-gradient(
      180deg,
      rgba(13, 28, 45, 0) 0%,
      rgba(13, 28, 45, 0.5) 50%,
      var(--fw-bg-soft) 100%
    );
  }

  .fw-benefits-hero-media img {
    height: 109%;
    left: -23%;
    max-width: none;
    opacity: 0.5;
    top: 0;
    width: 146%;
  }

  .fw-benefits-hero-copy {
    align-items: center;
    gap: 9px;
    max-width: 330px;
    padding-top: 25px;
    text-align: center;
  }

  .fw-benefits-hero h1 {
    font-size: 30px;
    line-height: 53px;
  }

  .fw-benefits-hero-copy p {
    font-size: 13px;
    line-height: 22px;
    max-width: 285px;
  }

  .fw-benefits-grid-section {
    padding: 15px 0 22px;
  }

  .fw-benefits-grid-section .fw-shell {
    padding-left: 23px;
    padding-right: 22px;
  }

  .fw-benefits-grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 15px;
  }

  .fw-benefits-grid > div:nth-child(n + 4) .fw-benefit-card {
    min-height: 233px;
  }

  .fw-benefit-card {
    border-radius: 9px;
    min-height: 210px;
    padding: 25px;
  }

  .fw-benefit-icon {
    border-radius: 6px;
    height: 36px;
    margin-bottom: 12px;
    width: 36px;
  }

  .fw-benefit-icon img {
    max-height: 15px;
    max-width: 18px;
  }

  .fw-benefit-card h3 {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 11px;
  }

  .fw-benefit-card p {
    font-size: 12px;
    line-height: 19px;
  }

  .fw-about-story {
    padding: 52px 0 34px;
  }

  .fw-story-heading {
    gap: 12px;
    margin-bottom: 52px;
  }

  .fw-story-heading .fw-kicker {
    letter-spacing: 2.1px;
  }

  .fw-story-heading h2 {
    font-size: 48px;
    line-height: 53px;
  }

  .fw-story-heading > p:last-child {
    font-size: 13.5px;
    line-height: 22px;
    max-width: 330px;
  }

  .fw-story-grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
  }

  .fw-story-grid > div:first-child .fw-story-card,
  .fw-story-offset-one .fw-story-card,
  .fw-story-card {
    border-radius: 12px;
    gap: 12px;
    min-height: 468px;
    padding: 25px;
  }

  .fw-story-icon {
    height: 23px;
  }

  .fw-story-icon img {
    max-height: 23px;
    width: auto;
  }

  .fw-story-card h3 {
    font-size: 18px;
    line-height: 23px;
    padding-top: 6px;
  }

  .fw-story-card p {
    font-size: 12px;
    line-height: 18px;
  }

  .fw-story-media {
    border-radius: 6px;
    height: 150px;
  }

  .fw-about {
    background: var(--fw-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
  }

  .fw-about-bg {
    display: block;
  }

  .fw-about-layout {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .fw-glass-panel {
    backdrop-filter: blur(9px);
    background: none;
    border: 1px solid var(--fw-border);
    border-radius: 12px;
    box-shadow: none;
    max-width: calc(100% - 46px);
    padding: 16px;
    text-align: left;
    width: 100%;
    margin:0 auto;
  }

  .fw-about-panel::after {
    display: none;
  }

  .fw-eyebrow {
    display: block;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 12px;
    letter-spacing: 2.4px;
  }

  .fw-about h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 12px;
  }

  .fw-section-heading h2 {
    font-size: 27px;
    line-height: 36px;
  }

  .fw-about h2 span {
    color: inherit;
  }

  .fw-about-copy {
    gap: 18px;
    padding-top: 12px;
  }

  .fw-about-copy p {
    color: var(--fw-text);
    font-size: 12.5px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    max-width: none;
  }

  .fw-about .fw-btn {
    border-radius: 8px;
    font-size: 12px;
    gap: 8px;
    line-height: 18px;
    margin-top: 31px;
    min-height: 40px;
    padding: 12px 31px;
  }

  .fw-about .fw-btn img {
    height: 14px;
    width: auto;
  }

  .fw-core {
    padding: 50px 0 60px;
  }

  .fw-core.fw-about-core {
    padding-bottom: 34px;
    padding-top: 34px;
  }

  .fw-core .fw-shell {
    padding-left: 19px;
    padding-right: 19px;
  }

  .fw-section-heading {
    margin-bottom: 25px;
  }

  .fw-heading-rule {
    height: 3px;
    margin-top: 12px;
    width: 72px;
  }

  .fw-card-grid {
    --bs-gutter-y: 25px;
  }

  .fw-service-card {
    border-radius: 9px;
    min-height: 240px;
    padding: 25px;
  }

  .fw-icon-box {
    border-radius: 6px;
    height: 48px;
    margin-bottom: 12px;
    width: 48px;
  }

  .fw-icon-box img {
    max-height: 27px;
    max-width: 28px;
  }

  .fw-service-card h3 {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 12px;
  }

  .fw-service-card p {
    font-size: 12px;
    line-height: 18px;
  }

  .fw-vision,
  .fw-culture,
  .fw-collaboration {
    padding: 52px 0;
  }

  .fw-split,
  .fw-feature-row,
  .fw-feature-row-reverse {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .fw-media-card {
    border-radius: 9px;
    box-shadow: 0 0 0 12px rgba(0, 219, 233, 0.04);
  }

  .fw-split-content h1,
  .fw-split-content h2,
  .fw-feature-copy h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 18px;
  }

  .fw-highlight-list {
    gap: 24px;
    margin-top: 24px;
  }

  .fw-highlight-list article {
    border-left-width: 3px;
    padding-left: 14px;
  }

  .fw-highlight-list h2,
  .fw-highlight-list h3 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 8px;
  }

  .fw-highlight-list p,
  .fw-feature-copy p {
    font-size: 12px;
    line-height: 18px;
  }

  .fw-feature-image {
    border-radius: 9px;
    max-width: none;
  }

  .fw-cta {
    padding: 18px 0 16px;
  }

  .fw-cta.fw-about-cta {
    padding: 0 0 49px;
  }

  .fw-cta.fw-benefits-cta {
    padding: 0 0 8px;
  }

  .fw-cta-panel {
    border-radius: 9px;
    padding: 21px 19px;
  }

  .fw-cta h2 {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 18px;
  }

  .fw-btn-outline {
    font-size: 12px;
    line-height: 18px;
    min-height: 38px;
    padding: 10px 19px;
  }

  .fw-version-page .fw-version-vision {
    margin-top: 0;
    padding: 52px 0 74px;
  }

  .fw-version-page .fw-version-vision .fw-shell {
    padding-left: 23px;
    padding-right: 23px;
  }

  .fw-version-page .fw-split {
    gap: 18px;
  }

  .fw-version-page .fw-media-card,
  .fw-version-page .fw-split-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    width: 100%;
  }

  .fw-version-page .fw-media-card {
    border-radius: 12px;
  }

  .fw-version-page .fw-version-title {
    line-height: 36px;
    margin-bottom: 0;
  }

  .fw-version-page .fw-highlight-list {
    gap: 24px;
    margin-top: 24px;
  }

  .fw-version-page .fw-highlight-lavender {
    order: -1;
  }

  .fw-version-page .fw-feature-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 304px;
    width: 100%;
  }

  .fw-version-page .fw-version-collaboration {
    padding-bottom: 90px;
  }

  .fw-cta.fw-version-cta {
    padding: 21px 0 16px;
  }

  .fw-contact-section {
    margin-top: 23px;
    padding: 30px 0 29px;
  }

  .fw-contact-layout {
    gap: 15px;
  }

  .fw-contact-copy,
  .fw-contact-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 330px;
    width: 100%;
  }

  .fw-contact-copy h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 6px;
  }

  .fw-contact-lede {
    font-size: 12px;
    line-height: 18px;
    max-width: 261px;
  }

  .fw-contact-methods {
    gap: 24px;
    padding-top: 18px;
  }

  .fw-contact-method {
    gap: 12px;
    grid-template-columns: 13px minmax(0, 1fr);
  }

  .fw-contact-method img {
    margin-top: 1px;
    width: 13px;
  }

  .fw-contact-method h2,
  .fw-contact-method p,
  .fw-contact-method a {
    font-size: 12px;
    line-height: 18px;
  }

  .fw-contact-card {
    border-radius: 12px;
    padding: 28px;
  }

  .fw-contact-form {
    gap: 18px;
  }

  .fw-form-grid {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fw-form-field {
    gap: 6px;
  }

  .fw-form-field label {
    font-size: 12px;
    line-height: 18px;
  }

  .fw-form-field input,
  .fw-form-field select,
  .fw-form-field textarea {
    border-radius: 6px;
    font-size: 12px;
    line-height: 18px;
    padding: 10px;
  }

  .fw-form-field input,
  .fw-form-field select {
    min-height: 37px;
  }

  .fw-form-field select {
    background-position:
      calc(100% - 12px) 50%,
      calc(100% - 9px) 50%;
    background-size: 3px 3px;
    padding-right: 24px;
  }

  .fw-form-field textarea {
    min-height: 92px;
  }

  .fw-contact-submit {
    border-radius: 6px;
    font-size: 12px;
    line-height: 18px;
    min-height: 42px;
    padding: 12px;
  }

  .fw-field-error,
  .fw-form-status {
    font-size: 11px;
    line-height: 16px;
  }

  .fw-footer {
    padding: 49px 0 22px;
  }

  .fw-footer-grid {
    --bs-gutter-x: 17px;
    --bs-gutter-y: 42px;
  }

  .fw-footer .fw-logo img {
    width: 116px;
  }

  .fw-footer-brand p {
    font-size: 12px;
    line-height: 19px;
    margin-top: 17px;
    max-width: 297px;
  }

  .fw-socials {
    gap: 12px;
    margin-top: 17px;
  }

  .fw-socials a {
    height: 30px;
    width: 30px;
  }

  .fw-socials img {
    max-height: 10px;
    max-width: 10px;
  }

  .fw-footer-nav h2,
  .fw-newsletter h2 {
    font-size: 18px;
    line-height: 31px;
    margin-bottom: 23px;
    text-transform: none;
  }

  .fw-footer-nav a {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 15px;
  }

  .fw-newsletter p {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 23px;
  }

  .fw-newsletter-form {
    gap: 6px;
  }

  .fw-newsletter-form input {
    background: #fff;
    border: 0;
    border-radius: 6px;
    color: #18324d;
    font-size: 12px;
    min-height: 36px;
    padding: 10px 9px;
  }

  .fw-newsletter-form button {
    background: #00c1fd;
    border-radius: 8px;
    flex-basis: 38px;
    min-height: 36px;
  }

  .fw-newsletter-form button:hover,
  .fw-newsletter-form button:focus-visible {
    background: #00c1fd;
  }

  .fw-newsletter-form button img {
    width: 13px;
  }

  .fw-footer-bottom {
    margin-top: 48px;
    padding-top: 30px;
  }

  .fw-footer-bottom p {
    font-size: 12px;
    line-height: 19px;
  }

  .fw-toast {
    bottom: auto;
    font-size: 16px;
    left: 16px;
    line-height: 22px;
    max-width: none;
    min-width: 0;
    padding: 16px 18px;
    right: 16px;
    text-align: center;
    top: 20px;
    transform: translateY(-14px) scale(0.96);
  }

  .fw-toast.is-visible {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 340px) {
  .fw-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .fw-mobile-links a {
    font-size: 14px;
    gap: 12px;
    padding: 14px;
  }
}
