:root {
  --home-navy: #050b18;
  --home-navy-soft: #0b1729;
  --home-ink: #07111f;
  --home-blue: #0b6cff;
  --home-cyan: #19dcea;
  --home-paper: #f4f7fb;
  --home-white: #ffffff;
  --home-line: rgba(7, 17, 31, 0.12);
  --home-max: 1240px;
  --home-radius: 28px;
}

html {
  scroll-padding-top: 92px;
}

body {
  min-width: 0;
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--home-ink);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--home-max), calc(100% - 48px));
  height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: width 0.25s ease, height 0.25s ease, padding 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(var(--home-max), calc(100% - 24px));
  height: 68px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(5, 11, 24, 0.88);
  box-shadow: 0 18px 50px rgba(1, 6, 16, 0.26);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 190px;
}

.site-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.site-navigation a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--home-cyan);
  transition: right 0.2s ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  color: #fff;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  right: 0;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  border-color: var(--home-cyan);
  background: var(--home-cyan);
  color: var(--home-ink);
}

.menu-toggle {
  display: none;
}

.site-main {
  display: block;
}

.hero-slider {
  position: relative;
  min-height: 760px;
  height: min(900px, 100svh);
  background: var(--home-navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 0.75s ease, visibility 0.75s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 11, 24, 0.99) 0%, rgba(5, 11, 24, 0.90) 35%, rgba(5, 11, 24, 0.36) 68%, rgba(5, 11, 24, 0.10) 100%),
    linear-gradient(180deg, rgba(5, 11, 24, 0.22) 0%, transparent 56%, rgba(5, 11, 24, 0.80) 100%);
}

.hero-slide::after {
  z-index: 1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--home-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 148px 0 150px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--home-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1,
.hero-copy h2 {
  display: block;
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: 'S-CoreDream', 'Noto Sans', sans-serif;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.07em;
  word-break: keep-all;
}

.hero-copy h1 em,
.hero-copy h2 em {
  display: inline;
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, #fff 0%, #79efff 40%, #4c8cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: var(--home-cyan);
  color: var(--home-ink);
  box-shadow: 0 16px 36px rgba(25, 220, 234, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.13);
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-keywords li {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.hero-keywords li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-cyan);
  transform: translateY(-50%);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: max(24px, calc((100vw - var(--home-max)) / 2));
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: var(--home-cyan);
  background: rgba(25, 220, 234, 0.16);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--home-cyan);
}

.hero-count {
  min-width: 54px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
}

.hero-count b {
  color: #fff;
}

.hero-progress {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--home-blue), var(--home-cyan));
}

.hero-slider.is-playing .hero-progress span {
  animation: homeHeroProgress 6s linear forwards;
}

@keyframes homeHeroProgress {
  from { width: 0; }
  to { width: 100%; }
}

.company-proof {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--home-max), calc(100% - 48px));
  margin: -1px auto 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--home-navy-soft);
  color: #fff;
}

