﻿:root {
  --bg: #030b14;
  --panel: rgba(4, 23, 36, 0.88);
  --panel-2: rgba(7, 35, 52, 0.76);
  --line: rgba(55, 226, 255, 0.34);
  --line-strong: rgba(73, 240, 255, 0.72);
  --text: #f3fbff;
  --muted: #91b7c8;
  --cyan: #25e6ff;
  --cyan-2: #00a8d8;
  --red: #ff4057;
  --red-2: #a6152c;
  --green: #16d786;
  --violet: #bc70ff;
  --gold: #ffd15c;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 6%, rgba(35, 205, 255, 0.22), transparent 28%),
    radial-gradient(circle at 22% 24%, rgba(0, 100, 150, 0.22), transparent 34%),
    linear-gradient(180deg, #020811 0%, #04121d 48%, #020811 100%);
  overflow-x: hidden;
}

body.home-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 10%, rgba(22, 182, 225, 0.2), transparent 30%),
    linear-gradient(180deg, #02070c 0%, #061420 44%, #02070c 100%);
}

.design-board {
  display: block;
  width: min(1440px, calc(100vw - 22px));
  margin: 10px auto 42px;
}

.desktop-console {
  border: 1px solid rgba(93, 211, 245, 0.48);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(6, 26, 39, 0.94), rgba(2, 13, 22, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 0 44px rgba(32, 188, 232, 0.07),
    0 18px 55px rgba(0, 0, 0, 0.38);
}

.desktop-console {
  grid-area: desktop;
  overflow: hidden;
  min-height: 0;
}

.console-header {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 270px;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(66, 200, 245, 0.18);
  background: rgba(1, 10, 18, 0.46);
}

.console-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
}

.trident-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #3df1ff;
  border: 1px solid rgba(56, 223, 255, 0.55);
  border-radius: 9px;
  background: rgba(0, 42, 58, 0.86);
  box-shadow: 0 0 24px rgba(30, 218, 255, 0.2);
  font-size: 28px;
  line-height: 1;
}

.console-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 24px);
  color: rgba(244, 251, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
}

.console-nav a {
  position: relative;
  padding: 28px 0 24px;
  text-decoration: none;
  white-space: nowrap;
}

.console-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #42eaff;
  box-shadow: 0 0 12px rgba(66, 234, 255, 0.7);
}

.console-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.mini-cta.green {
  border: 1px solid rgba(70, 255, 178, 0.65);
  background: linear-gradient(180deg, #20d78a, #087552);
  box-shadow: 0 0 24px rgba(15, 215, 129, 0.25), inset 0 0 16px rgba(255, 255, 255, 0.14);
}

.mini-cta.red {
  border: 1px solid rgba(255, 121, 132, 0.75);
  background: linear-gradient(180deg, #ff6f75, #d8213f 56%, #8f1026);
  box-shadow: 0 0 28px rgba(255, 50, 78, 0.3), inset 0 0 16px rgba(255, 255, 255, 0.16);
}

.console-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.console-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.console-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 10, 18, 0.86) 0%, rgba(2, 10, 18, 0.55) 39%, rgba(2, 10, 18, 0.02) 67%, rgba(2, 10, 18, 0.38) 100%),
    linear-gradient(0deg, rgba(3, 13, 22, 0.64), transparent 38%);
}

.console-hero-copy {
  position: relative;
  z-index: 2;
  width: 54%;
  padding: 56px 0 48px 78px;
}

.console-hero .kicker {
  margin-bottom: 14px;
  color: #f7fdff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.console-hero h1 {
  margin: 0;
  font-size: clamp(62px, 5.6vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  word-break: keep-all;
  text-wrap: balance;
}

.console-hero h1 span,
.console-hero h1 b {
  display: block;
}

.console-hero h1 span {
  color: #fff;
}

.console-hero h1 b {
  color: #21ecff;
  margin-top: 14px;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.18;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(33, 236, 255, 0.22);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 22px;
}

.trust-row div {
  min-height: 48px;
  display: grid;
  align-content: center;
  border-left: 2px solid rgba(34, 238, 255, 0.62);
  padding-left: 10px;
}

.trust-row strong {
  color: #dffbff;
  font-size: 14px;
}

.trust-row small {
  color: rgba(172, 221, 235, 0.82);
  font-size: 11px;
}

.console-hero .hero-actions {
  gap: 12px;
}

.console-hero .button {
  width: 286px;
  min-height: 58px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.22;
  white-space: nowrap;
  word-break: keep-all;
}

.console-hero .button small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 750;
}

.console-hero .button::before {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 9px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 17px;
  line-height: 1;
}

.console-hero .button.secondary::before {
  content: "◇";
}

.console-hero .button.red::before {
  content: "↯";
}

.hero-bonus-card {
  position: absolute;
  z-index: 3;
  right: 64px;
  left: 64px;
  bottom: 22px;
  min-height: 116px;
  display: grid;
  grid-template-columns: 350px minmax(480px, 1fr) 176px;
  align-items: center;
  gap: 18px;
  padding: 10px 0 12px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(253, 126, 255, 0.18), transparent 35%),
    linear-gradient(90deg, rgba(8, 42, 64, 0.02), rgba(19, 31, 66, 0.2), rgba(8, 22, 38, 0.06));
  box-shadow: none;
  text-align: left;
  backdrop-filter: none;
}

.hero-bonus-main {
  min-width: 0;
  overflow: visible;
}

.hero-bonus-card small {
  display: block;
  color: #ff6f78;
  font-size: 12px;
  font-weight: 950;
}

.hero-bonus-card strong {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: #fd7eff;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 0.92;
  text-shadow: 0 0 16px rgba(254, 126, 255, 0.48);
  white-space: nowrap;
}

