:root {
  --lp-primary: #4383c4;
  --lp-primary-dark: #2e629a;
  --lp-secondary: #bfe6f5;
  --lp-accent: #f2711c;
  --lp-ink: #142221;
  --lp-muted: #536764;
  --lp-line: #d3e8f4;
  --lp-soft: #f0f9fd;
  --lp-surface: #ffffff;
  --lp-surface-warm: #f4fbff;
  --lp-dark: #15201f;
  --lp-radius: 8px;
  --lp-shadow: 0 22px 70px rgba(13, 42, 39, 0.14);
  interpolate-size: allow-keywords;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  margin: 0;
  color: var(--lp-ink);
  font-family:
    Lato,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: linear-gradient(
    180deg,
    #dcf0f8 0px,
    var(--lp-secondary) 100px,
    #ffffff 1010px,
    #ffffff 100%
  );
}

body::before {
  position: absolute;
  z-index: -1;
  top: -580px;
  right: -500px;
  width: 1040px;
  height: 1040px;
  content: "";
  background: radial-gradient(
    ellipse at center,
    rgba(0, 127, 255, 0.46),
    rgba(191, 230, 245, 0.22) 58%,
    rgba(191, 230, 245, 0) 72%
  );
  border-radius: 50%;
  pointer-events: none;
}

body::after {
  position: absolute;
  z-index: -1;
  top: 140px;
  left: -400px;
  width: 770px;
  aspect-ratio: 1/1;
  content: "";
  background: radial-gradient(
    ellipse at center,
    rgba(0, 127, 255, 0.46),
    rgba(191, 230, 245, 0.22) 58%,
    rgba(191, 230, 245, 0) 72%
  );
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}

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

video {
  background: #000;
}

a {
  color: var(--lp-primary-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

p:empty {
  display: none;
}

.lp-site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem 0;
  background: transparent;
}

.lp-nav-shell {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  background: #fff;
  border: 1px solid rgb(254 254 254 / 92%);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 6px 24px rgba(13, 42, 39, 0.16);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    backdrop-filter 200ms ease;
}

.lp-site-header.is-scrolled .lp-nav-shell {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.38)
  );
  border-color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.lp-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0;
  text-decoration: none;
}

.lp-brand img {
  width: 140px;
  height: auto;
}

.lp-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--lp-ink);
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.lp-nav-toggle:hover,
.lp-nav-toggle:focus-visible {
  color: var(--lp-primary);
  transform: translateY(-1px);
}

.lp-nav-toggle i {
  font-size: 1.45rem;
  line-height: 1;
}

.lp-pill-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lp-pill-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 11px 0.5rem;
  color: #090f0f;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lp-pill-nav a:hover,
.lp-pill-nav a:focus {
  color: var(--lp-primary);
  background: transparent;
  transform: translateY(-1px);
}

.lp-button-demo {
  font-size: 0.88rem !important;
  padding: 0.75rem 22px !important;
}

.lp-section {
  padding: 96px 0;
}

.lp-section-compact {
  padding-top: 4rem;
}

.lp-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.lp-narrow {
  width: min(860px, calc(100% - 40px));
}

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

