:root {
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #0b1727;
  --navy-800: #102036;
  --navy-700: #19314d;
  --ink: #0d1b2d;
  --paper: #f8f7f2;
  --paper-2: #f1f4f6;
  --white: #ffffff;
  --text: #f5f7fb;
  --muted: #aeb9ca;
  --muted-dark: #667487;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: #dce3ea;
  --gold: #d6b979;
  --gold-light: #f4dfaa;
  --cyan: #70d7f5;
  --green: #06c755;
  --green-dark: #02a947;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 20px 50px rgba(28, 45, 66, 0.1);
  --content-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #e9edf0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC",
    "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 70px rgba(12, 26, 43, 0.08);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 12px max(22px, calc((100% - var(--content-width)) / 2));
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 20, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 216, 145, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 216, 145, 0.2), transparent 40%),
    linear-gradient(145deg, #182a40, #07111f);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark::after {
  position: absolute;
  top: 13px;
  left: 9px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 10px rgba(112, 215, 245, 0.35);
  content: "";
  transform: rotate(-31deg);
  transform-origin: left center;
}

.brand-mark::before {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 7px;
  width: 5px;
  height: 5px;
  border: 2px solid #0f2136;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(112, 215, 245, 0.7);
  content: "";
}

.brand-bars {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 22px;
}

.brand-bars i {
  width: 5px;
  border-radius: 2px 2px 1px 1px;
  background: linear-gradient(180deg, var(--gold-light), #ae8238);
  box-shadow: 0 3px 8px rgba(214, 185, 121, 0.18);
}

.brand-bars i:nth-child(1) {
  height: 8px;
}

.brand-bars i:nth-child(2) {
  height: 13px;
}

.brand-bars i:nth-child(3) {
  height: 19px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 3px;
  color: #9ba9bc;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.public-badge {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d3dceb;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: 34px;
  padding: 56px max(22px, calc((100% - var(--content-width)) / 2)) 48px;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(214, 185, 121, 0.22), transparent 28%),
    radial-gradient(circle at 92% 15%, rgba(112, 215, 245, 0.16), transparent 27%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 48%, #0d192b);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  content: "";
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.section-heading > span {
  color: #a77f38;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(214, 185, 121, 0.26);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(214, 185, 121, 0.08);
}

.eyebrow i,
.status-dot,
.console-status i,
.update-badge i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4bd987;
  box-shadow: 0 0 0 6px rgba(75, 217, 135, 0.11);
}

h1 {
  max-width: 720px;
  margin: 22px 0 12px;
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(105deg, #fff 8%, var(--gold-light) 58%, #aee9fb);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.92em;
  letter-spacing: -0.072em;
}

.hero-subtitle {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 850;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #c7d1df;
  font-size: 17px;
  line-height: 1.78;
}

.line-action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 20px 45px rgba(6, 199, 85, 0.24);
  cursor: pointer;
  text-align: left;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, filter 0.18s ease;
  overflow: hidden;
}

.line-action::after {
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 8%, rgba(255, 255, 255, 0.2), transparent 58%);
  content: "";
  transform: translateX(-110%);
  animation: button-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes button-shine {
  0%, 65% { transform: translateX(-110%); }
  85%, 100% { transform: translateX(110%); }
}

.line-action:hover {
  transform: translateY(-1px);
}

.line-action:active {
  transform: scale(0.987);
}

.line-action.is-opening {
  filter: saturate(0.78);
  pointer-events: none;
}

.primary-line-action {
  max-width: 610px;
  margin-top: 24px;
}

.line-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--green-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.button-copy {
  position: relative;
  z-index: 1;
  display: block;
  flex: 1;
  min-width: 0;
}

.button-copy strong,
.button-copy small {
  display: block;
}

.button-copy strong {
  font-size: 18px;
  line-height: 1.35;
}

.button-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
}

.arrow {
  position: relative;
  z-index: 1;
  font-size: 34px;
  font-weight: 300;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 16px 2px 18px;
  color: #9eabbc;
  font-size: 12px;
}

.limited-access {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px 18px;
  max-width: 670px;
  margin-bottom: 14px;
  padding: 15px 17px 13px;
  overflow: hidden;
  border: 1px solid rgba(214, 185, 121, 0.35);
  border-radius: 20px;
  background:
    radial-gradient(circle at 6% 0%, rgba(214, 185, 121, 0.16), transparent 45%),
    linear-gradient(135deg, rgba(26, 38, 57, 0.97), rgba(9, 20, 35, 0.97));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.limited-copy {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.limited-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 216, 145, 0.32);
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(214, 185, 121, 0.1);
  font-size: 22px;
}