.hero-bonus-card strong span {
  display: inline;
  color: #fd7eff;
  font: inherit;
}

.hero-bonus-card strong em {
  display: inline;
  margin-top: 0;
  color: #fff;
  font-size: 0.42em;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-bonus-card > span {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.hero-bonus-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-bonus-metrics b {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(60, 222, 255, 0.34);
  border-radius: 6px;
  color: #35eaff;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
  background: rgba(3, 23, 38, 0.52);
  white-space: nowrap;
  word-break: keep-all;
}

.hero-bonus-actions {
  display: grid;
  gap: 10px;
}

.hero-bonus-card a {
  display: inline-flex;
  min-height: 48px;
  min-width: 168px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 120, 130, 0.75);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, #ff6870, #dc1f3c 58%, #901026);
  box-shadow: 0 0 20px rgba(255, 50, 78, 0.34);
  font-weight: 950;
  text-decoration: none;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-bonus-card a small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
}

.hero-bonus-card .hero-entry-link {
  border-color: rgba(55, 225, 255, 0.62);
  background: linear-gradient(180deg, rgba(31, 160, 184, 0.92), rgba(8, 70, 91, 0.94));
  box-shadow: 0 0 18px rgba(45, 226, 255, 0.2);
}

.conversion-hero {
  min-height: auto;
  aspect-ratio: auto;
  background: #020911;
}

.conversion-hero > img {
  position: relative;
  inset: auto;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02);
}

.conversion-hero::after {
  background:
    linear-gradient(0deg, rgba(2, 9, 17, 0.42) 0%, transparent 22%),
    linear-gradient(90deg, rgba(2, 9, 17, 0.1) 0%, transparent 28%, transparent 72%, rgba(2, 9, 17, 0.1) 100%);
}

.hero-floating-actions {
  position: absolute;
  right: 42px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 16px;
}

.hero-floating-actions a {
  min-width: 228px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 9px;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.hero-floating-actions a small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
}

.hero-floating-actions .hero-claim-link {
  border: 1px solid rgba(255, 128, 138, 0.86);
  background: linear-gradient(180deg, #ff6370, #dc1c3b 58%, #8f0d24);
  box-shadow: 0 0 26px rgba(255, 46, 78, 0.48);
}

.hero-floating-actions .hero-line-link {
  border: 1px solid rgba(92, 255, 190, 0.76);
  background: linear-gradient(180deg, #28d68b, #0da968 58%, #077245);
  box-shadow: 0 0 24px rgba(40, 214, 139, 0.36);
}

.console-content {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 18px 18px;
  padding: 20px 34px 36px;
}

.console-content .rail-title {
  min-height: 108px;
  padding: 20px 24px;
  border-radius: 7px;
}

.console-content .rail-title span {
  font-size: 26px;
}

.console-content .promo-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.console-content .promo-card {
  min-height: 106px;
  border-radius: 7px;
  padding: 18px 18px 14px;
}

.console-content .promo-card::before {
  content: "‹ ›";
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 3;
  color: rgba(230, 247, 255, 0.72);
  font-size: 18px;
  letter-spacing: -4px;
}

.console-content .promo-card small {
  color: #2df2ff;
}

.console-content .promo-card strong {
  font-size: 22px;
}

.console-content .promo-card span {
  width: max-content;
  margin-top: 8px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.24);
  font-size: 12px;
}

.guild-entry {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(430px, 1fr) 172px;
  gap: 12px;
  align-items: stretch;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(77, 226, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 34, 48, 0.96), rgba(4, 18, 30, 0.88)),
    radial-gradient(circle at 18% 0%, rgba(39, 232, 255, 0.16), transparent 44%);
  box-shadow: inset 0 0 28px rgba(45, 226, 255, 0.06);
}

.guild-entry-copy small,
.guild-kicker {
  display: block;
  color: #2df2ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guild-entry-copy h2 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 24px;
}

