/* =========================================================
   ZESHI INVESTMENT — Official Website
   Design system: Deep navy + Gold
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0b1428;
  --ink-2:      #111c34;
  --ink-3:      #1a2238;
  --gold:       #c9a25a;
  --gold-2:     #d4af37;
  --gold-3:     #e8c987;
  --gold-soft:  rgba(201, 162, 90, 0.12);
  --paper:      #ffffff;
  --paper-2:    #f7f8fb;
  --paper-3:    #eef0f5;
  --line:       #e3e6ee;
  --text:       #1a2238;
  --text-2:     #5a6678;
  --text-3:     #8a93a6;
  --shadow-sm:  0 2px 8px rgba(11,20,40,0.06);
  --shadow-md:  0 12px 32px rgba(11,20,40,0.10);
  --shadow-lg:  0 24px 60px rgba(11,20,40,0.18);
  --radius:     6px;
  --radius-lg:  14px;
  --max:        1180px;
  --pad:        clamp(20px, 4vw, 40px);
  --serif:      "Source Han Serif SC","Noto Serif SC","Songti SC","SimSun",Georgia,"Times New Roman",serif;
  --sans:       -apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Hiragino Sans GB","Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
h1,h2,h3,h4,h5 { font-family: var(--serif); font-weight: 700; letter-spacing: 0.01em; margin: 0; color: var(--ink); }
p { margin: 0; }
ul,ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Container ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,20,40,0);
  backdrop-filter: blur(0);
  transition: background .3s, backdrop-filter .3s, box-shadow .3s, padding .3s;
}
.nav.is-scrolled {
  background: rgba(11,20,40,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(201,162,90,0.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-zh { font-family: var(--serif); font-size: 16px; font-weight: 700; letter-spacing: 2px; }
.brand-en { font-size: 10px; letter-spacing: 3px; color: var(--gold-3); margin-top: 2px; }

.nav-links {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius);
  position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--radius);
  margin-left: 6px;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,162,90,0.35); }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links a { padding: 8px 8px; font-size: 13px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 12px; right: 12px;
    flex-direction: column; align-items: stretch;
    background: rgba(11,20,40,0.97);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(201,162,90,0.25);
    border-radius: var(--radius-lg);
    padding: 10px;
    gap: 2px;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .nav-links.is-open { max-height: 80vh; padding: 14px; overflow: auto; }
  .nav-links a { padding: 12px 14px; font-size: 15px; }
  .nav-cta { margin: 8px 14px 0; text-align: center; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/image1.jpeg') center/cover no-repeat;
  z-index: -2;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,20,40,0.55) 0%, rgba(11,20,40,0.78) 55%, rgba(11,20,40,0.92) 100%),
    radial-gradient(80% 60% at 70% 40%, rgba(201,162,90,0.18) 0%, transparent 70%);
  z-index: -1;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 140px var(--pad) 100px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold-3);
  padding: 6px 14px;
  border: 1px solid rgba(201,162,90,0.4);
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0,0,0,0.4);
}
.hero-line { display: block; }
.hero-line-accent {
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 50%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 6px;
  color: var(--gold-3);
  margin-bottom: 28px;
}
.hero-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.95;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin-bottom: 36px;
}
.hero-desc strong { color: #fff; font-weight: 600; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(201,162,90,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(201,162,90,0.5); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-block { width: 100%; padding: 16px; font-size: 15px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 820px;
  padding: 28px 0;
  border-top: 1px solid rgba(201,162,90,0.25);
  border-bottom: 1px solid rgba(201,162,90,0.15);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--gold-3);
  line-height: 1;
}
.stat-unit { font-size: 0.5em; color: rgba(255,255,255,0.7); margin-left: 4px; font-weight: 500; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; letter-spacing: 1px; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 10px; letter-spacing: 3px;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-title { letter-spacing: 4px; }
}

/* =========================================================
   SECTION BASICS
   ========================================================= */
