:root {
  --ink: #07163d;
  --muted: #63708a;
  --line: #dce5f4;
  --blue: #126bff;
  --cyan: #18c8ff;
  --violet: #7b3dff;
  --navy: #020817;
  --navy-2: #061633;
  --green: #08b86f;
  --red: #ff3358;
  --surface: #ffffff;
  --soft: #f3f7ff;
  --shadow: 0 18px 44px rgba(5, 19, 52, 0.12);
}

.whale-page {
  min-height: 100vh;
  padding: 28px min(5vw, 64px) 52px;
  background:
    radial-gradient(circle at 14% 8%, rgba(25, 137, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  color: #061842;
}

.whale-hero {
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(120deg, rgba(2, 12, 36, 0.96), rgba(7, 31, 84, 0.94)),
    url("assets/hero-top-clean.png") center / cover;
  color: #fff;
  box-shadow: 0 22px 55px rgba(0, 28, 80, 0.22);
}

.whale-hero .brand {
  color: #fff;
  margin-bottom: 34px;
}

.whale-hero h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
}

.whale-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(234, 242, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.whale-card {
  margin-top: 18px;
  border: 1px solid rgba(132, 162, 205, 0.32);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(15, 44, 91, 0.12);
}

.whale-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.whale-search label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.whale-search input {
  height: 48px;
  border: 1px solid rgba(86, 119, 168, 0.32);
  border-radius: 12px;
  padding: 0 14px;
  font: inherit;
  font-weight: 800;
  color: #071a44;
}

.whale-search button {
  height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(135deg, #08b6ff, #165bff 58%, #7a35ff);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

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

.whale-grid .whale-card {
  margin-top: 18px;
}

.whale-card span {
  color: #597097;
  font-size: 13px;
  font-weight: 800;
}

.whale-card strong {
  display: block;
  margin-top: 8px;
  color: #061842;
  font-size: 32px;
  line-height: 1;
}

.whale-card p {
  color: #415474;
  line-height: 1.65;
}

.whale-card .up,
#whaleChange.up {
  color: #00a85f;
}

.whale-card .down,
#whaleChange.down {
  color: #f02d55;
}

.whale-bars {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.whale-bar-row {
  display: grid;
  grid-template-columns: 96px 1fr 44px;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.whale-bar-row div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef9;
}

.whale-bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00c2ff, #1b63ff, #8d3dff);
}

.whale-table {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.whale-table-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) 120px 100px minmax(160px, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(132, 162, 205, 0.22);
  border-radius: 12px;
  padding: 12px;
  background: #fbfdff;
}

.whale-table-row strong {
  margin: 0;
  font-size: 15px;
}

.whale-table-row p {
  margin: 0;
  font-size: 13px;
}

.whale-notice {
  border-top: 1px solid rgba(132, 162, 205, 0.28);
  margin-top: 14px;
  padding-top: 12px;
  font-size: 13px;
}

.provider-logo.whale-logo {
  background: linear-gradient(135deg, #071a44, #1b63ff);
  color: #fff;
  font-size: 14px;
}

@media (max-width: 760px) {
  .whale-page {
    padding: 14px 12px 34px;
  }

  .whale-hero {
    padding: 20px;
    border-radius: 18px;
  }

  .whale-search,
  .whale-grid,
  .whale-table-row {
    grid-template-columns: 1fr;
  }

  .whale-search button {
    width: 100%;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Pretendard", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 46%, #f7faff 100%);
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(420px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(24px, 4vw, 64px);
  color: #fff;
  border-bottom: 1px solid rgba(128, 166, 255, 0.16);
  background: rgba(2, 8, 23, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(5, 5px);
  align-items: end;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.brand-mark span {
  display: block;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(24, 200, 255, 0.36);
}

.brand-mark span:nth-child(1) { height: 16px; }
.brand-mark span:nth-child(2) { height: 26px; }
.brand-mark span:nth-child(3) { height: 34px; }
.brand-mark span:nth-child(4) { height: 23px; }
.brand-mark span:nth-child(5) { height: 18px; }

.brand-text strong {
  display: block;
  font-size: 25px;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-text em {
  display: block;
  margin-top: 5px;
  color: #58c7ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 3px;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.top-nav a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  transition: color 160ms ease;
}

.top-nav a:hover {
  color: #5cd9ff;
}

.header-actions {
  position: relative;
  z-index: 75;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: auto;
}

.ghost-button,
.solid-button,
.primary-action,
.secondary-action,
.submit-button,
.domain-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ghost-button {
  min-width: 82px;
  color: #fff;
  border: 1px solid rgba(195, 211, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.solid-button,
.primary-action,
.submit-button,
.domain-button {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #149aff 0%, #126bff 52%, #743cff 100%);
  box-shadow: 0 14px 34px rgba(18, 107, 255, 0.32);
}

.ghost-button:hover,
.solid-button:hover,
.primary-action:hover,
.secondary-action:hover,
.submit-button:hover,
.domain-button:hover {
  transform: translateY(-2px);
}

.solid-button {
  min-width: 104px;
}

.header-account {
  position: relative;
}

.account-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(195, 211, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 900;
}

.account-toggle em {
  color: #9dc8ff;
  font-size: 10px;
  font-style: normal;
}

.account-toggle span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #18c8ff, #126bff 60%, #7b3dff);
  box-shadow: 0 12px 24px rgba(18, 107, 255, 0.28);
}

.account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(209, 220, 240, 0.96);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.account-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 10px;
  background: #f8fbff;
}

.account-metrics span {
  display: flex;
  justify-content: space-between;
  color: #405274;
  font-size: 12px;
  font-weight: 900;
}

.account-metrics b {
  color: #126bff;
}

.account-menu p {
  overflow: hidden;
  margin: 0 0 8px;
  padding: 10px;
  border-radius: 10px;
  color: #50617e;
  background: #f3f7ff;
  font-size: 12px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(195, 211, 255, 0.34);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 18px;
}

.notification-button span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: #ff3358;
  font-size: 11px;
  font-weight: 950;
  line-height: 19px;
}

.account-menu a,
.account-menu button {
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.top-nav a.is-locked,
.mobile-drawer__nav a.is-locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.notification-panel {
  position: fixed;
  top: 76px;
  right: clamp(16px, 4vw, 64px);
  z-index: 95;
  width: min(92vw, 360px);
  padding: 14px;
  border: 1px solid rgba(209, 220, 240, 0.96);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 64px rgba(4, 18, 48, 0.22);
}

.notification-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.notification-panel__head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #eef4ff;
  cursor: pointer;
  font-size: 22px;
}

.notification-list {
  display: grid;
  gap: 8px;
  max-height: 320px;
  overflow: auto;
  padding: 12px 0;
}

.notification-item {
  padding: 11px;
  border-radius: 12px;
  background: #f7fbff;
}

.notification-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.notification-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.notification-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.notification-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #126bff;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 8, 23, 0.62);
  backdrop-filter: blur(5px);
}

.auth-modal__card {
  width: min(100%, 420px);
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.auth-modal__card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.auth-modal__card p {
  color: var(--muted);
  font-weight: 800;
}

.auth-modal__card > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 130;
  transform: translateX(-50%);
  max-width: min(92vw, 420px);
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #126bff, #071d55);
  box-shadow: 0 18px 44px rgba(5, 19, 52, 0.26);
  font-weight: 900;
}

.account-menu a:hover,
.account-menu button:hover {
  color: #fff;
  background: #126bff;
}

.mobile-menu-button,
.mobile-menu-overlay,
.mobile-drawer {
  display: none;
}

.mobile-menu-button {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(195, 211, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.mobile-menu-button span + span {
  margin-top: 5px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(1, 8, 24, 0.56);
  backdrop-filter: blur(4px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(88vw, 360px);
  height: 100dvh;
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 24% 12%, rgba(24, 200, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #020817, #071d55);
  box-shadow: -24px 0 58px rgba(0, 0, 0, 0.38);
  transform: translateX(104%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 220ms ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(195, 211, 255, 0.18);
}

.mobile-drawer__header strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.mobile-drawer__header em {
  display: block;
  margin-top: 5px;
  color: #58c7ff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.mobile-drawer__close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(195, 211, 255, 0.28);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
}

.mobile-drawer__nav a,
.mobile-nav-group summary {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.mobile-drawer__nav a:hover,
.mobile-drawer__nav a:focus-visible,
.mobile-nav-group summary:hover,
.mobile-nav-group summary:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.mobile-nav-group {
  border-radius: 12px;
}

.mobile-nav-group summary {
  cursor: pointer;
  list-style: none;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group summary::after {
  content: "⌄";
  margin-left: auto;
  color: #8ecfff;
}

.mobile-nav-group[open] summary::after {
  transform: rotate(180deg);
}

.mobile-nav-group div {
  display: grid;
  gap: 2px;
  padding: 0 0 6px 12px;
}

.mobile-nav-group div a {
  min-height: 42px;
  color: rgba(221, 235, 255, 0.82);
  font-size: 15px;
}

.mobile-auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(195, 211, 255, 0.18);
}

.mobile-auth-actions[hidden],
.phone-account-actions[hidden],
.phone-hero-actions[hidden] {
  display: none !important;
}

.mobile-auth-actions .ghost-button,
.mobile-auth-actions .solid-button {
  width: 100%;
  min-height: 48px;
}

.mobile-user-actions p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  word-break: keep-all;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 40%, rgba(34, 127, 255, 0.34), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(128, 49, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #020817 0%, #061633 48%, #020817 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 132, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 132, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
  width: min(1360px, calc(100% - 80px));
  min-height: 560px;
  margin: 0 auto;
  padding: 54px 0 58px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #66d8ff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 4px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.34);
}

h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #20c7ff, #126bff 45%, #8c4dff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(238, 245, 255, 0.82);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.primary-action,
.secondary-action {
  min-width: 158px;
  padding: 0 26px;
  font-size: 16px;
}

.secondary-action {
  gap: 10px;
  color: #fff;
  border: 1px solid rgba(205, 219, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.play-dot {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 10px;
}

.trust-note {
  margin: 0;
  color: rgba(224, 234, 255, 0.7);
  font-size: 14px;
  font-weight: 750;
}

.trust-note::before {
  content: "◇";
  margin-right: 8px;
  color: #9dbbff;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  display: block;
  width: min(100%, 790px);
  margin-left: auto;
  border-radius: 18px;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.28));
}

main {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
}

.link-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: -34px 0 22px;
  position: relative;
  z-index: 2;
}

.link-card,
.panel,
.membership,
.price-card,
.domain-panel {
  border: 1px solid rgba(209, 220, 240, 0.88);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  min-height: 118px;
  padding: 18px 16px;
  border-radius: 14px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  overflow: hidden;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 107, 255, 0.34);
  box-shadow: 0 24px 52px rgba(18, 107, 255, 0.16);
}

.link-card small {
  position: absolute;
  top: 18px;
  right: 16px;
  padding: 5px 8px;
  border-radius: 9px;
  color: #5d6a86;
  background: #eef3fb;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.provider-logo {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.google-logo {
  color: #fff;
  background: conic-gradient(from -40deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.bz-logo {
  background: #061633;
}

.nasdaq-logo {
  background: linear-gradient(135deg, #16c8ff, #126bff);
}

.sec-logo {
  background: radial-gradient(circle at 50% 40%, #d6b56d, #1b3d79);
  font-size: 13px;
}

.link-card strong {
  display: block;
  margin: 3px 70px 7px 0;
  font-size: 17px;
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: keep-all;
}

.link-card em {
  display: block;
  min-height: 34px;
  margin-bottom: 10px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.28;
  overflow-wrap: normal;
  word-break: keep-all;
}

.link-card b {
  color: #126bff;
  font-size: 13px;
  white-space: nowrap;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(360px, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.panel {
  border-radius: 14px;
  padding: 24px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.panel-title.spread {
  justify-content: space-between;
}

.panel-title h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: 0;
}

.panel-title span,
.panel-title a {
  color: #126bff;
  font-weight: 900;
}

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

.feature-card {
  position: relative;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #149aff, #126bff);
  transform: translateY(-4px);
}

.feature-card:hover p,
.feature-card:focus-visible p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 17px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.feature-card b {
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: #126bff;
  font-size: 22px;
}

.feature-card:hover b,
.feature-card:focus-visible b {
  color: #fff;
}

.feature-card:hover .feature-icon::before,
.feature-card:hover .feature-icon::after,
.feature-card:focus-visible .feature-icon::before,
.feature-card:focus-visible .feature-icon::after {
  border-color: #fff;
}

.feature-card:hover .market-icon::before,
.feature-card:focus-visible .market-icon::before {
  background: #fff;
  box-shadow: 9px -6px 0 #fff, 18px -13px 0 #fff;
}

.feature-card:hover .news-icon::after,
.feature-card:focus-visible .news-icon::after {
  box-shadow: 0 5px 0 -2px #fff, -6px -4px 0 -3px #fff;
}

.feature-card:hover .alert-icon::after,
.feature-card:focus-visible .alert-icon::after {
  box-shadow: 10px 4px 0 -2px #fff;
}

.feature-card:hover .target-icon::before,
.feature-card:focus-visible .target-icon::before {
  box-shadow: inset 0 0 0 5px #126bff, inset 0 0 0 8px #fff;
}

.feature-icon {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.news-icon::before {
  inset: 6px 4px 5px 4px;
  border: 3px solid #2e69ff;
  border-radius: 4px;
}

.news-icon::after {
  left: 11px;
  top: 12px;
  width: 18px;
  height: 13px;
  border-top: 3px solid #2e69ff;
  border-bottom: 3px solid #2e69ff;
  box-shadow: 0 5px 0 -2px #2e69ff, -6px -4px 0 -3px #2e69ff;
}

.alert-icon::before {
  left: 9px;
  top: 6px;
  width: 20px;
  height: 23px;
  border: 3px solid #2e69ff;
  border-bottom: 0;
  border-radius: 14px 14px 8px 8px;
}

.alert-icon::after {
  left: 6px;
  top: 27px;
  width: 26px;
  height: 7px;
  border-top: 3px solid #2e69ff;
  border-radius: 50%;
  box-shadow: 10px 4px 0 -2px #2e69ff;
}

.market-icon::before {
  left: 6px;
  bottom: 5px;
  width: 5px;
  height: 11px;
  border-radius: 2px;
  background: #2e69ff;
  box-shadow: 9px -6px 0 #2e69ff, 18px -13px 0 #2e69ff;
}

.market-icon::after {
  left: 8px;
  top: 8px;
  width: 22px;
  height: 18px;
  border-top: 3px solid #2e69ff;
  border-right: 3px solid #2e69ff;
  transform: skew(-28deg) rotate(-10deg);
}

.target-icon::before {
  inset: 5px;
  border: 3px solid #2e69ff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 8px #2e69ff;
}

.target-icon::after {
  right: 4px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #2e69ff;
  border-right: 3px solid #2e69ff;
  transform: rotate(0deg);
}

.market-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.market-list div {
  display: grid;
  grid-template-columns: 1fr 96px 78px;
  gap: 14px;
  align-items: center;
  min-height: 56px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.market-list div:last-child {
  border-bottom: 0;
}

.market-list span {
  color: #546178;
  text-align: right;
}

.market-list em {
  font-style: normal;
  text-align: right;
}

.up {
  color: var(--green);
}

.down {
  color: var(--red);
}

.membership,
.pricing,
.domain-panel,
.board-panel,
.web-app-panel {
  margin-bottom: 48px;
}

.membership {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.6fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(24, 200, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #061633, #0b2f88);
}

.membership h2,
.section-heading h2,
.domain-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.member-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(239, 245, 255, 0.78);
  font-weight: 700;
  line-height: 1.7;
}

.auth-card {
  padding: 18px;
  border: 1px solid rgba(209, 220, 240, 0.9);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.auth-card[data-mode="login"] .auth-tabs {
  grid-template-columns: 1fr;
}

.auth-card[data-mode="login"] .auth-tab[data-auth-mode="signup"] {
  display: none;
}

.account-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 229, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef6ff;
  font-size: 13px;
  font-weight: 900;
}

.account-state button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 12px;
  background: #eef4ff;
}

.auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  color: #405274;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.auth-tab.is-active {
  color: #fff;
  background: #126bff;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form h3 {
  margin: 0;
  font-size: 21px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #26385d;
  font-size: 13px;
  font-weight: 900;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fbfdff;
  font-weight: 800;
}

.board-panel {
  padding: 30px;
  border: 1px solid rgba(209, 220, 240, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.web-app-panel {
  padding: 30px;
  border: 1px solid rgba(209, 220, 240, 0.88);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,255,0.96));
  box-shadow: var(--shadow);
}

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

.radar-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.radar-box h3 {
  margin: 0;
  font-size: 18px;
}

.radar-box label {
  display: grid;
  gap: 7px;
  color: #26385d;
  font-size: 13px;
  font-weight: 900;
}

.radar-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fbfdff;
  font-weight: 800;
}

.watchlist-add-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 8px;
}

.watchlist-add-row button,
.watchlist-chip-head button {
  border: 1px solid rgba(18, 107, 255, 0.24);
  border-radius: 10px;
  color: #0d5bff;
  background: #eef6ff;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.watchlist-chip-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dce8fb;
  border-radius: 13px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
}

.watchlist-chip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.watchlist-chip-head span {
  color: #26385d;
  font-size: 12px;
  font-weight: 950;
}

.watchlist-chip-head button {
  min-height: 30px;
  padding: 0 10px;
  color: #62708a;
  background: #fff;
}

.watchlist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 38px;
}

.watchlist-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 6px 0 8px;
  border: 1px solid rgba(18, 107, 255, 0.22);
  border-radius: 999px;
  color: #071846;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 107, 255, 0.08);
  cursor: pointer;
}

.watchlist-chip i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ffbd18, #ff8a00);
  box-shadow: 0 6px 14px rgba(255, 170, 0, 0.24);
  font-style: normal;
  font-size: 12px;
  line-height: 1;
}

.watchlist-chip strong {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.watchlist-chip span {
  display: none;
}

.watchlist-chip em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  color: #62708a;
  background: #edf3fb;
  font-style: normal;
  font-weight: 950;
}

.watchlist-chip:hover {
  border-color: #0d5bff;
  transform: translateY(-1px);
}

.watchlist-empty {
  margin: 0;
  color: #62708a;
  font-size: 12px;
  font-weight: 800;
}

.phone-watchlist-chips {
  margin: 8px 0 10px;
  padding: 10px;
  border: 1px solid #dce8fb;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
}

.market-actions div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.market-actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #126bff;
  background: #f7fbff;
  font-weight: 900;
  cursor: pointer;
}

.market-actions button:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #149aff, #126bff);
}

.radar-output-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: 18px;
}

.radar-market-card,
.radar-news-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

#webRadarStatus {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.web-market-summary {
  display: grid;
  gap: 8px;
}

.web-market-summary div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 850;
}

.web-market-summary div:last-child {
  border-bottom: 0;
}

.web-market-summary span {
  color: var(--muted);
}

.web-market-summary em {
  font-style: normal;
}

.web-news-list {
  display: grid;
  gap: 14px;
}

.web-news-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.web-news-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.web-news-top strong {
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: #126bff;
}

.web-news-top em {
  margin-left: auto;
  color: #f7a800;
  font-style: normal;
}

.web-news-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.web-news-item p {
  margin-bottom: 12px;
  color: #33425f;
  font-weight: 750;
  line-height: 1.65;
}

.web-news-item dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 10px;
  margin: 0 0 12px;
  font-size: 13px;
}

.web-news-item dt {
  color: #126bff;
  font-weight: 950;
}

.web-news-item dd {
  margin: 0;
  color: #45546e;
  font-weight: 750;
}

.web-news-item a {
  color: #126bff;
  font-weight: 950;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}

.board-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}

.board-switcher {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px;
  margin: 18px 0 12px;
}

.board-tab {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #126bff;
  background: #fff;
  font-weight: 950;
  cursor: pointer;
}

.board-tab.is-active,
.board-tab:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #149aff, #126bff);
}

.stock-board-search {
  position: relative;
}

.stock-board-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.stock-search-results {
  position: absolute;
  z-index: 8;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(5, 19, 52, 0.14);
}

.stock-result {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.stock-result:last-child {
  border-bottom: 0;
}

.stock-result:hover {
  background: #eef6ff;
}

.stock-result strong {
  color: #126bff;
}

.stock-result span,
.stock-empty {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.stock-empty {
  margin: 0;
  padding: 12px;
}

.current-board {
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 107, 255, 0.18);
  border-radius: 12px;
  color: #0d3c91;
  background: #eef6ff;
  font-size: 13px;
  font-weight: 950;
}

.board-form,
.post-list-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.board-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.board-form label {
  display: grid;
  gap: 8px;
  color: #26385d;
  font-size: 13px;
  font-weight: 900;
}

.board-form input,
.board-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fbfdff;
  font-weight: 800;
}

.board-form input {
  min-height: 48px;
  padding: 0 14px;
}

.board-form textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.board-form input:focus,
.board-form textarea:focus {
  outline: 3px solid rgba(18, 107, 255, 0.14);
  border-color: #126bff;
}

.post-list-card {
  min-height: 320px;
  padding: 20px;
}

.refresh-button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #126bff;
  background: #f7fbff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

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

.post-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.post-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.post-item p,
.empty-posts {
  margin: 0;
  color: #3f4e69;
  font-weight: 700;
  line-height: 1.65;
}

.auth-form input:focus {
  outline: 3px solid rgba(18, 107, 255, 0.14);
  border-color: #126bff;
}

.submit-button {
  min-height: 50px;
  border-radius: 12px;
  font-size: 16px;
}

.auth-note {
  min-height: 36px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading .eyebrow,
.domain-panel .eyebrow {
  color: #126bff;
}

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

.price-card {
  display: block;
  width: 100%;
  min-height: 176px;
  padding: 26px;
  border-radius: 16px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.price-card strong {
  display: block;
  margin-bottom: 12px;
  color: #126bff;
  font-size: 24px;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}

.price-card:hover,
.price-card:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #126bff, #071d55);
  box-shadow: 0 24px 52px rgba(18, 107, 255, 0.28);
  transform: translateY(-4px);
}

.price-card:hover strong,
.price-card:hover p,
.price-card:focus-visible strong,
.price-card:focus-visible p {
  color: #fff;
}

.domain-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-radius: 18px;
}

.domain-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.domain-button {
  min-width: 150px;
  padding: 0 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 1023px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    grid-template-columns: repeat(5, 4px);
    gap: 4px;
    flex: 0 0 auto;
  }

  .brand-text strong {
    font-size: clamp(20px, 6vw, 25px);
    white-space: nowrap;
  }

  .brand-text em {
    font-size: 9px;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .top-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .mobile-menu-overlay:not([hidden]) {
    display: block;
  }

  .mobile-drawer {
    display: block;
  }

  .hero-inner,
  .dashboard-grid,
  .membership,
  .radar-controls,
  .radar-output-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual img {
    margin: 0;
    width: min(100%, 820px);
  }

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

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

@media (max-width: 720px) {
  main,
  .hero-inner,
  .site-footer {
    width: auto;
  }

  .brand-text strong {
    font-size: clamp(19px, 6vw, 22px);
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 22px 72px;
  }

  h1 {
    font-size: 40px;
  }

  main {
    width: min(100% - 24px, 1360px);
  }

  .link-strip,
  .feature-grid,
  .price-grid,
  .board-switcher,
  .board-layout,
  .market-list div {
    grid-template-columns: 1fr;
  }

  .link-card {
    min-height: 116px;
  }

  .market-list div {
    gap: 4px;
    padding: 12px 14px;
  }

  .market-list span,
  .market-list em {
    text-align: left;
  }

  .membership,
  .domain-panel {
    padding: 22px;
  }

  .domain-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.phone-app-screen {
  display: none;
}

@media (max-width: 720px) {
  body {
    background: #eef5ff;
  }

  .site-header {
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.22);
  }

  .phone-app-screen {
    display: grid;
    gap: 14px;
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 14px 12px 28px;
  }

  .hero-section,
  .link-strip,
  .dashboard-grid,
  .web-app-panel,
  .membership,
  .pricing,
  .domain-panel {
    display: none;
  }

  .phone-hero,
  .phone-account-card,
  .phone-tabbar,
  .phone-quick-grid,
  .phone-card {
    border: 1px solid rgba(185, 204, 238, 0.72);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(5, 19, 52, 0.1);
  }

  .phone-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 84px;
    padding: 14px;
    border-radius: 24px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(2, 8, 23, 0.94), rgba(8, 32, 82, 0.9)),
      url("assets/hero-ai-news.png") center/cover;
    overflow: hidden;
  }

  .phone-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .brand-mark.compact {
    width: 34px;
    height: 34px;
    grid-template-columns: repeat(5, 4px);
    gap: 4px;
  }

  .phone-brand strong {
    display: block;
    font-size: 23px;
    line-height: 0.9;
    letter-spacing: 0;
  }

  .phone-brand em {
    display: block;
    margin-top: 5px;
    color: #58c7ff;
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
    letter-spacing: 2px;
  }

  .phone-bell {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 20px;
  }

  .phone-bell span {
    position: absolute;
    top: -7px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #ff3358;
    font-size: 11px;
    font-weight: 950;
    line-height: 20px;
  }

  .phone-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    flex: 0 0 auto;
    width: 118px;
  }

  .phone-hero-actions[hidden] {
    display: none;
  }

  .phone-hero-actions a,
  .phone-hero-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 7px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
  }

  .phone-hero-actions a:nth-child(2),
  .phone-hero-user a {
    border-color: transparent;
    background: linear-gradient(135deg, #19b7ff, #126bff 58%, #7a3cff);
    box-shadow: 0 10px 20px rgba(18, 107, 255, 0.28);
  }

  .phone-hero-actions button {
    cursor: pointer;
  }

  .phone-account-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .phone-account-card span {
    display: block;
    color: #126bff;
    font-size: 12px;
    font-weight: 950;
  }

  .phone-account-card strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.35;
  }

  .phone-account-actions,
  .phone-split-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .phone-account-actions a,
  .phone-account-actions button,
  .phone-split-actions button,
  .phone-card-title button,
  .phone-tabbar a,
  .phone-quick-grid button,
  .phone-quick-grid a,
  .phone-hub-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #d7e3f6;
    border-radius: 14px;
    color: #07163d;
    background: #fff;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
  }

  .phone-account-actions a:nth-child(2),
  .phone-primary,
  .phone-split-actions button:first-child {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #149aff, #126bff 56%, #743cff);
    box-shadow: 0 13px 28px rgba(18, 107, 255, 0.24);
  }

  .phone-tabbar {
    position: sticky;
    top: 66px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    padding: 8px;
    border-radius: 18px;
  }

  .phone-tabbar a {
    min-height: 38px;
    padding: 0 4px;
    font-size: 11px;
    white-space: nowrap;
  }

  .phone-tabbar a:first-child {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #149aff, #126bff);
  }

  .phone-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .phone-quick-grid button,
  .phone-quick-grid a {
    min-height: 58px;
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #19b8ff, #126bff);
    box-shadow: inset 0 1px rgba(255,255,255,0.24), 0 10px 20px rgba(18,107,255,0.16);
  }

  .phone-quick-grid button:nth-child(2) { background: linear-gradient(135deg, #7b3dff, #5622d9); }
  .phone-quick-grid button:nth-child(3) { background: linear-gradient(135deg, #1b64ff, #0f3fae); }
  .phone-quick-grid button:nth-child(4) { background: linear-gradient(135deg, #00c7b7, #126bff); }
  .phone-quick-grid button:nth-child(5) { background: linear-gradient(135deg, #ff7a18, #ff3358); }
  .phone-quick-grid a { background: linear-gradient(135deg, #00b76f, #079a62); }

  .phone-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .phone-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .phone-card-title span {
    color: var(--ink);
    font-size: 18px;
    font-weight: 950;
  }

  .phone-card-title b,
  .phone-card-title a {
    color: #126bff;
    font-size: 12px;
    font-weight: 950;
  }

  .phone-field {
    display: grid;
    gap: 7px;
    color: #394965;
    font-size: 12px;
    font-weight: 950;
  }

  .phone-field input {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #d7e3f6;
    border-radius: 14px;
    color: var(--ink);
    background: #f8fbff;
    font-size: 14px;
    font-weight: 850;
  }

  .phone-primary {
    min-height: 48px;
    border-radius: 14px;
    font-weight: 950;
  }

  .phone-market-summary,
  .phone-news-list {
    display: grid;
    gap: 8px;
  }

  .phone-market-summary div,
  .phone-news-item {
    padding: 12px;
    border: 1px solid #e1eafb;
    border-radius: 14px;
    background: #f8fbff;
  }

  .phone-market-summary div {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
  }

  .phone-market-summary strong,
  .phone-news-item strong {
    color: var(--ink);
    font-weight: 950;
  }

  .phone-market-summary span,
  .phone-news-item p {
    color: #50617e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
  }

  .phone-market-summary em.up { color: #08a865; }
  .phone-market-summary em.down { color: #ff3358; }

  .phone-news-item {
    display: grid;
    gap: 8px;
  }

  .phone-news-item h3 {
    margin: 0;
    font-size: 15px;
  }

  .phone-news-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #126bff;
    font-size: 12px;
    font-weight: 950;
  }

  .phone-hub-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