.guild-entry-copy p {
  margin: 0;
  color: rgba(222, 242, 250, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.guild-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guild-entry-grid a {
  display: block;
  min-height: 66px;
  padding: 11px 12px;
  border: 1px solid rgba(77, 226, 255, 0.22);
  border-radius: 8px;
  background: rgba(2, 13, 23, 0.52);
  color: rgba(222, 242, 250, 0.84);
  text-decoration: none;
}

.guild-entry-grid b {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 17px;
}

.guild-entry-grid span {
  display: block;
  color: rgba(169, 221, 236, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.guild-entry-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 111, 126, 0.62);
  border-radius: 8px;
  background: linear-gradient(180deg, #ff6870, #db1f3b 56%, #8e1025);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(255, 54, 83, 0.24);
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
}

.console-content .guide-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 14px;
}

.console-content .guide-card {
  min-height: 156px;
  border-radius: 7px;
  padding: 22px;
}

.faq-panel.compact {
  min-height: 156px;
  padding: 18px;
  border-radius: 7px;
}

.faq-panel.compact h3 {
  margin-bottom: 8px;
}

.faq-panel.compact details {
  padding: 8px 0;
}

.faq-panel.compact summary {
  font-size: 14px;
}

.console-content .flow-compact {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.console-content .flow-compact .rail-title {
  margin: 0;
}

.console-content .flow-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.console-content .flow-card {
  min-height: 76px;
  border-radius: 7px;
  padding: 14px 16px;
}

.console-content .flow-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 8px;
  background: rgba(40, 211, 255, 0.16);
  color: rgba(119, 210, 238, 0.72);
  font-size: 14px;
  vertical-align: middle;
}

.console-content .flow-card strong {
  display: inline;
  margin: 0;
  vertical-align: middle;
}

.console-content .flow-card span {
  display: block;
  margin-top: 8px;
  padding-left: 38px;
  font-size: 12px;
}

.console-content .editorial-label {
  min-height: 156px;
}

.editorial-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.editorial-panel article {
  min-height: 156px;
  padding: 22px;
  border: 1px solid rgba(44, 218, 255, 0.38);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(22, 237, 255, 0.1), transparent 45%),
    rgba(2, 21, 33, 0.86);
  box-shadow: inset 0 0 32px rgba(21, 204, 255, 0.08);
}

.editorial-panel small {
  display: block;
  margin-bottom: 8px;
  color: #2df2ff;
  font-size: 13px;
  font-weight: 950;
}

.editorial-panel h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.editorial-panel p {
  margin: 0;
  color: rgba(225, 244, 252, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.editorial-panel a {
  display: inline-flex;
  margin-top: 14px;
  color: #35eaff;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1280px) {`r`n  .design-board {`r`n    grid-template-columns: 1fr;`r`n  }`r`n}

@media (max-width: 760px) {
  .design-board {
    width: min(430px, calc(100vw - 20px));
  }

  }

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.top-warning {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 300px;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(75, 218, 255, 0.18);
  background: rgba(3, 10, 17, 0.82);
  backdrop-filter: blur(18px);
}

body:not(.home-page) .site-header,
body:not(.home-page) .page-hero,
body:not(.home-page) .article-shell,
body:not(.home-page) .footer {
  width: min(1440px, calc(100vw - 22px));
  margin-right: auto;
  margin-left: auto;
}

body:not(.home-page) .site-header {
  margin-top: 10px;
  border: 1px solid rgba(93, 211, 245, 0.48);
  border-bottom-color: rgba(75, 218, 255, 0.18);
  border-radius: 12px 12px 0 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 0 44px rgba(32, 188, 232, 0.07),
    0 18px 55px rgba(0, 0, 0, 0.28);
}

body:not(.home-page) .page-hero {
  border-right: 1px solid rgba(93, 211, 245, 0.48);
  border-left: 1px solid rgba(93, 211, 245, 0.48);
}

body:not(.home-page) .article-shell {
  padding-right: 34px;
  padding-left: 34px;
  border-right: 1px solid rgba(93, 211, 245, 0.28);
  border-left: 1px solid rgba(93, 211, 245, 0.28);
  background: rgba(3, 18, 29, 0.52);
}

body:not(.home-page) .footer {
  padding-right: 34px;
  padding-left: 34px;
  border: 1px solid rgba(93, 211, 245, 0.28);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: rgba(2, 10, 18, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(37, 230, 255, 0.52);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(37, 230, 255, 0.2), rgba(255, 64, 87, 0.08)),
    rgba(6, 30, 45, 0.88);
  box-shadow: 0 0 28px rgba(37, 230, 255, 0.22);
  font-weight: 950;
  font-size: 28px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 850;
  color: rgba(244, 251, 255, 0.82);
}

.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.site-actions .nav-cta {
  min-width: 128px;
  min-height: 46px;
  padding: 10px 14px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  transition: transform 160ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(111, 245, 255, 0.58);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(21, 222, 255, 0.18), rgba(8, 105, 135, 0.5)),
    rgba(5, 35, 50, 0.9);
  box-shadow: inset 0 0 18px rgba(77, 231, 255, 0.18), 0 0 22px rgba(16, 196, 232, 0.18);
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.nav-cta-red {
  border-color: rgba(255, 125, 132, 0.72);
  background:
    linear-gradient(180deg, #ff6a70 0%, #db1f3b 52%, #8e1025 100%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 54, 83, 0.28);
}

.button.primary,
.button.red {
  border-color: rgba(255, 125, 132, 0.72);
  background:
    linear-gradient(180deg, #ff6a70 0%, #db1f3b 52%, #8e1025 100%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 54, 83, 0.36);
}

.button.green {
  border-color: rgba(83, 255, 177, 0.66);
  background:
    linear-gradient(180deg, #28e99b 0%, #109e68 56%, #075943 100%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.16), 0 0 24px rgba(22, 215, 134, 0.28);
}

.button.secondary {
  background: rgba(4, 34, 50, 0.74);
}

.menu-button {
  display: none;
  flex: 0 0 52px;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(81, 226, 255, 0.42);
  border-radius: 12px;
  background: rgba(6, 28, 44, 0.82);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.home-portal {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px clamp(12px, 2.4vw, 28px) 72px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 48vw, 760px);
  border: 1px solid rgba(96, 225, 255, 0.48);
  border-radius: 14px;
  background: #04121f;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), var(--shadow);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.1) contrast(1.02);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 10, 18, 0.96) 0%, rgba(2, 10, 18, 0.78) 35%, rgba(2, 10, 18, 0.08) 67%, rgba(2, 10, 18, 0.62) 100%),
    linear-gradient(0deg, rgba(3, 11, 20, 0.94) 0%, rgba(3, 11, 20, 0) 34%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(80, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  pointer-events: none;
}

.hero-copy-area {
  display: grid;
  align-content: center;
  width: min(48vw, 680px);
  min-height: clamp(500px, 46vw, 720px);
  padding: clamp(34px, 5vw, 76px);
}

.kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: 0.2em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.6);
}

.hero-line-1 {
  display: block;
  color: #fff;
}

.hero-line-2 {
  display: block;
  color: var(--cyan);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
}

.feature-pill {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(51, 225, 255, 0.28);
  border-radius: 10px;
  background: rgba(2, 21, 34, 0.56);
}

.feature-pill strong {
  color: #e9fbff;
  font-size: 14px;
}

.feature-pill span {
  color: var(--muted);
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bonus-panel {
  position: absolute;
  top: clamp(70px, 8vw, 118px);
  right: clamp(28px, 4vw, 58px);
  width: min(26vw, 310px);
  padding: 22px;
  border: 1px solid rgba(61, 231, 255, 0.54);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(178, 85, 255, 0.34), transparent 46%),
    rgba(4, 20, 37, 0.78);
  box-shadow: inset 0 0 34px rgba(50, 210, 255, 0.16), 0 0 42px rgba(21, 178, 231, 0.22);
  text-align: center;
  backdrop-filter: blur(10px);
}

.bonus-panel small {
  color: #ff6b75;
  font-weight: 950;
}

.bonus-panel strong {
  display: block;
  color: #ff8bff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(211, 106, 255, 0.5);
}

.bonus-panel span {
  display: block;
  margin: 4px 0 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

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

.bonus-metrics div {
  padding: 9px 6px;
  border: 1px solid rgba(80, 226, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(2, 16, 28, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.bonus-metrics b {
  display: block;
  color: var(--cyan);
  font-size: 19px;
}

.home-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.section-rail {
  display: grid;
  gap: 18px;
  align-content: start;
}

.rail-title {
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 20px 24px;
  border: 1px solid rgba(48, 217, 255, 0.36);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(4, 43, 65, 0.88), rgba(2, 14, 24, 0.8));
  box-shadow: inset 0 0 28px rgba(37, 230, 255, 0.08);
}

.rail-title span {
  color: var(--cyan);
  font-size: 26px;
  font-weight: 950;
}

.rail-title small {
  margin-top: 4px;
  color: #63dfff;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.promo-row,
.guide-row,
.flow-row {
  display: grid;
  gap: 14px;
}

.promo-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promo-card,
.guide-card,
.faq-panel,
.flow-card,
.mini-panel,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(65, 220, 255, 0.32);
  border-radius: 12px;
  background: rgba(4, 23, 36, 0.82);
  box-shadow: inset 0 0 28px rgba(50, 220, 255, 0.07), 0 16px 42px rgba(0, 0, 0, 0.26);
}

.promo-card {
  min-height: 132px;
  padding: 20px;
  display: grid;
  align-content: end;
  text-decoration: none;
}

.promo-card img,
.guide-card img,
.article-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 180ms ease, opacity 180ms ease;
}

.promo-card:hover img,
.guide-card:hover img,
.article-card:hover img {
  transform: scale(1.04);
  opacity: 0.72;
}

.promo-card::after,
.guide-card::after,
.article-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(2, 8, 14, 0.94) 0%, rgba(2, 8, 14, 0.22) 100%);
}

.promo-card > *,
.guide-card > *,
.article-card > * {
  position: relative;
  z-index: 2;
}

.promo-card small,
.guide-card small,
.article-card small {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.promo-card strong,
.guide-card strong,
.article-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.22;
}

.promo-card span,
.guide-card span,
.article-card span {
  display: block;
  margin-top: 8px;
  color: rgba(232, 249, 255, 0.8);
  font-size: 13px;
  line-height: 1.45;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
}

.guide-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  min-height: 188px;
  padding: 26px;
  display: grid;
  align-content: end;
  text-decoration: none;
}

.faq-panel {
  padding: 18px;
}

.faq-panel h3,
.flow-card h3 {
  margin-bottom: 12px;
  color: #dffbff;
}

.faq-panel details {
  border-top: 1px solid rgba(77, 210, 255, 0.18);
  padding: 10px 0;
}

.faq-panel summary {
  cursor: pointer;
  color: rgba(240, 250, 255, 0.88);
  font-weight: 850;
}

.faq-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.flow-row {
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(260px, 1.2fr);
}

.flow-card {
  min-height: 118px;
  padding: 18px;
}

.flow-card b {
  display: block;
  color: rgba(144, 211, 230, 0.62);
  font-size: 22px;
}

.flow-card strong {
  display: block;
  margin: 10px 0 6px;
}

.flow-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.flow-card.wide {
  display: grid;
  align-content: center;
  grid-column: 1 / -1;
}

.flow-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.flow-icons div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(77, 226, 255, 0.24);
  border-radius: 10px;
  color: #dffbff;
  background: rgba(2, 14, 24, 0.5);
  font-weight: 850;
  text-align: left;
}

.flow-icons b {
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #fff;
  background: rgba(40, 211, 255, 0.18);
  font-size: 13px;
  line-height: 1;
}

.flow-icons span {
  display: block;
  color: rgba(172, 221, 235, 0.86);
  font-size: 14px;
  line-height: 1.25;
  word-break: keep-all;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(48, 217, 255, 0.22);
  isolation: isolate;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(2, 8, 14, 0.96), rgba(2, 8, 14, 0.58), rgba(2, 8, 14, 0.84));
}

.page-hero-inner,
.article-shell,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 82px 0;
}

.eyebrow,
.breadcrumb {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb {
  color: rgba(230, 247, 255, 0.72);
  letter-spacing: 0;
  text-transform: none;
}

.page-hero p:not(.eyebrow):not(.breadcrumb),
.article-card p,
.content-section p,
.content-section li {
  color: rgba(222, 242, 250, 0.82);
  line-height: 1.78;
}

.seo-blog-page .blog-hero h1 {
  max-width: 1040px;
  font-size: clamp(44px, 5.3vw, 82px);
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: anywhere;
}

.seo-blog-page .blog-hero .page-hero-inner > p:not(.eyebrow):not(.breadcrumb) {
  max-width: 900px;
  color: #d6f7ff;
  font-size: 18px;
}

.seo-blog-page .article-content h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.research-hero h1 {
  max-width: 760px;
}

.research-hub {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 76px;
}

.lab-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  position: relative;
  z-index: 2;
}

.blog-index-page .research-hero {
  border-bottom: 0;
}

.blog-index-page .research-hub {
  width: min(1440px, calc(100vw - 22px));
  padding: 26px clamp(34px, 5vw, 96px) 76px;
  border-right: 1px solid rgba(93, 211, 245, 0.48);
  border-left: 1px solid rgba(93, 211, 245, 0.48);
  background: rgba(3, 18, 29, 0.52);
}

.lab-category {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(65, 220, 255, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(7, 42, 61, 0.92), rgba(2, 16, 27, 0.92));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28), inset 0 0 28px rgba(34, 214, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lab-category:hover {
  transform: translateY(-2px);
  border-color: rgba(65, 220, 255, 0.72);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34), 0 0 24px rgba(34, 214, 255, 0.16), inset 0 0 32px rgba(34, 214, 255, 0.08);
}

.lab-category strong {
  color: var(--cyan);
  font-size: 20px;
}

.lab-category span {
  color: rgba(213, 241, 250, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.lab-category b {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(130, 239, 255, 0.9);
  font-size: 12px;
  letter-spacing: .12em;
}

.lab-category b::after {
  content: ">";
  color: var(--cyan);
}

.lab-lead,
.lab-featured,
.lab-latest {
  margin-top: 22px;
  border: 1px solid rgba(65, 220, 255, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(5, 25, 39, 0.92), rgba(2, 13, 22, 0.96));
  box-shadow: inset 0 0 36px rgba(37, 230, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.22);
}

.lab-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
}

.lab-copy h2,
.section-head h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
}

.lab-copy p:not(.eyebrow),
.research-card p {
  color: rgba(219, 243, 250, 0.8);
  line-height: 1.72;
}

.lab-route {
  display: grid;
  gap: 10px;
}

.lab-route span {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(65, 220, 255, 0.28);
  border-radius: 12px;
  background: rgba(1, 19, 31, 0.7);
  color: #eafcff;
  font-weight: 900;
}

.lab-featured,
.lab-latest {
  padding: clamp(22px, 3vw, 34px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head a,
.research-card a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.section-head a,
.research-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(65, 220, 255, 0.34);
  border-radius: 10px;
  background: rgba(37, 230, 255, 0.08);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.research-card {
  overflow: hidden;
  border: 1px solid rgba(65, 220, 255, 0.26);
  border-radius: 14px;
  background: rgba(1, 15, 26, 0.86);
}

.research-card img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  border-bottom: 1px solid rgba(65, 220, 255, 0.18);
  opacity: 0.84;
}

.research-card div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.research-card small {
  color: var(--cyan);
  font-weight: 950;
}

.research-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.32;
}

.research-card.feature {
  min-height: 100%;
}

.article-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  padding: 44px 0 72px;
}

.toc,
.content-section {
  border: 1px solid rgba(65, 220, 255, 0.28);
  border-radius: 14px;
  background: rgba(4, 20, 32, 0.82);
  box-shadow: inset 0 0 32px rgba(50, 220, 255, 0.05), 0 16px 48px rgba(0, 0, 0, 0.22);
}

.toc {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 18px;
}

.toc h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.toc a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid rgba(72, 206, 255, 0.15);
  color: var(--muted);
  text-decoration: none;
}

.toc a:hover {
  color: var(--cyan);
}

.article-content {
  display: grid;
  gap: 22px;
}

.content-section {
  padding: clamp(22px, 4vw, 38px);
}

.content-section h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.16;
}

