:root {
  --bg: #040914;
  --bg-soft: #091323;
  --card: rgba(10, 21, 37, 0.84);
  --card-strong: #0c1729;
  --stroke: rgba(75, 106, 131, 0.28);
  --stroke-bright: rgba(21, 196, 172, 0.3);
  --text: #f3f7fd;
  --muted: #93a6bd;
  --green: #13c9aa;
  --green-soft: #70f4d9;
  --cyan: #1fc2f0;
  --blue: #4585ff;
  --red: #fc4c62;
  --orange: #f89e3b;
  --purple: #9879ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 10%, rgba(27, 121, 174, 0.12), transparent 35%),
    radial-gradient(circle at 83% 12%, rgba(19, 201, 170, 0.1), transparent 29%),
    var(--bg);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(4, 9, 20, 0.7);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--stroke);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #c2cede;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green-soft);
}

.nav-download {
  border: 1px solid var(--stroke-bright);
  border-radius: 10px;
  padding: 11px 18px;
  color: var(--green-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(16px);
}

.hero-glow-left {
  left: -260px;
  bottom: -130px;
  width: 550px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 137, 172, 0.18), transparent 65%);
}

.hero-glow-right {
  top: -200px;
  right: -180px;
  width: 620px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 188, 168, 0.16), transparent 66%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, 1fr) 508px;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.hero h1 {
  margin: 22px 0 22px;
  font-size: clamp(48px, 5vw, 62px);
  line-height: 1.16;
  letter-spacing: 0.04em;
}

