body.home-page {
  overflow-x: hidden;
  background: #0e1524;
  color: #f8fbff;
}

.home-page .page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 72% 22%, rgba(120, 102, 255, 0.33), transparent 35%),
    radial-gradient(circle at 16% 54%, rgba(255, 82, 190, 0.18), transparent 30%),
    radial-gradient(circle at 78% 74%, rgba(16, 185, 205, 0.2), transparent 28%),
    linear-gradient(180deg, #263245 0%, #111827 43%, #0c1322 100%);
  background-size: 70px 70px, 70px 70px, auto, auto, auto, auto;
}

.home-page .page-shell::before,
.home-page .page-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-page .page-shell::before {
  top: 150px;
  right: 6vw;
  width: min(36vw, 520px);
  height: min(36vw, 520px);
  border: 1px solid rgba(157, 171, 255, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(139, 150, 255, 0.16) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(139, 150, 255, 0.16) 50%, transparent 51%);
  box-shadow: inset 0 0 80px rgba(103, 96, 255, 0.18);
}

.home-page .page-shell::after {
  top: 104px;
  left: 0;
  width: 100%;
  height: 540px;
  background:
    linear-gradient(112deg, transparent 0 26%, rgba(255, 255, 255, 0.075) 26.2%, transparent 26.6%),
    linear-gradient(112deg, transparent 0 60%, rgba(119, 242, 255, 0.09) 60.2%, transparent 60.6%);
  opacity: 0.8;
}

.home-page .site-header {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(37, 48, 66, 0.96), rgba(34, 42, 59, 0.9)),
    rgba(39, 49, 67, 0.94);
  padding: 0 clamp(24px, 5vw, 86px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.home-page .brand {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
}

.home-page .brand-text {
  background: linear-gradient(90deg, #ffffff 0%, #e6e8ff 45%, #c76dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.home-page .brand-subtitle {
  color: rgba(217, 227, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .hero {
  position: relative;
  z-index: 2;
  padding: 104px 24px 66px;
}

.home-page .hero-inner {
  display: grid;
  max-width: 1340px;
  grid-template-columns: minmax(0, 640px) minmax(420px, 620px);
  gap: clamp(42px, 5vw, 80px);
  align-items: center;
  margin: 0 auto;
}

.home-page .hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.home-page .hero-kicker,
.home-page .section-kicker,
.home-page .final-cta p {
  margin: 0 0 18px;
  color: #aab7ff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .hero-title {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 2vw, 40px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.home-page .hero-desc {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(234, 240, 255, 0.78);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.8;
}

.home-page .primary-button {
  position: relative;
  display: inline-flex;
  min-width: 206px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #6e7cff 0%, #9c58df 58%, #ff6bc7 100%);
  box-shadow:
    0 18px 42px rgba(113, 101, 242, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}

.home-page .primary-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-20deg);
  transition: left 0.36s ease;
}

.home-page .primary-button:hover {
  box-shadow: 0 22px 48px rgba(113, 101, 242, 0.48);
  transform: translateY(-2px);
}

.home-page .primary-button:hover::after {
  left: 110%;
}

.home-page .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-page .hero-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(166, 180, 255, 0.2);
  border-radius: 8px;
  background: rgba(13, 21, 36, 0.56);
  color: rgba(231, 238, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  padding: 0 13px;
}

.home-page .showcase-wrap {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.home-page .showcase-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(165, 177, 255, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 32%),
    rgba(13, 19, 34, 0.72);
  box-shadow:
    0 36px 92px rgba(0, 0, 0, 0.38),
    0 0 110px rgba(120, 100, 255, 0.24);
  overflow: hidden;
}

.home-page .showcase-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  pointer-events: none;
}

.home-page .showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 76% 24%, rgba(0, 229, 255, 0.22), transparent 28%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-page .showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(175, 188, 255, 0.22);
  border-radius: 14px;
  background: rgba(14, 22, 38, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  padding: 10px 14px;
  backdrop-filter: blur(14px);
}

.home-page .floating-note span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(111, 124, 255, 0.95), rgba(255, 101, 199, 0.95));
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.home-page .floating-note strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.home-page .note-left {
  left: -34px;
  bottom: 38px;
}

.home-page .note-right {
  top: 34px;
  right: -28px;
}

.home-page .trust-strip {
  display: grid;
  position: relative;
  z-index: 2;
  max-width: 1120px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px auto 0;
  border: 1px solid rgba(139, 153, 205, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(108, 119, 255, 0.16), rgba(209, 88, 219, 0.12), rgba(40, 211, 232, 0.1)),
    rgba(16, 25, 43, 0.78);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.34),
    0 0 80px rgba(112, 98, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.home-page .trust-strip::before {
  content: "";
  position: absolute;
  inset: 0 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
}

.home-page .trust-strip::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 52px;
  background: radial-gradient(ellipse at center, rgba(125, 111, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.home-page .trust-strip div {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 138px;
  align-content: center;
  justify-items: center;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 68%);
  padding: 26px 18px 24px;
  text-align: center;
}

.home-page .trust-strip div + div::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(159, 174, 229, 0.32), transparent);
}

.home-page .trust-strip div::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(170, 185, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 122, 255, 0.2), transparent 66%);
  opacity: 0.72;
}

