.gxai-development-lp {
  --navy-950: #06182a;
  --navy-900: #071d33;
  --navy-800: #0b2b49;
  --slate-700: #405a70;
  --slate-600: #587086;
  --slate-500: #536b80;
  --line: #d6e3eb;
  --line-strong: #bdd0dc;
  --surface: #ffffff;
  --surface-tint: #f2f7fa;
  --surface-blue: #e8f2f7;
  --green: #087b5b;
  --green-bright: #14aa76;
  --cyan: #04a8c7;
  --blue: #0a65b7;
  --lime: #a9dc17;
  --gradient: linear-gradient(90deg, var(--lime), var(--green-bright) 36%, var(--cyan) 68%, var(--blue));
  --shadow-sm: 0 8px 24px rgba(6, 24, 42, 0.07);
  --shadow-lg: 0 28px 70px rgba(6, 24, 42, 0.13);
  --shell: 1440px;
  isolation: isolate;
  width: 100%;
}

.gxai-development-lp [hidden] {
  display: none !important;
}

.gxai-development-lp * {
  box-sizing: border-box;
}

.gxai-development-lp {
  scroll-behavior: smooth;
}

html.gxai-development-lp-root {
  scroll-behavior: smooth;
}

.gxai-development-lp {
  margin: 0;
  background: var(--surface);
  color: var(--navy-900);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.gxai-development-lp,
.gxai-development-lp button,
.gxai-development-lp input,
.gxai-development-lp textarea,
.gxai-development-lp select {
  font-family: inherit;
}

.gxai-development-lp a {
  color: inherit;
  text-decoration: none;
}

.gxai-development-lp img {
  display: block;
  max-width: 100%;
}

.gxai-development-lp button,
.gxai-development-lp summary,
.gxai-development-lp a {
  -webkit-tap-highlight-color: transparent;
}

.gxai-development-lp :focus-visible {
  outline: 3px solid #007f99;
  outline-offset: 4px;
}

.gxai-development-lp [id] {
  scroll-margin-top: 105px;
}

.gxai-development-lp .shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.gxai-development-lp .skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  background: var(--navy-900);
  color: white;
  transform: translateY(-150%);
}

.gxai-development-lp .skip-link:focus {
  transform: none;
}

.gxai-development-lp .screen-reader-text,
.gxai-development-lp .sr-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.gxai-development-lp .site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(189, 208, 220, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.gxai-development-lp .header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 32px;
}

.gxai-development-lp .home-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.gxai-development-lp .brand-logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 284px;
  aspect-ratio: 1132 / 310;
  background: transparent;
}

.gxai-development-lp .brand-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.gxai-development-lp .brand-logo--compact {
  width: 222px;
}

.gxai-development-lp .mobile-only-break {
  display: none;
}

.gxai-development-lp .desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
}

.gxai-development-lp .desktop-nav a {
  position: relative;
  padding: 14px 0;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.gxai-development-lp .desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--gradient);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.gxai-development-lp .desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gxai-development-lp .button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--navy-900);
  border-radius: 5px;
  background: var(--navy-900);
  box-shadow: 0 8px 20px rgba(7, 29, 51, 0.16);
  color: white;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gxai-development-lp .button::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  border-radius: 5px 5px 0 0;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .button {
  position: relative;
  overflow: hidden;
}

.gxai-development-lp .button:hover {
  background: var(--navy-800);
  box-shadow: 0 13px 28px rgba(7, 29, 51, 0.2);
  transform: translateY(-2px);
}

.gxai-development-lp .button--small {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 9px 18px;
  font-size: 13px;
}

.gxai-development-lp .button--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  color: var(--navy-900);
}

.gxai-development-lp .button--secondary:hover {
  border-color: var(--blue);
  background: white;
}

.gxai-development-lp .mobile-menu {
  position: relative;
  display: none;
  margin-left: auto;
}

.gxai-development-lp .mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
}

.gxai-development-lp .mobile-menu summary::-webkit-details-marker {
  display: none;
}

.gxai-development-lp .mobile-menu summary span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  transition: transform 180ms ease;
}

.gxai-development-lp .mobile-menu[open] summary span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.gxai-development-lp .mobile-menu[open] summary span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.gxai-development-lp .mobile-menu nav {
  position: absolute;
  top: 57px;
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  border: 1px solid var(--line-strong);
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

.gxai-development-lp .mobile-menu nav a,
.gxai-development-lp .mobile-menu nav button {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.gxai-development-lp .mobile-menu nav a:last-child,
.gxai-development-lp .mobile-menu nav button:last-child {
  border-bottom: 0;
  background: var(--navy-900);
  color: white;
}

.gxai-development-lp .blueprint {
  background-color: var(--surface-tint);
  background-image:
    linear-gradient(rgba(10, 101, 183, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 101, 183, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
}

.gxai-development-lp .hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(660px, calc(100svh - 88px), 820px);
  overflow: hidden;
  align-items: center;
  border-bottom: 1px solid rgba(19, 198, 232, 0.28);
  background-color: #020b16;
  background-image:
    linear-gradient(90deg, rgba(2, 11, 22, 0.98) 0%, rgba(2, 11, 22, 0.93) 38%, rgba(2, 11, 22, 0.61) 62%, rgba(2, 11, 22, 0.2) 82%, rgba(2, 11, 22, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 11, 22, 0.22) 0%, rgba(2, 11, 22, 0.06) 55%, rgba(2, 11, 22, 0.72) 100%),
    var(--gxai-hero-image);
  background-position: center, center, center right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 98px 0 94px;
}

.gxai-development-lp .hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 198, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 198, 232, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, black, transparent 67%);
  mask-image: linear-gradient(90deg, black, transparent 67%);
  pointer-events: none;
}

.gxai-development-lp .hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 77% 49%, rgba(4, 168, 199, 0.14), transparent 28%),
    linear-gradient(90deg, transparent 0 68%, rgba(169, 220, 23, 0.07) 68.1%, transparent 68.3%);
  content: "";
  pointer-events: none;
}

.gxai-development-lp .hero-rail,
.gxai-development-lp .contact-rail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  background: var(--gradient);
}

.gxai-development-lp .hero-rail {
  z-index: 2;
}

.gxai-development-lp .hero-grid {
  position: relative;
  z-index: 1;
}

.gxai-development-lp .hero-copy {
  max-width: 1060px;
}

.gxai-development-lp .eyebrow,
.gxai-development-lp .kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.gxai-development-lp .eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.gxai-development-lp .hero .eyebrow {
  margin-bottom: 26px;
  color: rgba(219, 237, 247, 0.78);
  letter-spacing: 0.2em;
}

.gxai-development-lp .eyebrow span {
  width: 26px;
  height: 3px;
  background: var(--gradient);
}

.gxai-development-lp .hero h1 {
  max-width: 1050px;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1.2;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.gxai-development-lp .hero h1 em {
  position: relative;
  background: linear-gradient(100deg, #c9ef28 0%, #55d773 40%, #22ccdf 80%);
  background-clip: text;
  color: transparent;
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.gxai-development-lp .hero h1 em::after {
  content: none;
}

.gxai-development-lp .hero-lead {
  max-width: 820px;
  margin: 32px 0 0;
  color: rgba(225, 238, 247, 0.84);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 520;
  line-height: 1.9;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.46);
}

.gxai-development-lp .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.gxai-development-lp .hero-actions .button {
  min-width: 220px;
}

.gxai-development-lp .hero-actions .button:first-child {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  color: var(--navy-950);
}

.gxai-development-lp .hero-actions .button:first-child:hover {
  background: white;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34), 0 0 30px rgba(19, 198, 232, 0.13);
}

.gxai-development-lp .hero-actions .button--secondary {
  border-color: rgba(207, 231, 243, 0.42);
  background: rgba(2, 16, 30, 0.54);
  box-shadow: inset 0 0 0 1px rgba(19, 198, 232, 0.04);
  color: white;
  backdrop-filter: blur(12px);
}

.gxai-development-lp .hero-actions .button--secondary:hover {
  border-color: rgba(19, 198, 232, 0.74);
  background: rgba(7, 37, 64, 0.82);
}

.gxai-development-lp .hero-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(178, 202, 216, 0.68);
  font-size: 12px;
}

.gxai-development-lp .fact-band {
  border-bottom: 1px solid var(--line);
  background: white;
}

.gxai-development-lp .fact-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
}

.gxai-development-lp .fact-grid > div {
  position: relative;
  min-height: 128px;
  border-right: 1px solid var(--line);
  padding: 28px 34px 24px;
}