.company-proof > div {
  min-height: 132px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.company-proof strong,
.company-proof span {
  display: block;
}

.company-proof strong {
  color: var(--home-cyan);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.company-proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
}

.expertise-section {
  width: min(var(--home-max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(100px, 11vw, 160px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.3fr;
  column-gap: 60px;
  align-items: start;
}

.section-heading > span {
  padding-top: 10px;
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-heading h2 {
  margin: 0;
  font-family: 'S-CoreDream', 'Noto Sans', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.section-heading p {
  grid-column: 2;
  max-width: 640px;
  margin: 24px 0 0;
  color: #627086;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.expertise-grid article {
  position: relative;
  min-height: 340px;
  padding: clamp(34px, 4vw, 54px);
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease;
}

.expertise-grid article:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.1);
}

.expertise-number {
  display: block;
  color: var(--home-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.expertise-grid h3 {
  margin: 54px 0 0;
  color: var(--home-ink);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.expertise-grid p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #627086;
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.expertise-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.expertise-grid li {
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf3fb;
  color: #40506a;
  font-size: 12px;
  font-weight: 800;
}

.home-solutions {
  padding: clamp(96px, 11vw, 150px) max(24px, calc((100% - var(--home-max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 88% 0%, rgba(25, 220, 234, 0.18), transparent 32%),
    linear-gradient(145deg, #050b18 0%, #0a2039 100%);
}

.home-solutions-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
}

.home-solutions-heading > div:first-child > span {
  color: var(--home-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.home-solutions-heading h2 {
  margin: 20px 0 0;
  font-family: 'S-CoreDream', 'Noto Sans', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.14;
  letter-spacing: -0.065em;
}

.home-solutions-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.8;
}

.home-solutions-heading a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--home-cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.home-solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 66px;
}

.home-solution-grid article {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px;
  border: 1px solid rgba(143, 176, 213, 0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(16, 49, 83, 0.74), rgba(5, 20, 42, 0.82));
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.home-solution-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.home-solution-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.home-solution-grid article:hover {
  border-color: rgba(25, 220, 234, 0.5);
  transform: translateY(-6px);
}

.package-no {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--home-cyan);
  background: rgba(25, 220, 234, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.home-solution-grid small {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-solution-grid h3 {
  margin: 8px 0 14px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.home-solution-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.home-solution-grid ul {
  display: flex;
  gap: 16px;
  margin: auto 0 0;
  padding: 24px 0 18px;
  list-style: none;
}

.home-solution-grid li {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 750;
}

.home-solution-grid li + li::before {
  content: "·";
  margin-right: 16px;
}

.home-solution-grid article > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--home-cyan);
  font-size: 13px;
  font-weight: 850;
}

div.project-wrap {
  position: relative;
  display: grid;
  align-content: end;
  align-items: start;
  width: min(var(--home-max), calc(100% - 48px));
  min-height: 520px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(25, 220, 234, 0.22), transparent 32%),
    linear-gradient(135deg, #050b18 0%, #0a2039 100%);
  color: #fff;
  text-align: left;
  box-shadow: none;
  overflow: hidden;
}

.project-wrap::before {
  display: none;
}

.project-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.project-kicker,
.project-wrap h2,
.project-lead,
.project-contact-link {
  position: relative;
  z-index: 1;
}

.project-kicker {
  color: var(--home-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.project-wrap h2 {
  display: block;
  margin: 22px 0 0;
  color: #fff;
  font-family: 'S-CoreDream', 'Noto Sans', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.07em;
}

.project-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.project-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--home-cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.project-list-wrap {
  width: min(var(--home-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 clamp(100px, 10vw, 150px);
}

.project-list-article-wrap {
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: 0 22px 60px rgba(7, 17, 31, 0.07);
}

.project-list-article-wrap + .project-list-article-wrap {
  margin-top: 28px;
}

.project-list-article-wrap:hover {
  border-color: rgba(11, 108, 255, 0.22);
  box-shadow: 0 30px 78px rgba(7, 17, 31, 0.12);
}

.project-information-wrap {
  padding: clamp(30px, 4.6vw, 58px);
}

.project-info-wrap > span:first-child {
  font-size: clamp(24px, 2.9vw, 37px);
  line-height: 1.2;
}

.project-info {
  color: #68768b;
  font-size: 15px;
}

.web-btn a {
  border-color: rgba(11, 108, 255, 0.2);
  background: rgba(11, 108, 255, 0.07);
  color: var(--home-blue);
}

.web-btn a:hover {
  background: var(--home-blue);
}

.project-information-wrap .solution-sales-guide {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin: 24px 0 0;
  padding: 20px 22px;
  border-color: rgba(25, 220, 234, 0.32);
  border-style: solid;
  border-width: 1px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 220, 234, 0.24), transparent 46%),
    linear-gradient(135deg, #071827 0%, #0a2943 100%);
  box-shadow: 0 18px 40px rgba(7, 17, 31, 0.17);
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.project-information-wrap .solution-sales-guide > * {
  position: relative;
  z-index: 1;
}

.project-information-wrap .solution-sales-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: auto;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(25, 220, 234, 0.14);
  color: #6ff5ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: left;
}

.project-information-wrap .solution-sales-label::before {
  content: "✓";
  display: grid;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-cyan);
  color: var(--home-ink);
  font-size: 11px;
  line-height: 1;
}

.project-information-wrap .solution-sales-guide > p {
  display: block;
  width: 100%;
  height: auto;
  margin: 11px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.02em;
  text-align: left;
  word-break: keep-all;
}

.project-information-wrap .solution-sales-guide > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: auto;
  min-height: 40px;
  margin: 14px 0 0;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--home-cyan);
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.project-information-wrap .solution-sales-guide > a > span {
  display: inline;
  width: auto;
  margin: 0;
  padding: 0;
  color: currentColor;
  font: inherit;
  line-height: inherit;
}

.project-information-wrap .solution-sales-guide > a:hover,
.project-information-wrap .solution-sales-guide > a:focus-visible {
  background: #fff;
  color: var(--home-blue);
  transform: translateY(-1px);
}

.launching-screen-wrap {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent),
    #eaf2fa;
}

.launching-screen-wrap img {
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(7, 17, 31, 0.14);
}

.list-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  width: min(var(--home-max), calc(100% - 48px));
  margin: 0 auto clamp(100px, 10vw, 150px);
  padding: clamp(32px, 5vw, 64px);
  border: 0 !important;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(25, 220, 234, 0.16), transparent 34%),
    linear-gradient(145deg, #07111f 0%, #0a2039 100%);
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.16);
}

div.inquiry-wrap {
  display: flex;
  align-items: flex-start;
  margin: 0;
}

.home-faq {
  padding: 120px 0;
  background: #f4f7fb;
}

.home-faq-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.home-faq-heading > span {
  color: #0b73ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.home-faq-heading h2 {
  margin: 18px 0 20px;
  color: #081120;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.home-faq-heading p {
  margin: 0;
  color: #66758d;
  font-size: 16px;
  line-height: 1.8;
}

.home-faq-list {
  display: grid;
  gap: 12px;
}

.home-faq-list details {
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 42, 72, 0.05);
}

.home-faq-list summary {
  position: relative;
  padding: 24px 60px 24px 26px;
  color: #0b1220;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: #0b73ff;
  font-size: 25px;
  font-weight: 500;
  transform: translateY(-50%);
}

.home-faq-list details[open] summary {
  color: #0b73ff;
}

.home-faq-list details[open] summary::after {
  content: "−";
}

.home-faq-list p {
  margin: 0;
  padding: 0 26px 25px;
  color: #66758d;
  font-size: 15px;
  line-height: 1.8;
}

.inquiry {
  position: sticky;
  top: 110px;
  width: 100%;
  height: auto;
  min-height: 220px;
  margin: 0;
  padding: 72px 28px 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(25, 220, 234, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: #fff;
}

.inquiry::before {
  content: "LET'S BUILD";
  position: absolute;
  top: 30px;
  left: 28px;
  color: var(--home-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.inquiry span {
  color: #fff;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.06em;
}

#inquiry-title {
  white-space: nowrap;
}

#inquiry-title.is-contextual {
  white-space: normal;
}

div.project-article-wrap {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.text-explanation {
  padding-bottom: 18px;
  color: #43516a;
  font-size: 16px;
  line-height: 1.7;
}

ul.input-form li.inquiry-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.inquiry-context-grid label {
  display: block;
}

.inquiry-context-grid label > span {
  display: block;
  margin: 0 0 6px 3px;
  color: #61708a;
  font-size: 11px;
  font-weight: 750;
}

.inquiry-context-grid select {
  width: 100%;
  height: 50px;
  padding: 0 38px 0 14px;
  border: 1px solid #d9e3ef;
  border-radius: 14px;
  outline: 0;
  color: #33425a;
  background: #f2f6fb;
}

.inquiry-context-grid select:focus {
  border-color: var(--home-blue);
  box-shadow: 0 0 0 3px rgba(11, 108, 255, 0.1);
}

ul.input-form li input,
ul.input-form li textarea.inquiry-content {
  border-radius: 14px;
  background: #f2f6fb;
}

button.btn-normal {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--home-blue), #0051c9);
  box-shadow: 0 16px 34px rgba(11, 108, 255, 0.25);
}

.inquiry-btn-wrap {
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  z-index: 450;
  background: linear-gradient(135deg, var(--home-blue), var(--home-cyan));
}

.site-footer {
  margin: 0;
  padding: clamp(64px, 8vw, 100px) 24px 30px;
  background: #030812;
  color: rgba(255, 255, 255, 0.62);
}

.footer-main,
.footer-meta,
.footer-bottom {
  width: min(var(--home-max), 100%);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  line-height: 1.75;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: end;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  text-decoration: none;
}

.footer-cta span {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.footer-cta:hover span,
.footer-cta:focus-visible span {
  color: var(--home-cyan);
}

.footer-meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding: 48px 0;
}

.footer-meta span {
  color: var(--home-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.footer-meta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
}

:focus-visible {
  outline: 3px solid rgba(25, 220, 234, 0.72);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .project-list-article-wrap {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.4fr);
  }

  .project-list-article-wrap:nth-child(even) {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 32px);
  }

  .site-brand {
    width: 168px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 90px 32px 40px;
    background: rgba(5, 11, 24, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .site-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-navigation a {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.05em;
  }

  .header-contact {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    grid-column: auto;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid article {
    min-height: 300px;
  }

  .home-solutions-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-solution-grid article,
  .home-solution-grid article:nth-child(4),
  .home-solution-grid article:nth-child(5) {
    grid-column: auto;
  }

  .home-solution-grid article:last-child {
    grid-column: 1 / -1;
  }

  .company-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-faq-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .list-wrap {
    grid-template-columns: 1fr;
  }

  .inquiry {
    position: relative;
    top: auto;
    min-height: 180px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    justify-self: start;
  }

  .footer-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .site-header,
  .site-header.is-scrolled {
    top: 0;
    width: 100%;
    height: 68px;
    padding: 0 18px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: rgba(5, 11, 24, 0.88);
    backdrop-filter: blur(16px);
  }

  .site-brand {
    width: 154px;
  }

  .home-solutions {
    padding: 86px 18px;
  }

  .home-faq {
    padding: 88px 0;
  }

  .home-faq-inner {
    width: calc(100% - 36px);
  }

  .home-faq-heading h2 {
    font-size: 38px;
  }

  .home-faq-list summary {
    padding: 21px 54px 21px 20px;
    font-size: 15px;
  }

  .home-faq-list summary::after {
    right: 20px;
  }

  .home-faq-list p {
    padding: 0 20px 22px;
    font-size: 14px;
  }

  .home-solutions-heading h2 {
    font-size: 38px;
  }

  .home-solution-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .home-solution-grid article,
  .home-solution-grid article:last-child {
    grid-column: auto;
    min-height: 350px;
    padding: 26px;
  }

  ul.input-form li.inquiry-context-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 760px;
    height: 92svh;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(5, 11, 24, 0.38) 0%, rgba(5, 11, 24, 0.75) 40%, rgba(5, 11, 24, 0.99) 100%),
      linear-gradient(90deg, rgba(5, 11, 24, 0.72), rgba(5, 11, 24, 0.18));
  }

  .hero-media {
    object-position: 70% center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc(100% - 36px);
    height: 100%;
    padding: 104px 0 138px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(40px, 11.4vw, 58px);
    line-height: 1.1;
  }

  .hero-copy > p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .button-primary,
  .button-secondary {
    flex: 1 1 145px;
    min-height: 50px;
    padding: 0 15px;
  }

  .hero-keywords {
    display: none;
  }

  .hero-controls {
    left: 18px;
    right: 18px;
    bottom: 34px;
    justify-content: space-between;
  }

  .hero-count {
    margin-left: auto;
  }

  .company-proof {
    width: 100%;
  }

  .company-proof > div {
    min-height: 116px;
    padding: 24px 18px;
  }

  .company-proof strong {
    font-size: 15px;
  }

  .company-proof span {
    font-size: 12px;
    line-height: 1.5;
  }

  .expertise-section,
  .project-wrap,
  .project-list-wrap,
  .list-wrap {
    width: calc(100% - 28px);
  }

  .expertise-section {
    padding: 88px 0;
  }

  .section-heading h2 {
    margin-top: 18px;
    font-size: 38px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .expertise-grid {
    margin-top: 48px;
  }

  .expertise-grid article {
    min-height: 0;
    padding: 34px 26px;
  }

  .expertise-grid h3 {
    margin-top: 34px;
  }

  .project-wrap {
    min-height: 480px;
    padding: 44px 28px;
  }

  .project-wrap h2 {
    font-size: 42px;
  }

  .project-list-wrap {
    padding-top: 18px;
  }

  .project-list-article-wrap {
    border-radius: 24px;
  }

  .project-information-wrap {
    padding: 30px 26px 24px;
  }

  .project-information-wrap .solution-sales-guide {
    padding: 18px;
  }

  .project-information-wrap .solution-sales-guide > a {
    width: 100%;
  }

  .launching-screen-wrap {
    padding: 22px 18px;
  }

  .launch-mobile-screen-wrap img {
    height: 250px !important;
  }

  .launch-web-screen-wrap img {
    width: 78vw !important;
  }

  .list-wrap {
    display: grid;
    margin-bottom: 80px;
    padding: 22px;
    border-radius: 26px;
  }

  .inquiry {
    min-height: 150px;
    padding: 68px 24px 24px;
  }

  .text-explanation br {
    display: none;
  }

  .site-footer {
    padding: 64px 20px 28px;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-brand img {
    width: 190px;
  }

  .footer-cta span {
    font-size: 28px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-progress span,
  .site-header,
  .expertise-grid article {
    animation: none !important;
    transition: none !important;
  }
}