.hero h1 span {
  background: linear-gradient(92deg, #16cbb0 7%, #4adcd0 70%);
  background-clip: text;
  color: transparent;
}

.hero-summary {
  max-width: 529px;
  color: #9baac0;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 10px;
  padding: 0 26px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #03110e;
  background: linear-gradient(105deg, #11c6a6, #21d6ae);
  box-shadow: 0 10px 25px rgba(18, 196, 164, 0.2);
}

.button-secondary {
  border: 1px solid #26384d;
  color: #d8e2ee;
  background: rgba(10, 21, 37, 0.55);
}

.trial-code-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  border: 0;
  padding: 0;
  color: #6ff7df;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(111, 247, 223, 0.42);
  text-underline-offset: 4px;
  cursor: pointer;
}

.trial-code-link:hover {
  color: #ffdde3;
  text-decoration-color: rgba(255, 64, 85, 0.68);
}

.release-info {
  display: flex;
  gap: 0;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.release-info li {
  padding: 0 16px;
  border-right: 1px solid #253346;
}

.release-info li:first-child {
  padding-left: 0;
  color: var(--green);
}

.release-info li:last-child {
  border: 0;
}

.hero-product {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.product-ring {
  position: absolute;
  inset: 24px -26px -24px 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 208, 182, 0.12), transparent 62%);
}

.hero-screenshot {
  display: none;
}

.hero-alert-widget {
  position: relative;
  z-index: 1;
  width: min(432px, 100%);
  border: 3px solid #ff4148;
  border-radius: 24px;
  padding: 25px 26px 27px;
  color: #d7e1ec;
  background:
    linear-gradient(145deg, rgba(13, 28, 44, 0.94), rgba(8, 22, 36, 0.98)),
    radial-gradient(circle at 20% 0%, rgba(36, 211, 191, 0.12), transparent 42%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.54),
    0 0 34px rgba(19, 201, 170, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ff454d;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.widget-shield {
  font-size: 21px;
  filter: drop-shadow(0 0 8px rgba(255, 198, 84, 0.34));
}

.widget-close {
  color: rgba(153, 166, 184, 0.62);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}

.widget-divider {
  height: 2px;
  margin: 24px 0 20px;
  background: rgba(31, 212, 192, 0.14);
}

.widget-divider.subtle {
  margin: 16px 0 18px;
  background: rgba(129, 151, 174, 0.16);
}

.widget-map {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  padding: 13px 15px;
  color: #17c99b;
  background: rgba(67, 84, 103, 0.5);
  font-size: 19px;
  font-weight: 800;
}

.widget-section {
  margin-top: 17px;
}

.widget-section h3 {
  margin: 0 0 11px;
  color: #e4edf7;
  font-size: 18px;
  line-height: 1.45;
}

.widget-section h3 span {
  color: #d4dde8;
  font-weight: 600;
}

.widget-alert-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-alert-list li {
  display: grid;
  grid-template-columns: 20px max-content minmax(98px, 1fr) minmax(115px, 1.1fr);
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: #d7e0eb;
  font-size: 18px;
  line-height: 1.4;
}

.widget-alert-list time,
.widget-alert-list b,
.widget-alert-list em {
  min-width: 0;
  white-space: nowrap;
}

.widget-alert-list b,
.widget-alert-list em {
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-alert-list b {
  color: #e4ecf4;
  font-weight: 700;
}

.widget-alert-list em {
  color: #d4dde8;
  font-style: normal;
}

.hit-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ef373d;
  box-shadow: 0 0 12px rgba(239, 55, 61, 0.42);
}

.quote-mark {
  color: #bac7d4;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
}

.widget-settings {
  display: block;
  margin: 22px 0 0 auto;
  border: 0;
  border-radius: 10px;
  padding: 12px 22px;
  color: #56a1f0;
  background: rgba(63, 81, 102, 0.72);
  font: inherit;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid rgba(35, 53, 75, 0.6);
  border-bottom: 1px solid rgba(35, 53, 75, 0.6);
  background: rgba(6, 13, 25, 0.68);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  color: #75879c;
  font-size: 14px;
}

.trust-items p:first-child {
  color: #b8c5d4;
}

.trust-items span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #44576c;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.screens-heading h2,
.preview-copy h2 {
  margin: 16px 0 13px;
  font-size: clamp(29px, 3vw, 38px);
  line-height: 1.35;
}

.section-heading > p:last-child,
.preview-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.feature-card {
  min-height: 218px;
  padding: 28px 27px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(7, 15, 29, 0.64);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 121, 142, 0.5);
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
  border-radius: 9px;
  font-size: 23px;
  font-weight: 700;
}

.accent-red .feature-icon {
  color: #fc5365;
  background: rgba(252, 76, 98, 0.1);
}

.accent-cyan .feature-icon {
  color: #30c9ef;
  background: rgba(31, 194, 240, 0.12);
}

.accent-green .feature-icon {
  color: var(--green);
  background: rgba(19, 201, 170, 0.12);
}

.accent-purple .feature-icon {
  color: var(--purple);
  background: rgba(152, 121, 255, 0.12);
}

.accent-orange .feature-icon {
  color: var(--orange);
  background: rgba(248, 158, 59, 0.12);
}

.accent-blue .feature-icon {
  color: var(--blue);
  background: rgba(69, 133, 255, 0.12);
}

.feature-card h3 {
  margin-bottom: 11px;
  font-size: 19px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-card .bot-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(19, 201, 170, 0.45);
  text-underline-offset: 3px;
}

.latest-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(35, 53, 75, 0.56);
  border-bottom: 1px solid rgba(35, 53, 75, 0.56);
  background:
    radial-gradient(circle at 12% 0%, rgba(19, 201, 170, 0.13), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(69, 133, 255, 0.1), transparent 32%),
    rgba(6, 13, 25, 0.76);
}

.latest-section .section-heading {
  max-width: 780px;
}

.latest-section .section-heading h2 {
  text-wrap: balance;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.latest-card {
  display: flex;
  gap: 18px;
  border: 1px solid rgba(47, 102, 119, 0.42);
  border-radius: 14px;
  padding: 22px 23px;
  background: linear-gradient(135deg, rgba(11, 27, 42, 0.94), rgba(7, 17, 31, 0.82));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
}

.latest-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(22, 211, 173, 0.1);
  font-size: 22px;
}

.latest-card h3 {
  margin: 1px 0 7px;
  color: #e3edf7;
  font-size: 18px;
}

.latest-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.security-note {
  margin-top: 34px;
  border: 1px solid rgba(22, 190, 165, 0.22);
  border-radius: 18px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(9, 20, 36, 0.9), rgba(6, 14, 27, 0.96)),
    radial-gradient(circle at 12% 0%, rgba(23, 201, 155, 0.08), transparent 38%);
  box-shadow: var(--shadow);
}

.security-note-heading {
  max-width: 760px;
}

.security-note-heading h3 {
  margin: 14px 0 0;
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1.45;
}