.section { padding: 100px 0; position: relative; }
@media (max-width: 760px) { .section { padding: 70px 0; } }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head.light { color: #fff; }
.section-head.light .section-title { color: #fff; }
.section-head.light .section-en { color: var(--gold-3); }
.section-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--gold);
  padding: 4px 16px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 8px;
  margin-bottom: 10px;
}
.section-en {
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--text-2);
  margin-bottom: 16px;
}
.section-lead {
  text-align: center;
  max-width: 780px;
  margin: -20px auto 60px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.9;
}
.section-lead.light-lead { color: rgba(255,255,255,0.85); }
.section-lead strong { color: var(--ink); font-weight: 700; }
.section-head.light ~ .section-lead strong { color: var(--gold-3); }

.sub-title {
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 4px;
  margin: 40px 0 24px;
  position: relative;
  padding-left: 18px;
}
.sub-title.center { text-align: center; padding-left: 0; }
.sub-title.center::before { left: 50%; transform: translateX(-50%); }
.sub-title::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 24px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  border-radius: 2px;
}
.sub-title.light-sub { color: #fff; padding-left: 0; text-align: center; }
.sub-title.light-sub::before { display: none; }
.sub-title.light-sub::after {
  content: ""; display: block; width: 40px; height: 2px;
  background: var(--gold); margin: 10px auto 0;
}
.sub-desc { color: var(--text-2); margin-bottom: 24px; }

/* =========================================================
   ABOUT
   ========================================================= */
.section-about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-main .lead {
  font-size: 17px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 32px;
}
.about-main .lead .hl {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.about-highlight {
  display: flex; align-items: center; gap: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
}
.about-hl-icon { flex-shrink: 0; }
.about-hl-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.about-hl-desc { color: var(--text-2); font-size: 14px; }

.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
}
.sector {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.sector:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.sector-icon { color: var(--gold); margin-bottom: 12px; }
.sector-title { font-size: 20px; letter-spacing: 2px; margin-bottom: 6px; }
.sector-desc { font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.sector-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 100px;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all .2s;
}
.chip:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--ink); }

.about-side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px; }
.about-media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media figcaption {
  padding: 12px 16px; font-size: 12px; letter-spacing: 2px; color: var(--text-2);
  background: var(--paper-2); border-top: 1px solid var(--line);
}
.about-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}
.about-card-head { font-family: var(--serif); font-size: 18px; letter-spacing: 3px; color: var(--gold-3); margin-bottom: 12px; }
.about-card-body { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.85); }
.about-card-body strong { color: var(--gold-3); }

@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .sectors { grid-template-columns: 1fr; }
}

/* =========================================================
   VALUES
   ========================================================= */
.section-values {
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink-3) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-values::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 20% 30%, rgba(201,162,90,0.12) 0%, transparent 70%),
              radial-gradient(50% 50% at 85% 80%, rgba(201,162,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,90,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(6px);
  transition: transform .3s, border-color .3s, background .3s;
}
.value-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(201,162,90,0.08); }
.value-label {
  display: inline-block;
  font-size: 12px; letter-spacing: 4px;
  color: var(--gold-3);
  border: 1px solid rgba(201,162,90,0.5);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.value-title {
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
}
.value-title-sm { font-size: 19px; letter-spacing: 3px; }
.value-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.9; }
@media (max-width: 920px) { .values-grid { grid-template-columns: 1fr; } }

/* =========================================================
   LAYOUT
   ========================================================= */