.gxai-development-lp .fact-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.gxai-development-lp .fact-grid > div::before {
  position: absolute;
  top: 0;
  left: 34px;
  width: 72px;
  height: 4px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .fact-grid span,
.gxai-development-lp .service-meta span,
.gxai-development-lp .service-meta b,
.gxai-development-lp .condition-grid span,
.gxai-development-lp .vision-goal > span,
.gxai-development-lp .contact-grid article > span {
  display: block;
  color: var(--slate-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.gxai-development-lp .fact-grid strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(19px, 1.7vw, 27px);
  letter-spacing: -0.035em;
}

.gxai-development-lp .section {
  padding: 112px 0;
}

.gxai-development-lp .section--tint {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-tint);
}

.gxai-development-lp .section-heading h2,
.gxai-development-lp .conditions-head h2,
.gxai-development-lp .vision h2,
.gxai-development-lp .contact h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.34;
}

.gxai-development-lp .section-lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--slate-700);
  font-size: 17px;
}

.gxai-development-lp .intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
}

.gxai-development-lp .intro-copy > p {
  margin: 5px 0 34px;
  color: var(--slate-700);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 520;
  line-height: 2;
}

.gxai-development-lp .problem-line {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-tint);
  padding: 20px 22px;
}

.gxai-development-lp .problem-line span {
  font-size: 13px;
  font-weight: 750;
}

.gxai-development-lp .problem-line i {
  height: 2px;
  background: var(--gradient);
}

.gxai-development-lp .section-topline,
.gxai-development-lp .conditions-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.gxai-development-lp .section-topline > p,
.gxai-development-lp .conditions-head > p {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--slate-600);
  font-size: 14px;
}

.gxai-development-lp .service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gxai-development-lp .service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 28px 25px 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gxai-development-lp .service-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 5px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.gxai-development-lp .service-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 38px;
}

.gxai-development-lp .service-meta span {
  color: var(--blue);
}

.gxai-development-lp .service-meta b {
  color: var(--green);
}

.gxai-development-lp .service-card h3 {
  margin: 0 0 18px;
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.55;
}

.gxai-development-lp .service-card > p {
  margin: 0;
  color: var(--slate-700);
  font-size: 14px;
}

.gxai-development-lp .service-card footer {
  display: grid;
  gap: 5px;
  margin: auto -25px 0;
  border-top: 1px solid var(--line);
  background: #f8fbfc;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 700;
  padding: 18px 25px;
}

.gxai-development-lp .service-card footer span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.gxai-development-lp .strength-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(70px, 9vw, 150px);
}

.gxai-development-lp .sticky-heading {
  position: sticky;
  top: 130px;
}

.gxai-development-lp .strength-list {
  border-top: 1px solid var(--line-strong);
}

.gxai-development-lp .strength-list article {
  position: relative;
  border-bottom: 1px solid var(--line-strong);
  padding: 39px 20px 39px 102px;
}

.gxai-development-lp .strength-list article::before {
  position: absolute;
  top: 45px;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .strength-list span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.gxai-development-lp .strength-list h3 {
  margin: 8px 0 8px;
  font-size: clamp(22px, 2vw, 29px);
  letter-spacing: -0.04em;
}

.gxai-development-lp .strength-list p {
  margin: 0;
  color: var(--slate-700);
  font-size: 15px;
}

.gxai-development-lp .conditions {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy-950);
  background-size: 72px 72px;
  color: white;
}

.gxai-development-lp .conditions::after {
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(4, 168, 199, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(20, 170, 118, 0.03), 0 0 0 190px rgba(10, 101, 183, 0.025);
  content: "";
}

.gxai-development-lp .conditions .shell {
  position: relative;
  z-index: 1;
}

.gxai-development-lp .kicker--light {
  color: #67d8e9;
}

.gxai-development-lp .conditions-head > p {
  color: #a9bdcb;
}

.gxai-development-lp .condition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.gxai-development-lp .condition-grid article {
  min-height: 168px;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.025);
  padding: 24px 25px;
}

.gxai-development-lp .condition-grid span {
  color: #67d8e9;
}

.gxai-development-lp .condition-grid strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -0.04em;
}

.gxai-development-lp .condition-grid p {
  margin: 5px 0 0;
  color: #a9bdcb;
  font-size: 12px;
}

.gxai-development-lp .project-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 16%, rgba(4, 168, 199, 0.08), transparent 28%),
    var(--surface);
}

.gxai-development-lp .project-heading-row {
  margin-bottom: 26px;
}

.gxai-development-lp .project-intro {
  max-width: 490px;
}

.gxai-development-lp .project-intro p {
  margin: 0 0 10px;
  color: var(--slate-600);
  font-size: 14px;
}

.gxai-development-lp .project-intro span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.gxai-development-lp .sample-notice {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  border: 1px solid #d8e6aa;
  border-left: 5px solid var(--lime);
  border-radius: 4px;
  background: #f7faeb;
  padding: 13px 17px;
}

.gxai-development-lp .sample-notice strong {
  flex: 0 0 auto;
  color: #567200;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.gxai-development-lp .sample-notice p {
  margin: 0;
  color: #465636;
  font-size: 12px;
  font-weight: 650;
}

.gxai-development-lp .project-carousel {
  position: relative;
}

.gxai-development-lp .project-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 2px;
}

.gxai-development-lp .carousel-state {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--slate-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.gxai-development-lp .carousel-state > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slate-500);
}

.gxai-development-lp .carousel-state > span.is-running {
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(20, 170, 118, 0.32);
  animation: gxaiCarouselPulse 1.8s ease-out infinite;
}

@keyframes gxaiCarouselPulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 170, 118, 0.32); }
  70% { box-shadow: 0 0 0 8px rgba(20, 170, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 170, 118, 0); }
}

.gxai-development-lp .carousel-dots,
.gxai-development-lp .carousel-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.gxai-development-lp .carousel-dots {
  max-width: min(42vw, 520px);
  padding-bottom: 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--blue) var(--surface-blue);
  scrollbar-width: thin;
}

.gxai-development-lp .carousel-dots button,
.gxai-development-lp .carousel-actions button {
  display: grid;
  min-width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.gxai-development-lp .carousel-dots button::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line-strong);
  content: "";
  transition: width 220ms ease, background 220ms ease;
}

.gxai-development-lp .carousel-dots button.is-active {
  border-color: var(--blue);
  background: var(--surface-tint);
}

.gxai-development-lp .carousel-dots button.is-active::before {
  width: 20px;
  background: var(--gradient);
}

.gxai-development-lp .carousel-actions button:hover,
.gxai-development-lp .carousel-dots button:hover {
  border-color: var(--blue);
}

.gxai-development-lp .carousel-actions .carousel-play {
  min-width: 70px;
  background: var(--navy-900);
  color: white;
  font-size: 11px;
}

.gxai-development-lp .carousel-actions .carousel-play:hover {
  background: var(--navy-800);
}

.gxai-development-lp .carousel-actions button:disabled {
  cursor: not-allowed;
  border-color: var(--line);
  background: var(--surface-tint);
  color: var(--slate-500);
}

.gxai-development-lp .project-scroller {
  display: grid;
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
  padding: 28px 3px 34px;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 3px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--blue) var(--surface-blue);
  scrollbar-width: thin;
}

.gxai-development-lp .project-scroller--animated {
  opacity: 0;
  transition: opacity 260ms ease;
}

.gxai-development-lp .project-scroller--animated.is-ready {
  opacity: 1;
}

.gxai-development-lp .project-carousel.is-single .project-controls {
  justify-content: flex-start;
}

.gxai-development-lp .project-carousel.is-single .project-scroller {
  grid-auto-columns: min(100%, 520px);
  justify-content: center;
  overflow-x: hidden;
}

.gxai-development-lp .project-scroller::-webkit-scrollbar {
  height: 9px;
}

.gxai-development-lp .project-scroller::-webkit-scrollbar-track {
  border-radius: 20px;
  background: var(--surface-blue);
}

.gxai-development-lp .project-scroller::-webkit-scrollbar-thumb {
  border: 2px solid var(--surface-blue);
  border-radius: 20px;
  background: var(--blue);
}