.lp-kicker {
  margin: 0 0 14px;
  color: var(--lp-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-title,
.lp-section-heading h2,
.lp-conference-band h2 {
  margin: 0;
  color: var(--lp-ink);
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.lp-title {
  max-width: 660px;
  font-size: 4rem;
}

.lp-section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.lp-section-heading h2,
.lp-conference-band h2 {
  font-size: 2.5rem;
}

.lp-section-heading p,
.lp-subtitle,
.lp-conference-band p {
  color: var(--lp-muted);
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.lp-subtitle {
  margin: 0.5rem 0 0;
  max-width: 560px;
}

.lp-hero {
  position: relative;
  overflow: visible;
  padding-bottom: 5rem;
  padding-top: 11.25rem;
  color: var(--lp-ink);
  background: transparent;
}

.lp-hero-layout {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: start;
}

.lp-hero-copy {
  flex: 1 1 50%;
  max-width: 50%;
}

.lp-hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  align-items: stretch;
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0;
}

.lp-hero-video-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.lp-video-label {
  position: absolute;
  z-index: 5;
  top: -1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 1rem 0.375rem;
  color: #fff;
  background: linear-gradient(180deg, var(--lp-primary), #0e417e);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(34, 75, 112, 0.2);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-hero:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("https://searixblob.blob.core.windows.net/yen/searixLandingPage2.0/img/bg-grid-001.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1rem 0;
}

.lp-button {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2.5rem;
  color: #fff;
  background: transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lp-button-cta,
.lp-button-primary {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(255, 255, 255, 0.45),
      transparent 42%
    ),
    linear-gradient(135deg, #408eec 0%, #4383c4 48%, #408eec 100%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -14px 24px rgba(18, 64, 132, 0.24),
    0 0 0 6px rgba(0, 64, 255, 0.13),
    0 20px 42px rgba(18, 184, 255, 0.34);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.22);
}

.lp-button-cta::before,
.lp-button-primary::before {
  position: absolute;
  inset: 4px 12px auto;
  height: 40%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.lp-button-cta span,
.lp-button-cta i,
.lp-button-primary {
  position: relative;
  z-index: 1;
}

.lp-button-cta i {
  font-size: 1.15rem;
  line-height: 1.2;
}

.lp-button-cta:hover,
.lp-button-cta:focus,
.lp-button-primary:hover,
.lp-button-primary:focus {
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -14px 24px rgba(18, 64, 132, 0.24),
    0 0 0 12px rgba(0, 64, 255, 0.17),
    0 24px 50px rgba(18, 184, 255, 0.42);
  transform: translateY(-1px);
}

.lp-button-cta-hero {
  font-size: 1.5rem;
  padding: 1rem 2.5rem;
  letter-spacing: 1;
  min-width: 21rem;
}

.lp-button-cta-hero i {
  font-size: 1.6rem;
}

.lp-testimonial {
  position: relative;
  margin-top: 0.5rem;
  margin-left: 1rem;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: min(520px, calc(100% - 56px));
  padding: 0.75rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    var(--lp-secondary) 150%
  );
  border: 1px solid rgba(191, 230, 245, 0.9);
  border-radius: 1.25rem;
  box-shadow: 0 22px 54px rgba(34, 75, 112, 0.2);
  backdrop-filter: blur(14px);
}

.lp-testimonial::after {
  position: absolute;
  top: -13px;
  left: 32px;
  width: 26px;
  height: 26px;
  content: "";
  background: rgba(255, 255, 255, 0.94);
  border-left: 1px solid rgba(191, 230, 245, 0.9);
  border-top: 1px solid rgba(191, 230, 245, 0.9);
  transform: rotate(45deg);
}

.lp-testimonial-mark {
  color: var(--lp-primary-dark);
  font-family: LBaskerville, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 3.75rem;
  font-style: italic;
  line-height: 1.2;
}

.lp-quote-text {
  margin: 0;
  color: var(--lp-primary-dark);
  font-family:
    Lato,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

.lp-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.5rem;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-testimonial-author strong {
  color: var(--lp-ink);
}

.lp-testimonial-author span {
  font-size: 0.8rem;
}

.lp-video-frame,
.lp-step-media-frame,
.lp-included-item img {
  overflow: hidden;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.lp-client-section {
  overflow: hidden;
  padding: 28px 0 44px;
}

.lp-client-heading {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

.lp-client-heading h2 {
  font-family:
    Lato,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  margin: 0;
  color: var(--lp-ink);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-client-heading p {
  margin: 0.25rem;
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.2;
}

.lp-client-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lp-client-marquee::before,
.lp-client-marquee::after {
  display: none;
}

.lp-client-track {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 26px 0;
}

.lp-client-track img {
  flex: 0 1 calc((100% - 10rem) / 6);
  width: 10rem;
  max-height: 52px;
  object-fit: contain;
}

.lp-video-frame video,
.lp-media-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-card-list,
.lp-proof-list,
.lp-included-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.375rem;
}

.lp-card-list-3 > * {
  flex: 1 1 calc((100% - 44px) / 3);
  min-width: 0;
}

.lp-card,
.lp-proof,
.lp-included-item,
.lp-shortcode-block {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.94) 70%,
    var(--lp-secondary) 200%
  );
  border: 1px solid #f1f1f1;
  border-radius: var(--lp-radius);
  box-shadow: 0 14px 44px rgba(13, 42, 39, 0.08);
}

.lp-card {
  min-height: 100%;
  padding: 1rem;
  padding-bottom: 2rem;
}

.lp-card h3 {
  font:
    900 1.25rem/1.2 "Lato",
    sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0.75rem 0;
}

.lp-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  mask-image: linear-gradient(180deg, #000 0, #000 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0,
    #000 62%,
    transparent 100%
  );
  border-radius: var(--lp-radius);
  margin-bottom: 0rem;
}

.lp-check-list,
.lp-step-copy ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-check-list li,
.lp-step-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--lp-muted);
  line-height: 1.2;
}

.lp-check-list li::before,
.lp-step-copy li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--lp-primary);
  background: linear-gradient(180deg, var(--lp-primary), #0e417e);
  -webkit-background-clip: text;
  background-clip: text;
  content: "\eb80";
  font-family: "remixicon";
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}

.lp-step-copy li li::before {
  content: "\f5db";
}

.lp-conference-band {
  position: relative;
  padding: 0;
}

.lp-conference-band .lp-container {
  position: relative;
}

.lp-conference-band .lp-container::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 170%;
  height: 110%;
  content: "";
  background:
    radial-gradient(
      ellipse at 22% 48%,
      rgba(67, 131, 196, 0.3),
      transparent 42%
    ),
    radial-gradient(
      ellipse at 52% 24%,
      rgba(191, 230, 245, 0.78),
      transparent 40%
    ),
    radial-gradient(
      ellipse at 76% 56%,
      rgba(64, 142, 236, 0.26),
      transparent 46%
    ),
    linear-gradient(
      90deg,
      rgba(191, 230, 245, 0),
      rgba(191, 230, 245, 0.56),
      rgba(191, 230, 245, 0)
    );
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.88;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.lp-conference-panel {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 4rem;
  background:
    radial-gradient(
      circle at 70% 4%,
      rgba(255, 255, 255, 0.82),
      transparent 13%
    ),
    linear-gradient(
      90deg,
      #061a31 0%,
      #123d76 48%,
      rgba(191, 230, 245, 0.92) 100%
    );
  border-radius: 28px;
  box-shadow:
    0 24px 80px rgba(6, 26, 49, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lp-conference-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 540px;
  max-width: 540px;
}

.lp-conference-band .lp-conference-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-conference-band h2 {
  color: #fff;
  font-family:
    Lato,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.95;
  max-width: 540px;
}

.lp-conference-band p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.45;
}

.lp-conference-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 28px 0 30px;
}