.section-layout { background: var(--paper-2); }
.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.layout-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.layout-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.layout-card-feature {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff;
  border-color: rgba(201,162,90,0.3);
}
.layout-card-feature h3 { color: #fff; }
.layout-card-feature p,
.layout-card-feature li { color: rgba(255,255,255,0.85); }
.layout-step {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}
.layout-card h3 { font-size: 22px; letter-spacing: 3px; margin-bottom: 14px; }
.layout-card p { color: var(--text-2); font-size: 14px; line-height: 1.9; margin-bottom: 18px; }
.layout-card p strong { color: var(--ink); }
.layout-card-feature p strong { color: var(--gold-3); }
.layout-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.layout-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 920px) { .layout-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CRITERIA
   ========================================================= */
.section-criteria { background: var(--paper); }
.standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.standard {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.standard:hover { transform: translateY(-4px); border-color: var(--gold); }
.standard-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.standard h4 { font-size: 20px; letter-spacing: 2px; margin-bottom: 12px; }
.standard p { color: var(--text-2); font-size: 14px; line-height: 1.85; }

.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.industry {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: #fff;
  overflow: hidden;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  transition: transform .3s, box-shadow .3s;
}
.industry::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, rgba(11,20,40,0.6) 0%, rgba(11,20,40,0.85) 100%);
}
.industry::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  filter: saturate(1.1);
  transition: transform .5s;
}
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.industry:hover::after { transform: scale(1.05); }
.industry-tech::after { background-image: url('assets/image39.jpeg'); }
.industry-agri::after { background-image: url('assets/image45.jpeg'); }
.industry-consumer::after { background-image: url('assets/image25.jpeg'); }
.industry-badge {
  display: inline-block; align-self: flex-start;
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold-3);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.industry h4 { font-size: 24px; letter-spacing: 4px; color: #fff; margin-bottom: 6px; }
.industry p { color: rgba(255,255,255,0.85); font-size: 13px; letter-spacing: 2px; }

.rounds-wrap { margin-top: 20px; overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.rounds { width: 100%; border-collapse: collapse; min-width: 720px; }
.rounds thead {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff;
}
.rounds th {
  text-align: left; padding: 18px 22px;
  font-size: 14px; letter-spacing: 3px; font-weight: 600;
}
.rounds td { padding: 22px; border-top: 1px solid var(--line); vertical-align: top; font-size: 14px; line-height: 1.85; color: var(--text); }
.rounds tbody tr { transition: background .2s; }
.rounds tbody tr:hover { background: var(--paper-2); }
.round-tag {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--ink);
  background: var(--gold-soft);
  padding: 6px 14px;
  border-radius: var(--radius);
}

@media (max-width: 920px) {
  .standards, .industries { grid-template-columns: 1fr; }
}

/* =========================================================
   METHODS
   ========================================================= */
.section-methods {
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}
.methods-grid { display: grid; gap: 22px; }
.method {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.method:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.method-feature {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff;
  border-color: rgba(201,162,90,0.4);
}
.method-feature .method-sub,
.method-feature .method-rows div { color: rgba(255,255,255,0.85); }
.method-feature .method-rows strong { color: var(--gold-3); }
.method-head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 14px; }
.method-tag {
  display: inline-block; font-size: 11px; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 100px;
}
.tag-mix { background: rgba(212,175,55,0.15); color: var(--gold-2); border: 1px solid var(--gold); }
.tag-pure { background: rgba(76,175,80,0.12); color: #6fcf97; border: 1px solid rgba(76,175,80,0.5); }
.method-feature .tag-pure { background: rgba(111,207,151,0.18); }
.method-head h3 { font-size: 22px; letter-spacing: 3px; }
.method-sub { color: var(--text-2); font-size: 15px; line-height: 1.9; margin-bottom: 22px; }
.method-rows { display: grid; gap: 14px; }
.method-rows div {
  font-size: 14px; line-height: 1.85; color: var(--text);
  padding: 14px 18px;
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.method-feature .method-rows div { background: rgba(255,255,255,0.06); border-left-color: var(--gold); }
.method-rows strong { color: var(--ink); }
.method-quote {
  margin-top: 22px;
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--gold);
  font-style: italic;
}
.method-feature .method-quote { color: var(--gold-3); }
@media (max-width: 760px) { .method { padding: 28px 22px; } }

/* =========================================================
   PROCESS
   ========================================================= */
.section-process { background: var(--paper); }
.process-note {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 15px;
  color: var(--text-2);
  background: var(--gold-soft);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 16px 22px;
}
.process-note-badge {
  display: inline-block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--ink);
  background: var(--gold);
  padding: 3px 12px;
  border-radius: 100px;
  margin-right: 10px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  counter-reset: tl;
  position: relative;
}
.tl-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.tl-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tl-item-feature {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff;
  border-color: var(--gold);
}
.tl-item-feature h4,
.tl-item-feature p { color: #fff; }
.tl-item-feature p { color: rgba(255,255,255,0.85); }
.tl-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}
.tl-item h4 { font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.tl-item p { font-size: 12px; color: var(--text-2); line-height: 1.7; }
@media (max-width: 1080px) {
  .timeline { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   EMPOWER
   ========================================================= */
.section-empower {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  overflow: hidden;
}
.decoration-curve {
  position: absolute;
  top: 80px; right: -200px;
  width: 800px; height: 600px;
  background: url('assets/image45.jpeg') center/cover no-repeat;
  opacity: 0.10;
  border-radius: 50%;
  filter: blur(0.5px);
  pointer-events: none;
}
.funds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.fund {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,90,0.35);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .3s, background .3s;
}
.fund:hover { transform: translateY(-4px); background: rgba(201,162,90,0.08); }
.fund-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px;
  color: var(--gold-3);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.fund h4 { font-size: 22px; letter-spacing: 4px; color: #fff; margin-bottom: 18px; }
.fund dl { display: grid; grid-template-columns: 80px 1fr; gap: 10px 16px; font-size: 14px; }
.fund dt { color: var(--gold-3); font-weight: 600; }
.fund dd { color: rgba(255,255,255,0.9); margin: 0; }

.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.stage {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.stage-sprint { border-color: var(--gold); }
.stage-head { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.stage-badge {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px;
  color: var(--gold-3);
  border: 1px solid var(--gold);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.stage-head h4 { font-size: 22px; letter-spacing: 4px; color: #fff; margin-bottom: 6px; }
.stage-range { font-size: 13px; color: var(--gold-3); letter-spacing: 1px; }
.stage-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.stage-list li:last-child { border-bottom: 0; }
.stage-list li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 10px; height: 10px;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.stage-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
@media (max-width: 1080px) {
  .stages { grid-template-columns: 1fr; }
  .funds { grid-template-columns: 1fr; }
}

/* =========================================================
   PARTNERS
   ========================================================= */
.section-partners { background: var(--paper-2); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.partner {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.partner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.partner img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s; }
.partner:hover img { transform: scale(1.05); }
.partner figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,20,40,0.85) 100%);
  color: #fff;
}
.partner-name { font-family: var(--serif); font-size: 22px; letter-spacing: 4px; margin-bottom: 4px; }
.partner-role { font-size: 12px; color: var(--gold-3); letter-spacing: 2px; }

.partners-ipo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.partners-ipo img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.partners-ipo figcaption {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(11,20,40,0.3) 0%, rgba(11,20,40,0.7) 100%);
}
.partner-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 2.6vw, 28px);
  letter-spacing: 4px;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
@media (max-width: 720px) { .partners-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TEAM
   ========================================================= */
.section-team { background: var(--paper); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.member {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.member-photo {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-2) 0%, var(--paper-3) 100%);
  display: flex; align-items: center; justify-content: center;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-photo-mark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
}
.member-mark {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.member-info { padding: 24px 24px 28px; }
.member-name { font-size: 24px; letter-spacing: 4px; margin-bottom: 4px; }
.member-role {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.member-bio { font-size: 13px; color: var(--text-2); line-height: 1.9; }
.member-bio strong { color: var(--ink); font-weight: 600; }

.team-banner {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.team-banner img { width: 100%; aspect-ratio: 21/7; object-fit: cover; }
.team-banner figcaption {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, transparent 0%, rgba(11,20,40,0.7) 100%);
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 30px);
  letter-spacing: 8px;
  color: var(--gold-3);
}
@media (max-width: 920px) { .team-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT
   ========================================================= */
.section-contact {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
}
.contact-lead strong { color: var(--gold); font-weight: 700; }
.contact-points { margin-top: 24px; }
.contact-points li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px dashed var(--line);
}
.contact-points li:last-child { border-bottom: 0; }
.contact-points li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 14px; height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.contact-card-title {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-2); }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.contact-form .btn { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; font-size: 11px; color: var(--text-3); text-align: center; margin-top: 4px; }
@media (max-width: 920px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 70px var(--pad) 50px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--gold-3);
  margin-bottom: 14px;
}
.footer-desc { font-size: 13px; line-height: 1.9; }
.footer-col h5 {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--gold-3); padding-left: 6px; }
.footer-col p { font-size: 13px; padding: 4px 0; }
.footer-friend { margin-top: 10px; color: var(--gold-3); font-size: 12px; line-height: 1.9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
@media (max-width: 920px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}