.gxai-development-lp .project-card {
  --project-accent: var(--lime);
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: white;
  box-shadow: var(--shadow-sm);
  opacity: 0.78;
  scroll-snap-align: center;
  transform: scale(0.95);
  transform-origin: center;
  transition:
    border-color 650ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 650ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 450ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.gxai-development-lp .project-card:hover {
  border-color: var(--project-accent);
  box-shadow: var(--shadow-lg);
}

.gxai-development-lp .project-card:not(.is-active):hover,
.gxai-development-lp .project-card:focus-within {
  opacity: 0.94;
  transform: scale(0.97);
}

.gxai-development-lp .project-card.is-active {
  z-index: 2;
  border-color: var(--project-accent);
  box-shadow: 0 28px 70px rgba(6, 24, 42, 0.2);
  opacity: 1;
  transform: scale(1.018) translateY(-6px);
}

.gxai-development-lp .project-card.is-active::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .project-card--green {
  --project-accent: var(--green-bright);
}

.gxai-development-lp .project-card--cyan {
  --project-accent: var(--cyan);
}

.gxai-development-lp .project-card--blue {
  --project-accent: var(--blue);
}

.gxai-development-lp .project-card--navy {
  --project-accent: var(--navy-800);
}

.gxai-development-lp .project-visual {
  position: relative;
  overflow: hidden;
  height: 174px;
  border-bottom: 1px solid var(--line);
  background-color: #edf5f8;
  background-image:
    linear-gradient(rgba(10, 101, 183, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 101, 183, 0.08) 1px, transparent 1px);
  background-size: 27px 27px;
}

.gxai-development-lp .project-visual::before,
.gxai-development-lp .project-visual::after {
  position: absolute;
  border: 1px solid rgba(10, 101, 183, 0.14);
  border-radius: 50%;
  content: "";
}

.gxai-development-lp .project-visual::before {
  top: -92px;
  right: -70px;
  width: 230px;
  height: 230px;
}

.gxai-development-lp .project-visual::after {
  right: -12px;
  bottom: -86px;
  width: 175px;
  height: 175px;
}

.gxai-development-lp .project-grid-label {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 17px;
  color: var(--slate-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gxai-development-lp .parcel-shape {
  position: absolute;
  z-index: 1;
  top: 48px;
  left: 19%;
  width: 58%;
  height: 82px;
  background: var(--project-accent);
  clip-path: polygon(7% 16%, 71% 0, 100% 31%, 88% 91%, 36% 100%, 0 67%);
  opacity: 0.26;
  transform: rotate(-4deg);
}

.gxai-development-lp .parcel-node {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--project-accent);
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 0 7px rgba(255, 255, 255, 0.62);
}

.gxai-development-lp .parcel-node--a {
  top: 72px;
  left: 30%;
}

.gxai-development-lp .parcel-node--b {
  right: 25%;
  bottom: 35px;
}

.gxai-development-lp .project-card-body {
  padding: 24px 23px 22px;
}

.gxai-development-lp .project-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gxai-development-lp .sample-badge,
.gxai-development-lp .project-status {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 9px;
}

.gxai-development-lp .sample-badge {
  border: 1px solid #d7e4a6;
  background: #f5f9e7;
  color: #557000;
}

.gxai-development-lp .project-status {
  border: 1px solid var(--line);
  background: var(--surface-tint);
  color: var(--navy-800);
  text-align: center;
}

.gxai-development-lp .project-card-top p {
  margin: 8px 0 0;
  color: var(--slate-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.gxai-development-lp .project-card h3 {
  margin: 19px 0 1px;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.gxai-development-lp .project-updated {
  margin: 0 0 19px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.gxai-development-lp .project-data {
  display: grid;
  margin: 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gxai-development-lp .project-data > div {
  min-height: 76px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
}

.gxai-development-lp .project-data dt {
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 700;
}

.gxai-development-lp .project-data dd {
  margin: 4px 0 0;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.gxai-development-lp .project-link {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border: 1px solid var(--navy-900);
  border-radius: 4px;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 14px;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.gxai-development-lp .project-link:hover {
  background: var(--navy-900);
  color: white;
}

.gxai-development-lp .project-link--clone {
  pointer-events: none;
}

.gxai-development-lp .project-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 24px;
}

.gxai-development-lp .project-footnote p {
  max-width: 780px;
  margin: 0;
  color: var(--slate-600);
  font-size: 11px;
}

.gxai-development-lp .project-footnote-link {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 0;
}

.gxai-development-lp .flow-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.gxai-development-lp .flow-list li {
  position: relative;
  min-height: 300px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  padding: 30px 23px;
}

.gxai-development-lp .flow-list li:first-child {
  border-left: 1px solid var(--line-strong);
}

.gxai-development-lp .flow-list li::before {
  position: absolute;
  top: -3px;
  right: -1px;
  left: -1px;
  height: 5px;
  background: var(--gradient);
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
}

.gxai-development-lp .flow-list > li > span {
  display: block;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.gxai-development-lp .flow-list h3 {
  margin: 48px 0 12px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.gxai-development-lp .flow-list p {
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
}

.gxai-development-lp .vision {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: white;
  padding: 92px 0;
}

.gxai-development-lp .vision-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--gradient);
}

.gxai-development-lp .vision-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
}

.gxai-development-lp .vision-grid > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: #a9bdcb;
  font-size: 18px;
}

.gxai-development-lp .vision-goal {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 70px;
}

.gxai-development-lp .vision-goal > span {
  color: #67d8e9;
}

.gxai-development-lp .vision-goal strong {
  display: block;
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-size: clamp(72px, 8vw, 126px);
  letter-spacing: -0.07em;
  line-height: 1.05;
}

.gxai-development-lp .vision-goal small {
  margin-left: 8px;
  color: white;
  font-size: 22px;
  letter-spacing: 0;
}

.gxai-development-lp .vision-goal p {
  margin: 5px 0 0;
  color: #a9bdcb;
  font-size: 12px;
}

.gxai-development-lp .company-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(55px, 7vw, 110px);
}

.gxai-development-lp .company-copy {
  max-width: 680px;
}

.gxai-development-lp .company-copy .section-heading h2 {
  font-size: clamp(40px, 3.15vw, 48px);
}

.gxai-development-lp .company-title-line {
  white-space: nowrap;
}

.gxai-development-lp .company-message-mobile-break {
  display: none;
}

.gxai-development-lp .company-message {
  position: relative;
  max-width: 650px;
  margin-top: 42px;
  padding-top: 26px;
}

.gxai-development-lp .company-message::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .company-message p {
  margin: 0;
  color: var(--slate-700);
  font-size: 16px;
  font-weight: 550;
  line-height: 2;
}

.gxai-development-lp .company-message p + p {
  margin-top: 13px;
}

.gxai-development-lp .company-message .company-message-lead {
  color: var(--navy-900);
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.65;
}

.gxai-development-lp .company-message .company-message-lead strong {
  color: var(--blue);
  font-weight: 800;
}

.gxai-development-lp .company-card {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 34px;
}

.gxai-development-lp .company-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 5px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .company-logo-wrap {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  padding: 2px 0 28px;
}

.gxai-development-lp .company-card-title {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 20px 0 16px;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gxai-development-lp .company-card dl {
  margin: 0;
}

.gxai-development-lp .company-card dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.gxai-development-lp .company-card dl > div:last-child {
  border-bottom: 0;
}

.gxai-development-lp .company-card dt {
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
}

.gxai-development-lp .company-card dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.gxai-development-lp .company-card dl > .company-card-business {
  align-items: start;
}

.gxai-development-lp .company-business-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gxai-development-lp .company-business-list li {
  position: relative;
  padding-left: 16px;
}

.gxai-development-lp .company-business-list li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient);
  content: "";
}

@media (max-width: 1100px) {
  .gxai-development-lp .company-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gxai-development-lp .company-copy {
    max-width: 760px;
  }

  .gxai-development-lp .company-card {
    width: 100%;
    max-width: 760px;
  }
}

.gxai-development-lp .faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.gxai-development-lp .faq-list {
  border-top: 1px solid var(--line-strong);
}

.gxai-development-lp .faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.gxai-development-lp .faq-list summary {
  display: grid;
  min-height: 84px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  grid-template-columns: 50px 1fr 32px;
  gap: 18px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 750;
}

.gxai-development-lp .faq-list summary::-webkit-details-marker {
  display: none;
}

.gxai-development-lp .faq-list summary span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.gxai-development-lp .faq-list summary i {
  color: var(--green);
  font-size: 22px;
  font-style: normal;
  transition: transform 180ms ease;
}

.gxai-development-lp .faq-list details[open] summary i {
  transform: rotate(45deg);
}

.gxai-development-lp .faq-list details > p {
  margin: -4px 50px 26px 68px;
  color: var(--slate-700);
  font-size: 14px;
}

.gxai-development-lp .contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy-950);
  background-size: 78px 78px;
  color: white;
  padding: 104px 0 94px;
}

.gxai-development-lp .contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.gxai-development-lp .contact h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.gxai-development-lp .contact-lead {
  max-width: 750px;
  margin: 22px auto 44px;
  color: #b8c8d3;
  font-size: 16px;
}

.gxai-development-lp .contact-grid {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}

.gxai-development-lp .contact-grid article {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.055);
  padding: 30px;
}

.gxai-development-lp .contact-grid article::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 4px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .contact-grid article > span {
  color: #67d8e9;
}

.gxai-development-lp .contact-grid h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.gxai-development-lp .contact-grid p {
  min-height: 55px;
  margin: 0 0 23px;
  color: #b8c8d3;
  font-size: 13px;
}

.gxai-development-lp .contact-grid .contact-open {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: transparent;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gxai-development-lp .contact-grid .contact-open:hover {
  border-color: white;
  background: white;
  color: var(--navy-900);
}

.gxai-development-lp .contact-response-note {
  margin: 32px 0 0;
  color: #9fb6c5;
  font-size: 12px;
}

body.gxai-development-modal-open {
  overflow: hidden;
}

body.admin-bar.gxai-development-lp .site-header {
  top: 32px;
}

.gxai-development-lp .contact-dialog {
  width: min(940px, calc(100% - 32px));
  max-width: none;
  max-height: min(92dvh, 940px);
  margin: auto;
  overflow: auto;
  border: 0;
  border-radius: 7px;
  background: transparent;
  box-shadow: 0 40px 110px rgba(1, 10, 20, 0.42);
  color: var(--navy-900);
  padding: 0;
}

.gxai-development-lp .contact-dialog::backdrop {
  background: rgba(1, 9, 18, 0.76);
  backdrop-filter: blur(9px);
}

.gxai-development-lp .contact-dialog[open] {
  animation: gxaiDialogEnter 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gxaiDialogEnter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.gxai-development-lp .contact-dialog-panel {
  position: relative;
  overflow: visible;
  background: #f7fafc;
}

.gxai-development-lp .contact-dialog-panel::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .contact-dialog-header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(90deg, rgba(19, 198, 232, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(19, 198, 232, 0.05) 1px, transparent 1px),
    var(--navy-950) !important;
  background-size: 44px 44px;
  color: white;
  padding: 34px 38px 30px;
}

.gxai-development-lp .contact-dialog-header > div {
  max-width: 730px;
}

.gxai-development-lp .contact-dialog-header span {
  color: #67d8e9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.gxai-development-lp .contact-dialog-header h2 {
  margin: 7px 0 5px;
  color: white;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.gxai-development-lp .contact-dialog-header p {
  margin: 0;
  color: #b8cad7;
  font-size: 13px;
}

.gxai-development-lp .contact-dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  cursor: pointer;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gxai-development-lp .contact-dialog-close:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(4deg);
}

.gxai-development-lp .contact-dialog-close:disabled {
  cursor: wait;
  opacity: 0.5;
  transform: none;
}

.gxai-development-lp .inquiry-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px 38px 38px;
}

.gxai-development-lp .inquiry-choice > button {
  position: relative;
  display: grid;
  min-height: 255px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--navy-900);
  padding: 30px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gxai-development-lp .inquiry-choice > button::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 4px;
  background: var(--gradient);
  content: "";
}

.gxai-development-lp .inquiry-choice > button:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gxai-development-lp .inquiry-choice button > span {
  align-self: start;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gxai-development-lp .inquiry-choice strong {
  align-self: center;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.gxai-development-lp .inquiry-choice small {
  align-self: end;
  color: var(--slate-600);
  font-size: 12px;
}

.gxai-development-lp .inquiry-choice b {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: var(--green);
  font-size: 20px;
}

.gxai-development-lp .inquiry-form {
  padding: 28px 38px 38px;
}

.gxai-development-lp .inquiry-form-tabs {
  display: grid;
  margin-bottom: 26px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  padding: 4px;
}

.gxai-development-lp .inquiry-form-tabs button {
  min-height: 44px;
  cursor: pointer;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 750;
}

.gxai-development-lp .inquiry-form-tabs button.is-active {
  background: var(--navy-900);
  color: white;
}

.gxai-development-lp .inquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.gxai-development-lp .inquiry-form-grid label {
  display: grid;
  align-content: start;
  gap: 7px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 750;
}

.gxai-development-lp .field-required {
  display: inline-flex;
  margin-left: 6px;
  border-radius: 2px;
  background: rgba(10, 101, 183, 0.1);
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  vertical-align: 1px;
}

.gxai-development-lp .inquiry-form-grid input,
.gxai-development-lp .inquiry-form-grid select,
.gxai-development-lp .inquiry-form-grid textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 500;
  outline: 0;
  padding: 12px 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.gxai-development-lp .inquiry-form-grid input,
.gxai-development-lp .inquiry-form-grid select {
  min-height: 49px;
}

.gxai-development-lp .inquiry-form-grid textarea {
  min-height: 132px;
  line-height: 1.7;
  resize: vertical;
}

.gxai-development-lp .inquiry-form-grid input::placeholder,
.gxai-development-lp .inquiry-form-grid textarea::placeholder {
  color: #8da0ae;
}

.gxai-development-lp .inquiry-form-grid input:focus,
.gxai-development-lp .inquiry-form-grid select:focus,
.gxai-development-lp .inquiry-form-grid textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(4, 168, 199, 0.12);
}

.gxai-development-lp .field-full {
  grid-column: 1 / -1;
}

.gxai-development-lp .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: var(--slate-700);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.gxai-development-lp .privacy-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--blue);
}