.lp-conference-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.lp-conference-metrics i {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.15rem;
}

.lp-conference-band .lp-button {
  padding-inline: 1.35rem;
  text-transform: none;
}

.lp-conference-band .lp-button i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.lp-conference-media {
  position: relative;
  z-index: 1;
  flex: 0 1 494px;
  width: min(45%, 494px);
  margin: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(6, 26, 49, 0.18);
}

.lp-conference-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.lp-proof-list {
  max-width: 60rem;
  align-items: stretch;
  gap: 2rem 1rem;
}

.lp-proof-list > * {
  flex: 1 1 calc((100% - 64px) / 2);
  min-width: 0;
}

.lp-proof {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lp-proof img {
  flex: 0 0 5rem;
  width: 3rem;
  aspect-ratio: 1/1;
  margin: 0;
  object-fit: contain;
  border-radius: 0;
}

.lp-proof-copy {
  min-width: 0;
}

.lp-proof h3 {
  margin: 0 0 4px;
  color: var(--lp-ink);
  font:
    900 1.25rem/1.2 "Lato",
    sans-serif;
}

.lp-proof p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.98rem;
  line-height: 1.35;
}

.lp-how-it-works .lp-container {
  position: relative;
}

.lp-how-it-works .lp-container::before {
  position: absolute;
  z-index: 0;
  top: 230px;
  bottom: 116px;
  left: 18px;
  width: 2px;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(67, 131, 196, 0),
    rgba(67, 131, 196, 0.5) 10%,
    rgba(67, 131, 196, 0.5) 90%,
    rgba(67, 131, 196, 0)
  );
  pointer-events: none;
}

.lp-step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  align-items: start;
  padding: 3rem 0 3rem 4rem;
  border-top: 1px solid var(--lp-line);
}

.lp-step-copy {
  flex: 0 1 39%;
  min-width: 280px;
}

.lp-step-media {
  flex: 1 1 61%;
  min-width: 0;
}

.lp-step-media-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: transparent;
}

.lp-how-it-works .lp-section-heading + .lp-step {
  border-top: 0;
  padding-top: 0;
}

.lp-step-copy h3 {
  margin: 0 0 1rem;
  color: var(--lp-ink);
  font-family:
    Lato,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.2;
}

