:root {
  --bg: #f7f2e8;
  --paper: #fffdf8;
  --ink: #1d1d1f;
  --muted: #67635c;
  --line: #d9cfbf;
  --soft: #eee5d4;
  --green: #1f6b5c;
  --green-dark: #164f44;
  --gold: #b98524;
  --gold-dark: #73501a;
  --blue: #dfecea;
  --shadow: 0 18px 54px rgba(56, 42, 21, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; background: var(--bg); color: var(--ink); }
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: 16px;
  min-height: 68px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 207, 191, 0.9);
  background: rgba(247, 242, 232, 0.94);
  backdrop-filter: blur(16px);
}

.site-header-large {
  min-height: 88px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d6b66e;
  border-radius: 8px;
  background: #efe1bd;
  color: #4c3512;
  font-weight: 850;
}
.site-header-large .brand-mark { width: 46px; height: 46px; border-radius: 10px; font-size: 17px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; }
.site-header-large .brand strong { font-size: 18px; }
.brand small { color: var(--muted); font-size: 12px; white-space: nowrap; }
.site-header-large .brand small { font-size: 13px; }

.nav { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; }
.site-header-large .nav { gap: 34px; font-size: 17px; }
.nav a { padding: 8px 0; }
.nav a:hover, .nav a.active, .footer a:hover { color: var(--ink); }
.nav a.active { font-weight: 800; }

.menu-button {
  display: none;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
  font-weight: 800;
  padding: 0 12px;
}

.header-cta, .button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  padding: 0 16px;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
  padding: 0 18px;
}
.login-link:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.language-select {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 0 10px 0 14px;
}
.language-select select {
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.header-cta, .button.primary { border-color: var(--green); background: var(--green); color: #fff; }
.button.secondary { background: rgba(255, 253, 248, 0.65); color: var(--ink); }
.header-cta:hover, .button.primary:hover { border-color: var(--green-dark); background: var(--green-dark); }
.button.secondary:hover, .menu-button:hover { border-color: #b9ad99; background: #f0e6d7; }
.header-cta:active, .button:active, .menu-button:active { transform: translateY(1px); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 88px) clamp(16px, 4vw, 56px) 48px;
}
.page-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(44px, 8vw, 96px) clamp(16px, 4vw, 56px) clamp(30px, 5vw, 54px);
}
.center-hero { text-align: center; }
.center-hero h1, .center-hero p { margin-left: auto; margin-right: auto; }
.eyebrow { margin: 0 0 10px; color: var(--gold-dark); font-size: 12px; font-weight: 850; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 800px; margin-bottom: 18px; font-size: clamp(38px, 5.6vw, 72px); line-height: 1.05; letter-spacing: 0; }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); }
.hero-text, .page-hero p, .section-head p, .link-card span, .feature-grid p, .usecase-list p, .product-card p, .product-card li, .timeline-card li, .flow-card li, .footer span, details p {
  color: var(--muted);
  line-height: 1.72;
}
.hero-text { max-width: 650px; margin-bottom: 24px; font-size: clamp(16px, 2vw, 20px); }
.hero-actions, .final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

.trust-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  padding: 7px 11px;
}

.hero-visual { position: relative; min-height: 540px; }
.phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 330px);
  margin: 0 auto;
  border: 8px solid #1d1d1f;
  border-radius: 34px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  padding: 18px 14px 16px;
}
.phone-speaker { width: 54px; height: 5px; margin: 0 auto 16px; border-radius: 999px; background: #303033; }
.phone-head, .gold-order, .card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.phone-head span, .gold-order span, .card-head span { color: var(--muted); font-size: 12px; }
.balance-card { display: grid; gap: 5px; border-radius: 14px; background: var(--green); color: #fff; margin: 16px 0 12px; padding: 16px; }
.balance-card span, .balance-card small { color: rgba(255, 255, 255, 0.74); }
.balance-card strong { font-size: 32px; }
.quick-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.quick-row span { display: grid; min-height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: #fff9ee; font-size: 13px; font-weight: 800; }
.progress-card, .gold-order { border: 1px solid var(--line); border-radius: 12px; background: #fff9ee; padding: 14px; }
.progress-card em { display: inline-flex; border-radius: 999px; background: var(--blue); color: #30665f; font-size: 12px; font-style: normal; font-weight: 800; padding: 5px 8px; }
.progress-card ol { display: grid; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.progress-card li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--line); }
.progress-card li.done::before, .progress-card li.active::before { background: var(--green); }
.gold-order { margin-top: 12px; }
.gold-order strong { color: var(--gold-dark); }
.gold-bars { position: absolute; right: 0; bottom: 40px; z-index: 1; width: 230px; }
.gold-bars span { display: block; height: 48px; border: 1px solid #8b641f; border-radius: 8px 8px 5px 5px; background: linear-gradient(145deg, #fff2aa 0%, #d69d2f 42%, #8b641f 100%); box-shadow: 0 14px 24px rgba(72, 49, 16, 0.18); transform: skewX(-14deg); }
.gold-bars span + span { margin-top: -10px; margin-left: 22px; }

.section, .final-cta, .footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) clamp(16px, 4vw, 56px);
}
.compact-section { padding-top: 28px; }
.tinted { max-width: none; background: #fff8ea; }
.tinted > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.narrow { max-width: 900px; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head h2, .final-cta h2 { margin-bottom: 12px; font-size: clamp(28px, 4vw, 46px); line-height: 1.15; letter-spacing: 0; }

.overview-grid, .feature-grid, .product-grid, .mall-grid, .company-grid, .apy-grid, .vault-grid {
  display: grid;
  gap: 16px;
}
.overview-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid.two, .product-grid, .mall-grid, .vault-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.company-grid, .apy-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.link-card, .feature-grid article, .product-card, .timeline-card, .flow-card, .company-grid article, .apy-grid article, .usecase-list article, details, .vault-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(56, 42, 21, 0.07);
  padding: 22px;
}
.link-card, .company-grid article, .apy-grid article { display: grid; gap: 8px; }
.link-card:hover { border-color: #b9ad99; background: #fff8ea; }
.link-card strong, .feature-grid strong, .product-card strong, .timeline-card strong, .flow-card strong, .company-grid strong, .apy-grid strong { font-size: 20px; line-height: 1.25; }
.feature-grid small, .company-grid span, .apy-grid span { color: var(--muted); line-height: 1.6; }

.vault-grid { min-height: 420px; }
.vault-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 390px;
  padding: clamp(28px, 5vw, 56px);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.vault-card:hover {
  border-color: #b9ad99;
  background: #fff8ea;
  transform: translateY(-2px);
}
.vault-card span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}
.vault-card h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}
.vault-card p {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.72;
}
.vault-card strong {
  width: max-content;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  padding: 13px 18px;
}
.level-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.level-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 800;
  padding: 10px 13px;
}

.usecase-list { display: grid; gap: 16px; }
.usecase-list article { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; align-items: start; }
.usecase-list article > span {
  display: grid;
  width: 42px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--soft);
  color: var(--gold-dark);
  font-weight: 900;
}
.usecase-list h2 { margin-bottom: 10px; font-size: clamp(24px, 3vw, 34px); line-height: 1.18; }

.product-card.featured { background: #fff8ea; border-color: #d4aa56; }
.product-card ul, .timeline-card ol, .flow-card ol { display: grid; gap: 8px; margin: 14px 0 18px; padding-left: 20px; }
.spec-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.spec-grid span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff9ee;
  color: var(--gold-dark);
  font-size: 18px;
  font-weight: 900;
}
.process-list { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); list-style: none; overflow: hidden; }
.process-list li { display: grid; min-height: 82px; place-items: center; border-right: 1px solid var(--line); color: var(--muted); font-weight: 850; padding: 14px; text-align: center; }
.process-list li:last-child { border-right: 0; }

.faq-list { display: grid; gap: 10px; }
details { padding: 0 18px; }
summary { cursor: pointer; font-weight: 850; padding: 18px 0; }
details p { margin-bottom: 18px; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid var(--line); }
.final-cta > div:first-child { max-width: 680px; }
.footer { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; border-top: 1px solid var(--line); padding-top: 34px; padding-bottom: 34px; }
.footer div { display: grid; gap: 8px; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .overview-grid, .feature-grid, .company-grid, .apy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid, .mall-grid, .vault-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list li:nth-child(2n) { border-right: 0; }
  .process-list li { border-bottom: 1px solid var(--line); }
  .process-list li:nth-last-child(-n + 2) { border-bottom: 0; }
}

