:root {
  --ink: #07111f;
  --ink-2: #0b1320;
  --panel: #101826;
  --panel-2: #162033;
  --gold: #c9a45c;
  --gold-2: #d6b36a;
  --paper: #f7f5f0;
  --white: #ffffff;
  --text: #e8e8e8;
  --muted: #a8b0bd;
  --dark-text: #152033;
  --soft-text: #657086;
  --line: rgba(201,164,92,.26);
  --shadow: 0 24px 80px rgba(0,0,0,.26);
  --radius: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans SC", "HarmonyOS Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { color: var(--gold); letter-spacing: .22em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.section { padding: 112px 0; position: relative; }
.section.light { background: var(--paper); color: var(--dark-text); }
.section.white { background: #fff; color: var(--dark-text); }
.section.dark { background: linear-gradient(180deg, var(--ink), #091626); }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
h1, h2, h3 { font-family: "Noto Serif SC", "Playfair Display", serif; letter-spacing: .02em; line-height: 1.22; }
h1 { font-size: clamp(42px, 6.2vw, 76px); color: #fff; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(21px, 2.2vw, 30px); }
.lead { color: var(--muted); font-size: 18px; max-width: 760px; }
.light .lead, .white .lead { color: var(--soft-text); }
.gold { color: var(--gold-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: 4px; border: 1px solid var(--line);
  background: rgba(255,255,255,.04); color: #fff; cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn.primary { background: linear-gradient(135deg, var(--gold-2), #a98038); color: #07111f; font-weight: 700; border: 0; }
.btn.dark { color: var(--dark-text); background: transparent; }
.btn:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 12px 38px rgba(201,164,92,.22); }
.site-header {
  position: fixed; inset: 0 0 auto 0; height: 76px; z-index: 50;
  background: rgba(7,17,31,.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08); transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(7,17,31,.94); box-shadow: 0 8px 32px rgba(0,0,0,.22); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand {
  display: block; width: 238px; height: 54px; min-width: 220px;
  background: url("../../images/slide1_img.png") left center / contain no-repeat;
}
.brand-mark, .brand > span { display: none; }
.brand strong { display: block; color: #fff; font-size: 25px; letter-spacing: .2em; font-family: "Noto Serif SC", serif; }
.brand span span { color: rgba(214,179,106,.8); font-family: "Playfair Display", serif; font-size: 11px; letter-spacing: .24em; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; color: rgba(255,255,255,.76); font-size: 14px; }
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; width: 42px; height: 42px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: #fff; border-radius: 4px; }
.hero {
  min-height: 100vh; padding: 132px 0 80px; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(201,164,92,.16), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0a1728 48%, #060b13 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .24;
  background-image:
    linear-gradient(rgba(214,179,106,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,179,106,.06) 1px, transparent 1px);
  background-size: 92px 92px; animation: gridDrift 18s linear infinite;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .28;
  background:
    radial-gradient(circle at 20% 28%, rgba(214,179,106,.18) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 62%, rgba(214,179,106,.16) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 32%, rgba(255,255,255,.14) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 300px 300px;
  animation: particleFloat 16s ease-in-out infinite alternate;
}
.mouse-light {
  position: fixed; left: 0; top: 0; width: 420px; height: 420px; border-radius: 50%;
  pointer-events: none; z-index: 1; opacity: .22; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(214,179,106,.38), transparent 62%);
  transform: translate3d(-50%, -50%, 0);
}
.hero-lines {
  position: absolute; inset: 0; z-index: 1; opacity: .55; pointer-events: none;
  background:
    linear-gradient(112deg, transparent 8%, rgba(214,179,106,.16) 9%, transparent 10%),
    linear-gradient(28deg, transparent 44%, rgba(214,179,106,.12) 45%, transparent 46%);
}
.hero-lines::before {
  content: ""; position: absolute; left: -20%; top: 54%; width: 140%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,179,106,.95), transparent);
  filter: blur(.2px); animation: lightSweep 5.5s ease-in-out infinite;
}
@keyframes lightSweep { 0%,100% { transform: translateX(-24%) rotate(-4deg); opacity: .18; } 45% { transform: translateX(22%) rotate(-4deg); opacity: .86; } }
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 92px 92px; } }
@keyframes particleFloat { from { transform: translate3d(0,0,0); } to { transform: translate3d(20px,-18px,0); } }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.08fr); gap: 72px; align-items: center; }
.hero .reveal { opacity: 1; transform: none; }
.hero-copy { display: grid; gap: 28px; }
.hero-founder { position: relative; min-height: 620px; display: grid; align-items: end; }
.hero-founder::before {
  content: ""; position: absolute; inset: 8% -8% 0 -18%;
  background: radial-gradient(circle at 48% 48%, rgba(214,179,106,.22), transparent 52%);
  filter: blur(12px); opacity: .9;
}
.hero-founder::after {
  content: ""; position: absolute; left: -24%; right: -8%; bottom: 0; height: 42%;
  background: linear-gradient(180deg, transparent, #07111f 72%);
}
.hero-founder img {
  position: relative; z-index: 1; width: 100%; max-height: 600px; object-fit: contain; object-position: center bottom;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.42)); mix-blend-mode: screen; opacity: .9;
}
.founder-signature {
  position: absolute; z-index: 3; left: 0; bottom: 22px; width: min(420px, 92%);
  padding: 20px 22px 22px 20px; border-left: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(7,17,31,.9), rgba(16,24,38,.72));
  border-radius: 8px; box-shadow: 0 20px 70px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}
.founder-signature h3 { color: #fff; font-size: 34px; margin: 4px 0 8px; }
.founder-signature p:last-child { color: rgba(255,255,255,.86); font-size: 15px; }
.hero h1 span { display: inline-block; animation: titleIn .75s ease both; }
.hero h1 span:nth-child(2) { animation-delay: .12s; }
@keyframes titleIn { from { opacity: 1; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.trust-tags { display: flex; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.72); font-size: 13px; }
.trust-tags span { padding: 7px 12px; border: 1px solid rgba(214,179,106,.22); background: rgba(255,255,255,.04); border-radius: 999px; }
.glass-card {
  position: relative; border: 1px solid rgba(214,179,106,.28); background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transform-style: preserve-3d;
}
.mini-stat { padding: 14px; background: rgba(7,17,31,.7); border: 1px solid rgba(214,179,106,.2); border-radius: 4px; }
.mini-stat strong { color: var(--gold-2); font-size: 24px; display: block; line-height: 1; }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%); color: rgba(255,255,255,.38); font-size: 11px; letter-spacing: .28em; }
.scroll-hint::before { content: ""; display: block; width: 1px; height: 42px; margin: 0 auto 10px; background: linear-gradient(var(--gold), transparent); animation: downLine 1.8s ease-in-out infinite; }
@keyframes downLine { 50% { transform: translateY(12px); opacity: .45; } }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card {
  border: 1px solid rgba(201,164,92,.18); border-radius: var(--radius);
  background: rgba(255,255,255,.045); padding: 28px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.light .card, .white .card { background: #fff; border-color: rgba(17,24,39,.08); box-shadow: 0 10px 30px rgba(17,24,39,.05); }
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 18px 50px rgba(7,17,31,.14); }
.lux-card { position: relative; overflow: hidden; }
.lux-card::after {
  content: ""; position: absolute; inset: -1px; opacity: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(214,179,106,.28), transparent);
  transform: translateX(-80%); transition: opacity .25s ease;
}
.lux-card:hover::after { opacity: 1; animation: cardSheen 1.4s ease; }
@keyframes cardSheen { to { transform: translateX(80%); } }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,164,92,.13); color: var(--gold); margin-bottom: 18px; }
.card p, .card li { color: var(--muted); font-size: 15px; }
.light .card p, .white .card p, .light .card li, .white .card li { color: var(--soft-text); }
.card ul { padding-left: 18px; margin-top: 14px; }
.media-card { overflow: hidden; padding: 0; }
.media-card img { width: 100%; height: 245px; object-fit: contain; background: #07111f; transition: transform .35s ease; }
.media-card:hover img { transform: scale(1.04); }
.media-card .body { padding: 24px; }
.marquee { overflow: hidden; border-block: 1px solid rgba(201,164,92,.16); padding: 18px 0; }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { min-width: 150px; padding: 12px 18px; border: 1px solid rgba(201,164,92,.22); border-radius: 4px; text-align: center; color: var(--gold-2); background: rgba(255,255,255,.035); }
@keyframes marquee { to { transform: translateX(-50%); } }
.stats { background: #fff; color: var(--dark-text); padding: 54px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-number { font-family: "Playfair Display", serif; font-size: 52px; font-weight: 700; color: var(--dark-text); line-height: 1; }
.timeline { position: relative; display: grid; gap: 20px; }
.timeline::before { content: ""; position: absolute; left: 13px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding-left: 44px; }
.timeline-item::before { content: ""; position: absolute; left: 6px; top: 8px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(201,164,92,.12); }
.process-board {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative;
}
.process-step {
  min-height: 210px; padding: 24px 20px; border: 1px solid rgba(214,179,106,.24);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border-radius: var(--radius); position: relative;
}
.process-step strong { color: var(--gold-2); font-family: "Playfair Display", serif; font-size: 34px; display: block; }
.process-step::before { content: ""; position: absolute; left: 20px; right: 20px; top: 72px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.team-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { min-height: 260px; }
.case-board { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.case-feature { grid-column: span 6; min-height: 330px; display: grid; align-content: end; color: #fff; background: linear-gradient(180deg, rgba(7,17,31,.14), rgba(7,17,31,.94)), var(--case-img) center top/contain no-repeat, #091626; }
.case-small { grid-column: span 3; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.case-meta span { font-size: 12px; padding: 4px 9px; border-radius: 999px; background: rgba(201,164,92,.13); color: var(--gold-2); border: 1px solid rgba(201,164,92,.22); }
.world-map {
  position: relative; min-height: 680px; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(214,179,106,.24);
  background:
    linear-gradient(180deg, rgba(7,17,31,.12), rgba(7,17,31,.22)),
    url("../../images/world-map-luxury.png") center / cover no-repeat,
    linear-gradient(135deg, #07111f, #101826);
}
.world-map svg { display: none; }
.world-map .continent { fill: rgba(214,179,106,.18); stroke: rgba(214,179,106,.45); stroke-width: 1.2; }
.world-map .route { fill: none; stroke: rgba(214,179,106,.26); stroke-width: 1; stroke-dasharray: 6 8; }
.map-region {
  position: absolute; transform: translate(-50%, -50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 10px; border: 0; background: transparent;
  color: #fff; cursor: pointer; white-space: nowrap;
}
.map-dot {
  width: 18px; height: 18px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 12px rgba(214,179,106,.12), 0 0 38px rgba(214,179,106,.62);
  animation: pulseDot 2.2s ease-in-out infinite;
}
.map-label { padding: 5px 10px; border: 1px solid rgba(214,179,106,.28); border-radius: 999px; background: rgba(7,17,31,.74); font-size: 13px; }
@keyframes pulseDot { 50% { transform: scale(1.22); box-shadow: 0 0 0 20px rgba(214,179,106,.04), 0 0 48px rgba(214,179,106,.8); } }
.map-panel {
  position: absolute; left: 26px; top: 26px; width: min(360px, calc(100% - 52px));
  background: rgba(7,17,31,.86); border: 1px solid rgba(214,179,106,.28);
  border-radius: 8px; padding: 22px; color: #fff; box-shadow: var(--shadow);
}
.map-popover {
  position: absolute; right: 26px; left: auto; bottom: 26px; width: min(520px, calc(100% - 52px));
  background: rgba(255,255,255,.96); color: var(--dark-text); border-radius: 8px; padding: 22px;
  box-shadow: var(--shadow); border: 1px solid rgba(201,164,92,.3);
}
.map-popover.left { left: 26px; right: auto; }
.map-popover a { color: #7a5720; font-weight: 700; }
.faq-list { display: grid; gap: 16px; }
.faq-item { padding: 24px; border-bottom: 1px solid rgba(17,24,39,.1); background: rgba(255,255,255,.65); }
.founder-profile { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
.founder-photo { position: sticky; top: 102px; }
.founder-photo img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); object-fit: contain; background: #07111f; }
.founder-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0; }
.founder-kpis div { padding: 16px; border: 1px solid rgba(201,164,92,.22); background: rgba(255,255,255,.06); border-radius: 8px; }
.founder-kpis strong { display: block; color: var(--gold-2); font-size: 24px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn { border: 1px solid rgba(201,164,92,.28); background: transparent; color: inherit; border-radius: 999px; padding: 8px 15px; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--ink); }
.searchbar { display: grid; grid-template-columns: 1fr 180px; gap: 12px; margin-bottom: 26px; }
.searchbar input, .searchbar select, .form input, .form textarea, .form select {
  width: 100%; border: 1px solid rgba(201,164,92,.28); border-radius: 4px; padding: 13px 14px;
  background: rgba(255,255,255,.06); color: inherit; outline: none;
}
.light .searchbar input, .white .searchbar input, .light .searchbar select, .white .searchbar select,
.light .form input, .white .form input, .light .form textarea, .white .form textarea, .light .form select, .white .form select {
  background: #fff; color: var(--dark-text);
}
.form { display: grid; gap: 14px; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.floating-consult {
  position: fixed; right: 20px; bottom: 24px; z-index: 45; display: grid; gap: 10px;
}
.float-panel {
  display: none; width: 210px; padding: 16px; background: rgba(7,17,31,.94); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); color: #fff;
}
.floating-consult:hover .float-panel { display: block; }
.qr { width: 112px; height: 112px; object-fit: contain; background: #fff; padding: 6px; margin-top: 10px; }
.mobile-bar { display: none; }
.footer { background: #050b14; padding: 64px 0 28px; color: rgba(255,255,255,.58); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 36px; }
.footer h3, .footer h4 { color: #fff; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,.34); }
.page-hero { padding: 150px 0 88px; background: linear-gradient(135deg, #07111f, #101826); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 22%, rgba(201,164,92,.18), transparent 34%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { color: rgba(255,255,255,.52); font-size: 13px; margin-bottom: 16px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.progress { position: fixed; left: 0; top: 0; width: 0; height: 3px; background: var(--gold); z-index: 60; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: grid; position: fixed; top: 76px; left: 16px; right: 16px; padding: 22px;
    background: rgba(7,17,31,.97); border: 1px solid var(--line); border-radius: var(--radius);
  }
  .hero-grid, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .hero-founder { min-height: 520px; order: 2; }
  .hero-copy { order: 1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-board, .team-strip, .case-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-feature, .case-small { grid-column: span 1; }
  .founder-profile { grid-template-columns: 1fr; }
  .founder-photo { position: static; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .hero { padding-top: 112px; }
  .hero-grid, .grid-3, .grid-4, .stat-grid, .searchbar, .form .two { grid-template-columns: 1fr; }
  .process-board, .team-strip, .case-board, .founder-kpis { grid-template-columns: 1fr; }
  .hero-founder { min-height: 420px; }
  .founder-signature { position: relative; bottom: auto; margin-top: -74px; }
  .brand { width: 184px; min-width: 184px; }
  .brand strong { font-size: 21px; }
  .floating-consult { display: none; }
  .mobile-bar {
    position: fixed; z-index: 48; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr;
    background: rgba(7,17,31,.96); border-top: 1px solid var(--line);
  }
  .mobile-bar a { padding: 14px; text-align: center; color: #fff; }
  .mobile-bar a:last-child { background: linear-gradient(135deg, var(--gold-2), #a98038); color: var(--ink); font-weight: 700; }
  .footer { padding-bottom: 76px; }
}