.limited-copy small,
.live-count-wrap small,
.limited-copy strong,
.live-count-wrap strong,
.countdown-wrap small,
.countdown-wrap time {
  display: block;
}

.limited-copy small,
.live-count-wrap small,
.countdown-wrap small {
  color: #8997aa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.limited-copy strong {
  margin-top: 3px;
  color: #f4f7fb;
  font-size: 14px;
}

.countdown-wrap {
  min-width: 88px;
  text-align: right;
}

.live-count-wrap {
  min-width: 96px;
  padding: 0 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.live-count-wrap strong {
  margin-top: 1px;
  color: #fff3c5;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 23px;
  letter-spacing: -0.05em;
}

.live-count-wrap em {
  margin-left: 3px;
  color: #8b99ac;
  font-family: inherit;
  font-size: 10px;
  font-style: normal;
}

.countdown-wrap time {
  margin-top: 1px;
  color: var(--gold-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 0 24px rgba(240, 216, 145, 0.22);
}

.countdown-track {
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.countdown-track i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan), #56e098);
  box-shadow: 0 0 14px rgba(112, 215, 245, 0.32);
  transform-origin: left center;
  transition: transform 1s linear;
}

.hero-feedback {
  position: relative;
  max-width: 670px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(143, 196, 225, 0.28);
  border-radius: 25px;
  background:
    radial-gradient(circle at 0% 0%, rgba(214, 185, 121, 0.15), transparent 31%),
    radial-gradient(circle at 100% 15%, rgba(112, 215, 245, 0.11), transparent 35%),
    linear-gradient(145deg, rgba(19, 34, 55, 0.97), rgba(7, 17, 31, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-feedback::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(240, 216, 145, 0.07), transparent 28%, rgba(112, 215, 245, 0.05));
  content: "";
  pointer-events: none;
}

.feedback-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #e7edf6;
  font-size: 13px;
}

.feedback-heading > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback-title-copy strong,
.feedback-title-copy small {
  display: block;
}

.feedback-title-copy strong {
  color: #f5f8fc;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.feedback-title-copy small {
  margin-top: 3px;
  color: #8595aa;
  font-size: 10px;
}

.feedback-live-pill {
  padding: 6px 9px;
  border: 1px solid rgba(93, 226, 151, 0.21);
  border-radius: 999px;
  color: #6de5a0;
  background: rgba(58, 204, 121, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-comment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-comment-card,
.comment-card {
  animation: card-enter 0.42s ease both;
}

@keyframes card-enter {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-comment-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  min-height: 176px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: linear-gradient(150deg, rgba(42, 58, 80, 0.9), rgba(18, 31, 49, 0.92));
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.2);
}

.hero-comment-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--cyan));
  content: "";
}

.hero-comment-card:nth-child(2)::before {
  background: linear-gradient(180deg, var(--cyan), #5be297);
}

.comment-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #294867, #14283e);
  font-size: 13px;
  font-weight: 900;
}