@media (max-width: 760px) {
  .site-header { align-items: center; flex-wrap: wrap; padding: 10px 14px; }
  .site-header-large { min-height: 68px; }
  .site-header-large .brand-mark { width: 36px; height: 36px; border-radius: 8px; font-size: 15px; }
  .site-header-large .brand strong { font-size: 15px; }
  .brand small, .header-cta { display: none; }
  .header-tools {
    order: 4;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 8px;
  }
  .site-header.menu-open .header-tools {
    display: grid;
  }
  .login-link,
  .language-select {
    width: 100%;
  }
  .language-select {
    justify-content: space-between;
  }
  .menu-button { display: inline-flex; align-items: center; }
  .nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a { border-radius: 8px; padding: 10px 12px; background: rgba(255, 253, 248, 0.65); }
  h1 { font-size: 36px; }
  .hero, .page-hero, .section, .final-cta, .footer { padding-left: 14px; padding-right: 14px; }
  .hero { padding-top: 28px; }
  .hero-actions, .final-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .button { width: 100%; }
  .hero-visual { min-height: auto; padding-bottom: 44px; }
  .phone-frame { width: min(100%, 320px); }
  .gold-bars { right: 2px; bottom: 0; width: 142px; }
  .gold-bars span { height: 34px; }
  .overview-grid, .feature-grid, .feature-grid.two, .company-grid, .apy-grid, .vault-grid, .footer { grid-template-columns: 1fr; }
  .vault-card { min-height: 280px; }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .usecase-list article { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:nth-child(2n), .process-list li:nth-last-child(-n + 2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li:last-child { border-bottom: 0; }
  .final-cta { align-items: stretch; flex-direction: column; }
}

@media (max-width: 390px) {
  h1 { font-size: 34px; }
  .balance-card strong { font-size: 28px; }
  .brand strong { font-size: 14px; }
}

/* Sun Gold Exchange homepage */
.sun-site {
  --sun-bg: #f5f1e8;
  --sun-paper: #fffdf8;
  --sun-dark: #151616;
  --sun-ink: #202020;
  --sun-muted: #69645b;
  --sun-line: #d9cdb8;
  --sun-gold: #c49438;
  --sun-gold-dark: #76511a;
  --sun-green: #205f55;
  background: var(--sun-bg);
}

.sun-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) auto minmax(260px, 0.8fr);
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 18px clamp(18px, 4vw, 68px);
  border-bottom: 1px solid rgba(217, 205, 184, 0.9);
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(18px);
}

.sun-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sun-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #d9b76a;
  border-radius: 12px;
  background: #efe0b8;
  color: #4a3411;
  font-size: 18px;
  font-weight: 900;
}

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

.sun-brand strong {
  font-size: 20px;
  line-height: 1.15;
}

.sun-brand small {
  color: var(--sun-muted);
  font-size: 13px;
}

.sun-nav,
.sun-auth {
  display: flex;
  align-items: center;
  gap: 26px;
}

.sun-nav {
  justify-self: center;
  color: var(--sun-muted);
  font-size: 16px;
  font-weight: 800;
}

.sun-nav a:hover,
.sun-nav a.active,
.sun-auth a:hover {
  color: var(--sun-ink);
}

.sun-auth {
  justify-self: end;
  gap: 10px;
  font-weight: 800;
}

.sun-auth a,
.login-trigger,
.dropdown-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sun-line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--sun-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 0 15px;
}

.login-trigger {
  border-color: var(--sun-green);
  background: var(--sun-green);
  color: #fff;
}

.sun-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  display: grid;
  min-width: 180px;
  border: 1px solid var(--sun-line);
  border-radius: 12px;
  background: var(--sun-paper);
  box-shadow: 0 18px 44px rgba(21, 22, 22, 0.16);
  overflow: hidden;
  padding: 6px;
}

.dropdown-menu[hidden] {
  display: none;
}

.dropdown-menu a,
.dropdown-menu button {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--sun-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 10px;
  text-align: left;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
  background: #f1e8d8;
}

.dropdown-menu .register-option {
  color: var(--sun-gold-dark);
}

.sun-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(620px, 820px);
  justify-content: center;
  gap: clamp(42px, 5.4vw, 92px);
  align-items: center;
  max-width: none;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  margin: 0;
  padding: clamp(70px, 7.4vw, 112px) clamp(18px, 4.4vw, 72px) clamp(58px, 6vw, 86px);
  background:
    radial-gradient(circle at 78% 32%, rgba(188, 126, 23, 0.26), transparent 27%),
    radial-gradient(circle at 51% 52%, rgba(230, 196, 118, 0.24), transparent 34%),
    radial-gradient(circle at 12% 22%, rgba(255, 253, 248, 0.9), transparent 32%),
    linear-gradient(120deg, #fffdf8 0%, #f3ead8 44%, #e1cda7 100%);
}

.sun-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(52, 45, 35, 0.12) 24.35%, transparent 25%),
    linear-gradient(0deg, transparent 0 31%, rgba(52, 45, 35, 0.08) 31.25%, transparent 32%);
  background-size: 220px 220px;
  mask-image: radial-gradient(circle at 66% 46%, black, transparent 72%);
}

.sun-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: -4%;
  width: min(68vw, 980px);
  height: min(68vw, 980px);
  border: 1px solid rgba(128, 86, 18, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 230, 0.46), rgba(188, 126, 23, 0.11) 42%, transparent 72%);
}

.sun-hero-copy,
.hero-product-visual {
  position: relative;
  z-index: 1;
}

.sun-hero-copy {
  transform: translateY(8px);
}

.sun-eyebrow {
  margin: 0 0 12px;
  color: var(--sun-gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sun-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #171717;
  font-size: clamp(72px, 7.2vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
  word-break: keep-all;
  text-shadow: 0 18px 52px rgba(54, 42, 21, 0.12);
}

.hero-subline {
  margin-bottom: 16px;
  color: #775019;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 900;
  line-height: 1.18;
}

.hero-note {
  max-width: 500px;
  margin: 0 0 34px;
  color: #4f4b44;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.82;
}

.hero-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.hero-proof-tags li {
  border: 1px solid rgba(118, 81, 26, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--sun-muted);
  font-size: 14px;
  font-weight: 850;
  padding: 9px 13px;
}

.sun-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 36px 0 20px;
  align-items: center;
}

.sun-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sun-line);
  border-radius: 12px;
  font-weight: 900;
  padding: 0 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.sun-button.primary {
  border-color: #8f641d;
  background: linear-gradient(145deg, #e9ca72 0%, #b78023 58%, #855817 100%);
  color: #fffdf8;
  box-shadow: 0 18px 40px rgba(154, 107, 32, 0.28);
  min-width: 172px;
}

.sun-button.secondary {
  border-color: rgba(118, 81, 26, 0.28);
  background: rgba(255, 253, 248, 0.5);
  color: var(--sun-ink);
  backdrop-filter: blur(12px);
}

.sun-hero .sun-button {
  min-height: 62px;
  border-radius: 16px;
  padding: 0 32px;
}

.sun-hero .sun-button.primary {
  min-width: 172px;
}

.sun-hero .sun-button.secondary {
  min-width: 156px;
}

.sun-button:hover {
  transform: translateY(-2px);
}

.sun-button.primary:hover {
  border-color: #735017;
  box-shadow: 0 18px 42px rgba(154, 107, 32, 0.38);
}

.sun-button.secondary:hover {
  border-color: rgba(168, 121, 36, 0.5);
  background: #fffdf8;
  box-shadow: 0 12px 26px rgba(57, 45, 27, 0.08);
}

.sun-button:active {
  transform: translateY(0);
}

.sun-button[aria-disabled="true"],
.sun-button.disabled {
  pointer-events: none;
  opacity: 0.52;
  box-shadow: none;
}

.trade-visual {
  min-width: 0;
}

.hero-product-visual {
  align-self: stretch;
  perspective: 1600px;
}

.platform-hub-visual {
  position: relative;
  min-height: clamp(620px, 50vw, 820px);
  transform-style: preserve-3d;
}

.platform-hub-visual::before {
  content: "";
  position: absolute;
  inset: 8% 1% 7% 8%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 62% 36%, rgba(236, 198, 112, 0.42), transparent 32%),
    linear-gradient(140deg, rgba(255, 253, 248, 0.74), rgba(232, 214, 177, 0.48));
  border: 1px solid rgba(128, 86, 18, 0.18);
  box-shadow: 0 44px 130px rgba(80, 55, 20, 0.18);
  transform: rotateY(-9deg) rotateX(3deg);
}