.gxai-development-lp .privacy-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gxai-development-lp .inquiry-submit-row {
  display: grid;
  align-items: center;
  margin-top: 24px;
  grid-template-columns: 1fr auto;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.gxai-development-lp .inquiry-submit-row strong {
  color: var(--navy-900);
  font-size: 12px;
}

.gxai-development-lp .inquiry-submit-row p {
  max-width: 490px;
  margin: 3px 0 0;
  color: var(--slate-600);
  font-size: 11px;
}

.gxai-development-lp .inquiry-submit {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  border: 1px solid var(--navy-900);
  border-radius: 4px;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 13px 48px;
  text-align: center;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gxai-development-lp .inquiry-submit > span[aria-hidden="true"] {
  position: absolute;
  right: 18px;
  line-height: 1;
}

.gxai-development-lp .inquiry-submit:hover {
  background: var(--navy-800);
  box-shadow: 0 14px 30px rgba(6, 24, 42, 0.17);
  transform: translateY(-2px);
}

.gxai-development-lp .inquiry-submit:disabled,
.gxai-development-lp .inquiry-edit:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.gxai-development-lp .form-honeypot {
  position: fixed;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gxai-development-lp .inquiry-form:focus,
.gxai-development-lp .inquiry-confirm:focus,
.gxai-development-lp .inquiry-complete:focus {
  outline: 2px solid var(--blue);
  outline-offset: -3px;
}

.gxai-development-lp .inquiry-confirm {
  padding: 30px 38px 38px;
}

.gxai-development-lp .inquiry-confirm-type {
  display: grid;
  align-items: center;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  padding: 18px 20px;
}

.gxai-development-lp .inquiry-confirm-type span,
.gxai-development-lp .inquiry-confirm-list dt {
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 750;
}

.gxai-development-lp .inquiry-confirm-type strong {
  color: var(--navy-900);
  font-size: 14px;
}

.gxai-development-lp .inquiry-confirm-list {
  margin: 18px 0 0;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: white;
}

.gxai-development-lp .inquiry-confirm-list > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 15px 20px;
}

.gxai-development-lp .inquiry-confirm-list dt,
.gxai-development-lp .inquiry-confirm-list dd {
  margin: 0;
}

.gxai-development-lp .inquiry-confirm-list dd {
  min-width: 0;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.gxai-development-lp .inquiry-empty {
  color: #8799a6;
  font-weight: 500;
}

.gxai-development-lp .inquiry-auto-reply {
  margin: 18px 0 0;
  border-left: 3px solid var(--cyan);
  background: rgba(4, 168, 199, 0.07);
  color: var(--slate-700);
  font-size: 12px;
  line-height: 1.7;
  padding: 12px 15px;
  overflow-wrap: anywhere;
}

.gxai-development-lp .inquiry-error {
  margin: 16px 0 0;
  border: 1px solid rgba(189, 38, 56, 0.3);
  border-radius: 4px;
  background: rgba(189, 38, 56, 0.07);
  color: #a11f31;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.7;
  padding: 12px 15px;
}

.gxai-development-lp .inquiry-confirm-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.gxai-development-lp .inquiry-edit {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
  padding: 13px 20px;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.gxai-development-lp .inquiry-edit:hover:not(:disabled) {
  border-color: var(--navy-900);
  background: #f0f5f8;
}

.gxai-development-lp .inquiry-confirm-actions .inquiry-submit {
  min-width: 170px;
}

.gxai-development-lp .inquiry-complete {
  min-height: 350px;
  padding: 58px 38px 64px;
  text-align: center;
}

.gxai-development-lp .inquiry-complete-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(4, 168, 199, 0.22);
  color: white;
  font-size: 26px;
  font-weight: 800;
}

.gxai-development-lp .inquiry-complete h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.gxai-development-lp .inquiry-complete p {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.gxai-development-lp .inquiry-complete-notice {
  max-width: 600px;
  margin: 20px auto 0;
  border: 1px solid rgba(191, 133, 0, 0.28);
  border-radius: 4px;
  background: rgba(244, 184, 35, 0.09);
  color: var(--slate-700);
  padding: 16px 18px;
  text-align: left;
}

.gxai-development-lp .inquiry-complete-notice > strong {
  display: block;
  color: var(--navy-900);
  font-size: 13px;
}

.gxai-development-lp .inquiry-complete-notice p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.8;
}

.gxai-development-lp .inquiry-complete-reference {
  font-size: 12px !important;
}

.gxai-development-lp .inquiry-complete .inquiry-submit {
  min-width: 180px;
  margin-top: 28px;
}

.gxai-development-lp .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #04111e;
  color: #9fb2c0;
  padding: 36px 0 20px;
}

.gxai-development-lp .footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding-bottom: 28px;
}

.gxai-development-lp .footer-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 30px;
}