.security-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.security-note-card {
  min-height: 178px;
  padding: 22px 20px;
  border: 1px solid rgba(49, 84, 116, 0.48);
  border-radius: 14px;
  background: rgba(11, 27, 46, 0.72);
}

.security-note-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 10px;
  color: #1ce2bd;
  background: rgba(28, 226, 189, 0.12);
  font-size: 21px;
  font-weight: 700;
}

.security-note-card strong {
  display: block;
  margin-bottom: 10px;
  color: #edf6ff;
  font-size: 18px;
}

.security-note-card p {
  color: #9db1c6;
  font-size: 14px;
  line-height: 1.8;
}

.hp-preview-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(35, 53, 75, 0.56);
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 67, 87, 0.16), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(28, 214, 195, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(5, 12, 24, 0.96), rgba(8, 22, 38, 0.92));
}

.hp-preview-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 46px;
}

.hp-preview-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.22;
}

.hp-preview-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.hp-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hp-feature-list span {
  border: 1px solid rgba(34, 218, 198, 0.25);
  border-radius: 999px;
  padding: 8px 13px;
  color: #c8f8ee;
  background: rgba(15, 43, 57, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.hp-preview-note {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  border-left: 3px solid #ff4b63;
  padding: 14px 17px;
  background: rgba(255, 75, 99, 0.09);
}

.hp-preview-note strong {
  color: #ffd6dc;
}

.hp-preview-note span {
  color: #a9bfd3;
  font-size: 14px;
  line-height: 1.7;
}

.hp-demo-stack {
  position: relative;
  display: grid;
  gap: 12px;
}

.hp-demo-stack::before {
  content: "";
  position: absolute;
  inset: -32px -18px 34px 52px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.1), rgba(8, 19, 34, 0.76)),
    radial-gradient(circle at 72% 22%, rgba(28, 214, 195, 0.16), transparent 42%);
  filter: blur(1px);
  pointer-events: none;
}

.hp-settings-demo,
.hp-floating-demo {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(47, 102, 119, 0.5);
  background: rgba(9, 22, 38, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.hp-settings-demo {
  min-height: 330px;
  border-radius: 20px;
  padding: 28px 30px 34px;
}

.hp-demo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #edf6ff;
  font-size: 24px;
  font-weight: 900;
}

.hp-heart {
  color: #ff4055;
  text-shadow: 0 0 18px rgba(255, 64, 85, 0.48);
}

.hp-demo-status {
  margin: 12px 0 28px;
  color: #19e686;
  font-size: 18px;
  font-weight: 800;
}

.hp-check-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: #e3edf7;
  font-size: 19px;
  font-weight: 800;
}

.hp-check-box {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 3px solid rgba(225, 238, 249, 0.58);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.hp-check-row.is-checked .hp-check-box {
  border-color: #2fd4ef;
  background: #2fd4ef;
}

.hp-check-row.is-checked .hp-check-box::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 10px;
  height: 18px;
  border: solid #041524;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.hp-threshold {
  margin-top: 42px;
}

.hp-threshold-title {
  margin-bottom: 28px;
  color: #edf6ff;
  font-size: 20px;
  font-weight: 900;
}

.hp-slider-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.hp-slider-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(211, 225, 238, 0.32);
}

.hp-slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  border-radius: inherit;
  background: #2fd4ef;
  box-shadow: 0 0 18px rgba(47, 212, 239, 0.42);
}

.hp-slider-thumb {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2fd4ef;
  box-shadow: 0 0 0 5px rgba(47, 212, 239, 0.12);
  transform: translate(-50%, -50%);
}

.hp-slider-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 84px;
  border-bottom: 3px solid #2fd4ef;
  padding-bottom: 6px;
  color: #eaf5ff;
  justify-content: flex-end;
}

.hp-slider-value strong {
  font-size: 22px;
}

.hp-slider-value span {
  color: #a9bfd3;
  font-weight: 800;
}

.hp-floating-demo {
  width: min(420px, 82%);
  justify-self: start;
  margin-left: 18px;
  border-radius: 12px;
  padding: 17px 20px;
}

.hp-floating-demo p,
.hp-floating-demo strong {
  margin: 0;
  color: #24e0a5;
  font-size: 18px;
  line-height: 1.75;
}