.lp-step-copy h3 span {
  position: relative;
  display: block;
  margin-bottom: 0;
  color: var(--lp-primary);
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1.2;
}

.lp-step-copy h3 span::before {
  position: absolute;
  top: 0.24em;
  left: -57px;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--lp-primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(67, 131, 196, 0.24);
}

.lp-step-copy li ul {
  margin-top: 10px;
}

.lp-media-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-shortcode-block {
  padding: 28px;
}

.lp-section-form {
}

.lp-form-container {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: visible;
  min-height: 520px;
  padding: 3rem 2rem 0rem 31rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.94) 70%,
    var(--lp-secondary) 200%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.lp-form-portrait {
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  width: 31rem;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.lp-form-shell {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  min-width: 0;
  margin-bottom: 2rem;
  z-index: 2;
}

.lp-form-intro {
  margin-bottom: 12px;
}

.lp-form-intro h2 {
  margin: 0;
  color: #142221;
  font-family:
    Anton,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
}

.lp-form-intro p {
  max-width: 920px;
  margin: 6px 0 0;
  color: #536764;
  font-size: 1rem;
  line-height: 1.3;
}

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

.lp-form-shell label {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  color: #142221;
  font-size: 0.9rem;
  font-weight: 700;
}

.lp-form-shell input,
.lp-form-shell textarea {
  width: 100%;
  min-height: 2.875rem;
  padding: 0 18px;
  color: #142221;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 400;
  background: #f4f7f8;
  border: 1px solid rgba(67, 131, 196, 0.16);
  border-radius: 11px;
  outline: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 38px rgba(67, 131, 196, 0.08);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.lp-form-shell textarea {
  min-height: 112px;
  padding-top: 16px;
  resize: vertical;
}

.lp-form-shell input::placeholder,
.lp-form-shell textarea::placeholder {
  color: #7f8c8c;
}

.lp-form-shell input:focus,
.lp-form-shell textarea:focus {
  background: #fff;
  border-color: rgba(67, 131, 196, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 0 0 4px rgba(67, 131, 196, 0.16);
}

.lp-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-width: 160px;
  min-height: 58px;
  margin-top: 2px;
  padding: 0 32px;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--lp-primary);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 20px 46px rgba(67, 131, 196, 0.28);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lp-form-submit:hover,
.lp-form-submit:focus-visible {
  background: var(--lp-primary-dark);
  box-shadow: 0 24px 52px rgba(67, 131, 196, 0.38);
  transform: translateY(-1px);
}

.lp-included-carousel {
  overflow: visible;
  padding-block: 64px;
}

.lp-included-list {
  align-items: stretch;
  flex-wrap: nowrap;
  gap: clamp(22px, 3vw, 36px);
  overflow-x: auto;
  overflow-y: visible;
  margin-inline: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  padding: 0 calc((100vw - min(1180px, calc(100vw - 40px))) / 2) 72px;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100vw - min(1180px, calc(100vw - 40px))) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lp-included-list::-webkit-scrollbar {
  display: none;
}

.lp-included-list > * {
  flex: 0 0 clamp(260px, 27vw, 360px);
  min-width: 0;
  scroll-snap-align: start;
}

.lp-included-item {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(20, 34, 33, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.94) 80%,
    var(--lp-secondary) 200%
  );
}

.lp-included-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  box-shadow: none;
}

.lp-caption {
  padding: 24px 24px 28px;
  color: var(--lp-muted);
  font-family:
    Lato,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
}

.lp-caption strong {
  font-weight: 900;
  color: var(--lp-primary);
}

.lp-included-controls {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: -36px;
  padding-top: 0;
}

.lp-included-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #4f5a5a;
  background: #eef0f3;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.lp-included-arrow:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.lp-included-arrow:hover,
.lp-included-arrow:focus-visible {
  color: #fff;
  background: #4383c4;
  transform: translateY(-1px);
}

.lp-included-arrow i {
  font-size: 1.6rem;
  line-height: 1;
}

.lp-faq {
  background: #fff;
}

.lp-faq-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.lp-faq .lp-section-heading {
  position: sticky;
  top: 112px;
  flex: 0 1 23%;
  margin-bottom: 0;
}