.gxai-development-lp .footer-brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: fit-content;
  background: transparent;
}

.gxai-development-lp .footer-brand .brand-logo {
  width: 222px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5)) drop-shadow(0 0 12px rgba(19, 198, 232, 0.12));
}

.gxai-development-lp .footer-company strong {
  display: block;
  color: white;
  font-size: 14px;
}

.gxai-development-lp .footer-company address {
  margin: 5px 0 0;
  color: #9fb2c0;
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}

.gxai-development-lp .footer-address-break {
  display: none;
}

.gxai-development-lp .footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 24px;
}

.gxai-development-lp .footer-nav a {
  white-space: nowrap;
  font-size: 12px;
}

.gxai-development-lp .footer-nav a:hover,
.gxai-development-lp .footer-bottom a:hover {
  color: white;
}

.gxai-development-lp .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 11px;
}

.gxai-development-lp .footer-bottom p {
  margin: 0;
}

/* Articles: the landing page shows one newest entry; the archive holds the full library. */
.gxai-development-lp .latest-article-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(169, 220, 23, 0.06), transparent 32%),
    var(--surface);
}

.gxai-development-lp .latest-article-topline {
  align-items: end;
}

.gxai-development-lp .latest-article-all-link,
.gxai-development-lp .latest-article-read-link,
.gxai-development-lp .article-card-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.gxai-development-lp .latest-article-all-link span,
.gxai-development-lp .latest-article-read-link span,
.gxai-development-lp .article-card-link span {
  transition: transform 180ms ease;
}

.gxai-development-lp .latest-article-all-link:hover span,
.gxai-development-lp .latest-article-read-link:hover span,
.gxai-development-lp .article-card-link:hover span {
  transform: translateX(4px);
}

.gxai-development-lp .latest-article-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.gxai-development-lp .latest-article-visual,
.gxai-development-lp .article-card-visual {
  display: block;
  overflow: hidden;
  background: var(--navy-900);
}

.gxai-development-lp .latest-article-visual {
  min-height: 420px;
}

.gxai-development-lp .latest-article-visual img,
.gxai-development-lp .article-card-visual img,
.gxai-development-lp .single-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gxai-development-lp .latest-article-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 74px);
}

.gxai-development-lp .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 15px;
  color: var(--slate-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.gxai-development-lp .article-meta > .article-category {
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--blue);
  padding: 5px 11px;
}

.gxai-development-lp .latest-article-copy h3 {
  margin: 24px 0 18px;
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.42;
  text-wrap: pretty;
}

.gxai-development-lp .latest-article-copy h3 a:hover,
.gxai-development-lp .article-card h2 a:hover,
.gxai-development-lp .article-card h3 a:hover {
  color: var(--blue);
}

.gxai-development-lp .latest-article-copy > p {
  max-width: 710px;
  margin: 0 0 25px;
  color: var(--slate-700);
  line-height: 1.95;
}

.gxai-development-lp .article-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-content: center;
  background:
    linear-gradient(rgba(4, 168, 199, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 168, 199, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 30% 25%, rgba(169, 220, 23, 0.18), transparent 36%),
    linear-gradient(135deg, #04111e, var(--navy-800));
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: white;
  text-align: center;
}

.gxai-development-lp .article-placeholder::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gxai-development-lp .article-placeholder b {
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.gxai-development-lp .article-placeholder small {
  margin-top: 10px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

/* Article archive and detail pages */
.gxai-development-lp.gxai-article-view {
  --shell: 1240px;
}

.gxai-development-lp .article-site-header .header-inner {
  min-height: 80px;
}

.gxai-development-lp .article-desktop-nav {
  margin-left: auto;
}

.gxai-development-lp .article-archive-hero,
.gxai-development-lp .single-article-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(169, 220, 23, 0.08), transparent 31%),
    linear-gradient(180deg, #f7fbfd, var(--surface));
}

.gxai-development-lp .article-archive-hero::before,
.gxai-development-lp .single-article-header::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  content: "";
  background: var(--gradient);
}

.gxai-development-lp .article-archive-hero {
  padding: 44px 0 70px;
}

.gxai-development-lp .article-breadcrumbs {
  margin-bottom: 56px;
}

.gxai-development-lp .article-breadcrumbs ol {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 0;
  padding: 0;
  color: var(--slate-600);
  font-size: 11px;
  list-style: none;
}

.gxai-development-lp .article-breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.gxai-development-lp .article-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--line-strong);
}

.gxai-development-lp .article-breadcrumbs li[aria-current="page"] {
  overflow: hidden;
  max-width: min(65vw, 560px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gxai-development-lp .article-breadcrumbs a:hover {
  color: var(--blue);
}

.gxai-development-lp .article-archive-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 830;
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.gxai-development-lp .article-archive-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.95;
}

.gxai-development-lp .article-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.gxai-development-lp .article-category-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: white;
  padding: 8px 17px;
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 750;
}

.gxai-development-lp .article-category-nav a:hover,
.gxai-development-lp .article-category-nav a[aria-current="page"] {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

.gxai-development-lp .article-archive-section {
  padding-top: 80px;
}

.gxai-development-lp .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}

.gxai-development-lp .article-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gxai-development-lp .article-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(6, 24, 42, 0.12);
  transform: translateY(-4px);
}

.gxai-development-lp .article-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(6, 24, 42, 0.12);
  outline: 3px solid #007f99;
  outline-offset: 4px;
}

.gxai-development-lp .article-card-primary-link::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.gxai-development-lp .article-card-primary-link:focus-visible {
  outline: 0;
}

.gxai-development-lp .article-card-visual {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.gxai-development-lp .article-card .article-placeholder {
  min-height: 100%;
}

.gxai-development-lp .article-card .article-placeholder b {
  font-size: 38px;
}

.gxai-development-lp .article-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 22px;
}

.gxai-development-lp .article-card h2,
.gxai-development-lp .article-card h3 {
  margin: 19px 0 14px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.58;
  text-wrap: pretty;
}

.gxai-development-lp .article-card-body > p {
  margin: 0 0 22px;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.85;
}

.gxai-development-lp .article-card-link {
  margin-top: auto;
}

.gxai-development-lp .article-card:hover .article-card-link span,
.gxai-development-lp .article-card:focus-within .article-card-link span {
  transform: translateX(4px);
}

.gxai-development-lp .article-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.gxai-development-lp .article-pagination .page-numbers {
  display: inline-grid;
  min-width: 46px;
  min-height: 46px;
  place-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  padding: 8px 13px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 750;
}

.gxai-development-lp .article-pagination .page-numbers:hover,
.gxai-development-lp .article-pagination .page-numbers.current {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

.gxai-development-lp .article-pagination .page-numbers.current {
  cursor: default;
}

.gxai-development-lp .article-empty-state {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-tint);
  padding: clamp(30px, 5vw, 62px);
}

.gxai-development-lp .article-empty-state h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
}

.gxai-development-lp .article-empty-state p {
  margin: 18px 0 28px;
  color: var(--slate-700);
}

.gxai-development-lp .article-reading-shell {
  width: min(calc(100% - 64px), 860px);
  margin-inline: auto;
}