.hp-floating-demo p span {
  color: #ff4055;
}

.hp-demo-caption {
  position: relative;
  z-index: 1;
  margin: -4px 0 8px 22px;
  color: #8fa4bb;
  font-size: 13px;
  line-height: 1.6;
}

.preview-section {
  padding-top: 36px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 57px;
  margin-bottom: 86px;
}

.preview-copy h2 {
  margin-top: 17px;
}

.preview-callout {
  margin-top: 28px;
  border-left: 3px solid var(--green);
  padding: 16px 18px;
  background: rgba(12, 34, 43, 0.54);
}

.preview-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-soft);
}

.preview-callout span {
  color: #aab9cc;
  font-size: 14px;
  line-height: 1.55;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid rgba(22, 190, 165, 0.28);
  border-radius: 18px;
  padding: 14px;
  background: #081221;
  box-shadow: var(--shadow);
}

.screenshot-frame img {
  width: 100%;
  border-radius: 10px;
}

.screenshot-frame figcaption {
  margin: 12px 3px 2px;
  color: #8296ab;
  font-size: 12px;
  text-align: center;
}

.widget-preview-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preview-alert-widget {
  width: min(460px, 100%);
  transform: none;
}

.broadcast-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(30, 49, 69, 0.4);
  border-bottom: 1px solid rgba(30, 49, 69, 0.4);
  background:
    radial-gradient(circle at 82% 18%, rgba(28, 198, 172, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(4, 9, 20, 0.2), rgba(4, 9, 20, 0.82));
}

.broadcast-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 62px;
}

.broadcast-copy h2 {
  margin: 18px 0 17px;
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.32;
}

.broadcast-copy > p:not(.eyebrow) {
  color: #a9bbd1;
  font-size: 16px;
  line-height: 1.85;
}

.shared-list-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(35, 53, 75, 0.56);
  background:
    radial-gradient(circle at 22% 18%, rgba(28, 226, 189, 0.16), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(255, 75, 99, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(4, 11, 23, 0.96), rgba(8, 23, 40, 0.92));
}

.shared-list-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 52px;
}

.shared-list-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(31px, 3.8vw, 46px);
  line-height: 1.23;
}

.shared-list-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #a9bbd1;
  font-size: 16px;
  line-height: 1.9;
}