.platform-hub-visual::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 2%;
  bottom: 7%;
  height: 56px;
  border-radius: 50%;
  background: rgba(75, 56, 24, 0.2);
  filter: blur(28px);
}

.hub-frame {
  position: absolute;
  inset: 5% 0 7% 7%;
  overflow: hidden;
  border: 1px solid rgba(128, 86, 18, 0.2);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 243, 198, 0.9), rgba(205, 150, 47, 0.18) 36%, transparent 62%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.52), rgba(255, 255, 255, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 30px 92px rgba(80, 55, 20, 0.13);
  transform: rotateY(-10deg) rotateX(3deg);
  transform-style: preserve-3d;
  backdrop-filter: blur(18px);
}

.hub-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(128, 86, 18, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(90deg, transparent 24%, rgba(52, 45, 35, 0.08) 25%, transparent 26%),
    linear-gradient(0deg, transparent 24%, rgba(52, 45, 35, 0.06) 25%, transparent 26%);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 46%, black, transparent 74%);
}

.hub-frame::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 12%;
  width: 86px;
  height: 74%;
  border: 1px solid rgba(128, 86, 18, 0.12);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 241, 196, 0.42), rgba(174, 120, 31, 0.1));
}

.hub-arc {
  position: absolute;
  border: 1px solid rgba(128, 86, 18, 0.2);
  border-radius: 50%;
  transform: scaleX(1.16) rotate(-8deg);
}

.arc-one {
  inset: 8%;
}

.arc-two {
  inset: 23%;
  opacity: 0.72;
  transform: scaleX(1.26) rotate(12deg);
}

.hub-axis {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128, 86, 18, 0.5), transparent);
}

.axis-one {
  left: 8%;
  right: 10%;
  top: 32%;
  transform: rotate(-12deg);
}

.axis-two {
  left: 12%;
  right: 8%;
  top: 61%;
  transform: rotate(9deg);
}

.hub-core {
  position: absolute;
  left: 50%;
  top: 41%;
  z-index: 5;
  display: grid;
  width: clamp(152px, 12vw, 208px);
  height: clamp(152px, 12vw, 208px);
  place-items: center;
  border: 1px solid rgba(128, 86, 18, 0.24);
  border-radius: 42px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 28px 80px rgba(80, 55, 20, 0.22);
  transform: translate(-50%, -50%) rotate(-7deg);
  backdrop-filter: blur(18px);
}

.hub-core strong {
  color: #704a13;
  font-size: clamp(48px, 4.3vw, 76px);
  line-height: 1;
}

.hub-core span {
  color: rgba(112, 74, 19, 0.64);
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 900;
}

.hub-bullion {
  position: absolute;
  left: 7%;
  right: 8%;
  bottom: 14%;
  z-index: 4;
  height: 36%;
}

.hub-bullion i {
  position: absolute;
  height: clamp(82px, 6.4vw, 116px);
  border: 1px solid rgba(255, 238, 176, 0.64);
  border-radius: 22px 22px 14px 14px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 28%),
    linear-gradient(145deg, #fff0a2 0%, #dba23c 46%, #745018 100%);
  box-shadow: 0 24px 54px rgba(80, 55, 20, 0.26);
  transform: rotate(-8deg) skewX(-14deg);
}

.hub-bullion i:first-child {
  left: 7%;
  right: 0;
  top: 8%;
}

.hub-bullion i:last-child {
  left: 0;
  right: 8%;
  top: 45%;
}

.hub-document {
  position: absolute;
  right: 7%;
  top: 9%;
  z-index: 4;
  width: clamp(140px, 11vw, 196px);
  height: clamp(178px, 14vw, 250px);
  border: 1px solid rgba(128, 86, 18, 0.18);
  border-radius: 20px;
  background:
    repeating-linear-gradient(0deg, rgba(52, 45, 35, 0.12) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(246, 235, 211, 0.72));
  box-shadow: 0 18px 48px rgba(80, 55, 20, 0.12);
  transform: rotate(7deg);
}

.hub-node {
  position: absolute;
  z-index: 5;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 253, 248, 0.94);
  border-radius: 50%;
  background: #c8912b;
  box-shadow: 0 0 0 9px rgba(196, 148, 56, 0.13);
}

.node-a { left: 15%; top: 27%; }
.node-b { right: 14%; top: 35%; }
.node-c { right: 21%; bottom: 23%; }

.hub-shadow {
  position: absolute;
  left: 8%;
  right: 7%;
  bottom: 5%;
  height: 30px;
  border-radius: 50%;
  background: rgba(75, 56, 24, 0.18);
  filter: blur(18px);
}

.gold-showcase {
  position: relative;
  min-height: clamp(590px, 48vw, 780px);
  overflow: visible;
  border: 1px solid rgba(196, 148, 56, 0.28);
  border-radius: 38px;
  background:
    radial-gradient(circle at 67% 23%, rgba(255, 237, 171, 0.62), transparent 30%),
    radial-gradient(circle at 22% 82%, rgba(196, 148, 56, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.8), rgba(232, 211, 170, 0.6));
  box-shadow: 0 42px 130px rgba(83, 61, 26, 0.2);
  backdrop-filter: blur(12px);
  padding: clamp(24px, 3vw, 38px);
  transform: translateX(10px);
}

.gold-showcase::before {
  content: "";
  position: absolute;
  inset: 34px;
  height: auto;
  border: 1px solid rgba(168, 121, 36, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(90deg, transparent 24%, rgba(118, 81, 26, 0.07) 25%, transparent 26%),
    linear-gradient(0deg, transparent 24%, rgba(118, 81, 26, 0.06) 25%, transparent 26%);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 62% 45%, black, transparent 72%);
}

.gold-showcase::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 0;
  bottom: 8%;
  height: 56px;
  border-radius: 50%;
  background: rgba(83, 61, 26, 0.2);
  filter: blur(26px);
}

.exchange-core {
  position: absolute;
  inset: 4% 1% 5% 5%;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(168, 121, 36, 0.2);
  border-radius: 36px;
  background:
    radial-gradient(circle at 54% 44%, rgba(255, 244, 199, 0.9), rgba(219, 184, 94, 0.22) 34%, transparent 60%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.48), rgba(255, 248, 226, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 30px 86px rgba(83, 61, 26, 0.14);
  backdrop-filter: blur(18px);
  transform: rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.exchange-core::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(168, 121, 36, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.exchange-core::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 14%;
  width: 76px;
  height: 72%;
  border: 1px solid rgba(168, 121, 36, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 241, 196, 0.4), rgba(196, 148, 56, 0.12));
  filter: blur(0.2px);
}

.core-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(168, 121, 36, 0.22);
  border-radius: 50%;
  transform: rotate(-10deg) scaleX(1.12);
}

.ring-two {
  inset: 23%;
  border-color: rgba(168, 121, 36, 0.14);
  transform: rotate(12deg) scaleX(1.18);
}

.core-grid {
  position: absolute;
  inset: 8%;
  opacity: 0.4;
  background:
    linear-gradient(90deg, transparent 24%, rgba(118, 81, 26, 0.12) 25%, transparent 26%),
    linear-gradient(0deg, transparent 24%, rgba(118, 81, 26, 0.1) 25%, transparent 26%);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 52% 48%, black, transparent 72%);
}

.metal-center {
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 5;
  display: grid;
  width: clamp(138px, 12vw, 194px);
  height: clamp(138px, 12vw, 194px);
  place-items: center;
  border: 1px solid rgba(168, 121, 36, 0.26);
  border-radius: 40px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 26px 72px rgba(83, 61, 26, 0.2);
  transform: translate(-50%, -50%) rotate(-7deg);
  backdrop-filter: blur(16px);
}

