:root {
  --bg: #f7faf8;
  --paper: #ffffff;
  --mint: #e7f6f1;
  --mint-strong: #159f87;
  --mint-deep: #087b6d;
  --coral: #ff7248;
  --coral-deep: #ee5931;
  --ink: #202a33;
  --muted: #667482;
  --line: #dbe8e4;
  --blue-soft: #eef5ff;
  --rose-soft: #fff0eb;
  --shadow: 0 18px 46px rgba(28, 64, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
}

h1,
h2,
h3,
p,
a,
summary,
span {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 0 clamp(22px, 5vw, 96px);
  background: rgba(247, 250, 248, 0.92);
  border-bottom: 1px solid rgba(8, 123, 109, 0.1);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 100vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--mint-deep);
  font-weight: 900;
  font-size: 28px;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  color: #4c5b66;
  font-size: 18px;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--mint-deep);
}

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  color: var(--mint-deep);
  border: 1px solid var(--mint-strong);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.login-link:hover {
  background: #f0fffb;
  box-shadow: 0 12px 26px rgba(10, 133, 114, 0.13);
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(38px, 8vw, 118px);
  align-items: center;
  min-height: 760px;
  padding: clamp(54px, 5vw, 86px) clamp(22px, 6vw, 126px) clamp(56px, 6vw, 92px);
  background:
    radial-gradient(circle at 2% 8%, rgba(21, 159, 135, 0.11), transparent 28%),
    linear-gradient(118deg, #fbfdfb 0%, #f5fbf9 49%, #fff7f2 100%);
  width: 100%;
  max-width: 100vw;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint-deep);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 34px;
  color: #3e4d58;
  font-size: 25px;
  line-height: 1.7;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 650px;
  width: 100%;
  min-width: 0;
  min-height: 74px;
  padding: 0 24px;
  color: #6a7884;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid #cce7df;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(35, 87, 79, 0.08);
}

.search-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 3px solid var(--mint-strong);
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 3px;
  right: -9px;
  bottom: -5px;
  background: var(--mint-strong);
  border-radius: 99px;
  transform: rotate(45deg);
}

.search-box span:last-child {
  min-width: 0;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 650px;
  width: 100%;
  margin: 18px 0 34px;
}

.hot-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--mint-deep);
  background: #e9faf5;
  border: 1px solid #c6ebe2;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
}

.hot-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 650px;
  width: 100%;
  margin: 18px 0 34px;
  color: #566674;
  font-size: 16px;
}

.hot-line a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--mint-deep);
  background: #e9faf5;
  border: 1px solid #c6ebe2;
  border-radius: 999px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff8257, var(--coral));
  box-shadow: 0 18px 32px rgba(255, 114, 72, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff744a, var(--coral-deep));
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(255, 114, 72, 0.34);
}

.button-soft {
  color: var(--mint-deep);
  background: rgba(255, 255, 255, 0.88);
  border-color: #d8e7e2;
}

.button-soft:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(38, 75, 70, 0.1);
}

.trust-line {
  margin: 26px 0 0;
  color: #536271;
  font-size: 16px;
}

.hero-visual {
  width: min(100%, 600px);
  min-width: 0;
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  background:
    linear-gradient(#cae9e2 1px, transparent 1px),
    linear-gradient(90deg, #cae9e2 1px, transparent 1px),
    #e9f7f4;
  background-size: 42px 42px;
  border: 1px solid #d5ece7;
  border-radius: 8px;
}

.hero-visual img {
  width: min(78%, 430px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 34px rgba(9, 111, 99, 0.14));
}

.definition-section,
.cards-section,
.safe-section,
.process-section,
.faq-section {
  padding: clamp(64px, 8vw, 112px) clamp(22px, 5vw, 96px);
}

.definition-section {
  background: #fff;
}

.definition-box {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(135deg, #edf9f5, #fff);
  border: 1px solid #cce7df;
  border-radius: 8px;
}

.definition-box h2,
.section-title h2,
.bottom-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
}

.definition-box p:not(.eyebrow),
.section-title p:not(.eyebrow),
.bottom-cta p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: #445461;
  font-size: 19px;
  line-height: 1.85;
}

.cards-section {
  background: #f8fbfa;
}

.section-title {
  max-width: 1180px;
  margin: 0 auto 34px;
  text-align: center;
}

.topic-grid,
.safe-grid,
.process-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}

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

.topic-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(38, 75, 70, 0.06);
}

.topic-art {
  height: 168px;
  border-bottom: 1px solid #dcece8;
}