.legal-page .article-shell {
  display: block;
  max-width: 1040px;
}

.legal-page .content-section {
  padding: clamp(24px, 4vw, 46px);
}

.legal-page .content-section h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

.legal-page .content-section h2 {
  margin: 34px 0 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(65, 220, 255, 0.2);
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-page .content-section h2:first-of-type {
  margin-top: 22px;
}

.legal-page .content-section p,
.legal-page .content-section li {
  font-size: 16px;
}

.legal-page .content-section ul,
.legal-page .content-section ol {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-page .legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.legal-page .legal-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(65, 220, 255, 0.3);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(2, 23, 37, 0.75);
  text-decoration: none;
}

.card-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.article-card,
.summary-grid > div {
  min-height: 220px;
  padding: 22px;
}

.summary-grid > div {
  border: 1px solid rgba(65, 220, 255, 0.28);
  border-radius: 12px;
  background: rgba(3, 29, 45, 0.72);
}

.summary-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.summary-grid span {
  color: var(--muted);
  line-height: 1.62;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid rgba(65, 220, 255, 0.26);
  border-radius: 12px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(3, 21, 34, 0.82);
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid rgba(65, 220, 255, 0.18);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

th {
  color: #fff;
  background: rgba(16, 92, 122, 0.55);
}

td {
  color: rgba(222, 242, 250, 0.84);
}

.line-box {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 230, 255, 0.28), transparent 38%),
    radial-gradient(circle at 86% 0%, rgba(255, 64, 87, 0.24), transparent 40%),
    rgba(5, 22, 36, 0.92);
}