.shared-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.shared-list-tags span {
  border: 1px solid rgba(34, 218, 198, 0.28);
  border-radius: 999px;
  padding: 8px 13px;
  color: #c8f8ee;
  background: rgba(15, 43, 57, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.shared-list-demo {
  position: relative;
  border: 1px solid rgba(38, 225, 197, 0.38);
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(13, 31, 52, 0.82), rgba(8, 19, 34, 0.74)),
    radial-gradient(circle at 76% 0%, rgba(28, 226, 189, 0.16), transparent 36%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.shared-list-demo::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(95, 130, 162, 0.2);
  border-radius: 14px;
  pointer-events: none;
}

.shared-list-demo-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.shared-list-demo-header > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(28, 226, 189, 0.13);
  font-size: 22px;
}

.shared-list-demo-header strong {
  display: block;
  color: #edf6ff;
  font-size: 22px;
}

.shared-list-demo-header small {
  display: block;
  margin-top: 5px;
  color: #9fb4c9;
  font-size: 13px;
  line-height: 1.6;
}

.shared-list-demo label {
  position: relative;
  z-index: 1;
  display: block;
  margin: 18px 0 7px;
  color: #5cf2d7;
  font-size: 15px;
  font-weight: 800;
}

.shared-list-field {
  position: relative;
  z-index: 1;
  min-height: 54px;
  border: 1px solid rgba(74, 111, 143, 0.6);
  border-radius: 12px;
  padding: 15px 16px;
  color: #f5fbff;
  background: rgba(8, 20, 36, 0.48);
  font-size: 16px;
  line-height: 1.45;
}

.shared-list-copy-button,
.shared-list-discord-button {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 800;
}

.shared-list-copy-button {
  margin-top: 10px;
  color: #d8fff6;
  background: linear-gradient(90deg, rgba(20, 185, 160, 0.72), rgba(35, 218, 194, 0.56));
}

.shared-list-discord-button {
  margin-top: 18px;
  color: #ffd9df;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, rgba(255, 75, 99, 0.72), rgba(255, 75, 99, 0.42));
}

.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 23px;
  border: 1px solid rgba(252, 76, 98, 0.42);
  border-radius: 999px;
  padding: 0 8px;
  color: #fff1f3;
  background: linear-gradient(105deg, #ff4656, #ff7b54);
  box-shadow: 0 0 18px rgba(252, 76, 98, 0.25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.broadcast-points {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.broadcast-points article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(31, 212, 192, 0.18);
  border-radius: 13px;
  padding: 17px 18px;
  background: rgba(8, 24, 39, 0.62);
}

.broadcast-point-icon {
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 212, 192, 0.4);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(31, 212, 192, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(10, 34, 48, 0.92), rgba(6, 21, 33, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(19, 201, 170, 0.12),
    0 0 28px rgba(19, 201, 170, 0.12);
}

.broadcast-point-icon svg {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 16px rgba(42, 241, 205, 0.22));
}

.broadcast-point-copy {
  min-width: 0;
}

.broadcast-points strong {
  display: block;
  margin-bottom: 6px;
  color: #ecf5ff;
  font-size: 16px;
}

.broadcast-points span {
  color: #91a8bd;
  font-size: 14px;
  line-height: 1.65;
}

.broadcast-demo {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 118px;
}

.broadcast-widget {
  width: min(390px, 100%);
  border: 2px solid #13c9aa;
  border-radius: 22px;
  padding: 23px 24px 22px;
  color: #d7e1ec;
  background:
    linear-gradient(145deg, rgba(13, 28, 44, 0.91), rgba(8, 22, 36, 0.96)),
    radial-gradient(circle at 18% 0%, rgba(36, 211, 191, 0.14), transparent 42%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(19, 201, 170, 0.18);
}

.broadcast-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #1ed0ad;
  font-size: 21px;
  font-weight: 800;
}

.broadcast-widget-header div:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(197, 210, 224, 0.74);
  font-size: 27px;
}

.header-actions span:first-child {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(79, 97, 122, 0.58);
  font-size: 19px;
}

.broadcast-widget-divider {
  height: 2px;
  margin: 20px 0 18px;
  background: rgba(31, 212, 192, 0.14);
}

.broadcast-widget h3 {
  margin: 0 0 15px;
  color: #edf6ff;
  font-size: 21px;
}

.broadcast-input,
.broadcast-message {
  border-radius: 9px;
  padding: 14px 15px;
  background: rgba(67, 84, 103, 0.5);
  color: #dbe7f4;
  font-size: 16px;
  line-height: 1.55;
}

.broadcast-input {
  margin-bottom: 14px;
  color: #93c8ee;
}

.broadcast-message {
  position: relative;
  min-height: 76px;
  padding-right: 54px;
}

.broadcast-message small {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: #a7b8c9;
  font-size: 13px;
  font-weight: 700;
}

.broadcast-widget button {
  width: 100%;
  margin-top: 24px;
  border: 0;
  border-radius: 6px;
  padding: 17px 12px;
  color: #03110e;
  background: linear-gradient(105deg, #11c6a6, #21d6ae);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
}

.cooldown {
  margin: 18px 0 0;
  color: #a1afbf;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.broadcast-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.broadcast-tabs span {
  border-radius: 9px;
  padding: 12px 7px;
  color: #c0cedd;
  background: rgba(62, 78, 99, 0.58);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.broadcast-tabs .active {
  color: #16d3ad;
}

.broadcast-toast {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(430px, 86%);
  border: 2px solid rgba(32, 230, 195, 0.72);
  border-radius: 14px;
  padding: 13px 16px;
  background: rgba(17, 27, 42, 0.91);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(32, 230, 195, 0.14);
  transform: translateX(-50%);
}

.toast-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(32, 230, 195, 0.16);
}

.broadcast-toast strong {
  display: block;
  margin-bottom: 4px;
  color: #20e6c3;
  font-size: 13px;
}

.broadcast-toast p {
  color: #edf6ff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.screens-heading {
  margin-bottom: 34px;
  text-align: center;
}

.mockups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.phone-screen {
  min-height: 385px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(11, 24, 43, 0.98), rgba(5, 12, 23, 0.98));
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: #c7d4e3;
  font-size: 14px;
}

.phone-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.phone-top small {
  margin-left: auto;
  color: var(--green);
}

.phone-screen h3 {
  margin-bottom: 21px;
  font-size: 21px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.metrics div {
  border: 1px solid #16263a;
  border-radius: 10px;
  padding: 14px 6px;
  text-align: center;
  background: rgba(9, 19, 34, 0.62);
}

.metrics b {
  display: block;
  color: #20d0ad;
  font-size: 25px;
}

.metrics small,
.screen-label {
  color: #8498af;
  font-size: 12px;
}

.risk-map,
.enemy {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  border-radius: 9px;
  padding: 13px;
  background: #111e30;
  font-size: 13px;
}

.risk-map strong {
  color: var(--red);
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 57px;
  margin: 28px 12px 0;
}

.mini-bars i {
  flex: 1;
  height: 34%;
  border-radius: 4px 4px 0 0;
  background: #147e7d;
}

.mini-bars i:nth-child(2),
.mini-bars i:nth-child(5) {
  height: 85%;
  background: var(--green);
}

.mini-bars i:nth-child(3) {
  height: 62%;
}

.mini-bars i:nth-child(4) {
  height: 45%;
}

.log-row {
  display: grid;
  grid-template-columns: 12px 58px 1fr 43px;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  border-radius: 8px;
  padding: 12px 9px;
  background: rgba(12, 27, 44, 0.9);
  font-size: 13px;
}

.log-row em {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.log-row small,
.log-row time {
  color: #8ea2b7;
}

.log-row.danger {
  border: 1px solid rgba(251, 75, 96, 0.25);
}

.alerts .screen-label {
  display: block;
  margin-top: 27px;
}

.enemy strong {
  color: var(--orange);
}

.settings label {
  display: block;
  margin: 17px 0 8px;
  color: #8ca0b5;
  font-size: 12px;
}

.input-mock {
  border: 1px solid #1c3045;
  border-radius: 8px;
  padding: 13px;
  color: #c7d4e3;
  background: #091322;
  font-size: 13px;
}

.settings button {
  width: 100%;
  margin-top: 28px;
  border: 0;
  border-radius: 8px;
  padding: 14px;
  color: #03110e;
  background: var(--green);
  font-weight: 700;
}

.setup-section {
  border-top: 1px solid rgba(30, 49, 69, 0.4);
}

.setup-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 62px;
}

.setup-heading {
  margin: 0;
  text-align: left;
}

.steps {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 24px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 23px 25px;
  background: rgba(8, 17, 31, 0.62);
}

.steps li > span {
  color: var(--green);
  font-size: 21px;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.steps a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(19, 201, 170, 0.4);
}

.notice-section {
  padding-top: 18px;
}

.notice-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.notice-card {
  display: flex;
  gap: 20px;
  padding: 29px 28px;
  border: 1px solid rgba(31, 212, 192, 0.2);
  border-radius: 18px;
  background: rgba(8, 24, 39, 0.72);
}

.notice-card-warning {
  border-color: rgba(243, 164, 71, 0.28);
}

.notice-number {
  flex: 0 0 auto;
  color: #13cfb6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.notice-card-warning .notice-number {
  color: #f3a447;
}

.notice-card h3 {
  margin: 0 0 13px;
  color: #ecf5ff;
  font-size: 20px;
}

.notice-card p {
  margin: 0;
  color: #a9bbd1;
  font-size: 15px;
  line-height: 1.85;
}

.download-section {
  padding: 12px 0 86px;
}

.download-card {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 31px;
  border: 1px solid rgba(19, 201, 170, 0.24);
  border-radius: 18px;
  padding: 35px 39px;
  background:
    radial-gradient(circle at 96% 2%, rgba(20, 197, 169, 0.13), transparent 36%),
    #071221;
}

.download-card img {
  width: 84px;
  height: 84px;
  border-radius: 19px;
}

.download-card h2 {
  margin: 11px 0 9px;
  font-size: 28px;
}

.download-description {
  color: var(--muted);
  line-height: 1.6;
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.download-actions small {
  color: #8294aa;
}

.trial-modal[hidden] {
  display: none;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.trial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 14, 0.78);
  backdrop-filter: blur(8px);
}

.trial-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid rgba(31, 212, 192, 0.32);
  border-radius: 22px;
  padding: 30px;
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 64, 85, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(11, 28, 46, 0.98), rgba(5, 12, 24, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.trial-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  color: #95a8ba;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.trial-modal-close:hover {
  color: #ffffff;
}

.trial-modal-card h2 {
  margin: 12px 0 20px;
  color: #edf6ff;
  font-size: 28px;
}

.trial-code-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(47, 212, 239, 0.28);
  border-radius: 14px;
  padding: 12px;
  background: rgba(8, 24, 39, 0.78);
}

.trial-code-box code {
  overflow-wrap: anywhere;
  color: #6ff7df;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trial-code-box button {
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  color: #03110e;
  background: linear-gradient(105deg, #11c6a6, #21d6ae);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.trial-copy-status {
  min-height: 21px;
  margin: 12px 0 0;
  color: #ffdde3;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 28px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.footer-brand img {
  width: 35px;
  height: 35px;
  border-radius: 9px;
}

.footer-brand {
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: #93a6bd;
  font-size: 13px;
}

.disclaimer {
  color: #718398;
  font-size: 12px;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .hp-preview-grid,
  .preview-grid,
  .broadcast-grid,
  .shared-list-grid,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-product {
    min-height: 515px;
  }

  .feature-grid,
  .latest-grid,
  .security-note-grid,
  .mockups {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-demo-stack::before {
    inset: -24px -14px 24px 14px;
  }

  .shared-list-grid {
    gap: 36px;
  }

  .download-card {
    grid-template-columns: 76px 1fr;
  }

  .broadcast-demo {
    min-height: 510px;
    padding-top: 112px;
  }

  .download-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    margin-top: 12px;
  }

  .trial-modal-card {
    padding: 26px 20px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 540px);
  }

  .site-header {
    position: static;
  }

  .nav {
    height: 68px;
  }

  .brand span,
  .nav-links a:not(.nav-download) {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    display: block;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trial-code-link {
    width: 100%;
    justify-content: center;
  }

  .release-info {
    flex-wrap: wrap;
    row-gap: 14px;
    margin-bottom: 62px;
  }

  .hero-product {
    min-height: 455px;
  }

  .hero-screenshot {
    width: min(432px, 100%);
  }

  .hero-alert-widget {
    padding: 21px 20px 23px;
    border-radius: 22px;
  }

  .widget-title {
    font-size: 20px;
  }

  .widget-close {
    font-size: 38px;
  }

  .widget-map,
  .widget-section h3,
  .widget-alert-list li {
    font-size: 15px;
  }

  .widget-alert-list li {
    grid-template-columns: 17px max-content minmax(70px, 1fr) minmax(84px, 1.05fr);
  }

  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 18px 0;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .latest-grid,
  .security-note-grid,
  .mockups,
  .notice-grid {
    grid-template-columns: 1fr;
  }

  .shared-list-demo {
    padding: 20px;
  }

  .shared-list-demo-header {
    grid-template-columns: 1fr;
  }

  .security-note {
    padding: 24px 20px;
  }

  .trial-code-box {
    grid-template-columns: 1fr;
  }

  .trial-code-box button {
    width: 100%;
  }

  .hp-settings-demo {
    padding: 24px 20px 28px;
  }

  .hp-check-row {
    align-items: flex-start;
    font-size: 16px;
  }

  .hp-slider-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hp-slider-value {
    justify-content: flex-start;
  }

  .hp-floating-demo {
    width: 100%;
    margin-left: 0;
  }

  .hp-demo-caption {
    margin-left: 0;
  }

  .preview-grid {
    margin-bottom: 60px;
  }

  .preview-alert-widget {
    width: 100%;
  }

  .broadcast-demo {
    min-height: 485px;
    padding-top: 108px;
  }

  .broadcast-widget {
    padding: 20px 18px;
  }

  .broadcast-points article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .broadcast-point-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .broadcast-point-icon svg {
    width: 40px;
    height: 40px;
  }

  .broadcast-widget-header {
    font-size: 18px;
  }

  .broadcast-toast {
    top: 0;
    width: 94%;
  }

  .download-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 23px;
  }

  .download-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .disclaimer {
    text-align: left;
  }
}
