.atmos-home-feature {
  --atmos-cyan: #23d6ff;
  --atmos-green: #55ee80;
  --atmos-purple: #b85cff;
  --atmos-amber: #ffb43b;
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1500px, calc(100% - 32px));
  min-height: 540px;
  margin: 26px auto 54px;
  padding: clamp(26px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid #254969;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(8, 20, 36, .98) 0 54%, rgba(4, 8, 18, .92)),
    #040812;
  box-shadow: 0 30px 90px rgba(1, 8, 18, .32);
  color: #f5f7fb;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  font-family: Arial, "Noto Sans JP", "Yu Gothic UI", sans-serif;
  box-sizing: border-box;
}

.atmos-home-feature * {
  box-sizing: border-box;
}

.atmos-home-feature__glow {
  position: absolute;
  inset: -40% auto auto -10%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 214, 255, .16), transparent 66%);
  pointer-events: none;
}

.atmos-home-feature__brand {
  position: absolute;
  top: 28px;
  left: clamp(26px, 5vw, 72px);
  display: flex;
  gap: 16px;
  align-items: center;
}

.atmos-home-feature__brand img {
  width: 96px;
  height: 54px;
  object-fit: contain;
}

.atmos-home-feature__brand span {
  color: #8ea9c5;
  font: 800 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
}

.atmos-home-feature__body {
  position: relative;
  padding-top: 70px;
}

.atmos-home-feature__eyebrow {
  margin: 0 0 14px !important;
  color: var(--atmos-cyan) !important;
  font: 900 12px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace !important;
  letter-spacing: .16em;
}

.atmos-home-feature h1 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(52px, 6vw, 96px) !important;
  font-weight: 900 !important;
  letter-spacing: -.075em !important;
  line-height: .9 !important;
  white-space: nowrap;
}

.atmos-home-feature h1 b {
  color: #fff;
  letter-spacing: -.03em;
}

.atmos-home-feature__lead {
  max-width: 700px;
  margin: 34px 0 0 !important;
  color: #b7c9da !important;
  font-size: clamp(16px, 1.5vw, 21px) !important;
  line-height: 1.8 !important;
}

.atmos-home-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 38px;
  align-items: center;
}

.atmos-home-feature__actions a {
  display: inline-flex;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid var(--atmos-cyan);
  background: var(--atmos-cyan);
  box-shadow: 0 12px 35px rgba(35, 214, 255, .2);
  color: #04101d !important;
  align-items: center;
  gap: 26px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none !important;
}

.atmos-home-feature__actions a:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.atmos-home-feature__actions a span {
  font-size: 23px;
}

.atmos-home-feature__actions strong {
  color: #91aac2;
  font: 800 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .08em;
}

.atmos-home-feature__meter {
  position: relative;
  display: grid;
  gap: 25px;
  padding: 60px 28px 36px;
  border: 1px solid #203954;
  background: rgba(7, 17, 31, .72);
  box-shadow: inset 0 0 60px rgba(35, 214, 255, .035);
}

.atmos-home-feature__meter::before {
  position: absolute;
  top: 22px;
  left: 28px;
  color: #91aac2;
  font: 800 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
  content: "LIVE SIGNAL";
}

.atmos-home-feature__meter::after {
  position: absolute;
  top: 23px;
  right: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12e2c4;
  box-shadow: 0 0 15px #12e2c4;
  content: "";
}

.atmos-home-feature__meter span {
  position: relative;
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #203954;
  color: var(--c);
  font: 900 14px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.atmos-home-feature__meter span::before,
.atmos-home-feature__meter span::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 10px;
  content: "";
}

.atmos-home-feature__meter span::before {
  width: 100%;
  border: 1px solid #203954;
  background: #030812;
}

.atmos-home-feature__meter span::after {
  width: var(--w);
  background: linear-gradient(90deg, #18d7ff, #00f5d2, var(--c));
  box-shadow: 0 0 13px color-mix(in srgb, var(--c) 42%, transparent);
}

@media (max-width: 900px) {
  .atmos-home-feature {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .atmos-home-feature__meter {
    margin-top: 4px;
  }
}

@media (max-width: 560px) {
  .atmos-home-feature {
    width: calc(100% - 18px);
    margin-top: 10px;
    padding: 22px 19px 28px;
  }

  .atmos-home-feature__brand {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
  }

  .atmos-home-feature__brand span {
    display: none;
  }

  .atmos-home-feature__body {
    padding-top: 6px;
  }

  .atmos-home-feature h1 {
    font-size: clamp(48px, 15vw, 72px) !important;
    white-space: normal;
  }

  .atmos-home-feature__meter {
    padding-inline: 18px;
  }
}