.hero-comment-card:nth-child(2n) .comment-avatar,
.comment-card:nth-child(2n) .comment-avatar {
  background: linear-gradient(145deg, #c29a4f, #8e6d32);
}

.comment-body {
  min-width: 0;
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

.comment-meta strong {
  font-size: 13px;
}

.comment-meta time {
  flex: 0 0 auto;
  color: #8e9bad;
  font-size: 10px;
}

.hero-comment-card p {
  margin: 0;
  color: #d5deea;
  font-size: 12.5px;
  line-height: 1.65;
}

.hero-comment-card .comment-actions {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.market-console {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #aebacd;
  background: rgba(0, 0, 0, 0.16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.console-dots {
  display: flex;
  gap: 7px;
}

.console-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.console-body {
  padding: 18px;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.chart {
  position: relative;
  height: 175px;
  margin: 15px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(112, 215, 245, 0.09), rgba(214, 185, 121, 0.035));
}

.chart svg {
  width: 100%;
  height: 100%;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: url(#chartStroke);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: chart-draw 5.8s ease forwards;
}

@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

.chart-point {
  position: absolute;
  top: 9%;
  right: 2.5%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8df6b7;
  box-shadow: 0 0 0 6px rgba(141, 246, 183, 0.13), 0 0 22px rgba(141, 246, 183, 0.7);
}

.signal-list {
  display: grid;
  gap: 8px;
}

.signal-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(2, 8, 17, 0.27);
}

.signal-list b,
.signal-list small {
  display: block;
}

.signal-list b {
  font-size: 13px;
}

.signal-list small {
  margin-top: 3px;
  color: #8f9eb3;
  font-size: 10px;
}

.signal-list em {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.section {
  padding: 74px max(22px, calc((100% - var(--content-width)) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.pain-intro h2,
.community-copy h2,
.final-card h2 {
  margin: 9px 0 10px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading p,
.pain-intro > p,
.community-copy > p,
.final-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.75;
}

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

.content-card {
  position: relative;
  min-height: 258px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.content-card::after {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 185, 121, 0.19), transparent 67%);
  content: "";
}

.card-number {
  color: #a9b2bd;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 31px 0 19px;
  place-items: center;
  border-radius: 15px;
  color: #8e6d32;
  background: #f7f0df;
  font-size: 22px;
  font-weight: 900;
}

.content-card h3 {
  margin: 0 0 9px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

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

.pain-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  padding: 42px;
  border-radius: 32px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(214, 185, 121, 0.2), transparent 35%),
    linear-gradient(145deg, var(--navy-900), #0e2035);
  box-shadow: var(--shadow-dark);
}

.pain-intro h2 {
  color: #fff;
}

.pain-intro > p {
  color: #b9c6d7;
}

.pain-panel .section-kicker {
  color: var(--gold-light);
}

.pain-list {
  display: grid;
  gap: 10px;
}

.pain-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.pain-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: var(--gold-light);
  background: rgba(214, 185, 121, 0.13);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
}

.pain-list h3 {
  margin: 1px 0 6px;
  color: #f5f7fb;
  font-size: 16px;
}

.pain-list p {
  margin: 0;
  color: #aab7c8;
  font-size: 13px;
  line-height: 1.65;
}

.community-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid #d8e0e7;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.community-mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border: 1px solid #223950;
  border-radius: 28px;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 30% 20%, rgba(214, 185, 121, 0.26), transparent 34%),
    linear-gradient(145deg, #0b1727, #132a45);
  box-shadow: 0 18px 42px rgba(15, 32, 54, 0.18);
}

.community-mark span,
.community-mark small {
  display: block;
}

.community-mark span {
  font-size: 47px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.community-mark small {
  margin-top: 5px;
  color: #a7b5c8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.community-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.community-role {
  margin-bottom: 13px !important;
  color: #9a7539 !important;
  font-size: 13px !important;
  font-weight: 850;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.community-tags span {
  padding: 8px 11px;
  border: 1px solid #dbe2e9;
  border-radius: 999px;
  color: #475669;
  background: #f5f7f8;
  font-size: 12px;
  font-weight: 750;
}

.community-proof {
  display: grid;
  align-content: center;
  min-height: 180px;
  padding: 24px;
  border: 1px solid #e6d7b5;
  border-radius: 24px;
  background: linear-gradient(145deg, #fffaf0, #f4ead2);
  text-align: center;
}

.community-proof strong {
  color: #20344a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 41px;
  letter-spacing: -0.06em;
}

.community-proof sup {
  color: #a47c38;
  font-size: 20px;
}

.community-proof span {
  margin-top: 9px;
  color: #725e39;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.6;
}

.feedback-section {
  background: #fbfaf6;
}

.feedback-title-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.update-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #338354;
  background: #eaf7ee;
  font-size: 12px;
  font-weight: 800;
}

.comment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.comment-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: #f7f9fa;
  box-shadow: 0 12px 30px rgba(34, 52, 73, 0.06);
}

.comment-card .comment-avatar {
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  box-shadow: 0 7px 20px rgba(23, 43, 65, 0.16);
}

.comment-card .comment-meta strong {
  color: #17283b;
  font-size: 14px;
}

.comment-card .comment-meta time {
  color: #909cab;
  font-size: 11px;
}

.comment-card p {
  min-height: 44px;
  margin: 0;
  color: #617083;
  font-size: 13px;
  line-height: 1.68;
}

.comment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid rgba(132, 149, 168, 0.17);
}

.comment-actions > span {
  color: #8e9aaa;
  font-size: 11px;
}

.comment-like-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #d9e1e8;
  border-radius: 999px;
  color: #667487;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  touch-action: manipulation;
}

.comment-like-button.is-liked {
  border-color: #bddeca;
  color: #16713d;
  background: #e8f7ed;
}

.hero-comment-card .comment-actions > span {
  color: #8898ad;
}

.hero-comment-card .comment-like-button {
  min-height: 31px;
  padding: 6px 10px;
  border-color: rgba(255, 255, 255, 0.15);
  color: #dce6f2;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-comment-card .comment-like-button.is-liked {
  border-color: rgba(87, 224, 148, 0.34);
  color: #7ceda9;
  background: rgba(61, 205, 125, 0.13);
}

.comment-composer {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 9px 10px 9px 12px;
  border: 1px solid #d9e1e8;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.composer-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #aa823e;
}

.comment-composer input {
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.comment-composer input::placeholder {
  color: #9aa5b3;
}

.comment-composer button {
  height: 46px;
  padding: 0 22px;
  border-radius: 15px;
  color: #fff;
  background: #142f65;
  font-weight: 850;
  cursor: pointer;
}

.comment-status {
  min-height: 22px;
  margin: 8px 8px 0;
  color: #4e6b5b;
  font-size: 12px;
}

.final-section {
  padding-top: 32px;
}

.final-card {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 185, 121, 0.19), transparent 34%),
    linear-gradient(145deg, var(--navy-900), #10233a);
  box-shadow: var(--shadow-dark);
}

.final-card h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
}

.final-card p {
  color: #b7c4d5;
}

.final-card .section-kicker {
  color: var(--gold-light);
}

.footer {
  padding: 0 max(22px, calc((100% - var(--content-width)) / 2)) 125px;
  color: #6e7987;
  background: var(--paper);
  font-size: 12px;
  line-height: 1.7;
}

.footer p {
  margin: 0;
  padding: 18px;
  border: 1px solid #dfe5ea;
  border-radius: 18px;
  background: #f5f7f8;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.footer nav button {
  padding: 5px 0;
  color: #647285;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.mobile-sticky-line {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: max(18px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(540px, calc(100% - 24px));
  min-height: 62px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 21px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 24px 54px rgba(6, 199, 85, 0.28), 0 12px 30px rgba(0, 0, 0, 0.23);
  cursor: pointer;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.mobile-sticky-line.is-visible {
  display: flex;
}

.mobile-sticky-line .line-symbol {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 10px;
}

.sticky-copy {
  display: block;
  flex: 1;
  text-align: left;
}

.sticky-copy strong,
.sticky-copy small {
  display: block;
}

.sticky-copy strong {
  font-size: 15px;
}

.sticky-copy small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 650;
}

.lead-modal,
.legal-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lead-modal.is-open,
.legal-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.lead-modal-backdrop,
.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 14, 0.77);
  backdrop-filter: blur(12px);
}

.lead-modal-card,
.legal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid rgba(214, 185, 121, 0.5);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 185, 121, 0.21), transparent 34%),
    linear-gradient(145deg, #0b1727, #07111f);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.56);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.lead-modal.is-open .lead-modal-card,
.legal-modal.is-open .legal-card {
  transform: translateY(0) scale(1);
}

.lead-modal-close,
.legal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 25px;
  cursor: pointer;
  touch-action: manipulation;
}