.metal-center span:first-child {
  color: var(--sun-gold-dark);
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 950;
  line-height: 1;
}

.metal-center span:last-child {
  color: rgba(118, 81, 26, 0.68);
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 900;
}

.bullion-stack {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 13%;
  z-index: 4;
  height: 38%;
}

.bullion-stack i {
  position: absolute;
  left: 8%;
  right: 0;
  height: clamp(68px, 6vw, 104px);
  border: 1px solid rgba(255, 238, 176, 0.64);
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 28%),
    linear-gradient(145deg, #fff0a2 0%, #dba23c 45%, #745018 100%);
  box-shadow: 0 22px 46px rgba(83, 61, 26, 0.26);
  transform: rotate(-8deg) skewX(-14deg);
}

.bullion-stack i:nth-child(1) {
  top: 0;
}

.bullion-stack i:nth-child(2) {
  top: 30%;
  left: 4%;
  right: 4%;
}

.bullion-stack i:nth-child(3) {
  top: 60%;
  left: 0;
  right: 9%;
}

.route-line {
  position: absolute;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 121, 36, 0.52), transparent);
  transform-origin: center;
}

.route-one {
  left: 10%;
  right: 12%;
  top: 31%;
  transform: rotate(-12deg);
}

.route-two {
  left: 13%;
  right: 9%;
  top: 59%;
  transform: rotate(8deg);
}

.route-node {
  position: absolute;
  z-index: 5;
  width: 15px;
  height: 15px;
  border: 3px solid rgba(255, 253, 248, 0.92);
  border-radius: 50%;
  background: #d8a340;
  box-shadow: 0 0 0 8px rgba(196, 148, 56, 0.14);
}

.node-one { left: 16%; top: 27%; }
.node-two { right: 15%; top: 35%; }
.node-three { right: 21%; bottom: 23%; }

.document-sheet {
  position: absolute;
  right: 7%;
  top: 9%;
  z-index: 4;
  width: clamp(130px, 11vw, 184px);
  height: clamp(168px, 14vw, 236px);
  border: 1px solid rgba(168, 121, 36, 0.2);
  border-radius: 18px;
  background:
    repeating-linear-gradient(0deg, rgba(118, 81, 26, 0.12) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(246, 235, 211, 0.72));
  box-shadow: 0 18px 48px rgba(83, 61, 26, 0.12);
  transform: rotate(7deg);
  opacity: 0.92;
}

.core-base {
  position: absolute;
  left: 9%;
  right: 7%;
  bottom: 5%;
  z-index: 2;
  height: 28px;
  border-radius: 50%;
  background: rgba(83, 61, 26, 0.18);
  filter: blur(18px);
}

.metal-orbit {
  position: absolute;
  inset: 8%;
  z-index: 1;
  border: 1px solid rgba(168, 121, 36, 0.16);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.metal-orbit span {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(168, 121, 36, 0.12);
  border-radius: 50%;
}

.metal-orbit span:nth-child(2) {
  inset: 23%;
}

.metal-orbit span:nth-child(3) {
  inset: auto 8% 48% 8%;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(168, 121, 36, 0.32), transparent);
}

.asset-monolith {
  position: absolute;
  inset: 10% 8%;
  z-index: 2;
  border-radius: 30px;
}

.asset-mark {
  position: absolute;
  left: 7%;
  top: 7%;
  z-index: 4;
  display: grid;
  width: clamp(86px, 8vw, 118px);
  height: clamp(86px, 8vw, 118px);
  place-items: center;
  border: 1px solid rgba(168, 121, 36, 0.28);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--sun-gold-dark);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 950;
  box-shadow: 0 22px 50px rgba(83, 61, 26, 0.12);
  backdrop-filter: blur(14px);
}

.asset-mark.secondary {
  left: auto;
  right: 8%;
  top: 18%;
  width: clamp(64px, 6vw, 88px);
  height: clamp(64px, 6vw, 88px);
  border-radius: 22px;
  font-size: clamp(24px, 2.2vw, 34px);
  opacity: 0.82;
}

.metal-slab {
  position: absolute;
  left: 18%;
  right: 7%;
  height: clamp(74px, 7vw, 112px);
  border: 1px solid rgba(255, 238, 176, 0.62);
  border-radius: 20px 20px 12px 12px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 26%),
    linear-gradient(145deg, #fff0a2 0%, #dba23c 46%, #745018 100%);
  box-shadow: 0 28px 58px rgba(83, 61, 26, 0.24);
  transform: rotate(-9deg) skewX(-14deg);
}

.slab-one {
  top: 36%;
}

.slab-two {
  top: 49%;
  left: 24%;
  right: 3%;
}

.slab-three {
  top: 62%;
  left: 30%;
  right: 0;
}

.showcase-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.showcase-topline strong {
  color: #f5d478;
}

.premium-bars {
  position: absolute;
  right: clamp(44px, 8vw, 108px);
  bottom: clamp(150px, 16vw, 206px);
  z-index: 2;
  width: min(60%, 410px);
  transform: rotate(-8deg);
}

.premium-bars b {
  display: block;
  height: clamp(50px, 6vw, 76px);
  border: 1px solid rgba(255, 235, 166, 0.42);
  border-radius: 12px 12px 7px 7px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 23%),
    linear-gradient(145deg, #fff0a2 0%, #dba23c 42%, #745018 100%);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.32);
  transform: skewX(-15deg);
}

.premium-bars b + b {
  margin-top: -12px;
  margin-left: 34px;
}

.visual-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(232, 207, 146, 0.46);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  padding: 16px;
  backdrop-filter: blur(16px);
}

.visual-card span,
.visual-card small {
  color: var(--sun-muted);
}

.visual-card strong {
  color: var(--sun-ink);
}

.product-card-mini {
  left: clamp(20px, 4vw, 40px);
  bottom: clamp(30px, 5vw, 58px);
  width: min(44%, 260px);
}

.record-card-mini {
  right: clamp(24px, 5vw, 54px);
  bottom: clamp(30px, 5vw, 58px);
  width: min(42%, 250px);
}

.hero-flow-panel {
  position: absolute;
  right: clamp(18px, 4vw, 38px);
  top: clamp(76px, 10vw, 122px);
  z-index: 4;
  width: min(48%, 285px);
  border: 1px solid rgba(232, 207, 146, 0.5);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
  padding: 16px;
  backdrop-filter: blur(18px);
}

.flow-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.flow-panel-head span {
  color: var(--sun-muted);
  font-size: 13px;
  font-weight: 850;
}

.flow-panel-head strong {
  color: var(--sun-gold-dark);
  font-size: 14px;
}

.hero-flow-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-flow-panel li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
}

.hero-flow-panel li b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(168, 121, 36, 0.28);
  border-radius: 50%;
  background: #f7eed8;
  color: var(--sun-gold-dark);
  font-size: 12px;
}

.hero-flow-panel li span {
  color: var(--sun-ink);
  font-size: 14px;
  font-weight: 900;
}

.visual-labels {
  position: absolute;
  left: clamp(20px, 4vw, 40px);
  top: clamp(84px, 11vw, 134px);
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-labels span {
  border: 1px solid rgba(245, 212, 120, 0.42);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: #f7dc91;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 11px;
}

.world-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--sun-line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.16), rgba(21, 22, 22, 0.16)),
    #1b2020;
  box-shadow: 0 24px 70px rgba(20, 20, 18, 0.22);
}

.route-map {
  position: absolute;
  inset: 40px 34px auto;
  height: 210px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.08) 25%, transparent 26%),
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.08) 25%, transparent 26%);
  background-size: 80px 80px;
}

.route-map i {
  position: absolute;
  left: 14%;
  right: 16%;
  top: 52%;
  height: 2px;
  background: linear-gradient(90deg, var(--sun-gold), #fff2b6, var(--sun-gold));
  transform: rotate(-8deg);
}

.port {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff2b6;
  box-shadow: 0 0 0 8px rgba(196, 148, 56, 0.18);
}

.p1 { left: 12%; top: 58%; }
.p2 { left: 50%; top: 43%; }
.p3 { right: 14%; top: 34%; }

.document-card,
.warehouse-card {
  position: absolute;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--sun-ink);
  padding: 16px;
}