.lp-faq-list {
  display: flex;
  flex: 1 1 66%;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.lp-faq-item {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(67, 131, 196, 0.18);
}

.lp-faq-item summary {
  margin: 0;
  padding: 0 0 1.375rem 4.5rem;
  color: var(--lp-ink);
  cursor: pointer;
  font:
    700 1.25rem / 1.12 "Lato",
    sans-serif;
  list-style: none;
  position: relative;
  transition:
    color 180ms ease,
    margin-bottom 260ms ease;
}

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

.lp-faq-item summary::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  content: "\ea4e";
  color: var(--lp-muted);
  font-family: "remixicon";
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.lp-faq-item[open] summary {
  color: #007fff;
  margin-bottom: -0.375rem;
}

.lp-faq-item[open] summary::before {
  content: "\ea78";
  transform: translateY(-2px);
}

.lp-faq-panel {
  overflow: hidden;
  transition:
    height 280ms ease,
    opacity 220ms ease;
}

.lp-faq-item p,
.lp-faq-item li {
  color: #323b3a;
  font-size: 1rem;
  line-height: 1.2;
}

.lp-faq-item p {
  margin: 0 0 1.5rem;
}

.lp-faq-item ul {
  max-width: 820px;
  margin: 0 0 26px 22px;
  padding-left: 22px;
}

.lp-faq-item li + li {
  margin-top: 4px;
}

.text-primary {
  color: var(--lp-primary);
  background: linear-gradient(180deg, var(--lp-primary), #0e417e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-searix-001 {
  width: min(100%, 980px);
  position: relative;
  overflow: hidden;
  background: #fffaf2;
  user-select: none;
  touch-action: pan-y;
}

.carousel-searix-001 .searix-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: grab;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(0, 0, 0, 0.04)),
    #e5ddd1;
}

.carousel-searix-001 .searix-track {
  position: absolute;
  inset: 0;
}

.carousel-searix-001 .searix-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  margin: 0;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-searix-001 .searix-media-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31, 42, 46, 0.02), rgba(31, 42, 46, 0.12)),
    #ddd3c6;
}

.carousel-searix-001 .searix-slide img,
.carousel-searix-001 .searix-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.carousel-searix-001 .searix-slide img.is-ready,
.carousel-searix-001 .searix-slide video.is-ready {
  opacity: 1;
}

.carousel-searix-001 .searix-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    repeating-linear-gradient(
      -45deg,
      rgba(31, 42, 46, 0.04) 0,
      rgba(31, 42, 46, 0.04) 12px,
      rgba(255, 255, 255, 0.08) 12px,
      rgba(255, 255, 255, 0.08) 24px
    );
}

.carousel-searix-001 .searix-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}

.carousel-searix-001 .searix-progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  transform: scaleX(0);
  transform-origin: left center;
}

.carousel-searix-001 > [data-searix-slide] {
  display: none;
}

.carousel-searix-001 {
  width: min(100%, 980px);
  position: relative;
  overflow: hidden;
  background: #fffaf2;
  user-select: none;
  touch-action: pan-y;
}

.carousel-searix-001 .searix-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: grab;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(0, 0, 0, 0.04)),
    #e5ddd1;
}

.carousel-searix-001 .searix-track {
  position: absolute;
  inset: 0;
}

.carousel-searix-001 .searix-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  margin: 0;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-searix-001 .searix-media-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31, 42, 46, 0.02), rgba(31, 42, 46, 0.12)),
    #ddd3c6;
}

.carousel-searix-001 .searix-slide img,
.carousel-searix-001 .searix-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.carousel-searix-001 .searix-slide img.is-ready,
.carousel-searix-001 .searix-slide video.is-ready {
  opacity: 1;
}

.carousel-searix-001 .searix-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    repeating-linear-gradient(
      -45deg,
      rgba(31, 42, 46, 0.04) 0,
      rgba(31, 42, 46, 0.04) 12px,
      rgba(255, 255, 255, 0.08) 12px,
      rgba(255, 255, 255, 0.08) 24px
    );
}

.carousel-searix-001 .searix-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}

.carousel-searix-001 .searix-progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  transform: scaleX(0);
  transform-origin: left center;
}

.carousel-searix-001 > [data-searix-slide] {
  display: none;
}

.nf-form-yen .ninja-forms-req-symbol {
  display: none;
}

.nf-form-yen .label-above .nf-field-label {
  margin-bottom: 0.25rem;
}

.nf-form-yen .nf-field-container {
  margin-bottom: 0;
}

.nf-form-yen .nf-error-msg {
  position: absolute;
}