.home-page .trust-strip small {
  color: rgba(178, 188, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.home-page .trust-strip strong {
  background: linear-gradient(180deg, #ffffff 0%, #edf0ff 56%, #b9c0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 12px 32px rgba(120, 112, 255, 0.26);
}

.home-page .trust-strip span {
  color: rgba(225, 233, 249, 0.66);
  font-size: 14px;
  font-weight: 800;
}

.home-page .content-section,
.home-page .scenario-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 94px 24px 0;
}

.home-page .section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-page .section-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

.home-page .workflow-grid,
.home-page .scenario-grid {
  display: grid;
  gap: 22px;
}

.home-page .workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .scenario-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .workflow-grid article,
.home-page .scenario-grid article,
.home-page .final-cta {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(24, 34, 54, 0.82);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.home-page .workflow-grid article {
  min-height: 360px;
  padding: 20px 20px 26px;
}

.home-page .card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 22px;
  border: 1px solid rgba(169, 183, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 20%, rgba(126, 110, 255, 0.2), transparent 38%),
    rgba(7, 13, 25, 0.42);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.home-page .card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(13, 20, 36, 0.55)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 28%);
  pointer-events: none;
}

.home-page .card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.home-page .card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-page .workflow-grid span {
  flex: 0 0 auto;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(123, 116, 255, 0.16);
  color: #b7b9ff;
  font-weight: 900;
}

.home-page article h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3;
}

.home-page .card-heading h3 {
  margin: 0;
}

.home-page article p {
  margin: 16px 0 0;
  color: rgba(224, 233, 249, 0.72);
  font-size: 16px;
  line-height: 1.74;
}

.home-page .scenario-grid article {
  min-height: 296px;
  padding: 18px 18px 24px;
}

.home-page .scenario-visual {
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
}

.home-page .scenario-grid article h3 {
  margin-top: 0;
}

.home-page .final-cta {
  display: grid;
  max-width: 940px;
  justify-items: center;
  margin: 96px auto 112px;
  padding: 54px 28px;
  text-align: center;
}

.home-page .final-cta h2 {
  max-width: 650px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: 0;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .home-page .hero-inner {
    grid-template-columns: 1fr;
  }

  .home-page .showcase-frame {
    max-width: 720px;
  }

  .home-page .note-left {
    left: 18px;
  }

  .home-page .note-right {
    right: 18px;
  }

  .home-page .workflow-grid,
  .home-page .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-page .site-header {
    min-height: 76px;
    padding: 0 20px;
  }

  .home-page .brand-text {
    font-size: 22px;
  }

  .home-page .brand-subtitle {
    font-size: 11px;
  }

  .home-page .hero {
    padding: 56px 20px 42px;
  }

  .home-page .hero-title {
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.18;
    white-space: nowrap;
  }

  .home-page .hero-desc {
    font-size: 17px;
    line-height: 1.72;
  }

  .home-page .primary-button {
    width: 100%;
    max-width: 260px;
    height: 54px;
    margin-top: 32px;
    border-radius: 12px;
  }

  .home-page .showcase-frame {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .home-page .floating-note {
    display: none;
  }

  .home-page .trust-strip,
  .home-page .workflow-grid,
  .home-page .scenario-grid {
    grid-template-columns: 1fr;
  }

  .home-page .trust-strip {
    border-radius: 14px;
    margin: 28px 20px 0;
  }

  .home-page .trust-strip div {
    min-height: 112px;
  }

  .home-page .trust-strip div + div::before {
    top: 0;
    right: 22px;
    bottom: auto;
    left: 22px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(159, 174, 229, 0.3), transparent);
  }

  .home-page .trust-strip div::after {
    right: 20px;
    top: 18px;
    width: 26px;
    height: 26px;
  }

  .home-page .trust-strip strong {
    font-size: 30px;
  }

  .home-page .content-section,
  .home-page .scenario-section {
    padding: 70px 20px 0;
  }

  .home-page .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .home-page .section-title {
    font-size: 29px;
  }

  .home-page .workflow-grid article,
  .home-page .scenario-grid article {
    min-height: auto;
    padding: 24px 22px;
  }

  .home-page .card-visual {
    margin-bottom: 20px;
  }

  .home-page .final-cta {
    margin: 72px 20px 84px;
    padding: 38px 22px;
  }
}