.gxai-development-lp .single-article-header {
  padding: 42px 0 72px;
}

.gxai-development-lp .single-article-meta {
  margin-top: 6px;
}

.gxai-development-lp .single-article-header h1 {
  margin: 27px 0 0;
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 830;
  letter-spacing: -0.052em;
  line-height: 1.3;
  text-wrap: pretty;
}

.gxai-development-lp .single-article-lead {
  margin: 26px 0 0;
  color: var(--slate-700);
  font-size: 18px;
  line-height: 1.95;
}

.gxai-development-lp .single-article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 15px;
  margin-top: 28px;
  color: var(--slate-600);
  font-size: 12px;
}

.gxai-development-lp .single-article-byline strong {
  color: var(--navy-900);
}

.gxai-development-lp .single-article-hero {
  width: min(calc(100% - 64px), 1120px);
  margin: 64px auto 0;
}

.gxai-development-lp .single-article-hero img {
  max-height: 720px;
  border-radius: 6px;
}

.gxai-development-lp .single-article-hero figcaption {
  margin-top: 10px;
  color: var(--slate-600);
  font-size: 11px;
}

.gxai-development-lp .single-article-body {
  padding: 74px 0 76px;
  color: #19354c;
  font-size: 17px;
  line-height: 2.05;
}

.gxai-development-lp .single-article-body > *:first-child {
  margin-top: 0;
}

.gxai-development-lp .single-article-body h2 {
  margin: 2.2em 0 0.8em;
  padding-top: 0.9em;
  border-top: 1px solid var(--line);
  color: var(--navy-900);
  font-size: clamp(27px, 3.1vw, 38px);
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1.48;
}

.gxai-development-lp .single-article-body h3 {
  margin: 2em 0 0.65em;
  color: var(--navy-900);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 790;
  line-height: 1.55;
}

.gxai-development-lp .single-article-body h4 {
  margin: 1.8em 0 0.5em;
  color: var(--navy-900);
  font-size: 19px;
}

.gxai-development-lp .single-article-body p,
.gxai-development-lp .single-article-body ul,
.gxai-development-lp .single-article-body ol,
.gxai-development-lp .single-article-body blockquote,
.gxai-development-lp .single-article-body figure,
.gxai-development-lp .single-article-body table {
  margin-top: 0;
  margin-bottom: 1.55em;
}

.gxai-development-lp .single-article-body ul,
.gxai-development-lp .single-article-body ol {
  padding-left: 1.45em;
}

.gxai-development-lp .single-article-body li + li {
  margin-top: 0.45em;
}

.gxai-development-lp .single-article-body a {
  color: #075fa7;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.gxai-development-lp .single-article-body blockquote {
  border-left: 5px solid var(--cyan);
  background: var(--surface-tint);
  padding: 22px 26px;
  color: var(--slate-700);
}

.gxai-development-lp .single-article-body img {
  height: auto;
  border-radius: 4px;
}

.gxai-development-lp .single-article-body figcaption {
  margin-top: 8px;
  color: var(--slate-600);
  font-size: 12px;
  text-align: center;
}

.gxai-development-lp .single-article-body .wp-block-table,
.gxai-development-lp .single-article-body > table {
  overflow-x: auto;
}

.gxai-development-lp .single-article-body > table {
  display: block;
  max-width: 100%;
}

.gxai-development-lp .single-article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.gxai-development-lp .single-article-body th,
.gxai-development-lp .single-article-body td {
  border: 1px solid var(--line-strong);
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

.gxai-development-lp .single-article-body th {
  background: var(--surface-blue);
  color: var(--navy-900);
}

.gxai-development-lp .article-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 45px;
}

.gxai-development-lp .article-page-links > span,
.gxai-development-lp .article-page-links a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.gxai-development-lp .single-article-body .gxai-cta-button {
  display: flex;
  margin: 22px 0 0;
}

.gxai-development-lp .single-article-body .gxai-cta-button .wp-block-button__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 6px 0 !important;
  color: var(--blue) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.gxai-development-lp .single-article-body .gxai-cta-button .wp-block-button__link:hover {
  color: var(--navy-800) !important;
}

.gxai-development-lp .single-article-footer {
  padding: 42px 0 88px;
}

.gxai-development-lp .article-author {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.gxai-development-lp .article-author > p:first-child,
.gxai-development-lp .article-next-action > p {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.gxai-development-lp .article-author h2 {
  margin: 0;
  font-size: 23px;
}

.gxai-development-lp .article-author h2 + p {
  margin: 12px 0 0;
  color: var(--slate-700);
  line-height: 1.8;
}

.gxai-development-lp .article-next-action {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(169, 220, 23, 0.14), transparent 44%),
    var(--navy-900);
  box-shadow: 0 24px 60px rgba(7, 29, 51, 0.18);
  padding: clamp(30px, 5vw, 52px);
  color: white;
}

.gxai-development-lp .article-author + .article-next-action {
  margin-top: 48px;
}

.gxai-development-lp .article-next-action h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.42;
}

.gxai-development-lp .article-next-action > span {
  display: block;
  max-width: 650px;
  margin-top: 14px;
  color: #c4d4df;
  line-height: 1.8;
}