.nf-form-yen .nf-after-field .nf-error-msg {
  font-size: 0.75rem;
  margin-top: -0.2rem;
}

.nf-form-yen .nf-before-form-content {
  display: none;
}

.nf-form-yen nf-fields-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem;
}

.nf-form-yen nf-field {
  flex: 0 0 100%;
  width: 100%;
}

.nf-form-yen nf-field:has(.nf-field-w50) {
  flex: 1 1 45%;
  max-width: 50%;
}

.nf-form-yen .nf-field-element textarea {
  height: auto;
}

.nf-form-yen .nf-btn-submit {
  display: flex;
  min-width: 12rem;
  margin-left: auto;
  font-weight: 700;
  color: #ffffff;
  background: var(--lp-primary);
  border: none;
  border-radius: 9999px;
  box-shadow: none;
  text-transform: uppercase;
}

.lp-card-n2mr {
  background: linear-gradient(180deg, #98b8df, #4985cd, #093f7f);
  border-radius: 2rem;
  box-shadow: 0 14px 44px rgb(156 191 255 / 38%);
  min-height: 100%;
  padding: 1rem;
  padding-bottom: 2rem;
}

.lp-card-n2mr h3 {
  font: 700 1.75rem / 1.2 "Lato", sans-serif;
  display: flex;
  align-items: center;
  color: #ffffff;
  gap: 12px;
  margin: 1rem 0 0.5rem;
}

.lp-card-n2mr-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 1.25rem;
  margin-bottom: 0rem;
}

.lp-card-n2mr-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-card-n2mr p {
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  opacity: 0.7;
}

.lp-card-x9mb-list {
  flex-wrap: wrap;
  gap: 0.5rem
}

.lp-card-x9mb-card {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(20, 34, 33, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94) 80%, var(--lp-secondary) 200%);
}

.lp-card-x0mb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.375rem;
}

.lp-card-x0mb-card {
  flex: 1 1 calc((100% - 2.75rem) / 3);
  min-width: 0;
}

.lp-card-x0mb-card img {
  border-radius: 1rem;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
}

.lp-card-x0mb-card p {
  color: var(--lp-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
}

.lp-footer {
  margin-top: 0;
  padding: 4rem 0 2rem;
  color: #ffffff;
  background: linear-gradient(180deg, #043562 0%, #02080e 100%);
  border-radius: 2rem 2rem 0 0;
}

.lp-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(1440px, calc(100% - 80px));
}

.lp-footer-top,
.lp-footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.lp-footer-top {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.74);
}

.lp-footer-logo {
  display: inline-flex;
  width: min(38vw, 470px);
  text-decoration: none;
}

.lp-footer-logo img {
  width: 100%;
  height: auto;
}

.lp-footer-contact,
.lp-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.lp-footer-contact {
  gap: 0.875rem;
}

.lp-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.lp-footer-email i {
  font-size: 1em;
  line-height: 1;
}

.lp-footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem;
}

.lp-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 3rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.lp-footer-socials a:hover,
.lp-footer-socials a:focus {
  color: #ffffff;
  transform: translateY(-2px);
}

.lp-footer-socials i {
  font-size: 3rem;
  line-height: 1;
}

.lp-footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
}

.lp-footer-copy p,
.lp-footer-meta p {
  margin: 0;
}

.lp-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 180ms ease;
}

.lp-footer a:hover,
.lp-footer a:focus {
  color: var(--lp-secondary);
}

.lp-footer-meta {
  gap: 0.25rem;
  color: #ffffff;
  text-align: right;
}

.lp-footer-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 0.55rem;
  font-size: 1.15rem;
  line-height: 1.1;
}

.lp-footer-meta > a {
  font-size: 0.875rem;
  line-height: 1.2;
  opacity: 0.8;
}


/* ====================================== 
   SCREEN WIDTH SMALLER THAN 980PX
   ====================================== */
