:root {
  --page-width: 1230px;
  --container: 1188px;
  --yellow: #ffbe21;
  --yellow-soft: #fff4bd;
  --orange: #ff9f00;
  --orange-strong: #ff9900;
  --ink: #242424;
  --muted: #6e6e6e;
  --line: rgba(30, 30, 30, .06);
  --card: #ffffff;
  --footer: #2d2b2a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #f6f6f6;
  font-family: "Be Vietnam Pro", "SVN-Gilroy", "Averta Std CY", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.page-shell {
  width: min(100%, var(--page-width));
  margin-inline: auto;
  overflow: visible;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.03);
  padding-top: 66px;
}
.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(100%, var(--page-width));
  height: 66px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.03);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.header-inner {
  height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 42px;
}
.brand img { width: 92px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  font-weight: 700;
  color: #1f1f1f;
}
.main-nav a { opacity: .9; }
.main-nav a::after { content: "⌄"; margin-left: 7px; font-size: 10px; color: #555; }
.main-nav a:last-child::after { content: ""; }
.main-nav a:hover { color: var(--orange); }
.contact-strip {
  display: flex;
  gap: 26px;
  align-items: center;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.contact-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.contact-strip span::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  flex: 0 0 15px;
  background-color: #111;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact-strip .phone::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.3-.3.74-.39 1.13-.26 1.24.41 2.57.63 3.96.63.62 0 1.12.5 1.12 1.12v3.49c0 .62-.5 1.12-1.12 1.12C10.84 21.78 3 13.94 3 4.28c0-.62.5-1.12 1.12-1.12h3.5c.62 0 1.12.5 1.12 1.12 0 1.39.22 2.72.63 3.96.12.39.04.82-.27 1.13l-2.48 1.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.3-.3.74-.39 1.13-.26 1.24.41 2.57.63 3.96.63.62 0 1.12.5 1.12 1.12v3.49c0 .62-.5 1.12-1.12 1.12C10.84 21.78 3 13.94 3 4.28c0-.62.5-1.12 1.12-1.12h3.5c.62 0 1.12.5 1.12 1.12 0 1.39.22 2.72.63 3.96.12.39.04.82-.27 1.13l-2.48 1.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.contact-strip .mail::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm8 7.3L20 7.2V7H4v.2l8 5.1Zm0 2.2L4 9.4V17h16V9.4l-8 5.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm8 7.3L20 7.2V7H4v.2l8 5.1Zm0 2.2L4 9.4V17h16V9.4l-8 5.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 7%, rgba(255,238,126,.86) 0 12%, rgba(255,235,117,.46) 31%, transparent 49%),
    linear-gradient(180deg, #fff5ad 0%, #fff8d2 54%, #ffffff 100%);
}
.hero::before,
.hero::after,
.hero-grid-overlay {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  inset: -30px 0 0;
  opacity: .52;
  background:
    linear-gradient(122deg, transparent 7%, rgba(255,255,255,.9) 7.12%, transparent 7.5%),
    linear-gradient(30deg, transparent 58%, rgba(255,199,23,.42) 58.2%, transparent 59%),
    linear-gradient(148deg, transparent 31%, rgba(255,255,255,.58) 31.2%, transparent 31.55%);
}
.hero::after {
  left: 46%;
  bottom: -108px;
  width: 740px;
  height: 160px;
  transform: rotate(-4deg);
  background: rgba(255,235,80,.86);
  filter: blur(8px);
  clip-path: polygon(0 35%, 100% 18%, 100% 66%, 0 92%);
}
.hero-grid-overlay {
  right: -40px;
  top: 146px;
  width: 585px;
  height: 420px;
  opacity: .34;
  background: radial-gradient(circle, rgba(255,255,255,.85) 0 2.1px, transparent 2.2px) 0 0/18px 18px;
  transform: skewY(-8deg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  align-items: start;
  padding-top: 38px;
}
.hero h1 {
  margin: 0;
  text-align: center;
  font-family: "Nunito Sans", "Be Vietnam Pro", "SVN-Gilroy", Arial, sans-serif;
  font-size: clamp(62px, 5.25vw, 86px);
  line-height: .93;
  letter-spacing: -3px;
  font-weight: 900;
  font-style: italic;
  color: var(--orange-strong);
  text-shadow:
    0 4px 0 rgba(255,255,255,.98),
    0 12px 24px rgba(255, 160, 0, .18);
}
.hero-art {
  width: min(880px, 66vw);
  margin-top: 22px;
  transform: translateX(42px);
  filter: drop-shadow(0 30px 44px rgba(235, 146, 0, .16));
}
.partners {
  padding: 60px 0 66px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}
.partner-inner {
  display: grid;
  grid-template-columns: 315px 1fr;
  align-items: center;
  gap: 54px;
}
.partner-inner h2 {
  margin: 0;
  color: #171717;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -.3px;
}
.partner-inner h2 span {
  display: block;
  width: 151px;
  height: 2px;
  margin-bottom: 23px;
  background: linear-gradient(90deg, #f6b521 0%, rgba(246,181,33,0) 100%);
}
.partner-inner h2 strong { color: var(--orange); }
.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.partner-card {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 18px;
  padding: 16px 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,38,64,.07);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(31,38,64,.06);
}
.partner-card img { width: 52px; height: 52px; object-fit: contain; flex: 0 0 auto; }
.partner-card p { margin: 0; font-size: 12px; line-height: 1.55; font-weight: 800; }
.partner-card small { font-size: 11px; font-weight: 700; color: #565656; }
.solution {
  padding: 84px 0 88px;
  background: #ffffff;
}
.section-heading { text-align: center; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 37px);
  line-height: 1.28;
  letter-spacing: -.7px;
  font-weight: 850;
  color: #1f1f1f;
}
.section-heading strong { color: var(--orange); }
.solution-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: center;
  gap: 70px;
}
.solution-image-wrap { display: flex; justify-content: center; }
.solution-image-wrap img {
  width: 445px;
  filter: drop-shadow(0 22px 32px rgba(238, 149, 0, .14));
}
.feature-list { display: grid; gap: 18px; }
.feature-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 98px;
  padding: 17px 26px 17px 20px;
  background: linear-gradient(180deg, #fffdf9 0%, #fffaf2 100%);
  border: 1px solid rgba(242, 182, 60, .16);
  border-radius: 15px;
  box-shadow: 0 14px 28px rgba(26,31,58,.04);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffc53f, #f8a300);
  box-shadow: 0 8px 16px rgba(246, 165, 14, .23);
}
.feature-icon::before { line-height: 1; }
.icon-doc::before { content: "▣"; }
.icon-easy::before { content: "✦"; }
.icon-flex::before { content: "₫"; }
.icon-trade::before { content: "↻"; }
.feature-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
  color: #2a2a2a;
}
.feature-card p {
  margin: 0;
  color: #636363;
  font-size: 12.5px;
  line-height: 1.62;
  font-weight: 500;
}
.performance {
  position: relative;
  padding: 78px 0 76px;
  background:
    radial-gradient(circle at 28% 10%, rgba(255,232,166,.6), transparent 28%),
    radial-gradient(circle at 73% 82%, rgba(255,255,255,.72), transparent 30%),
    linear-gradient(180deg, #fff9ef 0%, #fbf0dd 100%);
}
.performance::before,
.performance::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 185px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 50%;
  transform: rotate(-13deg);
  opacity: .5;
}
.performance::before { left: -90px; bottom: 36px; }
.performance::after { right: -150px; bottom: 12px; transform: rotate(12deg); }
.performance-inner { position: relative; z-index: 1; }
.fund-table-wrap {
  margin: 50px auto 0;
  max-width: 1192px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 54px rgba(70,54,17,.08);
  border: 1px solid rgba(255,255,255,.72);
}
.fund-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
  color: #303030;
}
.fund-table th,
.fund-table td {
  padding: 13px 24px;
  vertical-align: middle;
  white-space: nowrap;
}
.fund-table th {
  height: 66px;
  background: #fff;
  color: #252525;
  font-size: 11.5px;
  line-height: 1.25;
  text-align: left;
  font-weight: 850;
}
.fund-table th small {
  display: block;
  margin-top: 2px;
  color: #787878;
  font-size: 9.6px;
  font-weight: 700;
}
.fund-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.92); }
.fund-table tbody tr:nth-child(even) { background: rgba(255,239,207,.56); }
.fund-table td { height: 58px; font-weight: 700; }
.fund-table .num { text-align: right; }
.fund {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 158px;
}
.fund img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}
.fund b { display: block; font-size: 12px; line-height: 1.08; font-weight: 900; }
.fund small { display: block; margin-top: 4px; color: #5f5f5f; font-size: 10px; font-weight: 700; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 30px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}
.pill.up { color: #15bc83; background: #dcfbef; }
.pill.down { color: #f04438; background: #ffe1df; }
.reviews {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background: #fff;
}
.reviews-fade {
  position: absolute;
  top: 214px;
  bottom: 64px;
  width: 145px;
  z-index: 2;
  pointer-events: none;
}
.reviews-fade.left { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.reviews-fade.right { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }
.eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}
.section-heading.compact h2 { font-size: clamp(27px, 2.1vw, 34px); }
.review-cards {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.review-card {
  position: relative;
  min-height: 292px;
  padding: 39px 34px 32px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(26,31,58,.045);
  box-shadow: 0 18px 40px rgba(20,30,54,.06);
}
.review-card img {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 28px;
}
.review-card .quote {
  position: absolute;
  top: 16px;
  right: 36px;
  color: #e4e4e4;
  font-size: 116px;
  line-height: .6;
  font-family: Georgia, serif;
  font-weight: 700;
}
.review-card.active .quote { color: #ffd06e; }
.review-card h3 {
  margin: 0 0 14px;
  color: #333;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -.4px;
}
.review-card p {
  margin: 0;
  color: #4e4e4e;
  font-size: 12.3px;
  line-height: 1.78;
  font-weight: 500;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9d8969;
  opacity: .52;
}
.dots .active { background: #d6a849; opacity: 1; }
.app-cta {
  padding: 22px 0 0;
  background: #fff;
}
.app-cta-inner {
  position: relative;
  min-height: 172px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 46px;
}
.app-cta h2 {
  margin: 0;
  color: #333;
  font-size: clamp(32px, 2.6vw, 42px);
  line-height: 1.22;
  letter-spacing: -.7px;
  font-weight: 850;
}
.download-box {
  display: grid;
  justify-items: center;
  gap: 1px;
}
.download-box img { width: 315px; }
.download-box p { margin: 0; font-size: 12px; font-weight: 800; color: #222; }
.cta-mascot {
  justify-self: end;
  align-self: end;
  width: 176px;
  transform: translate(8px, 9px);
}
.community {
  position: relative;
  overflow: hidden;
  padding: 59px 0 64px;
  background:
    radial-gradient(circle at 20% 8%, rgba(255,255,255,.28), transparent 24%),
    linear-gradient(115deg, #ffb61d 0%, #ffd95d 100%);
}
.community::before,
.community::after {
  content: "";
  position: absolute;
  width: 780px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  transform: rotate(-9deg);
  pointer-events: none;
}
.community::before { left: -122px; top: 8px; }
.community::after { right: -92px; bottom: -116px; }
.community-inner { position: relative; z-index: 1; text-align: center; }
.community h2 {
  margin: 0;
  color: #111;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.6px;
}
.community p { margin: 10px 0 25px; color: #111; font-size: 13px; font-weight: 800; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 20px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
}
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 16px 0 54px;
  color: #fff;
  background: var(--footer);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.9fr) repeat(4, minmax(116px, 1fr));
  align-items: start;
  gap: 2px;
}
.footer-brand-block img { width: 112px; margin-bottom: 38px; }
.footer-brand-block h3,
.footer-col h4 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}
.footer-brand-block p,
.footer-col a,
.address {
  color: rgba(255,255,255,.86);
  font-size: 10.8px;
  line-height: 1.78;
  font-weight: 500;
}
.footer-brand-block p { max-width: 350px; margin: 0 0 12px; }
.footer-col { display: grid; gap: 14px; padding-top: 72px; }
.footer-col a:hover { color: var(--yellow); }
.address {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 10px;
  color: #fff;
}
.address::before { content: "●"; margin-right: 8px; }
@media (max-width: 1180px) {
  :root { --container: 1040px; }
  .solution-grid { grid-template-columns: 390px 1fr; gap: 42px; }
  .review-cards { gap: 22px; }
  .review-card { padding-inline: 26px; }
}
@media (max-width: 920px) {
  .container { width: min(calc(100% - 44px), var(--container)); }
  .contact-strip { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .main-nav { justify-content: end; gap: 22px; }
  .hero { min-height: 610px; }
  .hero-inner { min-height: 610px; }
  .hero-art { width: 92vw; transform: none; }
  .partner-inner { grid-template-columns: 1fr; gap: 28px; }
  .partner-cards { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; gap: 36px; }
  .solution-image-wrap img { width: 360px; }
  .fund-table-wrap { overflow-x: auto; }
  .fund-table { min-width: 1000px; }
  .review-cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .app-cta-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; padding-bottom: 16px; }
  .cta-mascot { justify-self: center; width: 138px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-col { padding-top: 0; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .page-shell { padding-top: 102px; }
  .site-header { height: auto; }
  .header-inner { height: auto; padding: 12px 0; gap: 12px; }
  .brand img { width: 82px; }
  .main-nav { width: 100%; justify-content: space-between; grid-column: 1 / -1; font-size: 11px; }
  .hero { min-height: 540px; }
  .hero-inner { min-height: 540px; padding-top: 36px; }
  .hero h1 { font-size: 43px; letter-spacing: -1.2px; }
  .hero-art { width: 112vw; margin-top: 34px; }
  .partners, .solution, .performance, .reviews { padding-block: 54px; }
  .partner-inner h2 { font-size: 22px; }
  .feature-card { grid-template-columns: 44px 1fr; padding: 16px; }
  .feature-card p { font-size: 12px; }
  .review-card h3 { font-size: 21px; }
  .download-box img { width: 260px; }
  .footer-inner { grid-template-columns: 1fr; }
}