.gxai-development-lp .article-next-action-actions {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.gxai-development-lp .article-next-action .button {
  background: white;
  color: var(--navy-900);
}

.gxai-development-lp .article-next-action .button:hover {
  background: var(--lime);
}

.gxai-development-lp .article-next-action-actions small {
  color: #b8cad6;
  font-size: 12px;
  line-height: 1.6;
}

.gxai-development-lp .article-floating-cta {
  display: none;
  width: min(420px, calc(100% - 32px));
  margin: 0 auto 40px;
  opacity: 1;
  visibility: visible;
}

.gxai-development-lp .article-floating-cta.is-enhanced {
  display: block;
  position: fixed;
  z-index: 90;
  right: max(24px, calc((100vw - 1440px) / 2));
  bottom: max(24px, env(safe-area-inset-bottom));
  width: 270px;
  margin: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gxai-development-lp .article-floating-cta.is-enhanced:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gxai-development-lp .article-floating-cta > a {
  display: grid;
  min-height: 72px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(7, 29, 51, 0.96);
  box-shadow: 0 18px 46px rgba(4, 17, 30, 0.28);
  padding: 12px 12px 12px 17px;
  color: white;
  text-decoration: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.gxai-development-lp .article-floating-cta > a:hover {
  border-color: rgba(169, 220, 23, 0.78);
  box-shadow: 0 20px 50px rgba(4, 17, 30, 0.36);
}

.gxai-development-lp .article-floating-cta-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gxai-development-lp .article-floating-cta-copy small {
  color: #b8cad6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gxai-development-lp .article-floating-cta-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gxai-development-lp .article-floating-cta-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  background: white;
  padding: 8px 11px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.gxai-development-lp .article-floating-cta-action b {
  color: var(--blue);
  font-size: 15px;
}

.gxai-development-lp .related-articles {
  border-top: 1px solid var(--line);
  background: var(--surface-tint);
}

.gxai-development-lp .related-articles .section-heading h2 {
  font-size: clamp(30px, 3.5vw, 44px);
}

@media (max-width: 1479px) {
  .gxai-development-lp .article-floating-cta.is-enhanced {
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 194px;
  }

  .gxai-development-lp .article-floating-cta > a {
    min-height: 64px;
    padding: 9px 10px 9px 16px;
  }

  .gxai-development-lp .article-floating-cta-copy small {
    display: none;
  }

  .gxai-development-lp .article-floating-cta-action {
    width: 44px;
    padding: 0;
    font-size: 0;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .gxai-development-lp .article-floating-cta.is-enhanced {
    display: none;
  }
}

@media (max-width: 767px) {
  .gxai-development-lp .single-article-footer {
    padding: 32px 0 72px;
  }

  .gxai-development-lp .article-next-action {
    border-radius: 16px;
    padding: 26px 22px;
  }

  .gxai-development-lp .article-author + .article-next-action {
    margin-top: 36px;
  }

  .gxai-development-lp .article-next-action h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .gxai-development-lp .article-next-action-actions {
    display: grid;
    gap: 11px;
  }

  .gxai-development-lp .article-next-action .button {
    width: 100%;
    justify-content: center;
  }

  .gxai-development-lp .article-floating-cta.is-enhanced {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
  }

  .gxai-development-lp .article-floating-cta > a {
    min-height: 60px;
    gap: 9px;
    border-radius: 16px;
    padding-left: 15px;
  }

  .gxai-development-lp .article-floating-cta-copy small {
    display: block;
  }

  .gxai-development-lp .article-floating-cta-action {
    width: auto;
    padding: 8px 11px;
    font-size: 11px;
  }

}

@media (max-width: 480px) {
  .gxai-development-lp .article-floating-cta-copy small {
    display: none;
  }

  .gxai-development-lp .article-floating-cta-copy strong {
    font-size: 14px;
  }

  .gxai-development-lp .article-floating-cta-action {
    width: 44px;
    padding: 0;
    font-size: 0;
  }
}

@media (max-height: 480px) and (min-width: 768px) and (max-width: 1479px) {
  .gxai-development-lp .article-floating-cta.is-enhanced {
    right: 12px;
    bottom: 8px;
    left: auto;
    width: 194px;
  }

  .gxai-development-lp .article-floating-cta-copy small {
    display: none;
  }
}

@media (forced-colors: active) {
  .gxai-development-lp .article-floating-cta > a,
  .gxai-development-lp .article-floating-cta-action {
    border: 1px solid CanvasText;
    background: Canvas;
    box-shadow: none;
    color: CanvasText;
  }
}

@media (max-width: 1180px) {
  .gxai-development-lp .desktop-nav,
  .gxai-development-lp .header-inner > .button {
    display: none;
  }

  .gxai-development-lp .mobile-menu {
    display: block;
  }

  .gxai-development-lp .mobile-menu nav {
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .gxai-development-lp .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gxai-development-lp .service-card {
    min-height: 365px;
  }

  .gxai-development-lp .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .gxai-development-lp .condition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gxai-development-lp .project-scroller {
    grid-auto-columns: minmax(330px, calc((100% - 16px) / 2));
  }
}

@media (max-width: 900px) {
  .gxai-development-lp .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .gxai-development-lp .hero {
    min-height: 700px;
    padding: 82px 0;
  }

  .gxai-development-lp .fact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gxai-development-lp .fact-grid > div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .gxai-development-lp .fact-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .gxai-development-lp .section {
    padding: 84px 0;
  }

  .gxai-development-lp .intro-grid,
  .gxai-development-lp .strength-layout,
  .gxai-development-lp .company-layout,
  .gxai-development-lp .faq-layout,
  .gxai-development-lp .vision-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gxai-development-lp .sticky-heading {
    position: static;
  }

  .gxai-development-lp .vision-goal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    padding-top: 35px;
    padding-left: 0;
  }

  .gxai-development-lp .section-topline,
  .gxai-development-lp .conditions-head {
    display: grid;
  }

  .gxai-development-lp .project-scroller {
    width: min(calc(100% - 40px), var(--shell));
    grid-auto-columns: min(72vw, 390px);
  }

  .gxai-development-lp .project-footnote {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .gxai-development-lp .project-controls {
    flex-wrap: wrap;
  }

  .gxai-development-lp .carousel-dots {
    order: 3;
    width: 100%;
    max-width: 100%;
  }

  .gxai-development-lp .footer-main {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gxai-development-lp .footer-nav {
    justify-content: flex-start;
  }

  .gxai-development-lp .latest-article-card {
    grid-template-columns: 1fr;
  }

  .gxai-development-lp .latest-article-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .gxai-development-lp .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gxai-development-lp .article-reading-shell {
    width: min(calc(100% - 40px), 860px);
  }

  .gxai-development-lp .single-article-hero {
    width: min(calc(100% - 40px), 1120px);
  }
}

@media (max-width: 760px) {
  .gxai-development-lp .contact {
    padding: 64px 0 56px;
  }

  .gxai-development-lp .contact-inner {
    text-align: left;
  }

  .gxai-development-lp .contact h2 br {
    display: none;
  }

  .gxai-development-lp .contact-lead {
    margin: 16px 0 28px;
    font-size: 14px;
    line-height: 1.75;
  }

  .gxai-development-lp .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gxai-development-lp .contact-grid article {
    padding: 24px 20px 20px;
  }

  .gxai-development-lp .contact-grid h3 {
    font-size: 22px;
  }

  .gxai-development-lp .contact-response-note {
    margin-top: 22px;
    line-height: 1.7;
    text-align: left;
  }

  .gxai-development-lp .contact-dialog {
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
    overscroll-behavior: contain;
    scroll-padding-top: 104px;
  }

  .gxai-development-lp .contact-dialog-panel {
    min-height: 100%;
  }

  .gxai-development-lp .contact-dialog-header {
    gap: 12px;
    padding: calc(13px + env(safe-area-inset-top)) 16px 12px;
  }

  .gxai-development-lp .contact-dialog-header span {
    font-size: 9px;
  }

  .gxai-development-lp .contact-dialog-header h2 {
    margin: 4px 0 2px;
    font-size: 20px;
  }

  .gxai-development-lp .contact-dialog-header p {
    font-size: 11px;
    line-height: 1.55;
  }

  .gxai-development-lp .contact-dialog-close {
    width: 46px;
    height: 46px;
  }

  .gxai-development-lp .inquiry-choice,
  .gxai-development-lp .inquiry-form {
    padding: 16px;
  }

  .gxai-development-lp .inquiry-form {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .gxai-development-lp .inquiry-choice {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .gxai-development-lp .inquiry-choice > button {
    min-height: 150px;
    padding: 20px;
  }

  .gxai-development-lp .inquiry-choice strong {
    font-size: 20px;
  }

  .gxai-development-lp .inquiry-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gxai-development-lp .field-full {
    grid-column: auto;
  }

  .gxai-development-lp .inquiry-form-grid input,
  .gxai-development-lp .inquiry-form-grid select,
  .gxai-development-lp .inquiry-form-grid textarea {
    font-size: 16px;
  }

  .gxai-development-lp .inquiry-submit-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gxai-development-lp .inquiry-submit {
    width: 100%;
  }

  .gxai-development-lp .inquiry-confirm,
  .gxai-development-lp .inquiry-complete {
    padding: 20px 16px calc(28px + env(safe-area-inset-bottom));
  }

  .gxai-development-lp .inquiry-confirm-type,
  .gxai-development-lp .inquiry-confirm-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 15px;
  }

  .gxai-development-lp .inquiry-confirm-list {
    margin-top: 14px;
  }

  .gxai-development-lp .inquiry-confirm-list dd {
    font-size: 14px;
  }

  .gxai-development-lp .inquiry-auto-reply,
  .gxai-development-lp .inquiry-error {
    margin-top: 14px;
  }

  .gxai-development-lp .inquiry-confirm-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding-top: 20px;
  }

  .gxai-development-lp .inquiry-edit,
  .gxai-development-lp .inquiry-confirm-actions .inquiry-submit {
    width: 100%;
  }

  .gxai-development-lp .inquiry-complete {
    min-height: 0;
    padding-top: 44px;
  }

  .gxai-development-lp .inquiry-complete h3 {
    font-size: 26px;
  }
}

@media (max-width: 620px) {
  .gxai-development-lp .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .gxai-development-lp .header-inner {
    min-height: 74px;
  }

  .gxai-development-lp .brand-logo--compact {
    width: 176px;
  }

  .gxai-development-lp .hero {
    min-height: 590px;
    background-image:
      linear-gradient(90deg, rgba(2, 11, 22, 0.97) 0%, rgba(2, 11, 22, 0.91) 62%, rgba(2, 11, 22, 0.56) 100%),
      linear-gradient(180deg, rgba(2, 11, 22, 0.12) 0%, rgba(2, 11, 22, 0.48) 70%, rgba(2, 11, 22, 0.84) 100%),
      var(--gxai-hero-image);
    background-position: center, center, 67% center;
    padding: 56px 0 50px;
  }

  .gxai-development-lp .hero-rail,
  .gxai-development-lp .contact-rail {
    width: 6px;
  }

  .gxai-development-lp .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.27;
    text-wrap: balance;
  }

  .gxai-development-lp .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .gxai-development-lp .hero h1 em {
    white-space: normal;
  }

  .gxai-development-lp .hero-actions,
  .gxai-development-lp .hero-actions .button {
    width: 100%;
  }

  .gxai-development-lp .hero-lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }

  .gxai-development-lp .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gxai-development-lp .fact-grid > div {
    min-width: 0;
    min-height: 108px;
    grid-column: auto;
    border-top: 0;
    border-left: 0;
    padding: 32px 16px 17px;
  }

  .gxai-development-lp .fact-grid > div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .gxai-development-lp .fact-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .gxai-development-lp .fact-grid > div::before {
    top: 11px;
    left: 16px;
    width: 48px;
  }

  .gxai-development-lp .fact-grid span {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .gxai-development-lp .fact-grid strong {
    font-size: clamp(16px, 5vw, 20px);
    line-height: 1.45;
    word-break: keep-all;
  }

  .gxai-development-lp .section {
    padding: 60px 0;
  }

  .gxai-development-lp .section-heading h2,
  .gxai-development-lp .conditions-head h2,
  .gxai-development-lp .vision h2,
  .gxai-development-lp .contact h2 {
    font-size: clamp(30px, 8.3vw, 34px);
    line-break: strict;
    text-wrap: balance;
  }

  .gxai-development-lp .company-copy .section-heading h2 {
    font-size: clamp(21px, 6.75vw, 34px);
  }

  .gxai-development-lp .mobile-only-break {
    display: initial;
  }

  .gxai-development-lp .section-topline,
  .gxai-development-lp .conditions-head {
    gap: 16px;
    margin-bottom: 30px;
  }

  .gxai-development-lp .intro-grid,
  .gxai-development-lp .strength-layout,
  .gxai-development-lp .faq-layout,
  .gxai-development-lp .vision-grid {
    gap: 32px;
  }

  .gxai-development-lp .problem-line {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .gxai-development-lp .problem-line i {
    width: 40px;
  }

  .gxai-development-lp .service-grid,
  .gxai-development-lp .contact-grid {
    grid-template-columns: 1fr;
  }

  .gxai-development-lp .condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gxai-development-lp .condition-grid article {
    min-width: 0;
    min-height: 138px;
    padding: 18px 14px;
  }

  .gxai-development-lp .condition-grid strong {
    margin-top: 12px;
    font-size: 19px;
    line-height: 1.4;
  }

  .gxai-development-lp .condition-grid p {
    font-size: 11px;
    line-height: 1.55;
  }

  .gxai-development-lp .sample-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .gxai-development-lp .project-scroller {
    width: calc(100% - 32px);
    grid-auto-columns: min(84vw, 350px);
  }

  .gxai-development-lp .project-controls {
    align-items: flex-start;
  }

  .gxai-development-lp .carousel-state {
    width: 100%;
  }

  .gxai-development-lp .carousel-dots {
    justify-content: flex-start;
  }

  .gxai-development-lp .carousel-dots button {
    flex: 1;
  }

  .gxai-development-lp .project-card-body {
    padding-inline: 18px;
  }

  .gxai-development-lp .sample-badge,
  .gxai-development-lp .project-status,
  .gxai-development-lp .project-card-top p,
  .gxai-development-lp .project-updated,
  .gxai-development-lp .project-data dt {
    font-size: 10px;
  }

  .gxai-development-lp .project-data dd {
    font-size: 14px;
  }

  .gxai-development-lp .project-footnote-link {
    min-height: 44px;
  }

  .gxai-development-lp .service-card {
    min-height: 0;
    padding: 22px 20px 0;
  }

  .gxai-development-lp .service-meta {
    margin-bottom: 24px;
  }

  .gxai-development-lp .service-card h3 {
    margin-bottom: 12px;
  }

  .gxai-development-lp .service-card footer {
    margin: 24px -20px 0;
    padding: 14px 20px;
  }

  .gxai-development-lp .strength-list article {
    padding: 32px 0 32px 70px;
  }

  .gxai-development-lp .strength-list article::before {
    width: 48px;
  }

  .gxai-development-lp .flow-list {
    grid-template-columns: 1fr;
  }

  .gxai-development-lp .flow-list li {
    display: grid;
    min-height: 0;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    border-left: 1px solid var(--line-strong);
    padding: 24px;
  }

  .gxai-development-lp .flow-list h3 {
    margin: 4px 0 6px;
  }

  .gxai-development-lp .vision {
    padding: 60px 0;
  }

  .gxai-development-lp .company-layout {
    gap: 32px;
  }

  .gxai-development-lp .company-message {
    margin-top: 28px;
    padding-top: 19px;
  }

  .gxai-development-lp .company-message::before {
    width: 50px;
  }

  .gxai-development-lp .company-message p {
    font-size: 15px;
    line-height: 1.9;
    text-wrap: pretty;
  }

  .gxai-development-lp .company-message .company-message-lead {
    font-size: 20px;
    line-height: 1.65;
  }

  .gxai-development-lp .company-message-mobile-break {
    display: block;
  }

  .gxai-development-lp .company-card {
    padding: 25px 20px;
  }

  .gxai-development-lp .company-card-title {
    padding: 18px 0 14px;
    font-size: 17px;
  }

  .gxai-development-lp .company-logo-wrap .brand-logo {
    width: min(284px, 100%);
  }

  .gxai-development-lp .company-card dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .gxai-development-lp .faq-list summary {
    grid-template-columns: 40px 1fr 24px;
    gap: 10px;
  }

  .gxai-development-lp .faq-list details > p {
    margin: -2px 0 24px 50px;
  }

  .gxai-development-lp .contact {
    padding: 54px 0 48px;
  }

  .gxai-development-lp .contact-grid p {
    min-height: 0;
  }

  .gxai-development-lp .inquiry-form-tabs button {
    min-height: 48px;
    padding: 7px;
    font-size: 11px;
  }

  .gxai-development-lp .site-footer {
    padding: 32px 0 20px;
  }

  .gxai-development-lp .footer-main {
    gap: 22px;
    padding-bottom: 22px;
  }

  .gxai-development-lp .footer-identity {
    display: grid;
    gap: 18px;
  }

  .gxai-development-lp .footer-brand .brand-logo {
    width: 190px;
  }

  .gxai-development-lp .footer-address-break {
    display: block;
  }

  .gxai-development-lp .footer-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gxai-development-lp .footer-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gxai-development-lp .footer-bottom {
    display: grid;
    justify-items: start;
    gap: 9px;
    padding-top: 16px;
    line-height: 1.6;
  }

  .gxai-development-lp .footer-bottom a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .gxai-development-lp .latest-article-topline {
    align-items: start;
  }

  .gxai-development-lp .latest-article-copy {
    padding: 27px 21px 24px;
  }

  .gxai-development-lp .latest-article-copy h3 {
    margin: 18px 0 13px;
    font-size: 25px;
    line-height: 1.48;
  }

  .gxai-development-lp .latest-article-copy > p {
    font-size: 14px;
    line-height: 1.85;
  }

  .gxai-development-lp .article-archive-hero {
    padding: 30px 0 48px;
  }

  .gxai-development-lp .article-archive-hero::before,
  .gxai-development-lp .single-article-header::before {
    width: 6px;
  }

  .gxai-development-lp .article-breadcrumbs {
    margin-bottom: 37px;
  }

  .gxai-development-lp .article-archive-hero h1 {
    font-size: 39px;
  }

  .gxai-development-lp .article-archive-lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .gxai-development-lp .article-category-nav {
    margin-top: 26px;
  }

  .gxai-development-lp .article-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gxai-development-lp .article-card-body {
    padding: 21px 19px 18px;
  }

  .gxai-development-lp .article-card h2,
  .gxai-development-lp .article-card h3 {
    font-size: 20px;
  }

  .gxai-development-lp .article-pagination {
    margin-top: 42px;
  }

  .gxai-development-lp .article-reading-shell,
  .gxai-development-lp .single-article-hero {
    width: calc(100% - 32px);
  }

  .gxai-development-lp .single-article-header {
    padding: 30px 0 50px;
  }

  .gxai-development-lp .single-article-header h1 {
    margin-top: 21px;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.37;
  }

  .gxai-development-lp .single-article-lead {
    font-size: 16px;
  }

  .gxai-development-lp .single-article-byline {
    align-items: flex-start;
    flex-direction: column;
  }

  .gxai-development-lp .single-article-hero {
    margin-top: 34px;
  }

  .gxai-development-lp .single-article-body {
    padding-top: 48px;
    font-size: 16px;
    line-height: 2;
  }

  .gxai-development-lp .single-article-body h2 {
    font-size: 27px;
  }

  .gxai-development-lp .single-article-body blockquote {
    padding: 18px;
  }

  .gxai-development-lp .single-article-body table {
    min-width: 620px;
  }

  .gxai-development-lp .single-article-footer {
    padding-bottom: 65px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gxai-development-lp {
    scroll-behavior: auto;
  }

  html.gxai-development-lp-root {
    scroll-behavior: auto;
  }

  .gxai-development-lp *,
  .gxai-development-lp *::before,
  .gxai-development-lp *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .gxai-development-lp .project-card {
    opacity: 1;
    transform: none;
  }

  .gxai-development-lp .project-card.is-active {
    transform: none;
  }

  .gxai-development-lp .article-card:hover {
    transform: none;
  }

  .gxai-development-lp .contact-dialog[open] {
    animation: none;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar.gxai-development-lp .site-header {
    top: 46px;
  }
}