.topic-art-a {
  background:
    radial-gradient(circle at 68% 40%, #ffc2ad 0 24px, transparent 25px),
    linear-gradient(130deg, transparent 45%, rgba(21, 159, 135, 0.3) 45% 48%, transparent 48%),
    var(--mint);
}

.topic-art-b {
  background:
    linear-gradient(135deg, rgba(255, 114, 72, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(21, 159, 135, 0.14) 35px 36px),
    var(--blue-soft);
}

.topic-art-c {
  background:
    radial-gradient(circle at 28% 52%, rgba(21, 159, 135, 0.28) 0 34px, transparent 35px),
    radial-gradient(circle at 70% 44%, rgba(255, 114, 72, 0.32) 0 26px, transparent 27px),
    var(--rose-soft);
}

.topic-card p,
.topic-card h3,
.topic-card span {
  display: block;
  margin-left: 24px;
  margin-right: 24px;
}

.topic-card p {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--mint-deep);
  font-weight: 900;
}

.topic-card h3 {
  min-height: 68px;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.45;
}

.topic-card span {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.article-section {
  padding: clamp(72px, 8vw, 116px) clamp(22px, 5vw, 96px);
  background: #f8fbfa;
}

.article-section + .article-section {
  padding-top: 34px;
}

.article-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d7e9e4;
}

.article-head h2 {
  display: inline;
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.2;
}

.article-head p {
  display: inline;
  margin: 0 0 0 14px;
  color: #50606d;
  font-size: 16px;
}

.article-head a {
  flex: 0 0 auto;
  color: var(--mint-deep);
  font-weight: 900;
  border-bottom: 1px solid #b7ded7;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.article-card {
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid #dceae6;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(40, 80, 72, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: #93d5c8;
  box-shadow: 0 20px 38px rgba(40, 80, 72, 0.09);
}

.card-art {
  position: relative;
  height: 260px;
  background:
    radial-gradient(circle at 90% 16%, #72c8ba 0 4px, transparent 5px),
    radial-gradient(circle at 12% 78%, #ffb79e 0 6px, transparent 7px),
    linear-gradient(#d9efea 1px, transparent 1px),
    linear-gradient(90deg, #d9efea 1px, transparent 1px),
    #edf9f5;
  background-size:
    auto,
    auto,
    36px 36px,
    36px 36px,
    auto;
}

.card-art::before,
.card-art::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.art-equals::before {
  width: 130px;
  height: 70px;
  background:
    radial-gradient(circle at 18% 50%, transparent 0 21px, var(--mint-strong) 22px 25px, transparent 26px),
    linear-gradient(var(--coral), var(--coral)) 46% 48% / 34px 4px no-repeat,
    linear-gradient(90deg, transparent 47%, var(--coral) 47% 53%, transparent 53%) 37% 48% / 34px 34px no-repeat,
    radial-gradient(circle at 61% 50%, transparent 0 17px, var(--coral) 18px 21px, transparent 22px),
    linear-gradient(var(--mint-strong), var(--mint-strong)) 96% 39% / 30px 4px no-repeat,
    linear-gradient(var(--mint-strong), var(--mint-strong)) 96% 61% / 30px 4px no-repeat;
}

.art-compare::before {
  width: 150px;
  height: 104px;
  background:
    linear-gradient(var(--mint-strong), var(--mint-strong)) 30% 25% / 4px 52px no-repeat,
    linear-gradient(var(--mint-strong), var(--mint-strong)) 44% 25% / 4px 52px no-repeat,
    linear-gradient(var(--mint-strong), var(--mint-strong)) 58% 25% / 4px 52px no-repeat,
    linear-gradient(var(--coral), var(--coral)) 73% 25% / 4px 52px no-repeat;
}

.art-compare::after {
  width: 108px;
  height: 92px;
  border: 4px solid var(--mint-strong);
  border-right-color: var(--coral);
  border-radius: 8px;
}

.art-cycle::before {
  width: 136px;
  height: 88px;
  border: 5px solid var(--mint-strong);
  border-right-color: transparent;
  border-bottom-color: var(--coral);
  border-radius: 50%;
}

.art-cycle::after {
  width: 42px;
  height: 42px;
  border: 5px solid var(--coral);
  border-radius: 50%;
  transform: translate(10px, -10px);
}

.art-rise::before {
  width: 150px;
  height: 110px;
  background:
    radial-gradient(circle at 24% 72%, transparent 0 5px, var(--mint-strong) 6px 9px, transparent 10px),
    radial-gradient(circle at 46% 48%, transparent 0 5px, var(--mint-strong) 6px 9px, transparent 10px),
    radial-gradient(circle at 68% 34%, transparent 0 5px, var(--mint-strong) 6px 9px, transparent 10px);
}

.art-rise::after {
  width: 126px;
  height: 82px;
  border-top: 5px solid var(--mint-strong);
  border-right: 5px solid var(--coral);
  border-radius: 55% 40% 0 0;
  transform: translate(-50%, -50%) rotate(-22deg);
}

.art-heart::before {
  width: 96px;
  height: 86px;
  border: 5px solid var(--mint-strong);
  border-top: 0;
  border-left: 0;
  transform: translate(-58%, -44%) rotate(45deg);
  border-radius: 0 0 10px 0;
}

.art-heart::after,
.art-question::after {
  content: "?";
  color: var(--coral);
  font-size: 58px;
  font-weight: 500;
  transform: translate(32px, -58px);
}

.art-question::before {
  width: 90px;
  height: 56px;
  border: 5px solid var(--mint-strong);
  border-radius: 12px;
}

.art-question::after {
  transform: translate(-10px, -44px);
}

.art-list::before {
  width: 82px;
  height: 96px;
  border: 5px solid var(--mint-strong);
  border-radius: 10px;
}

.art-list::after {
  width: 106px;
  height: 78px;
  background:
    linear-gradient(45deg, transparent 35%, var(--coral) 36% 47%, transparent 48%) 8px 10px / 28px 24px no-repeat,
    linear-gradient(45deg, transparent 35%, var(--coral) 36% 47%, transparent 48%) 8px 42px / 28px 24px no-repeat,
    linear-gradient(var(--mint-strong), var(--mint-strong)) 52px 22px / 36px 4px no-repeat,
    linear-gradient(var(--mint-strong), var(--mint-strong)) 52px 54px / 36px 4px no-repeat;
}

.art-target::before {
  width: 94px;
  height: 94px;
  border: 5px solid var(--mint-strong);
  border-radius: 50%;
}

.art-target::after {
  width: 156px;
  height: 156px;
  background:
    radial-gradient(circle at 50% 50%, var(--coral) 0 7px, transparent 8px),
    radial-gradient(circle at 50% 50%, transparent 0 30px, var(--mint-strong) 31px 35px, transparent 36px),
    linear-gradient(var(--coral), var(--coral)) 50% 0 / 4px 28px no-repeat,
    linear-gradient(var(--coral), var(--coral)) 50% 100% / 4px 28px no-repeat,
    linear-gradient(90deg, var(--coral), var(--coral)) 0 50% / 28px 4px no-repeat,
    linear-gradient(90deg, var(--coral), var(--coral)) 100% 50% / 28px 4px no-repeat;
}

.art-glass::before {
  width: 70px;
  height: 90px;
  border: 5px solid var(--mint-strong);
  border-top-width: 7px;
  border-radius: 0 0 36px 36px;
  clip-path: polygon(16% 0, 84% 0, 70% 56%, 70% 100%, 30% 100%, 30% 56%);
}

.art-boundary::before {
  width: 145px;
  height: 74px;
  border: 5px solid var(--mint-strong);
  border-radius: 10px;
  border-top-color: transparent;
}

.art-boundary::after {
  width: 82px;
  height: 82px;
  border-top: 5px solid var(--coral);
  transform: translate(-50%, -90%) rotate(45deg);
}

.art-person::before {
  width: 100px;
  height: 108px;
  background:
    radial-gradient(circle at 36% 22%, transparent 0 15px, var(--mint-strong) 16px 20px, transparent 21px),
    radial-gradient(circle at 72% 55%, transparent 0 27px, var(--coral) 28px 32px, transparent 33px),
    linear-gradient(var(--mint-strong), var(--mint-strong)) 30% 56% / 5px 46px no-repeat;
}

.art-face::before {
  width: 94px;
  height: 94px;
  border: 5px solid var(--mint-strong);
  border-right-color: var(--coral);
  border-radius: 50%;
}

.art-shield::before {
  width: 96px;
  height: 108px;
  border: 5px solid var(--mint-strong);
  border-radius: 48% 48% 18% 18%;
  clip-path: polygon(50% 0, 95% 16%, 88% 70%, 50% 100%, 12% 70%, 5% 16%);
}

.art-shield::after {
  width: 48px;
  height: 28px;
  border-left: 5px solid var(--mint-strong);
  border-bottom: 5px solid var(--mint-strong);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.art-anchor::before {
  width: 96px;
  height: 110px;
  background:
    radial-gradient(circle at 50% 10%, transparent 0 15px, var(--mint-strong) 16px 20px, transparent 21px),
    linear-gradient(var(--mint-strong), var(--mint-strong)) 50% 28% / 5px 68px no-repeat,
    linear-gradient(90deg, var(--mint-strong), var(--mint-strong)) 50% 44% / 52px 5px no-repeat;
}

.art-anchor::after {
  width: 94px;
  height: 70px;
  border-bottom: 5px solid var(--mint-strong);
  border-left: 5px solid var(--coral);
  border-right: 5px solid var(--coral);
  border-radius: 0 0 60px 60px;
  transform: translate(-50%, -20%);
}

.card-body {
  padding: 26px 24px 28px;
}

.card-body p {
  margin: 0 0 14px;
  color: var(--mint-deep);
  font-size: 15px;
  font-weight: 900;
}

.card-body h3 {
  margin: 0 0 12px;
  color: #152432;
  font-size: 22px;
  line-height: 1.36;
}

.card-body span {
  display: block;
  color: #4d5f6d;
  font-size: 16px;
  line-height: 1.78;
}

.detail-section {
  padding: clamp(72px, 8vw, 118px) clamp(22px, 5vw, 96px);
  background:
    linear-gradient(180deg, #f8fcfa 0%, #f1faf7 100%);
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.detail-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d9ebe7;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(40, 80, 72, 0.06);
}

.article-page-section {
  padding-top: clamp(46px, 5vw, 72px);
}

.article-back-bar {
  display: flex;
  width: min(1080px, 100%);
  margin: 0 auto 14px;
}

.article-back-button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--mint-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d9ebe7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(40, 80, 72, 0.05);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.article-back-button:hover {
  background: #fff;
  border-color: #b8ded6;
  transform: translateY(-1px);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: #71828e;
  font-size: 15px;
  font-weight: 800;
}

.article-breadcrumb a {
  color: var(--mint-deep);
}

.article-breadcrumb span:last-child {
  color: #82929d;
}

.detail-kicker {
  margin: 0 0 12px;
  color: var(--mint-deep);
  font-size: 15px;
  font-weight: 900;
}

.detail-card h2 {
  margin: 0;
  color: #152432;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.28;
}

.detail-card h3 {
  margin: 24px 0 10px;
  color: #152432;
  font-size: 22px;
  line-height: 1.45;
}

.detail-card p,
.detail-card li {
  color: #304351;
  font-size: 17px;
  line-height: 1.9;
}

.detail-card p {
  margin: 16px 0 0;
}

.detail-card ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 14px 0 0;
  color: #607381;
  font-size: 14px;
  font-weight: 700;
}

.detail-meta b {
  color: var(--mint-deep);
}

.detail-callout {
  margin: 22px 0 0;
  padding: 18px 20px;
  color: #1d4f49;
  background: #edf9f5;
  border: 1px solid #cbeae3;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.8;
}

.detail-hero-art {
  position: relative;
  height: 210px;
  margin: 24px 0 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 16%, #72c8ba 0 4px, transparent 5px),
    radial-gradient(circle at 12% 78%, #ffb79e 0 6px, transparent 7px),
    linear-gradient(#d9efea 1px, transparent 1px),
    linear-gradient(90deg, #d9efea 1px, transparent 1px),
    #edf9f5;
  background-size:
    auto,
    auto,
    34px 34px,
    34px 34px,
    auto;
  border: 1px solid #cbeae3;
  border-radius: 8px;
}

.detail-hero-art::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 120px;
  height: 120px;
  border: 6px solid var(--mint-strong);
  border-right-color: var(--coral);
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.detail-hero-art::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  border: 6px solid #192631;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: translate(-50%, -50%) rotate(45deg);
}

.detail-card blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  color: #ff6540;
  background: #fff4ef;
  border: 1px solid #ffc9b8;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.8;
}

.detail-card blockquote .button {
  margin-top: 14px;
}

.article-note {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d9ebe7;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(40, 80, 72, 0.04);
}

.article-note p {
  margin: 0;
  color: #425564;
  font-size: 16px;
  line-height: 1.85;
}

.article-note b {
  color: var(--mint-deep);
}

.same-column-section {
  padding-top: 8px;
}

.same-column-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
  padding-top: 18px;
  border-top: 1px solid #d7e9e4;
}

.same-column-head p {
  margin: 0 0 6px;
  color: var(--mint-deep);
  font-size: 15px;
  font-weight: 900;
}

.same-column-head h2 {
  margin: 0;
  color: #152432;
  font-size: 28px;
  line-height: 1.25;
}

.same-column-head a {
  flex: 0 0 auto;
  color: var(--mint-deep);
  font-size: 15px;
  font-weight: 900;
  border-bottom: 1px solid #b7ded7;
}

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

.same-column-card .card-art {
  height: 178px;
}

.same-column-card .card-body {
  padding: 22px 22px 24px;
}

.same-column-card .card-body p {
  font-size: 14px;
}

.same-column-card .card-body h3 {
  font-size: 21px;
}

.same-column-card .card-body span {
  font-size: 15px;
  line-height: 1.72;
}

.article-table {
  width: 100%;
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid #d9ebe7;
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

.article-table th,
.article-table td {
  padding: 16px 18px;
  color: #304351;
  border-bottom: 1px solid #e4efec;
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--mint-deep);
  background: #e8f7f3;
  font-weight: 900;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table td:first-child {
  color: var(--mint-deep);
  font-weight: 900;
  white-space: nowrap;
}

.detail-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.detail-mini-list li {
  padding: 14px 16px;
  background: #f3fbf8;
  border: 1px solid #d9ebe7;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.65;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.sidebar-card,
.sidebar-cta {
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d9ebe7;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(40, 80, 72, 0.05);
}

.sidebar-card h3,
.sidebar-cta h3 {
  margin: 0 0 14px;
  color: #152432;
  font-size: 20px;
}

.sidebar-info-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid #cde5df;
  color: #657784;
  font-size: 15px;
}

.sidebar-info-row b {
  color: #26333d;
  font-size: 16px;
}

.sidebar-info-row b:last-child {
  color: var(--mint-deep);
}

.sidebar-card a {
  display: block;
  padding: 11px 0;
  color: #4d5f6d;
  border-top: 1px solid #e5efec;
  font-size: 15px;
  font-weight: 800;
}

.sidebar-card a:hover {
  color: var(--mint-deep);
}

.sidebar-cta p {
  margin: 0 0 16px;
  color: #536675;
  font-size: 15px;
  line-height: 1.7;
}

.platform-section {
  padding: clamp(72px, 8vw, 118px) clamp(22px, 5vw, 96px);
  background: var(--mint);
}

.platform-copy {
  max-width: 900px;
  margin: 0 auto 46px;
}

.platform-copy h2 {
  margin: 0;
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.22;
}

.platform-copy p {
  max-width: 850px;
  margin: 22px 0 0;
  color: #223341;
  font-size: 20px;
  line-height: 1.85;
}

.platform-copy b {
  color: var(--mint-deep);
}

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

.feature-row article {
  min-width: 0;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid #dce8e4;
  border-radius: 8px;
}

.feature-row span {
  display: block;
  color: var(--mint-strong);
  font-size: 32px;
  line-height: 1;
}

.feature-row h3 {
  margin: 26px 0 12px;
  color: #182635;
  font-size: 21px;
  line-height: 1.42;
}

.feature-row p {
  margin: 0;
  color: #52616d;
  font-size: 16px;
  line-height: 1.8;
}

.safe-section {
  background: var(--mint);
}

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

.safe-grid article,
.process-grid article {
  min-width: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.safe-grid span {
  color: var(--coral);
  font-size: 15px;
  font-weight: 900;
}

.safe-grid h3,
.process-grid h3 {
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.safe-grid p,
.process-grid p {
  margin: 0;
  color: #4e5d68;
  font-size: 17px;
  line-height: 1.75;
}

.process-section {
  background: #fff;
  text-align: center;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  gap: 0;
}

.process-grid article {
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--line);
  box-shadow: none;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--mint-strong);
  border-radius: 50%;
  font-size: 22px;
}

.process-cta {
  margin-top: 44px;
}

.faq-section {
  background: var(--mint);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d6e8e4;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 66, 58, 0.05);
}

.faq-list details + details {
  margin-top: 14px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 0 28px;
  cursor: pointer;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--mint-strong);
  font-size: 26px;
  font-weight: 600;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -6px 28px 26px;
  color: #465662;
  font-size: 18px;
  line-height: 1.85;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  max-width: 1020px;
  margin: clamp(66px, 8vw, 110px) auto;
  padding: clamp(34px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 114, 72, 0.1), transparent 38%),
    #fffdfa;
  border: 1px solid #ffd3c2;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: start;
  padding: 48px clamp(22px, 6vw, 126px);
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.footer-brand p {
  max-width: 450px;
  margin: 18px 0 14px;
  color: #54636f;
  font-size: 16px;
  line-height: 1.8;
}

.footer-brand span {
  color: #929ca5;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 52px;
  min-width: 320px;
}

.footer-links a {
  padding-bottom: 10px;
  color: var(--mint-deep);
  border-bottom: 1px solid #bdded7;
  font-weight: 700;
}

.reveal-section {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(20px);
  transition:
    opacity 0.42s ease,
    filter 0.42s ease,
    transform 0.42s ease;
  will-change: opacity, filter, transform;
}

.reveal-section.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-section .article-card,
.reveal-section .feature-row article,
.reveal-section .process-grid article,
.reveal-section .faq-list details {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
  will-change: opacity, transform;
}

.reveal-section.is-visible .article-card,
.reveal-section.is-visible .feature-row article,
.reveal-section.is-visible .process-grid article,
.reveal-section.is-visible .faq-list details {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .article-card:nth-child(2),
.reveal-section.is-visible .feature-row article:nth-child(2),
.reveal-section.is-visible .process-grid article:nth-child(2),
.reveal-section.is-visible .faq-list details:nth-child(2) {
  transition-delay: 0.04s;
}

.reveal-section.is-visible .article-card:nth-child(3),
.reveal-section.is-visible .feature-row article:nth-child(3),
.reveal-section.is-visible .process-grid article:nth-child(3),
.reveal-section.is-visible .faq-list details:nth-child(3) {
  transition-delay: 0.08s;
}

.reveal-section.is-visible .article-card:nth-child(n + 4),
.reveal-section.is-visible .feature-row article:nth-child(n + 4),
.reveal-section.is-visible .process-grid article:nth-child(n + 4),
.reveal-section.is-visible .faq-list details:nth-child(n + 4) {
  transition-delay: 0.12s;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
    padding: 0 18px;
  }

  .brand {
    font-size: 23px;
  }

  .nav-links {
    display: none;
  }

  .login-link {
    min-height: 46px;
    padding: 0 16px;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

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

  .hero-lead {
    font-size: 20px;
  }

  .search-box {
    min-height: 62px;
    padding: 0 18px;
  }

  .search-box span:last-child {
    font-size: 17px;
  }

  .hero-visual {
    width: min(100%, 440px);
  }

  .topic-grid,
  .safe-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .detail-shell {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(1),
  .process-grid article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .bottom-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .bottom-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 22px;
    margin-right: 22px;
  }

  .footer-links {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    width: 100vw;
    overflow: hidden;
  }

  .brand {
    gap: 8px;
    font-size: 20px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    padding: 36px 16px 58px;
    overflow: hidden;
  }

  .eyebrow {
    font-size: 14px;
  }

  .hero h1 {
    max-width: calc(100vw - 32px);
    font-size: 31px;
    word-break: break-all;
  }

  .hero-lead {
    max-width: calc(100vw - 32px);
    margin-top: 18px;
    font-size: 18px;
    word-break: break-all;
  }

  .search-box,
  .hot-tags,
  .hero-actions,
  .trust-line,
  .hero-visual {
    max-width: calc(100vw - 32px);
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 18px;
  }

  .hot-tags a {
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    font-size: 15px;
  }

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

  .definition-section,
  .cards-section,
  .article-section,
  .platform-section,
  .safe-section,
  .process-section,
  .faq-section {
    padding: 58px 16px;
  }

  .definition-box h2,
  .section-title h2,
  .bottom-cta h2,
  .platform-copy h2 {
    font-size: 30px;
  }

  .definition-box p:not(.eyebrow),
  .section-title p:not(.eyebrow),
  .bottom-cta p:not(.eyebrow),
  .platform-copy p {
    font-size: 17px;
  }

  .article-head h2 {
    display: block;
    font-size: 30px;
  }

  .article-head p {
    display: block;
    margin: 8px 0 0;
    font-size: 15px;
  }

  .card-art {
    height: 180px;
  }

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

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

  .same-column-grid {
    grid-template-columns: 1fr;
  }

  .same-column-card .card-art {
    height: 170px;
  }

  .detail-section {
    padding: 42px 16px;
  }

  .detail-card {
    padding: 24px 18px;
  }

  .detail-card h2 {
    font-size: 26px;
  }

  .detail-card h3 {
    font-size: 19px;
  }

  .detail-card p,
  .detail-card li,
  .detail-callout,
  .detail-card blockquote {
    font-size: 15px;
    line-height: 1.78;
  }

  .detail-hero-art {
    height: 160px;
  }

  .detail-mini-list,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .article-table th,
  .article-table td {
    padding: 12px;
    font-size: 14px;
  }

  .card-body {
    padding: 22px 20px 24px;
  }

  .card-body h3 {
    font-size: 20px;
  }

  .card-body span,
  .feature-row p {
    font-size: 15px;
  }

  .topic-card h3 {
    min-height: 0;
  }

  .safe-grid article,
  .process-grid article {
    padding: 24px;
  }

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

  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .faq-list summary {
    min-height: 76px;
    padding: 0 20px;
    font-size: 18px;
  }

  .faq-list p {
    margin: -2px 20px 22px;
    font-size: 16px;
  }

  .site-footer {
    padding: 38px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Black gold theme v6 */
:root {
  --bg: #0c0a07;
  --paper: #15110c;
  --mint: #211a11;
  --mint-strong: #d7ae5b;
  --mint-deep: #f1d58d;
  --coral: #b97a35;
  --coral-deep: #e4b464;
  --ink: #f7ead3;
  --muted: #b9ad98;
  --line: rgba(214, 174, 92, 0.24);
  --blue-soft: #18130d;
  --rose-soft: #20160d;
  --gold: #d7ae5b;
  --gold-light: #f5dda0;
  --gold-dark: #8b5d22;
  --warm-black: #0c0a07;
  --panel: #15110c;
  --panel-soft: #1c160f;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
}

body {
  color: #f6ead7;
  background:
    linear-gradient(180deg, #0c0a07 0%, #12100c 46%, #0c0a07 100%);
}

::selection {
  color: #160f08;
  background: #e5bd6b;
}

.site-header {
  background: rgba(12, 10, 7, 0.88);
  border-bottom-color: rgba(219, 177, 92, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.brand {
  color: var(--gold-light);
}

.brand span {
  background: linear-gradient(90deg, #f7e4ad 0%, #d0a34e 48%, #fff1c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(229, 189, 105, 0.14);
}

.nav-links {
  color: #d1c2a6;
}

.nav-links a:hover,
.nav-links .nav-strong,
.article-head a,
.same-column-head a,
.sidebar-card a:hover,
.footer-links a,
.article-breadcrumb a,
.detail-kicker,
.detail-meta b,
.article-note b {
  color: var(--gold-light);
}

.nav-links .nav-strong {
  padding: 8px 14px;
  border: 1px solid rgba(229, 189, 105, 0.34);
  border-radius: 8px;
  background: rgba(215, 174, 91, 0.08);
}

.hero {
  color: #f7ead3;
  background:
    linear-gradient(90deg, rgba(215, 174, 91, 0.12) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(215, 174, 91, 0.08) 0 1px, transparent 1px),
    linear-gradient(118deg, #0b0906 0%, #15110c 48%, #25180d 100%);
  background-size: 44px 44px, 44px 44px, auto;
  border-bottom: 1px solid rgba(215, 174, 91, 0.16);
}

.eyebrow {
  color: var(--gold-light);
}

.hero h1,
.article-head h2,
.section-title h2,
.platform-copy h2,
.bottom-cta h2,
.detail-card h2,
.same-column-head h2 {
  color: #f8ead2;
}

.hero h1 {
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
}

.hero-lead,
.definition-box p,
.section-title p:not(.eyebrow),
.platform-copy p,
.bottom-cta p:not(.eyebrow),
.article-head p,
.trust-line,
.card-body span,
.feature-row p,
.safe-grid p,
.process-grid p,
.faq-list p,
.detail-card p,
.detail-card li,
.article-note p,
.sidebar-cta p,
.footer-brand p,
.footer-brand span {
  color: #cbbfa9;
}

.search-box {
  color: #bfb39d;
  background: rgba(17, 13, 9, 0.78);
  border-color: rgba(232, 192, 108, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 196, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.search-icon {
  border-color: var(--gold-light);
}

.search-icon::after {
  background: var(--gold-light);
}

.hot-line {
  color: #a99d87;
}

.hot-line a,
.hot-tags a {
  color: #f1d58d;
  background: rgba(215, 174, 91, 0.1);
  border-color: rgba(215, 174, 91, 0.34);
}

.button-primary {
  color: #150f08;
  background: linear-gradient(135deg, #fff0ba 0%, #d7ae5b 50%, #98672b 100%);
  box-shadow: 0 16px 30px rgba(201, 143, 55, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #fff5ce 0%, #e8be68 52%, #a66d2d 100%);
  box-shadow: 0 18px 34px rgba(220, 166, 74, 0.3);
}

.button-soft,
.login-link {
  color: #f5dda0;
  background: rgba(18, 14, 9, 0.74);
  border-color: rgba(215, 174, 91, 0.35);
}

.button-soft:hover,
.login-link:hover {
  background: rgba(215, 174, 91, 0.12);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.hero-visual {
  background:
    linear-gradient(rgba(215, 174, 91, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 174, 91, 0.16) 1px, transparent 1px),
    linear-gradient(145deg, #100d09 0%, #1b140c 60%, #2a1b0d 100%);
  background-size: 28px 28px, 28px 28px, auto;
  border-color: rgba(229, 189, 105, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 239, 195, 0.08),
    0 26px 58px rgba(0, 0, 0, 0.42);
}

.definition-section,
.article-section,
.process-section {
  background: #0f0c08;
}

.article-section + .article-section {
  background: #100d09;
}

.definition-box,
.topic-card,
.article-card,
.feature-row article,
.safe-grid article,
.process-grid article,
.faq-list details,
.bottom-cta,
.detail-card,
.article-note,
.same-column-card,
.sidebar-card,
.sidebar-cta {
  background:
    linear-gradient(145deg, rgba(255, 238, 190, 0.045), rgba(255, 238, 190, 0) 38%),
    var(--panel);
  border-color: rgba(215, 174, 91, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.article-card {
  background:
    linear-gradient(90deg, rgba(215, 174, 91, 0.08), transparent 34%),
    #15110c;
}

.article-card:hover {
  border-color: rgba(245, 221, 160, 0.58);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(245, 221, 160, 0.12);
}

.card-art,
.topic-art,
.detail-hero-art {
  background:
    radial-gradient(circle at 88% 18%, #f0d28a 0 4px, transparent 5px),
    radial-gradient(circle at 12% 80%, #8d5d25 0 5px, transparent 6px),
    linear-gradient(rgba(215, 174, 91, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 174, 91, 0.13) 1px, transparent 1px),
    linear-gradient(135deg, #14100b, #24180d);
  background-size:
    auto,
    auto,
    27px 27px,
    27px 27px,
    auto;
  border-color: rgba(215, 174, 91, 0.18);
}

.card-body p,
.topic-card p,
.safe-grid span,
.feature-row span {
  color: var(--gold-light);
}

.card-body h3,
.topic-card h3,
.feature-row h3,
.safe-grid h3,
.process-grid h3,
.sidebar-card h3,
.sidebar-cta h3,
.detail-card h3,
.faq-list summary {
  color: #f6ead7;
}

.platform-section,
.safe-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(215, 174, 91, 0.05), transparent 28%),
    #15100a;
}

.platform-copy b,
.definition-box b,
.detail-mini-list b,
.article-table td:first-child {
  color: var(--gold-light);
}

.process-grid,
.article-table {
  border-color: rgba(215, 174, 91, 0.24);
  background: #15110c;
}

.process-grid article {
  border-color: rgba(215, 174, 91, 0.22);
}

.process-grid b {
  color: #161008;
  background: linear-gradient(135deg, #ffe9ad, #d0a34e);
}

.faq-list summary::after {
  color: var(--gold-light);
}

.detail-callout,
.detail-mini-list li {
  color: #f1dfba;
  background: rgba(215, 174, 91, 0.09);
  border-color: rgba(215, 174, 91, 0.26);
}

.detail-card blockquote {
  color: #f8dfaa;
  background: rgba(185, 122, 53, 0.13);
  border-color: rgba(215, 174, 91, 0.34);
  border-left-color: #d7ae5b;
}

.article-table th {
  color: #f7e7bf;
  background: rgba(215, 174, 91, 0.13);
}

.article-table th,
.article-table td,
.sidebar-info-row,
.sidebar-card a,
.same-column-head,
.article-head {
  border-color: rgba(215, 174, 91, 0.2);
}

.article-table td,
.sidebar-info-row b {
  color: #e5d7bd;
}

.sidebar-info-row b:last-child {
  color: var(--gold-light);
}

.site-footer {
  background: #0d0a07;
  border-top-color: rgba(215, 174, 91, 0.2);
}

.footer-links a {
  border-bottom-color: rgba(215, 174, 91, 0.28);
}

@media (max-width: 980px) {
  .card-art,
  .same-column-card .card-art {
    border-color: rgba(215, 174, 91, 0.2);
  }
}

@media (min-width: 981px) {
  .site-header {
    min-height: 76px;
    padding: 0 clamp(36px, 5vw, 96px);
  }

  .brand {
    gap: 10px;
    font-size: 24px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    gap: 28px;
    font-size: 16px;
  }

  .login-link {
    min-height: 44px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.88fr);
    gap: clamp(34px, 6vw, 92px);
    min-height: 610px;
    padding: clamp(42px, 4.8vw, 72px) clamp(36px, 6vw, 116px) clamp(44px, 5vw, 78px);
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: 1.1;
  }

  .hero-lead {
    max-width: 560px;
    margin: 20px 0 26px;
    font-size: 20px;
    line-height: 1.65;
  }

  .search-box {
    max-width: 560px;
    min-height: 58px;
    padding: 0 20px;
    gap: 15px;
  }

  .search-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    border-width: 2.5px;
  }

  .search-icon::after {
    width: 10px;
    height: 2.5px;
    right: -7px;
    bottom: -4px;
  }

  .search-box span:last-child {
    font-size: 16px;
  }

  .hot-tags {
    max-width: 560px;
    gap: 10px;
    margin: 14px 0 28px;
  }

  .hot-tags a {
    min-height: 34px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 14px;
  }

  .button {
    min-height: 54px;
    padding: 0 26px;
    font-size: 17px;
  }

  .trust-line {
    margin-top: 20px;
    font-size: 14px;
  }

  .hero-visual {
    width: min(100%, 500px);
    background-size: 34px 34px;
  }

  .hero-visual img {
    width: min(72%, 340px);
  }

  .definition-section,
  .cards-section,
  .article-section,
  .platform-section,
  .safe-section,
  .process-section,
  .faq-section {
    padding: clamp(52px, 6vw, 88px) clamp(36px, 5vw, 88px);
  }

  .definition-box {
    max-width: 930px;
    padding: clamp(24px, 4vw, 42px);
  }

  .definition-box h2,
  .section-title h2,
  .bottom-cta h2 {
    font-size: clamp(28px, 3.2vw, 38px);
  }

  .definition-box p:not(.eyebrow),
  .section-title p:not(.eyebrow),
  .bottom-cta p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.75;
  }

  .section-title {
    max-width: 1020px;
    margin-bottom: 28px;
  }

  .topic-grid,
  .safe-grid,
  .process-grid,
  .article-grid,
  .feature-row {
    max-width: 1020px;
    gap: 16px;
  }

  .article-head {
    max-width: 1020px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .article-head h2 {
    font-size: 30px;
  }

  .article-head p {
    font-size: 14px;
  }

  .article-head a {
    font-size: 15px;
  }

  .card-art {
    height: 210px;
    background-size:
      auto,
      auto,
      30px 30px,
      30px 30px,
      auto;
  }

  .card-body {
    padding: 22px 20px 24px;
  }

  .card-body p {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .card-body h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .card-body span {
    font-size: 14px;
    line-height: 1.72;
  }

  .platform-copy {
    max-width: 820px;
    margin-bottom: 38px;
  }

  .platform-copy h2 {
    max-width: 560px;
    font-size: clamp(32px, 3.4vw, 46px);
  }

  .platform-copy p {
    font-size: 16px;
    line-height: 1.78;
  }

  .feature-row article {
    padding: 24px 20px;
  }

  .feature-row span {
    font-size: 26px;
  }

  .feature-row h3 {
    margin: 22px 0 10px;
    font-size: 18px;
  }

  .feature-row p {
    font-size: 14px;
  }

  .topic-art {
    height: 134px;
  }

  .topic-card p,
  .topic-card h3,
  .topic-card span {
    margin-left: 20px;
    margin-right: 20px;
  }

  .topic-card p {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .topic-card h3 {
    min-height: 54px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .topic-card span {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .safe-grid article,
  .process-grid article {
    padding: 22px;
  }

  .safe-grid span {
    font-size: 13px;
  }

  .safe-grid h3,
  .process-grid h3 {
    margin: 10px 0 8px;
    font-size: 20px;
  }

  .safe-grid p,
  .process-grid p {
    font-size: 14px;
    line-height: 1.7;
  }

  .process-grid b {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .process-cta {
    margin-top: 34px;
  }

  .faq-list {
    max-width: 680px;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 0 24px;
    font-size: 17px;
  }

  .faq-list summary::after {
    font-size: 22px;
  }

  .faq-list p {
    margin: -4px 24px 22px;
    font-size: 15px;
  }

  .bottom-cta {
    max-width: 900px;
    margin: clamp(54px, 6vw, 88px) auto;
    padding: clamp(28px, 4.8vw, 46px);
  }

  .site-footer {
    padding: 38px clamp(36px, 6vw, 116px);
  }

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

  .footer-brand p {
    margin: 14px 0 10px;
    font-size: 14px;
  }

  .footer-links {
    gap: 12px 42px;
  }
}

/* Visual polish v5 */
:root {
  --bg: #f8fbfa;
  --paper: #ffffff;
  --mint: #eaf8f4;
  --mint-strong: #139b86;
  --mint-deep: #057569;
  --coral: #ff6f45;
  --coral-deep: #ec5730;
  --line: #d8ebe6;
  --shadow: 0 14px 34px rgba(32, 76, 68, 0.09);
}

.site-header {
  min-height: 70px;
  box-shadow: 0 8px 24px rgba(33, 74, 68, 0.04);
}

.brand span {
  background: linear-gradient(90deg, #057569, #16a58f 52%, #ff744f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  min-height: auto;
  align-items: start;
  padding-top: clamp(44px, 4.6vw, 62px);
  padding-bottom: clamp(38px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 54%),
    linear-gradient(118deg, #fbfdfb 0%, #f3fbf8 56%, #fff7f2 100%);
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(38px, 4.15vw, 58px);
}

.hero-lead {
  max-width: 590px;
  margin: 18px 0 22px;
  color: #41535f;
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.72;
}

.search-box {
  min-height: 54px;
  border-width: 1px;
  box-shadow: 0 12px 28px rgba(24, 90, 80, 0.07);
}

.hot-line {
  margin: 14px 0 24px;
}

.hot-line a {
  min-height: 34px;
  padding: 0 14px;
  background: rgba(231, 250, 244, 0.78);
  border-color: #bfebe1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.button {
  min-height: 50px;
  padding: 0 24px;
  box-shadow: none;
}

.button-primary {
  box-shadow: 0 13px 26px rgba(255, 111, 69, 0.22);
}

.button-primary:hover,
.button-soft:hover {
  transform: translateY(-1px);
}

.trust-line {
  margin-top: 16px;
  color: #71808a;
}

.hero-visual {
  width: min(100%, 430px);
  align-self: center;
  background:
    linear-gradient(#cfeee7 1px, transparent 1px),
    linear-gradient(90deg, #cfeee7 1px, transparent 1px),
    linear-gradient(135deg, #effbf7, #fff8f4);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 20px 46px rgba(27, 95, 85, 0.08);
  animation: visualFloat 5.8s ease-in-out infinite;
}

.hero-visual img {
  width: min(69%, 300px);
}

.definition-section {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.definition-box {
  max-width: 1020px;
  padding: clamp(24px, 3.2vw, 34px);
  background:
    linear-gradient(90deg, rgba(19, 155, 134, 0.09), rgba(255, 255, 255, 0.92) 42%),
    #fff;
  box-shadow: 0 14px 34px rgba(34, 80, 72, 0.05);
}

.definition-box p {
  font-size: 16px;
  line-height: 1.82;
}

.article-section {
  padding-top: clamp(48px, 5.2vw, 74px);
  padding-bottom: clamp(48px, 5.2vw, 74px);
}

.article-section + .article-section {
  padding-top: clamp(18px, 2vw, 30px);
}

.article-head {
  max-width: 1080px;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.article-head h2 {
  font-size: clamp(27px, 2.4vw, 32px);
}

.article-head p {
  color: #5d6e79;
}

.article-grid,
.feature-row,
.topic-grid,
.safe-grid,
.process-grid {
  max-width: 1080px;
}

.article-grid {
  gap: 16px;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 0.56fr);
  min-height: 196px;
  border-color: rgba(201, 229, 223, 0.92);
  box-shadow: 0 10px 26px rgba(31, 77, 70, 0.045);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(31, 77, 70, 0.09);
}

.card-art {
  height: 100%;
  min-height: 196px;
  background:
    radial-gradient(circle at 88% 18%, #72c8ba 0 4px, transparent 5px),
    radial-gradient(circle at 12% 80%, #ffb79e 0 5px, transparent 6px),
    linear-gradient(#d9efea 1px, transparent 1px),
    linear-gradient(90deg, #d9efea 1px, transparent 1px),
    linear-gradient(135deg, #eefbf7, #fff9f5);
  background-size:
    auto,
    auto,
    27px 27px,
    27px 27px,
    auto;
  border-right: 1px solid #dcefe9;
}

.card-art::before,
.card-art::after {
  transform: translate(-50%, -50%) scale(0.84);
}

.card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
}

.card-body p {
  margin-bottom: 9px;
  color: #078174;
  font-size: 13px;
}

.card-body h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.38;
}

.card-body span {
  color: #50616d;
  font-size: 14px;
  line-height: 1.72;
}

.platform-section,
.safe-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 42%),
    var(--mint);
}

.platform-copy {
  margin-bottom: 30px;
}

.feature-row article,
.safe-grid article,
.process-grid article,
.sidebar-card,
.sidebar-cta,
.article-note {
  box-shadow: 0 10px 26px rgba(32, 78, 70, 0.045);
}

.feature-row article {
  padding: 22px 20px;
}

.detail-section {
  padding-top: clamp(34px, 4vw, 58px);
  background: linear-gradient(180deg, #f8fcfa 0%, #f2faf7 100%);
}

.detail-shell {
  grid-template-columns: minmax(0, 1fr) 260px;
  max-width: 1080px;
  gap: 22px;
}

.detail-card {
  padding: clamp(26px, 3.4vw, 38px);
  box-shadow: 0 16px 38px rgba(33, 78, 70, 0.055);
}

.detail-card h2 {
  font-size: clamp(30px, 2.7vw, 38px);
}

.detail-card h3 {
  margin-top: 22px;
  font-size: 21px;
}

.detail-card p,
.detail-card li {
  font-size: 16px;
  line-height: 1.88;
}

.detail-hero-art {
  height: 172px;
  margin-top: 20px;
}

.detail-hero-art::before,
.detail-hero-art::after {
  transform: translate(-50%, -50%) rotate(-18deg) scale(0.88);
}

.detail-hero-art::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(0.88);
}

.detail-callout,
.detail-card blockquote {
  font-size: 16px;
}

.detail-mini-list {
  gap: 10px;
}

.detail-mini-list li {
  padding: 13px 15px;
  background: #f6fcfa;
}

.same-column-grid {
  gap: 14px;
}

.same-column-card {
  grid-template-columns: minmax(132px, 0.42fr) minmax(0, 0.58fr);
  min-height: 150px;
}

.same-column-card .card-art {
  height: 100%;
  min-height: 150px;
}

.same-column-card .card-body {
  padding: 18px 18px 19px;
}

.same-column-card .card-body h3 {
  font-size: 18px;
}

.sidebar-card,
.sidebar-cta {
  padding: 19px;
}

.sidebar-card h3,
.sidebar-cta h3 {
  font-size: 18px;
}

.reveal-section {
  transform: translateY(14px);
  transition:
    opacity 0.34s ease,
    filter 0.34s ease,
    transform 0.34s ease;
}

@keyframes visualFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    animation: none;
  }

  .reveal-section,
  .reveal-section .article-card,
  .reveal-section .feature-row article,
  .reveal-section .process-grid article,
  .reveal-section .faq-list details {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .article-card,
  .same-column-card {
    grid-template-columns: 1fr;
  }

  .card-art,
  .same-column-card .card-art {
    height: 170px;
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid #dcefe9;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 32px;
  }

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

  .hero-lead {
    font-size: 16px;
  }

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

  .hot-line span {
    grid-column: 1 / -1;
  }

  .hot-line a {
    justify-content: center;
    padding: 0 10px;
    font-size: 14px;
  }
}

/* Final black gold override v7 */
:root {
  --bg: #0b0906;
  --paper: #15110c;
  --mint: #21180e;
  --mint-strong: #d7ae5b;
  --mint-deep: #f4d88f;
  --coral: #b67a34;
  --coral-deep: #e7bc6d;
  --ink: #f7ead3;
  --muted: #c3b59d;
  --line: rgba(215, 174, 91, 0.24);
  --blue-soft: #16110b;
  --rose-soft: #21160c;
  --gold: #d7ae5b;
  --gold-light: #f5dda0;
  --gold-dark: #8b5d22;
  --panel: #15110c;
  --panel-soft: #1c160f;
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
}

html,
body,
main {
  background: #0b0906;
}

body {
  color: #f7ead3;
}

.site-header {
  background: rgba(11, 9, 6, 0.94);
  border-bottom-color: rgba(215, 174, 91, 0.24);
}

.brand span,
.footer-brand .brand span {
  background: linear-gradient(90deg, #fff0bd 0%, #d6ab55 48%, #fff7d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  color: #dfd0b1;
}

.nav-links a:hover,
.nav-links .nav-strong,
.article-head a,
.same-column-head a,
.sidebar-card a:hover,
.footer-links a,
.article-breadcrumb a,
.detail-kicker,
.detail-meta b,
.article-note b,
.card-body p,
.topic-card p,
.safe-grid span,
.feature-row span {
  color: #f5dda0;
}

.nav-links .nav-strong {
  background: rgba(215, 174, 91, 0.09);
  border: 1px solid rgba(215, 174, 91, 0.36);
}

.hero,
.detail-section,
.definition-section,
.cards-section,
.article-section,
.platform-section,
.safe-section,
.process-section,
.faq-section {
  background:
    linear-gradient(90deg, rgba(215, 174, 91, 0.08) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(215, 174, 91, 0.055) 0 1px, transparent 1px),
    linear-gradient(118deg, #0b0906 0%, #15110c 50%, #25180d 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.hero {
  border-bottom: 1px solid rgba(215, 174, 91, 0.22);
}

.hero h1,
.article-head h2,
.section-title h2,
.platform-copy h2,
.bottom-cta h2,
.detail-card h2,
.same-column-head h2,
.card-body h3,
.topic-card h3,
.feature-row h3,
.safe-grid h3,
.process-grid h3,
.sidebar-card h3,
.sidebar-cta h3,
.detail-card h3,
.faq-list summary {
  color: #f8ead2;
}

.hero h1 {
  background: linear-gradient(90deg, #fff2c4 0%, #d8ad58 54%, #8c612b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.eyebrow,
.platform-copy b,
.definition-box b,
.detail-mini-list b,
.article-table td:first-child {
  color: #f4d88f;
}

.hero-lead,
.definition-box p,
.section-title p:not(.eyebrow),
.platform-copy p,
.bottom-cta p:not(.eyebrow),
.article-head p,
.trust-line,
.card-body span,
.feature-row p,
.safe-grid p,
.process-grid p,
.faq-list p,
.detail-card p,
.detail-card li,
.article-note p,
.sidebar-cta p,
.footer-brand p,
.footer-brand span,
.hot-line {
  color: #c8baa2;
}

.search-box,
.button-soft,
.login-link {
  color: #dac9aa;
  background: rgba(18, 14, 9, 0.82);
  border-color: rgba(232, 192, 108, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 196, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.search-icon {
  border-color: #f5dda0;
}

.search-icon::after {
  background: #f5dda0;
}

.hot-line a,
.hot-tags a {
  color: #f5dda0;
  background: rgba(215, 174, 91, 0.1);
  border-color: rgba(215, 174, 91, 0.34);
}

.button-primary {
  color: #150f08;
  background: linear-gradient(135deg, #fff0ba 0%, #d7ae5b 52%, #98672b 100%);
  box-shadow: 0 16px 30px rgba(201, 143, 55, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #fff5ce 0%, #e8be68 52%, #a66d2d 100%);
}

.hero-visual,
.card-art,
.topic-art,
.detail-hero-art {
  background:
    radial-gradient(circle at 88% 18%, #f0d28a 0 4px, transparent 5px),
    radial-gradient(circle at 12% 80%, #8d5d25 0 5px, transparent 6px),
    linear-gradient(rgba(215, 174, 91, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 174, 91, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, #14100b, #24180d);
  background-size:
    auto,
    auto,
    28px 28px,
    28px 28px,
    auto;
  border-color: rgba(215, 174, 91, 0.32);
}

.definition-box,
.topic-card,
.article-card,
.feature-row article,
.safe-grid article,
.process-grid article,
.faq-list details,
.bottom-cta,
.detail-card,
.article-note,
.same-column-card,
.sidebar-card,
.sidebar-cta {
  background:
    linear-gradient(145deg, rgba(255, 238, 190, 0.055), rgba(255, 238, 190, 0) 38%),
    #15110c;
  border-color: rgba(215, 174, 91, 0.26);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.35);
}

.article-card {
  background:
    linear-gradient(90deg, rgba(215, 174, 91, 0.08), transparent 34%),
    #15110c;
}

.article-card:hover {
  border-color: rgba(245, 221, 160, 0.58);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(245, 221, 160, 0.12);
}

.detail-callout,
.detail-mini-list li {
  color: #f1dfba;
  background: rgba(215, 174, 91, 0.1);
  border-color: rgba(215, 174, 91, 0.28);
}

.detail-card blockquote {
  color: #f8dfaa;
  background: rgba(185, 122, 53, 0.14);
  border-color: rgba(215, 174, 91, 0.34);
  border-left-color: #d7ae5b;
}

.process-grid,
.article-table {
  background: #15110c;
  border-color: rgba(215, 174, 91, 0.24);
}

.process-grid article,
.article-table th,
.article-table td,
.sidebar-info-row,
.sidebar-card a,
.same-column-head,
.article-head {
  border-color: rgba(215, 174, 91, 0.22);
}

.process-grid b,
.article-table th {
  color: #161008;
  background: linear-gradient(135deg, #ffe9ad, #d0a34e);
}

.article-table td,
.sidebar-info-row b {
  color: #e5d7bd;
}

.sidebar-info-row b:last-child {
  color: #f5dda0;
}

.sidebar-card a {
  color: #bcae96;
}

.article-back-button {
  color: #f5dda0;
  background:
    linear-gradient(145deg, rgba(255, 238, 190, 0.065), rgba(255, 238, 190, 0) 48%),
    rgba(18, 14, 9, 0.78);
  border-color: rgba(215, 174, 91, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 196, 0.06),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.article-back-button:hover {
  color: #fff2c4;
  background:
    linear-gradient(145deg, rgba(255, 238, 190, 0.1), rgba(255, 238, 190, 0) 48%),
    rgba(25, 18, 10, 0.9);
  border-color: rgba(245, 221, 160, 0.58);
}

.faq-list summary::after {
  color: #f5dda0;
}

.site-footer {
  background: #0b0906;
  border-top-color: rgba(215, 174, 91, 0.22);
}

.footer-links a {
  border-bottom-color: rgba(215, 174, 91, 0.28);
}

@media (max-width: 980px) {
  .card-art,
  .same-column-card .card-art {
    border-color: rgba(215, 174, 91, 0.24);
  }
}

/* Final text warmth pass */
.definition-box,
.definition-box p,
.definition-link,
.detail-meta,
.detail-meta span,
.article-breadcrumb,
.article-breadcrumb span,
.sidebar-info-row,
.sidebar-info-row span {
  color: #d5c6ad;
}

.definition-box strong,
.definition-link a,
.article-breadcrumb span:last-child,
.detail-meta b,
.sidebar-info-row b {
  color: #f5dda0;
}

.definition-box {
  background:
    linear-gradient(145deg, rgba(255, 238, 190, 0.065), rgba(255, 238, 190, 0) 44%),
    #15110c;
}

.definition-box p:not(.eyebrow) {
  color: #d5c6ad;
}

/* Original black-gold icon system */
.card-art::before,
.card-art::after,
.detail-hero-art::before,
.detail-hero-art::after {
  border: 0;
  background: none;
  clip-path: none;
  color: #f5dda0;
}

.card-art::before {
  width: 76px;
  height: 76px;
  border: 3px solid rgba(245, 221, 160, 0.86);
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(215, 174, 91, 0.18),
    0 0 26px rgba(215, 174, 91, 0.22);
  transform: translate(-50%, -50%) rotate(45deg);
}

.card-art::after {
  width: 112px;
  height: 112px;
  border: 2px solid rgba(166, 108, 45, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(215, 174, 91, 0.08);
}

.art-equals::after {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 0 24%, #f5dda0 25% 75%, transparent 76%) 50% 42% / 86px 4px no-repeat,
    linear-gradient(90deg, transparent 0 24%, #d7ae5b 25% 75%, transparent 76%) 50% 58% / 86px 4px no-repeat,
    radial-gradient(circle at 22% 50%, #a66d2d 0 6px, transparent 7px),
    radial-gradient(circle at 78% 50%, #f5dda0 0 5px, transparent 6px);
}

.art-compare::after {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(#f5dda0, #f5dda0) 50% 20% / 4px 68px no-repeat,
    radial-gradient(circle at 28% 50%, transparent 0 18px, #d7ae5b 19px 22px, transparent 23px),
    radial-gradient(circle at 72% 50%, transparent 0 18px, #a66d2d 19px 22px, transparent 23px);
}

.art-cycle::after {
  border-color: rgba(245, 221, 160, 0.82);
  border-left-color: rgba(166, 108, 45, 0.42);
  transform: translate(-50%, -50%) rotate(-24deg);
}

.art-cycle::before {
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.art-rise::after {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(#d7ae5b, #d7ae5b) 24% 72% / 18px 4px no-repeat,
    linear-gradient(#d7ae5b, #d7ae5b) 42% 56% / 18px 4px no-repeat,
    linear-gradient(#f5dda0, #f5dda0) 60% 40% / 18px 4px no-repeat,
    linear-gradient(135deg, transparent 44%, #f5dda0 45% 51%, transparent 52%) 26% 34% / 72px 54px no-repeat,
    radial-gradient(circle at 77% 24%, #f5dda0 0 5px, transparent 6px);
}

.art-heart::after {
  content: "";
  width: 62px;
  height: 54px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 30% 30%, transparent 0 17px, #f5dda0 18px 21px, transparent 22px),
    radial-gradient(circle at 70% 30%, transparent 0 17px, #f5dda0 18px 21px, transparent 22px),
    linear-gradient(45deg, transparent 41%, #d7ae5b 42% 48%, transparent 49%) 50% 72% / 50px 44px no-repeat,
    linear-gradient(-45deg, transparent 41%, #d7ae5b 42% 48%, transparent 49%) 50% 72% / 50px 44px no-repeat;
}

.art-question::after {
  content: "";
  width: 70px;
  height: 70px;
  border: 3px solid #f5dda0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 70%, #f5dda0 0 4px, transparent 5px),
    linear-gradient(135deg, transparent 38%, #f5dda0 39% 45%, transparent 46%) 48% 22% / 30px 28px no-repeat,
    linear-gradient(#f5dda0, #f5dda0) 53% 54% / 4px 16px no-repeat;
  transform: translate(-50%, -50%);
}

.art-list::after {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(#f5dda0, #f5dda0) 42% 28% / 44px 4px no-repeat,
    linear-gradient(#d7ae5b, #d7ae5b) 42% 50% / 44px 4px no-repeat,
    linear-gradient(#a66d2d, #a66d2d) 42% 72% / 44px 4px no-repeat,
    radial-gradient(circle at 24% 28%, #f5dda0 0 5px, transparent 6px),
    radial-gradient(circle at 24% 50%, #d7ae5b 0 5px, transparent 6px),
    radial-gradient(circle at 24% 72%, #a66d2d 0 5px, transparent 6px);
}

.art-target::after {
  border: 3px solid rgba(245, 221, 160, 0.86);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #f5dda0 0 5px, transparent 6px),
    linear-gradient(#d7ae5b, #d7ae5b) 50% 12% / 3px 22px no-repeat,
    linear-gradient(#d7ae5b, #d7ae5b) 50% 88% / 3px 22px no-repeat,
    linear-gradient(90deg, #d7ae5b, #d7ae5b) 12% 50% / 22px 3px no-repeat,
    linear-gradient(90deg, #d7ae5b, #d7ae5b) 88% 50% / 22px 3px no-repeat;
}

.art-glass::after {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(#f5dda0, #f5dda0) 50% 22% / 52px 4px no-repeat,
    linear-gradient(#d7ae5b, #d7ae5b) 50% 62% / 4px 52px no-repeat,
    radial-gradient(ellipse at 50% 38%, transparent 0 28px, #f5dda0 29px 32px, transparent 33px);
}

.art-boundary::after {
  width: 92px;
  height: 92px;
  border: 3px solid rgba(245, 221, 160, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(#d7ae5b, #d7ae5b) 50% 20% / 4px 54px no-repeat,
    linear-gradient(90deg, #a66d2d, #a66d2d) 50% 76% / 54px 4px no-repeat;
}

.art-person::after {
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 26%, transparent 0 17px, #f5dda0 18px 21px, transparent 22px),
    radial-gradient(ellipse at 50% 76%, transparent 0 35px, #d7ae5b 36px 39px, transparent 40px),
    radial-gradient(circle at 72% 54%, #a66d2d 0 6px, transparent 7px);
}

.art-face::after {
  border: 3px solid rgba(245, 221, 160, 0.86);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 40%, #f5dda0 0 4px, transparent 5px),
    radial-gradient(circle at 62% 40%, #f5dda0 0 4px, transparent 5px),
    radial-gradient(ellipse at 50% 65%, transparent 0 18px, #d7ae5b 19px 22px, transparent 23px);
}

.art-shield::after {
  width: 82px;
  height: 96px;
  border: 3px solid rgba(245, 221, 160, 0.9);
  border-radius: 40% 40% 18px 18px;
  background:
    linear-gradient(135deg, transparent 42%, #d7ae5b 43% 50%, transparent 51%) 45% 50% / 38px 38px no-repeat,
    linear-gradient(45deg, transparent 45%, #d7ae5b 46% 53%, transparent 54%) 58% 50% / 32px 38px no-repeat;
}

.art-anchor::after {
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 16%, transparent 0 13px, #f5dda0 14px 17px, transparent 18px),
    linear-gradient(#f5dda0, #f5dda0) 50% 32% / 4px 58px no-repeat,
    linear-gradient(90deg, #d7ae5b, #d7ae5b) 50% 50% / 54px 4px no-repeat,
    radial-gradient(ellipse at 50% 76%, transparent 0 35px, #a66d2d 36px 39px, transparent 40px);
}

.detail-hero-art::before {
  width: 86px;
  height: 112px;
  border: 4px solid rgba(245, 221, 160, 0.92);
  border-bottom-width: 8px;
  border-radius: 46px 46px 14px 14px;
  box-shadow: 0 0 32px rgba(215, 174, 91, 0.18);
  transform: translate(-50%, -50%);
}

.detail-hero-art::after {
  width: 132px;
  height: 132px;
  border: 2px solid rgba(166, 108, 45, 0.68);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 20%, #f5dda0 0 5px, transparent 6px),
    linear-gradient(#d7ae5b, #d7ae5b) 50% 35% / 3px 52px no-repeat,
    linear-gradient(90deg, #d7ae5b, #d7ae5b) 50% 62% / 52px 3px no-repeat;
  transform: translate(-50%, -50%);
}

/* First screen focus v11 */
@media (min-width: 981px) {
  .hero {
    align-items: center;
    min-height: calc(100svh - 76px);
    padding-top: clamp(72px, 7vh, 108px);
    padding-bottom: clamp(82px, 8vh, 124px);
  }

  .hero-copy {
    transform: translateY(-1vh);
  }

  .hero-visual {
    width: min(100%, 560px);
    transform: translateY(-0.5vh);
  }

  .hero-visual img {
    width: min(76%, 372px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: calc(100svh - 76px);
  }
}