.document-card {
  left: 34px;
  bottom: 40px;
  width: 220px;
}

.warehouse-card {
  right: 32px;
  top: 290px;
  width: 210px;
}

.document-card span,
.warehouse-card span {
  color: var(--sun-muted);
  font-size: 13px;
}

.hero-bars {
  position: absolute;
  right: 70px;
  bottom: 74px;
  width: 250px;
}

.hero-bars b {
  display: block;
  height: 48px;
  border: 1px solid #8b641f;
  border-radius: 8px 8px 5px 5px;
  background: linear-gradient(145deg, #fff2aa 0%, #d69d2f 42%, #8b641f 100%);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  transform: skewX(-14deg);
}

.hero-bars b + b {
  margin-top: -10px;
  margin-left: 22px;
}

.sun-section,
.sun-band,
.delivery-entry,
.sun-footer {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 68px);
}

.sun-section,
.delivery-entry {
  max-width: 1280px;
  margin: 0 auto;
}

.sun-band {
  background: #fff8eb;
}

#process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 148, 56, 0.14), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(217, 184, 94, 0.16), transparent 25%),
    linear-gradient(180deg, #fff9ee 0%, #f6ecd9 100%);
}

#process::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(118, 81, 26, 0.12) 24.4%, transparent 25%),
    linear-gradient(0deg, transparent 0 31%, rgba(118, 81, 26, 0.1) 31.3%, transparent 32%);
  background-size: 190px 190px;
  mask-image: radial-gradient(circle at 48% 44%, black, transparent 70%);
}

.sun-band > * {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.sun-section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.sun-section-head h2,
.delivery-entry h2 {
  margin-bottom: 14px;
  color: var(--sun-ink);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
}

.sun-section-head p,
.sun-card-grid p,
.flow-steps p,
.partner-note,
.delivery-entry p,
.delivery-entry li,
.sun-footer p,
.sun-footer span {
  color: var(--sun-muted);
  line-height: 1.72;
}

.sun-card-grid {
  display: grid;
  gap: 16px;
}

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

.sun-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sun-card-grid article,
.flow-steps li,
.partner-wall article,
.record-grid div {
  border: 1px solid var(--sun-line);
  border-radius: 14px;
  background: var(--sun-paper);
  box-shadow: 0 12px 34px rgba(56, 42, 21, 0.07);
  padding: 22px;
}

.sun-card-grid article > span {
  display: inline-grid;
  width: 36px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--sun-gold-dark);
  font-weight: 900;
  margin-bottom: 24px;
}

.sun-card-grid h3,
.flow-steps h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

#spread {
  position: relative;
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(196, 148, 56, 0.1), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #f8efdf 100%);
}

#spread::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(118, 81, 26, 0.1) 24.4%, transparent 25%),
    linear-gradient(0deg, transparent 0 31%, rgba(118, 81, 26, 0.08) 31.3%, transparent 32%);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at 60% 40%, black, transparent 66%);
}

#spread > * {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

#spread .sun-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

#spread .sun-section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
}

#spread .sun-section-head p {
  max-width: 760px;
  color: #5e574d;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.82;
}

#spread .sun-card-grid.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#spread .sun-card-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 56, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(219, 184, 94, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 242, 226, 0.94));
  box-shadow: 0 16px 42px rgba(83, 61, 26, 0.08);
  padding: 28px;
}

#spread .sun-card-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8a340, rgba(216, 163, 64, 0));
}

#spread .sun-card-grid article > span {
  width: 48px;
  height: 38px;
  margin-bottom: 34px;
  border: 1px solid rgba(168, 121, 36, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 220, 0.9);
  color: var(--sun-gold-dark);
  font-size: 13px;
  box-shadow: none;
}

#spread .sun-card-grid h3 {
  max-width: 360px;
  margin-bottom: 12px;
  color: var(--sun-ink);
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.28;
}

#spread .sun-card-grid p {
  max-width: 440px;
  margin-bottom: 0;
  color: #665f55;
  font-size: 15px;
  line-height: 1.78;
}

.company-intro-section {
  position: relative;
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(219, 184, 94, 0.1), transparent 25%),
    linear-gradient(180deg, #fffaf0 0%, #f7efe0 100%);
}

.company-intro-section > *:not(.company-bg-lines) {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.company-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(118, 81, 26, 0.1) 24.4%, transparent 25%),
    linear-gradient(0deg, transparent 0 31%, rgba(118, 81, 26, 0.08) 31.3%, transparent 32%);
  background-size: 168px 168px;
  mask-image: radial-gradient(circle at 78% 42%, black, transparent 60%);
}

.company-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.company-label {
  margin: 0 0 14px;
  color: var(--sun-ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.company-description {
  max-width: 760px;
  margin: 0;
  color: #5e574d;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: 0;
}

.company-description strong {
  color: var(--sun-ink);
  font-weight: 800;
}

.company-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

.capability-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 56, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(244, 229, 196, 0.78)),
    var(--sun-paper);
  box-shadow: 0 18px 46px rgba(83, 61, 26, 0.11);
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.capability-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(196, 148, 56, 0.12);
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 148, 56, 0.58);
  box-shadow: 0 24px 60px rgba(83, 61, 26, 0.16);
}

.capability-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 38px;
}

.capability-no {
  display: inline-grid;
  min-width: 44px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(118, 81, 26, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--sun-gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.capability-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(196, 148, 56, 0.38);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff5cc, #d8a340);
  box-shadow: 0 12px 26px rgba(154, 107, 32, 0.18);
}

.gold-icon::before,
.logistics-icon::before,
.record-icon::before {
  content: "";
  display: block;
  width: 28px;
  height: 18px;
  border: 1px solid rgba(118, 81, 26, 0.6);
  border-radius: 4px;
  background: linear-gradient(145deg, #fff2a8, #b98225);
  transform: skewX(-12deg);
}

.logistics-icon::before {
  width: 30px;
  height: 21px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(118, 81, 26, 0.45) 62% 68%, transparent 68%),
    linear-gradient(145deg, #fff2a8, #b98225);
  transform: none;
}

.record-icon::before {
  width: 24px;
  height: 30px;
  border-radius: 5px;
  background:
    linear-gradient(0deg, transparent 0 28%, rgba(118, 81, 26, 0.42) 28% 34%, transparent 34% 56%, rgba(118, 81, 26, 0.32) 56% 62%, transparent 62%),
    linear-gradient(145deg, #fff8dc, #d8a340);
  transform: none;
}

.capability-card h3,
.capability-card p {
  position: relative;
  z-index: 2;
}

.capability-card h3 {
  margin-bottom: 12px;
  color: var(--sun-ink);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.22;
}

.capability-card p {
  margin-bottom: 0;
  color: #6c675f;
  line-height: 1.76;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-steps span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(168, 121, 36, 0.36);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8dc, #d8a340);
  color: var(--sun-gold-dark);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(154, 107, 32, 0.18);
}

#process .sun-section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

#process .sun-section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
}

#process .sun-section-head p {
  max-width: 700px;
  font-size: clamp(16px, 1.6vw, 20px);
}

.process-flow-shell {
  position: relative;
  max-width: 1160px;
  border: 1px solid rgba(196, 148, 56, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(248, 238, 218, 0.72)),
    rgba(255, 253, 248, 0.72);
  box-shadow: 0 26px 70px rgba(83, 61, 26, 0.1);
  padding: clamp(22px, 3.4vw, 38px);
}

.process-flow-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(196, 148, 56, 0.1);
  border-radius: 18px;
  pointer-events: none;
}

#process .flow-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#process .flow-steps li {
  position: relative;
  min-height: 240px;
  border: 1px solid rgba(196, 148, 56, 0.26);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 12%, rgba(219, 184, 94, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 244, 231, 0.94)),
    var(--sun-paper);
  box-shadow: 0 16px 42px rgba(83, 61, 26, 0.09);
  padding: 30px 28px 28px;
}

#process .flow-steps li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(168, 121, 36, 0.45);
  border-right: 1px solid rgba(168, 121, 36, 0.45);
  background: transparent;
  transform: rotate(45deg);
}

#process .flow-steps li:nth-child(3)::after,
#process .flow-steps li:last-child::after {
  content: none;
}