.modal-book {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid rgba(214, 185, 121, 0.5);
  border-radius: 24px;
  color: var(--gold-light);
  background: rgba(214, 185, 121, 0.09);
  font-size: 34px;
}

.modal-kicker {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lead-modal-card h2 {
  margin: 11px 0 12px;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.lead-modal-card > p {
  max-width: 500px;
  margin: 0 auto 22px;
  color: #b7c4d4;
  font-size: 14px;
  line-height: 1.75;
}

.modal-line-action {
  max-width: 500px;
  margin: 0 auto;
}

.modal-risk {
  display: block;
  margin-top: 14px;
  color: #8593a6;
  font-size: 11px;
}

.legal-card {
  max-height: 78vh;
  overflow: auto;
  text-align: left;
}

.legal-card h2 {
  margin: 0 44px 12px 0;
}

.legal-card p {
  color: #b9c5d5;
  line-height: 1.75;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

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

  .market-console {
    width: 100%;
    max-width: 760px;
  }

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

  .pain-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .community-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .community-proof {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .final-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 62px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 9px;
  }

  .public-badge {
    display: none;
  }

  .hero {
    gap: 24px;
    padding: 30px 14px 36px;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(36px, 10vw, 43px);
    letter-spacing: -0.062em;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .primary-line-action {
    min-height: 72px;
    margin-top: 20px;
    border-radius: 20px;
  }

  .button-copy strong {
    font-size: 16px;
  }

  .hero-proof {
    gap: 7px 12px;
    font-size: 11px;
  }

  .limited-access {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 10px;
    padding: 13px 13px 11px;
    border-radius: 18px;
  }

  .limited-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 19px;
  }

  .limited-copy {
    grid-column: 1 / -1;
    gap: 9px;
  }

  .limited-copy strong {
    font-size: 12.5px;
  }

  .countdown-wrap {
    min-width: 72px;
  }

  .live-count-wrap {
    min-width: 0;
    padding: 0;
    border: 0;
    text-align: left;
  }

  .live-count-wrap strong {
    font-size: 21px;
  }

  .countdown-wrap time {
    font-size: 21px;
  }

  .hero-feedback {
    padding: 14px;
    border-radius: 22px;
  }

  .feedback-title-copy strong {
    max-width: 225px;
    font-size: 12px;
    line-height: 1.35;
  }

  .feedback-live-pill {
    align-self: flex-start;
  }

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

  .hero-comment-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 11px;
  }

  .hero-comment-card .comment-avatar {
    width: 38px;
    height: 38px;
  }

  .hero-comment-card p {
    display: block;
    overflow: visible;
    font-size: 12px;
    -webkit-line-clamp: initial;
  }

  .market-console {
    border-radius: 24px;
  }

  .console-body {
    padding: 14px;
  }

  .chart {
    height: 132px;
  }

  .section {
    padding: 50px 14px;
  }

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

  .section-heading h2,
  .pain-intro h2,
  .community-copy h2,
  .final-card h2 {
    font-size: 32px;
  }

  .section-heading p,
  .pain-intro > p,
  .community-copy > p,
  .final-card p {
    font-size: 14px;
  }

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

  .content-card {
    min-height: auto;
    padding: 19px;
  }

  .card-icon {
    margin: 17px 0 14px;
  }

  .pain-panel {
    gap: 20px;
    padding: 24px 18px;
    border-radius: 25px;
  }

  .pain-list article {
    padding: 15px;
  }

  .community-card {
    grid-template-columns: 1fr;
    gap: 21px;
    padding: 22px;
    border-radius: 25px;
  }

  .community-mark {
    width: 126px;
    border-radius: 23px;
  }

  .community-mark span {
    font-size: 38px;
  }

  .community-proof {
    padding: 20px;
  }

  .feedback-title-row {
    align-items: flex-start;
  }

  .feedback-title-row p {
    max-width: 310px;
  }

  .update-badge {
    margin-top: 4px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .comment-list {
    grid-template-columns: 1fr;
  }

  .comment-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding: 15px;
    border-radius: 19px;
  }

  .comment-card .comment-avatar {
    width: 42px;
    height: 42px;
  }

  .comment-card p {
    min-height: 0;
    font-size: 12.5px;
  }

  .comment-composer {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 7px 7px 7px 9px;
    border-radius: 18px;
  }

  .composer-icon {
    width: 32px;
    height: 32px;
  }

  .comment-composer input {
    font-size: 12.5px;
  }

  .comment-composer button {
    padding: 0 15px;
    border-radius: 13px;
    font-size: 13px;
  }

  .final-card {
    gap: 24px;
    padding: 24px 18px;
    border-radius: 25px;
  }

  .footer {
    padding: 0 14px 108px;
  }

  .mobile-sticky-line {
    bottom: max(10px, calc(env(safe-area-inset-bottom, 0px) + 8px));
    min-height: 64px;
    border-radius: 20px;
  }

  .lead-modal,
  .legal-modal {
    align-items: end;
    padding: 10px;
  }

  .lead-modal-card,
  .legal-card {
    padding: 29px 18px 22px;
    border-radius: 26px;
  }

  .lead-modal-close,
  .legal-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 34px;
  }

  h1 span {
    font-size: 0.86em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