.guide-media {
  display: grid;
  gap: 18px;
}

.guide-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(45, 226, 255, 0.34);
  border-radius: 8px;
  background: rgba(1, 14, 24, 0.92);
}

.guide-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.9;
}

.guide-visual-portrait {
  min-height: 430px;
  height: 430px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(36, 217, 255, 0.2), transparent 44%),
    rgba(1, 14, 24, 0.92);
}

.guide-visual-portrait img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
  padding: 18px 28px 0;
}

.guide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.8));
}

.guide-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: rgba(239, 250, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

.guide-visual figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

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

.guide-visual-grid .guide-visual {
  min-height: 260px;
}

.guide-visual-grid .guide-visual img {
  min-height: 260px;
}

.guild-wide-visual {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.guild-wide-visual img {
  object-position: center;
}

.guide-visual figcaption {
  padding: 12px 14px 14px;
  color: rgba(222, 242, 250, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.strategy-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.strategy-step {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(45, 226, 255, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(19, 113, 138, 0.18), rgba(2, 18, 30, 0.94));
}

.strategy-step b {
  display: block;
  color: rgba(92, 218, 255, 0.72);
  font-size: 26px;
  line-height: 1;
}

.strategy-step strong {
  display: block;
  margin: 12px 0 8px;
  color: #fff;
  font-size: 18px;
}

.strategy-step span {
  color: rgba(221, 241, 248, 0.84);
  font-size: 14px;
  line-height: 1.7;
}

.pro-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid #2de2ff;
  border-radius: 8px;
  background: rgba(45, 226, 255, 0.08);
  color: rgba(234, 248, 252, 0.9);
  line-height: 1.8;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 74px;
  color: rgba(222, 242, 250, 0.72);
}

.footer strong {
  color: #fff;
}

.footer p {
  margin: 6px 0 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: rgba(222, 242, 250, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.footer-legal p {
  margin: 0;
}

.age-badge {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 18px rgba(255, 48, 78, 0.16);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer a {
  color: rgba(222, 242, 250, 0.8);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(65, 220, 255, 0.32);
    border-radius: 14px;
    background: rgba(2, 12, 22, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-actions {
    position: absolute;
    top: calc(70px + 258px);
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 14px 14px;
    border-right: 1px solid rgba(65, 220, 255, 0.32);
    border-bottom: 1px solid rgba(65, 220, 255, 0.32);
    border-left: 1px solid rgba(65, 220, 255, 0.32);
    border-radius: 0 0 14px 14px;
    background: rgba(2, 12, 22, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open + .site-actions,
  .site-header:has(.site-nav.is-open) .site-actions {
    display: grid;
  }

  .menu-button {
    display: block;
  }

  .bonus-panel {
    display: none;
  }

  .hero-copy-area {
    width: min(720px, 72vw);
  }

  .promo-row,
  .flow-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-grid,
  .guide-layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .section-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .toc {
    position: static;
  }
}

@media (max-width: 760px) {
  body:not(.home-page) .site-header,
  body:not(.home-page) .page-hero,
  body:not(.home-page) .article-shell,
  body:not(.home-page) .footer {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  body:not(.home-page) .article-shell,
  body:not(.home-page) .footer {
    padding-right: 12px;
    padding-left: 12px;
  }

  .article-shell,
  .article-content,
  .toc,
  .content-section,
  .summary-grid,
  .card-grid,
  .guide-media,
  .guide-visual,
  .table-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 620px;
  }

  .site-header {
    min-height: 66px;
  }

  .brand {
    font-size: 17px;
  }

  .home-portal {
    padding: 12px 10px 54px;
  }

  .hero-stage {
    min-height: 720px;
    border-radius: 22px;
  }

  .hero-bg img {
    object-position: 70% top;
  }

  .hero-stage::before {
    background:
      linear-gradient(180deg, rgba(2, 10, 18, 0.64) 0%, rgba(2, 10, 18, 0.32) 32%, rgba(2, 10, 18, 0.95) 58%, rgba(2, 10, 18, 0.98) 100%);
  }

  .hero-copy-area {
    align-content: end;
    width: 100%;
    min-height: 720px;
    padding: 248px 18px 24px;
  }

  h1 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.08;
  }

  .kicker {
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .promo-row,
  .guild-entry,
  .guild-entry-grid,
  .guide-row,
  .flow-compact,
  .flow-row,
  .card-grid,
  .editorial-panel,
  .guide-visual-grid,
  .strategy-map,
  .summary-grid,
  .section-rail,
  .lab-strip,
  .lab-lead,
  .featured-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .guild-entry {
    padding: 14px;
  }

  .guild-entry-cta {
    width: 100%;
    min-height: 48px;
    min-width: 0;
  }

  .console-content .flow-compact {
    grid-template-columns: 1fr;
  }

  .console-content .flow-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .console-content .flow-card {
    min-height: 74px;
  }

  .console-content .flow-card span {
    padding-left: 0;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 18px;
  }

  .hero-bonus-card {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 12px;
    margin: -18px auto 18px;
    padding: 12px 0 8px;
    text-align: center;
  }

  .hero-bonus-main {
    width: 100%;
    min-width: 0;
  }

  .hero-bonus-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-bonus-actions {
    grid-template-columns: 1fr;
  }

  .hero-bonus-card a {
    width: 100%;
  }

  .console-hero {
    min-height: auto;
    overflow: visible;
  }

  .feature-pill {
    min-height: 58px;
    padding: 10px;
  }

  .hero-actions,
  .footer,
  .footer-links {
    flex-direction: column;
  }

  .footer-legal {
    align-items: flex-start;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .rail-title {
    min-height: auto;
  }

  .guide-layout {
    gap: 18px;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero-inner {
    padding: 72px 0;
  }

  .seo-blog-page .blog-hero {
    min-height: 620px;
  }

  .seo-blog-page .blog-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.14;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .seo-blog-page .blog-hero .page-hero-inner > p:not(.eyebrow):not(.breadcrumb) {
    font-size: 16px;
    line-height: 1.7;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .seo-blog-page .article-content h1 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.18;
    word-break: break-all;
  }

  .research-hub {
    width: 100%;
    max-width: 100%;
    padding: 18px 12px 58px;
  }

  .blog-index-page .research-hub {
    width: 100%;
    max-width: 100%;
    padding: 18px 12px 58px;
    border-right: 0;
    border-left: 0;
  }

  .lab-strip {
    margin: 0 0 18px;
  }

  .lab-category {
    min-height: auto;
    grid-template-columns: 1fr auto;
  }

  .lab-category span {
    grid-column: 1 / -1;
  }

  .lab-lead,
  .lab-featured,
  .lab-latest {
    border-radius: 14px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .research-card h3 {
    font-size: 18px;
  }
}

body.legal-page .article-shell {
  display: block;
  grid-template-columns: none;
  width: min(1440px, calc(100vw - 22px));
  max-width: 1440px;
  padding: 44px 34px 72px;
}

body.legal-page .article-content {
  display: block;
  width: min(1120px, 100%);
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

body.legal-page .content-section {
  display: block;
  width: 100%;
  max-width: none;
}

body.legal-page .content-section {
  padding: clamp(28px, 4vw, 52px);
}

body.legal-page .content-section h1 {
  max-width: none;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  white-space: normal;
  word-break: keep-all;
}

body.legal-page .content-section h2 {
  font-size: clamp(24px, 3vw, 34px);
  word-break: keep-all;
}

@media (max-width: 760px) {
  body.legal-page .article-shell {
    width: 100%;
    max-width: 100%;
    padding: 18px 12px 52px;
  }

  body.legal-page .content-section {
    padding: 22px 18px;
  }

body.legal-page .content-section h1 {
    font-size: clamp(34px, 11vw, 52px);
  }
}

/* Production mobile fix: keep MASTER HOME V1 desktop intact, repair small-screen flow. */
@media (max-width: 760px) {
  body.home-page {
    overflow-x: hidden;
  }

  body.home-page .design-board {
    width: min(100%, calc(100vw - 16px));
    margin: 8px auto 28px;
  }

  body.home-page .desktop-console {
    overflow: hidden;
    border-radius: 10px;
  }

  body.home-page .console-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 14px 14px 10px;
  }

  body.home-page .console-brand {
    min-width: 0;
    font-size: 20px;
  }

  body.home-page .console-brand strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-page .trident-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 24px;
  }

  body.home-page .console-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.home-page .console-nav::-webkit-scrollbar {
    display: none;
  }

  body.home-page .console-nav a {
    flex: 0 0 auto;
    padding: 10px 0 9px;
    font-size: 13px;
  }

  body.home-page .console-actions {
    display: none;
  }

  body.home-page .console-hero {
    min-height: auto;
    overflow: hidden;
  }

  body.home-page .console-hero > img {
    object-position: 62% top;
  }

  body.home-page .console-hero::after {
    background:
      linear-gradient(180deg, rgba(2, 10, 18, 0.74) 0%, rgba(2, 10, 18, 0.52) 44%, rgba(2, 10, 18, 0.92) 100%),
      linear-gradient(90deg, rgba(2, 10, 18, 0.9), rgba(2, 10, 18, 0.12) 74%, rgba(2, 10, 18, 0.62));
  }

  body.home-page .console-hero-copy {
    width: 100%;
    padding: 56px 18px 12px;
  }

  body.home-page .console-hero .kicker {
    max-width: 280px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  body.home-page .console-hero h1 {
    max-width: 360px;
    font-size: clamp(42px, 14vw, 58px);
    line-height: 0.98;
  }

  body.home-page .console-hero h1 b {
    margin-top: 10px;
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.08;
  }

  body.home-page .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 22px 0 18px;
  }

  body.home-page .trust-row div {
    min-width: 0;
    min-height: 44px;
    padding-left: 10px;
  }

  body.home-page .trust-row strong,
  body.home-page .trust-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
  }

  body.home-page .trust-row strong {
    font-size: 13px;
  }

  body.home-page .trust-row small {
    font-size: 11px;
  }

  body.home-page .hero-bonus-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    width: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 4px 16px 20px;
    padding: 12px 0 16px;
    text-align: left;
  }

  body.home-page .hero-bonus-card strong {
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
    font-size: clamp(46px, 14vw, 62px);
  }

  body.home-page .hero-bonus-card strong em {
    font-size: 0.36em;
  }

  body.home-page .hero-bonus-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.home-page .hero-bonus-metrics b {
    min-height: 56px;
    padding: 8px;
    font-size: 14px;
    white-space: normal;
  }

  body.home-page .hero-bonus-actions {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-bonus-card a {
    width: 100%;
    min-width: 0;
  }

  body.home-page .conversion-hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
    padding-top: 10px;
  }

  body.home-page .conversion-hero > img {
    order: 1;
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% - 28px);
    height: clamp(310px, 88vw, 390px);
    margin: 0 auto;
    object-fit: cover;
    object-position: 50% 18%;
    border: 1px solid rgba(48, 213, 255, 0.3);
    border-radius: 10px;
  }

  body.home-page .conversion-hero::after {
    background:
      linear-gradient(0deg, rgba(2, 9, 17, 0.22) 0%, transparent 26%),
      linear-gradient(180deg, rgba(2, 9, 17, 0.04) 0%, rgba(2, 9, 17, 0.18) 100%);
  }

  body.home-page .hero-floating-actions {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 10px 0 14px;
    background: transparent;
  }

  body.home-page .hero-floating-actions a {
    min-width: 0;
    min-height: 58px;
    font-size: 16px;
    border-radius: 8px;
  }

  body.home-page .hero-floating-actions a small {
    margin-top: 3px;
    font-size: 10px;
  }

  body.home-page .console-content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 14px 28px;
  }

  body.home-page .console-content .rail-title {
    min-height: 76px;
    padding: 18px 18px;
  }

  body.home-page .console-content .rail-title span {
    font-size: 24px;
  }

  body.home-page .console-content .promo-row,
  body.home-page .console-content .guide-row,
  body.home-page .guild-entry,
  body.home-page .guild-entry-grid,
  body.home-page .console-content .flow-compact,
  body.home-page .console-content .flow-row,
  body.home-page .editorial-panel {
    grid-template-columns: 1fr;
  }

  body.home-page .console-content .promo-card,
  body.home-page .console-content .guide-card {
    min-height: 132px;
    padding: 18px;
  }

  body.home-page .console-content .promo-card strong,
  body.home-page .console-content .guide-card strong {
    font-size: 22px;
    line-height: 1.2;
  }

  body.home-page .guild-entry {
    gap: 14px;
    padding: 18px;
  }

  body.home-page .guild-entry-copy h2 {
    font-size: 25px;
    line-height: 1.22;
  }

  body.home-page .guild-entry-cta {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    white-space: normal;
  }

  body.home-page .faq-panel.compact,
  body.home-page .editorial-panel article {
    min-height: 0;
  }

  body.home-page .footer {
    width: min(100%, calc(100vw - 16px));
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 430px) {
  body.home-page .console-hero-copy {
    padding-top: 48px;
  }

  body.home-page .console-hero h1 {
    font-size: clamp(40px, 13.2vw, 52px);
  }

  body.home-page .hero-bonus-card strong {
    flex-wrap: wrap;
    font-size: clamp(42px, 13vw, 54px);
  }

  body.home-page .hero-bonus-metrics {
    grid-template-columns: 1fr;
  }
}

/* Blog article native MASTER HOME V1 components. */
.seo-blog-page .article-hero h1 {
  max-width: 1040px;
  font-size: clamp(44px, 5.3vw, 82px);
}

.seo-blog-page .article-hero .page-hero-inner > p:not(.eyebrow):not(.breadcrumb) {
  max-width: 900px;
  color: #d6f7ff;
}

.seo-blog-page .article-content h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}

.seo-blog-page .article-section {
  margin-top: clamp(20px, 3vw, 34px);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(65, 220, 255, 0.28);
  border-radius: 14px;
  background: rgba(4, 20, 32, 0.82);
  box-shadow: inset 0 0 32px rgba(50, 220, 255, 0.05), 0 16px 48px rgba(0, 0, 0, 0.22);
}

.seo-blog-page .article-section > h2:first-child {
  margin-top: 0;
}

.seo-blog-page .article-grid,
.seo-blog-page .article-steps,
.seo-blog-page .article-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-blog-page .article-card,
.seo-blog-page .article-related a {
  position: relative;
  overflow: visible;
  min-width: 0;
  min-height: auto;
  padding: 18px;
  border: 1px solid rgba(65, 220, 255, 0.24);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(7, 35, 52, 0.78), rgba(3, 16, 27, 0.9));
  box-shadow: inset 0 0 22px rgba(37, 230, 255, 0.05);
  color: #d7f7ff;
  text-decoration: none;
}

.seo-blog-page .article-card::after,
.seo-blog-page .article-card img {
  content: none;
  position: static;
}

.seo-blog-page .article-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.35;
}

.seo-blog-page .article-media {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.seo-blog-page .article-media.reverse {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.seo-blog-page .article-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(65, 220, 255, 0.28);
  border-radius: 12px;
  background: rgba(2, 12, 22, 0.92);
}

.seo-blog-page .article-content table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
}

.seo-blog-page .article-content th,
.seo-blog-page .article-content td {
  padding: 14px;
  border-bottom: 1px solid rgba(72, 206, 255, 0.16);
  text-align: left;
  vertical-align: top;
}

.seo-blog-page .article-content th {
  width: 28%;
  color: var(--cyan);
  background: rgba(37, 230, 255, 0.06);
}

.seo-blog-page .article-faq details,
.seo-blog-page .article-content details {
  padding: 14px 0;
  border-top: 1px solid rgba(72, 206, 255, 0.16);
}

.seo-blog-page .article-faq summary,
.seo-blog-page .article-content summary {
  cursor: pointer;
  color: #fff;
  font-weight: 950;
}

.seo-blog-page .article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.seo-blog-page section.article-cta {
  display: block;
}

.seo-blog-page section.article-cta .article-cta {
  margin-top: 18px;
}

.seo-blog-page .article-button,
.seo-blog-page .article-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid rgba(65, 220, 255, 0.36);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(4, 104, 132, 0.88), rgba(3, 60, 80, 0.92));
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.seo-blog-page .article-button-line,
.seo-blog-page .article-cta a[href*="line.me/R/ti/p"] {
  border-color: rgba(70, 255, 178, 0.65);
  background: linear-gradient(180deg, #20d78a, #087552);
}

.seo-blog-page .article-button-liff,
.seo-blog-page .article-cta a[href*="liff.line.me"] {
  border-color: rgba(255, 121, 132, 0.75);
  background: linear-gradient(180deg, #ff6f75, #d8213f 56%, #8f1026);
}

.seo-blog-page .step-no {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(37, 230, 255, 0.12);
  font-weight: 950;
}

@media (max-width: 860px) {
  .seo-blog-page .article-grid,
  .seo-blog-page .article-steps,
  .seo-blog-page .article-related,
  .seo-blog-page .article-media,
  .seo-blog-page .article-media.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .seo-blog-page .article-hero {
    min-height: 620px;
  }

  .seo-blog-page .article-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .seo-blog-page .article-hero .page-hero-inner > p:not(.eyebrow):not(.breadcrumb) {
    font-size: 16px;
    line-height: 1.7;
  }

  .seo-blog-page .article-content h1 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.18;
  }

  .seo-blog-page .article-content th,
  .seo-blog-page .article-content td {
    display: block;
    width: 100%;
  }

  .seo-blog-page .article-button,
  .seo-blog-page .article-cta a {
    width: 100%;
  }
}