#process .flow-steps h3 {
  min-height: auto;
  margin-bottom: 12px;
  color: var(--sun-ink);
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.28;
}

#process .flow-steps p {
  margin-bottom: 0;
  color: #6a6257;
  font-size: 15px;
  line-height: 1.78;
}

.section-button {
  margin-top: 28px;
}

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

.record-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sun-ink);
  font-size: clamp(25px, 3vw, 38px);
}

.record-grid span {
  color: var(--sun-muted);
}

#records {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 148, 56, 0.12), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(217, 184, 94, 0.14), transparent 26%),
    linear-gradient(180deg, #fff9ee 0%, #f5ead6 100%);
}

#records::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(118, 81, 26, 0.1) 24.4%, transparent 25%),
    linear-gradient(0deg, transparent 0 31%, rgba(118, 81, 26, 0.08) 31.3%, transparent 32%);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at 50% 44%, black, transparent 68%);
}

#records > * {
  position: relative;
  z-index: 1;
}

#records .sun-section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

#records .sun-section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
}

#records .sun-section-head p {
  max-width: 720px;
  color: #5e574d;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.82;
}

.record-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-bottom: 34px;
}

.record-metrics div {
  border: 1px solid rgba(196, 148, 56, 0.22);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 34px rgba(83, 61, 26, 0.07);
  padding: 20px 22px;
}

.record-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--sun-gold-dark);
  font-size: 14px;
  font-weight: 900;
}

.record-metrics strong {
  display: block;
  color: var(--sun-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.record-carousel {
  position: relative;
  max-width: 100%;
  padding-bottom: 18px;
}

.record-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 42px;
  width: min(12vw, 120px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(245, 234, 214, 0), #f5ead6);
}

.record-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 4px 120px 42px 0;
  scrollbar-color: rgba(166, 119, 35, 0.46) rgba(255, 253, 248, 0.58);
  scrollbar-width: thin;
}

.record-track::-webkit-scrollbar {
  height: 6px;
}

.record-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
}

.record-track::-webkit-scrollbar-thumb {
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 165, 67, 0.58), rgba(133, 91, 25, 0.5));
}

.business-record-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  width: 520px;
  min-width: 520px;
  scroll-snap-align: start;
  border: 1px solid rgba(196, 148, 56, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(219, 184, 94, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 242, 226, 0.94));
  box-shadow: 0 18px 48px rgba(83, 61, 26, 0.1);
  padding: 22px;
}

.record-fields {
  display: grid;
  gap: 12px;
}

.record-fields p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  margin: 0;
  border: 1px solid rgba(196, 148, 56, 0.16);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--sun-ink);
  padding: 0 14px;
}

.record-fields span {
  color: #6b6256;
  font-weight: 850;
}

.record-fields strong {
  color: var(--sun-ink);
  font-size: 16px;
}

.document-preview {
  position: relative;
  display: grid;
  min-height: 228px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 56, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(168, 121, 36, 0.08) 48% 49%, transparent 49%),
    repeating-linear-gradient(0deg, rgba(118, 81, 26, 0.12) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, #fffdf8, #f2eadc);
}

.document-preview::before,
.document-preview::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(118, 81, 26, 0.16);
}

.document-preview::before {
  top: 42px;
  box-shadow: 0 34px 0 rgba(118, 81, 26, 0.12), 0 68px 0 rgba(118, 81, 26, 0.12), 0 102px 0 rgba(118, 81, 26, 0.12);
}

.document-preview::after {
  bottom: 34px;
}

.document-preview span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 121, 36, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--sun-gold-dark);
  font-size: 14px;
  font-weight: 900;
  padding: 0 14px;
  box-shadow: 0 10px 24px rgba(83, 61, 26, 0.1);
}

.partner-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.partner-wall article {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 56, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 16%, rgba(219, 184, 94, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 242, 226, 0.94));
  box-shadow: 0 14px 34px rgba(83, 61, 26, 0.07);
  color: var(--sun-ink);
  padding: 20px;
  text-align: left;
}

.partner-wall article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(196, 148, 56, 0.16);
  border-radius: 50%;
}

.partner-wall article span {
  display: inline-grid;
  width: 42px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(168, 121, 36, 0.24);
  border-radius: 999px;
  background: rgba(255, 248, 220, 0.86);
  color: var(--sun-gold-dark);
  font-size: 12px;
  font-weight: 900;
}

.partner-wall article strong {
  position: relative;
  z-index: 1;
  color: var(--sun-ink);
  font-size: 18px;
  line-height: 1.32;
}

.partner-wall article small {
  position: relative;
  z-index: 1;
  color: #6a6257;
  font-size: 13px;
  line-height: 1.5;
}

.partner-note {
  max-width: 920px;
  border-left: 3px solid rgba(196, 148, 56, 0.48);
  background: rgba(255, 253, 248, 0.58);
  border-radius: 0 14px 14px 0;
  padding: 16px 18px;
}

.delivery-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(196, 148, 56, 0.14);
  background:
    radial-gradient(circle at 78% 26%, rgba(196, 148, 56, 0.12), transparent 25%),
    linear-gradient(180deg, #fffdf8 0%, #f8efdf 100%);
}

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

.delivery-copy > p {
  max-width: 620px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.82;
}

.delivery-entry ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.delivery-entry li {
  position: relative;
  border: 1px solid rgba(196, 148, 56, 0.18);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--sun-ink);
  font-weight: 850;
  padding: 12px 14px 12px 36px;
}

.delivery-entry li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun-gold);
  box-shadow: 0 0 0 5px rgba(196, 148, 56, 0.12);
}

.delivery-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 56, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 230, 151, 0.26), transparent 28%),
    linear-gradient(145deg, #191a18 0%, #2b261b 58%, #111312 100%);
  box-shadow: 0 28px 78px rgba(20, 20, 18, 0.22);
  color: #fffdf8;
  padding: 30px;
}

.delivery-panel::before {
  content: "";
  position: absolute;
  right: -54px;
  top: 72px;
  width: 260px;
  height: 120px;
  border: 1px solid rgba(255, 235, 166, 0.36);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.62), transparent 24%),
    linear-gradient(145deg, #fff0a2 0%, #dba23c 42%, #745018 100%);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
  transform: rotate(-10deg) skewX(-12deg);
}

.delivery-metals,
.delivery-panel-copy,
.delivery-tags {
  position: relative;
  z-index: 1;
}

.delivery-metals {
  display: flex;
  gap: 10px;
}

.delivery-metals strong {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(245, 212, 120, 0.42);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.1);
  color: #f5d478;
  font-size: 30px;
}

.delivery-panel-copy h3 {
  max-width: 360px;
  margin: 0 0 12px;
  color: #fffdf8;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
}

.delivery-panel-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.72;
}

.delivery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.delivery-tags span {
  border: 1px solid rgba(245, 212, 120, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: #f7dc91;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 11px;
}

#outlook {
  position: relative;
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 148, 56, 0.12), transparent 25%),
    linear-gradient(180deg, #fff9ee 0%, #f7eedf 100%);
}

#outlook::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(118, 81, 26, 0.1) 24.4%, transparent 25%),
    linear-gradient(0deg, transparent 0 31%, rgba(118, 81, 26, 0.08) 31.3%, transparent 32%);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at 58% 42%, black, transparent 66%);
}

#outlook > * {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

#outlook .sun-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

#outlook .sun-section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
}

#outlook .sun-section-head p {
  max-width: 760px;
  color: #5e574d;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.82;
}

#outlook .sun-card-grid.three {
  gap: 18px;
}

#outlook .sun-card-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 56, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(219, 184, 94, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 242, 226, 0.94));
  box-shadow: 0 16px 42px rgba(83, 61, 26, 0.08);
  padding: 28px;
}

#outlook .sun-card-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8a340, rgba(216, 163, 64, 0));
}

#outlook .sun-card-grid article > span {
  width: 48px;
  height: 38px;
  margin-bottom: 34px;
  border: 1px solid rgba(168, 121, 36, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 220, 0.9);
  color: var(--sun-gold-dark);
  font-size: 13px;
  box-shadow: none;
}

#outlook .sun-card-grid h3 {
  margin-bottom: 12px;
  color: var(--sun-ink);
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.28;
}