@media (max-width: 980px) {
  body {
    background: linear-gradient(
      180deg,
      var(--lp-primary) 0,
      var(--lp-secondary) 430px,
      #ffffff 980px,
      #ffffff 100%
    );
  }

  .lp-nav-shell {
    flex-wrap: wrap;
    gap: 0;
    width: min(680px, 100%);
    padding: 10px 12px 10px 18px;
    border-radius: 28px;
  }

  .lp-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .lp-pill-nav {
    flex: 0 0 100%;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      padding-top 180ms ease;
  }

  .lp-nav-shell.is-open .lp-pill-nav {
    max-height: 260px;
    padding-top: 1rem;
    opacity: 1;
  }

  .lp-section {
    padding: 64px 0;
  }

  .lp-button-demo {
    display: none;
  }

  .lp-hero {
    padding-top: 150px;
  }

  .lp-hero-layout,
  .lp-step {
    flex-direction: column;
  }

  .lp-hero-layout,
  .lp-step {
    gap: 40px;
  }


  .lp-section-compact {
    padding-top: 40px;
  }

  .lp-section-heading {
    margin-bottom: 34px;
  }

  .lp-section-heading h2,
  .lp-conference-band h2 {
    font-size: 2.7rem;
  }

  .lp-conference-panel {
    padding: 3rem 2rem;
    background:
      radial-gradient(
        circle at 82% 28%,
        rgba(255, 255, 255, 0.64),
        transparent 15%
      ),
      linear-gradient(
        135deg,
        #061a31 0%,
        #123d76 66%,
        rgba(191, 230, 245, 0.95) 100%
      );
  }

  .lp-conference-copy {
    flex-basis: 54%;
    max-width: 600px;
  }

  .lp-conference-band h2 {
    max-width: 560px;
    font-size: 2.5rem;
  }

  .lp-conference-media {
    flex-basis: 42%;
    width: min(42%, 420px);
  }

  .lp-section-heading p,
  .lp-subtitle,
  .lp-conference-band p {
    font-size: 1.12rem;
  }

  .lp-quote-text {
    font-size: 1.2rem;
  }

  .lp-how-it-works .lp-container::before {
    top: 206px;
    bottom: 82px;
    left: 18px;
  }

  .lp-step {
    padding: 46px 0 46px 64px;
  }

  .lp-step-copy h3 {
    font-size: 2rem;
  }

  .lp-step-copy h3 span {
    font-size: 4.4rem;
  }

  .lp-form-container {
    flex-direction: column;
    padding: 6rem 1.5rem 0;
  }

  .lp-section-form {
    padding-top: 20rem;
  }

  .lp-form-intro {
    padding-left: 18.2rem;
  }

  .lp-form-portrait {
    position: absolute;
    top: -15.75rem;
    left: 0;
    width: 19rem;
    height: auto;
    margin: 0;
    transform: none;
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 72%,
      transparent 100%
    );
  }

  .nf-form-yen .nf-btn-submit {
    margin: auto;
    width: 100%;
    max-width: 32rem;
  }

  .nf-form-yen .nf-field-element textarea {
    height: 14rem;
  }

  .nf-form-yen nf-field:has(.nf-field-w50) {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
  }

  .lp-hero-copy,
  .lp-hero-media,
  .lp-step-copy,
  .lp-step-media {
    flex-basis: auto;
    max-width: none;
    width: 100%;
    min-width: 0;
  }

  .lp-faq-layout {
    flex-direction: column;
    gap: 34px;
  }

  .lp-faq .lp-section-heading {
    position: static;
    flex-basis: auto;
    margin-bottom: 0;
  }

  .lp-faq-list {
    width: 100%;
  }

  .lp-card-list-3 > *,
  .lp-proof-list > *,
  .lp-included-list > * {
    flex-basis: calc((100% - 22px) / 2);
  }

  .lp-included-list > * {
    flex-basis: clamp(260px, 42vw, 340px);
  }

  .lp-hero-media {
    align-items: stretch;
  }

  .lp-client-track img {
    flex-basis: calc((100% - 8rem) / 4);
    width: 96px;
  }

  .lp-client-heading h2 {
    font-size: 1.9rem;
  }

  .lp-client-heading p {
    font-size: 1rem;
  }

  .lp-footer-top,
  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .lp-footer-contact,
  .lp-footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .lp-footer-meta {
    order: -1;
  }

  .lp-footer-socials,
  .lp-footer-locations {
    justify-content: flex-start;
  }

  .lp-footer-locations {
    font-size: 1.25rem;
  }

  .lp-footer-copy {
    font-size: 0.75rem;
  }
}

/* ====================================== 
   SCREEN WIDTH SMALLER THAN 640PX
   ====================================== */