#outlook .sun-card-grid p {
  margin-bottom: 0;
  color: #665f55;
  font-size: 15px;
  line-height: 1.78;
}

.company-heading,
#process .sun-section-head,
#spread .sun-section-head,
#records .sun-section-head,
#partners .sun-section-head,
#outlook .sun-section-head,
.delivery-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(28px, 4vw, 42px);
  text-align: center;
}

.company-description,
#process .sun-section-head p,
#spread .sun-section-head p,
#records .sun-section-head p,
#partners .sun-section-head p,
#outlook .sun-section-head p,
.delivery-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #5e574d;
  line-height: 1.82;
}

.company-label,
#process .sun-section-head h2,
#spread .sun-section-head h2,
#records .sun-section-head h2,
#partners .sun-section-head h2,
#outlook .sun-section-head h2,
.delivery-heading h2 {
  margin-bottom: 16px;
}

.record-metrics {
  margin-left: auto;
  margin-right: auto;
}

.partner-note {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.delivery-entry {
  display: block;
  max-width: none;
}

.delivery-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

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

.delivery-copy .sun-button {
  margin-top: 2px;
}

.sun-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid rgba(245, 212, 120, 0.16);
  background:
    radial-gradient(circle at 82% 12%, rgba(196, 148, 56, 0.14), transparent 24%),
    #151616;
  color: #fff;
}

.sun-footer nav,
.sun-footer > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.sun-footer h3,
.sun-footer strong {
  margin: 0;
  color: #fff;
}

.sun-footer a,
.sun-footer span,
.sun-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.sun-footer a {
  width: max-content;
}

.sun-footer a:hover {
  color: #f5d478;
}

.footer-compliance {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-risk {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
}

.footer-risk h3 {
  color: #f5d478;
  font-size: 17px;
}

.footer-risk p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.82;
}

@media (max-width: 1120px) {
  .sun-header {
    grid-template-columns: 1fr auto;
  }
  .sun-nav,
  .sun-auth {
    display: none;
  }
  .sun-header .menu-button {
    display: inline-flex;
    align-items: center;
    justify-self: end;
  }
  .sun-header.menu-open .sun-nav,
  .sun-header.menu-open .sun-auth {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .sun-header.menu-open .sun-nav a,
  .dropdown-trigger,
  .sun-auth a {
    border: 1px solid var(--sun-line);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.72);
    padding: 11px 12px;
  }
  .dropdown-trigger {
    justify-content: space-between;
  }
  .sun-dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
  }
  .sun-hero,
  .delivery-entry {
    grid-template-columns: 1fr;
  }
  .sun-hero {
    min-height: auto;
    justify-content: stretch;
  }
  .sun-hero-copy {
    transform: none;
  }
  .sun-card-grid.four,
  .flow-steps,
  .partner-wall,
  .sun-footer,
  .company-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sun-card-grid.three,
  .record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .sun-header {
    min-height: 72px;
    padding: 12px 14px;
  }
  .sun-brand small {
    display: none;
  }
  .sun-brand strong {
    font-size: 17px;
  }
  .sun-mark {
    width: 40px;
    height: 40px;
  }
  .sun-hero,
  .sun-section,
  .sun-band,
  .delivery-entry,
  .sun-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
  .sun-hero {
    padding-top: 42px;
  }
  .sun-hero h1 {
    font-size: 50px;
    line-height: 1;
  }
  .hero-subline {
    font-size: 24px;
  }
  .hero-note {
    margin-bottom: 28px;
    font-size: 16px;
  }
  .sun-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .sun-button {
    width: 100%;
  }
  .world-card {
    min-height: 430px;
  }
  .gold-showcase {
    min-height: 480px;
    border-radius: 24px;
    transform: none;
    overflow: hidden;
  }
  .platform-hub-visual {
    min-height: 500px;
  }
  .platform-hub-visual::before {
    inset: 7% 0 6%;
    border-radius: 26px;
    transform: none;
  }
  .platform-hub-visual::after {
    bottom: 6%;
  }
  .hub-frame {
    inset: 6%;
    border-radius: 24px;
    transform: none;
  }
  .hub-frame::after {
    content: none;
  }
  .hub-core {
    width: 122px;
    height: 122px;
    border-radius: 26px;
  }
  .hub-core strong {
    font-size: 42px;
  }
  .hub-core span {
    font-size: 17px;
  }
  .hub-bullion {
    left: 7%;
    right: 7%;
    bottom: 16%;
  }
  .hub-bullion i {
    height: 60px;
    border-radius: 16px 16px 10px 10px;
  }
  .hub-document {
    right: 7%;
    top: 12%;
    width: 94px;
    height: 126px;
    border-radius: 14px;
  }
  .hub-node {
    width: 13px;
    height: 13px;
    box-shadow: 0 0 0 7px rgba(196, 148, 56, 0.12);
  }
  .gold-showcase::before {
    inset: 20px;
    height: auto;
    background-size: 56px 56px;
  }
  .gold-showcase::after {
    bottom: 48px;
  }
  .asset-monolith {
    inset: 8% 5%;
  }
  .asset-mark {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    font-size: 28px;
  }
  .asset-mark.secondary {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 22px;
  }
  .metal-slab {
    height: 66px;
    border-radius: 15px 15px 10px 10px;
  }
  .exchange-core {
    inset: 6%;
    border-radius: 22px;
    transform: none;
  }
  .exchange-core::after {
    content: none;
  }
  .metal-center {
    width: 112px;
    height: 112px;
    border-radius: 24px;
  }
  .metal-center span:first-child {
    font-size: 38px;
  }
  .metal-center span:last-child {
    font-size: 17px;
  }
  .bullion-stack {
    left: 10%;
    right: 8%;
    bottom: 17%;
  }
  .bullion-stack i {
    height: 56px;
  }
  .document-sheet {
    right: 8%;
    top: 14%;
    width: 92px;
    height: 124px;
    border-radius: 14px;
  }
  .route-map {
    inset: 24px 18px auto;
    height: 170px;
  }
  .document-card {
    left: 18px;
    bottom: 24px;
    width: 188px;
  }
  .warehouse-card {
    right: 18px;
    top: 230px;
    width: 172px;
  }
  .hero-bars {
    right: 30px;
    bottom: 82px;
    width: 170px;
  }
  .hero-bars b {
    height: 36px;
  }
  .sun-card-grid.three,
  .sun-card-grid.four,
  .flow-steps,
  .record-grid,
  .partner-wall,
  .sun-footer,
  .company-capability-grid {
    grid-template-columns: 1fr;
  }
  .company-heading {
    margin-bottom: 26px;
  }
  .company-label {
    font-size: 32px;
    line-height: 1.16;
  }
  .company-description {
    font-size: 16px;
    line-height: 1.78;
  }
  .capability-card {
    min-height: 260px;
    border-radius: 16px;
    padding: 22px;
  }
  .capability-top {
    margin-bottom: 28px;
  }
  .company-bg-lines {
    opacity: 0.18;
  }
  .footer-risk {
    grid-column: auto;
  }
}

@media (max-width: 1120px) {
  .delivery-body {
    grid-template-columns: 1fr;
  }
  #process .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-flow-shell::before,
  #process .flow-steps li::after {
    content: none;
  }
  #process .flow-steps li {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .company-heading,
  #process .sun-section-head,
  #spread .sun-section-head,
  #records .sun-section-head,
  #partners .sun-section-head,
  #outlook .sun-section-head,
  .delivery-heading {
    margin-bottom: 24px;
  }
  .delivery-body {
    grid-template-columns: 1fr;
  }
  #outlook .sun-section-head {
    margin-bottom: 24px;
  }
  #outlook .sun-section-head h2 {
    font-size: 32px;
  }
  #outlook .sun-card-grid article {
    min-height: auto;
    border-radius: 18px;
    padding: 24px 20px;
  }
  #outlook .sun-card-grid article > span {
    margin-bottom: 24px;
  }
  .footer-compliance {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 20px;
  }
  .footer-risk {
    border-radius: 14px;
    padding: 18px;
  }
  #partners .sun-section-head,
  .delivery-copy {
    margin-bottom: 22px;
  }
  .partner-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .partner-wall article {
    min-height: 148px;
    border-radius: 16px;
    padding: 16px;
  }
  .partner-wall article strong {
    font-size: 16px;
  }
  .partner-note {
    border-radius: 14px;
    padding: 14px;
  }
  .delivery-entry {
    grid-template-columns: 1fr;
  }
  .delivery-entry ul {
    grid-template-columns: 1fr;
  }
  .delivery-panel {
    min-height: 390px;
    border-radius: 18px;
    padding: 22px;
  }
  .delivery-panel::before {
    right: -82px;
    top: 78px;
    width: 240px;
  }
  .delivery-metals strong {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    font-size: 24px;
  }
  #records .sun-section-head {
    margin-bottom: 24px;
  }
  #records .sun-section-head h2 {
    font-size: 32px;
  }
  .record-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .record-metrics div {
    padding: 18px;
  }
  .record-track {
    gap: 12px;
    padding-right: 48px;
    padding-bottom: 36px;
  }
  .record-carousel::after {
    bottom: 36px;
    width: 64px;
  }
  .business-record-card {
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100vw - 56px);
    min-width: calc(100vw - 56px);
    border-radius: 18px;
    padding: 18px;
  }
  .document-preview {
    min-height: 190px;
  }
  #spread .sun-section-head {
    margin-bottom: 24px;
  }
  #spread .sun-section-head h2 {
    font-size: 32px;
  }
  #spread .sun-card-grid.four {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #spread .sun-card-grid article {
    min-height: auto;
    border-radius: 18px;
    padding: 24px 20px;
  }
  #spread .sun-card-grid article > span {
    margin-bottom: 24px;
  }
  #process .sun-section-head {
    margin-bottom: 24px;
  }
  #process .sun-section-head h2 {
    font-size: 32px;
  }
  .process-flow-shell {
    border-radius: 18px;
    padding: 14px;
  }
  #process .flow-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #process .flow-steps li {
    min-height: auto;
    padding: 20px;
  }
  #process .flow-steps span {
    margin-bottom: 16px;
  }
  #process .flow-steps h3 {
    min-height: auto;
  }
}

/* Hero reset: stable contained layout for the first screen only. */
.sun-hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 92px);
  margin: 0;
  padding: clamp(70px, 7vw, 112px) clamp(18px, 4vw, 72px) clamp(60px, 6vw, 88px);
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at 72% 30%, rgba(185, 120, 24, 0.26), transparent 28%),
    radial-gradient(circle at 54% 58%, rgba(235, 199, 124, 0.24), transparent 36%),
    linear-gradient(120deg, #fffdf8 0%, #f4ead8 46%, #e7d1a9 100%);
}

.sun-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(52, 45, 35, 0.13) 24.5%, transparent 25%),
    linear-gradient(0deg, transparent 0 31%, rgba(52, 45, 35, 0.09) 31.25%, transparent 32%);
  background-size: 220px 220px;
  mask-image: radial-gradient(circle at 66% 48%, black, transparent 72%);
}

.sun-hero::after {
  content: "";
  position: absolute;
  top: 6%;
  right: max(16px, calc((100vw - 1360px) / 2));
  z-index: 0;
  width: min(50vw, 720px);
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(128, 86, 18, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 230, 0.42), rgba(188, 126, 23, 0.1) 44%, transparent 72%);
}

.sun-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1360px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 250px);
}

.sun-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  min-width: 0;
  transform: none;
}

.sun-hero h1 {
  max-width: 100%;
  margin: 0 0 clamp(14px, 1.7vw, 22px);
  color: #17140f;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: clamp(54px, 5.6vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  overflow: visible;
  text-shadow: 0 20px 48px rgba(64, 47, 18, 0.12);
  word-break: keep-all;
}

.sun-hero .hero-subline {
  margin: 0 0 14px;
  color: #7b531a;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 850;
  line-height: 1.22;
}

.sun-hero .hero-note {
  max-width: 520px;
  margin: 0 0 clamp(28px, 3vw, 38px);
  color: #433f38;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.85;
}

.sun-hero .sun-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 0;
}

.sun-hero .sun-button {
  min-height: 62px;
  border-radius: 15px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 850;
  padding: 0 34px;
}

.sun-hero .sun-button.primary {
  min-width: 174px;
  border-color: #8b611b;
  background: linear-gradient(145deg, #e9cb76 0%, #bb842a 56%, #7a5318 100%);
  color: #fffdf8;
  box-shadow: 0 18px 38px rgba(144, 95, 25, 0.28);
}

.sun-hero .sun-button.secondary {
  min-width: 160px;
  border-color: rgba(118, 81, 26, 0.32);
  background: rgba(255, 253, 248, 0.68);
  color: #2c271f;
  box-shadow: 0 12px 28px rgba(73, 55, 24, 0.07);
}

.sun-hero .sun-button.primary:hover {
  border-color: #704c13;
  background: linear-gradient(145deg, #f0d78c 0%, #c28b2e 55%, #704c13 100%);
  box-shadow: 0 22px 46px rgba(144, 95, 25, 0.34);
}

.sun-hero .sun-button.secondary:hover {
  border-color: rgba(144, 95, 25, 0.5);
  background: #fffdf8;
}

.hero-product-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  align-self: center;
  perspective: 1500px;
}

.platform-hub-visual {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 43vw, 660px);
  transform-style: preserve-3d;
}

.platform-hub-visual::before {
  content: "";
  position: absolute;
  inset: 5% 3% 7% 2%;
  border: 1px solid rgba(128, 86, 18, 0.18);
  border-radius: 38px;
  background:
    radial-gradient(circle at 62% 36%, rgba(236, 198, 112, 0.42), transparent 32%),
    linear-gradient(140deg, rgba(255, 253, 248, 0.74), rgba(232, 214, 177, 0.5));
  box-shadow: 0 42px 120px rgba(80, 55, 20, 0.17);
  transform: rotateY(-7deg) rotateX(2deg);
}

.platform-hub-visual::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 5%;
  left: 10%;
  height: 48px;
  border-radius: 50%;
  background: rgba(75, 56, 24, 0.18);
  filter: blur(26px);
}

.hub-frame {
  position: absolute;
  inset: 7% 5% 9% 4%;
  overflow: hidden;
  border: 1px solid rgba(128, 86, 18, 0.2);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 243, 198, 0.92), rgba(205, 150, 47, 0.18) 38%, transparent 62%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.54), rgba(255, 255, 255, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 30px 86px rgba(80, 55, 20, 0.13);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-style: preserve-3d;
  backdrop-filter: blur(18px);
}

.hub-frame::after {
  right: 0;
  width: 58px;
}

@media (max-width: 1120px) {
  .sun-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .sun-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .sun-hero-copy {
    max-width: 760px;
  }

  .platform-hub-visual {
    min-height: clamp(420px, 58vw, 560px);
  }
}

@media (max-width: 680px) {
  .sun-hero {
    padding: 42px 14px 54px;
    overflow-x: clip;
  }

  .sun-hero-inner {
    gap: 30px;
  }

  .sun-hero h1 {
    font-size: clamp(42px, 11.2vw, 50px);
    line-height: 1.08;
  }

  .sun-hero .hero-subline {
    font-size: clamp(22px, 6.2vw, 26px);
  }

  .sun-hero .hero-note {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.75;
  }

  .sun-hero .sun-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .sun-hero .sun-button {
    width: 100%;
    min-height: 56px;
    border-radius: 13px;
  }

  .platform-hub-visual {
    min-height: 390px;
  }

  .platform-hub-visual::before {
    inset: 5% 0 7%;
    border-radius: 26px;
    transform: none;
  }

  .hub-frame {
    inset: 7% 5%;
    border-radius: 24px;
    transform: none;
  }

  .hub-frame::after {
    content: none;
  }

  .hub-core {
    width: 118px;
    height: 118px;
    border-radius: 26px;
  }

  .hub-core strong {
    font-size: 42px;
  }

  .hub-core span {
    font-size: 17px;
  }

  .hub-bullion {
    left: 8%;
    right: 8%;
    bottom: 16%;
  }

  .hub-bullion i {
    height: 58px;
    border-radius: 16px 16px 10px 10px;
  }

  .hub-document {
    right: 8%;
    top: 12%;
    width: 92px;
    height: 124px;
    border-radius: 14px;
  }
}