@media (max-width: 640px) {
  body {
    background: linear-gradient(
      180deg,
      var(--lp-primary) 0,
      var(--lp-secondary) 380px,
      #ffffff 900px,
      #ffffff 100%
    );
  }

  .lp-container,
  .lp-narrow {
    width: min(100% - 28px, 1180px);
  }

  .lp-section {
    padding: 44px 0;
  }

  .lp-section-heading {
    margin-bottom: 28px;
  }

  .lp-section-heading h2,
  .lp-conference-band h2 {
    font-size: 2rem;
  }

  .lp-conference-band {
    padding-block: 44px;
  }

  .lp-conference-panel {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .lp-conference-band h2 {
    font-size: 2.25rem;
    line-height: 1;
  }

  .lp-section-heading p,
  .lp-subtitle,
  .lp-conference-band p {
    font-size: 1.05rem;
  }

  .lp-conference-metrics {
    gap: 12px;
  }

  .lp-conference-metrics span,
  .lp-conference-band .lp-button {
    width: 100%;
  }

  .lp-conference-band .lp-button {
    padding-inline: 1rem;
    text-align: center;
    white-space: normal;
  }

  .lp-conference-media {
    flex-basis: auto;
    width: 100%;
    opacity: 1;
    padding: 0;
    border-radius: 14px;
    order: -1;
  }

  .lp-site-header {
    padding: 12px 0;
  }

  .lp-brand img {
    width: 124px;
  }

  .lp-pill-nav {
    width: 100%;
    padding: 0;
    border-radius: 22px;
  }

  .lp-pill-nav a {
    flex: 0 0 auto;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 10px 11px;
    font-size: 0.8rem;
  }

  .lp-hero {
    padding-top: 7rem;
    padding-bottom: 44px;
  }

  .lp-hero-layout,
  .lp-step {
    gap: 32px;
  }

  .lp-title {
    font-size: 3rem;
  }

  .lp-hero-media {
    flex-direction: column;
  }

  .lp-client-marquee::before,
  .lp-client-marquee::after {
    width: 52px;
  }

  .lp-client-track {
    gap: 28px;
    padding: 20px 0;
  }

  .lp-client-track img {
    flex-basis: calc((100% - 56px) / 3);
    width: 76px;
  }

  .lp-client-heading {
    margin-bottom: 18px;
  }

  .lp-client-heading h2 {
    font-size: 1.45rem;
  }

  .lp-client-heading p {
    font-size: 0.95rem;
  }

  .lp-quote-text {
    font-size: 1.1rem;
  }

  .lp-how-it-works .lp-container::before {
    top: 184px;
    bottom: 60px;
    left: 14px;
  }

  .lp-step {
    padding: 34px 0 34px 48px;
  }

  .lp-step-copy h3 span::before {
    left: -43px;
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .lp-step-copy h3 {
    font-size: 1.65rem;
  }

  .lp-step-copy h3 span {
    font-size: 3.3rem;
  }

  .lp-section-form {
    padding-top: 13rem;
  }

  .lp-form-container {
    border-radius: 28px;
    padding-top: 11rem;
  }

  .lp-form-intro {
    padding-left: 0;
  }

  .lp-form-portrait {
    width: 17rem;
  }

  .lp-form-row {
    grid-template-columns: 1fr;
  }

  .lp-form-intro h2 {
    font-size: 2.4rem;
  }

  .lp-form-intro p {
    font-size: 1rem;
  }

  .lp-form-shell label {
    font-size: 1rem;
  }

  .lp-form-shell input,
  .lp-form-shell textarea {
    min-height: 56px;
  }

  .lp-form-submit {
    align-self: stretch;
    min-height: 58px;
  }

  .lp-faq-item {
    padding-left: 0;
  }

  .lp-faq-item summary {
    padding-left: 34px;
    font-size: 1.15rem;
  }

  .lp-faq-item p,
  .lp-faq-item li {
    font-size: 1rem;
  }

  .lp-card-list-3 > *,
  .lp-proof-list > *,
  .lp-included-list > * {
    flex-basis: 100%;
  }

  .lp-included-list > * {
    flex-basis: min(78vw, 320px);
  }

  .lp-included-controls {
    justify-content: flex-start;
  }

  .lp-card-x0mb-list {
    flex-direction: column;
  }

  .lp-card-x0mb-card {
    flex-basis: 100%;
  }

  .lp-footer {
    padding: 3rem 0 2rem;
  }

  .lp-footer-logo {
    width: min(72vw, 340px);
  }

}

/* ====================================== 
   SCREEN WIDTH SMALLER THAN 400PX
   ====================================== */
@media (max-width: 400px) {
  .lp-footer-locations {
    font-size: 1rem;
  }
}