:root {
  --ink: #111317;
  --muted: #68707a;
  --paper: #f6f3ed;
  --card: #ffffff;
  --line: rgba(17, 19, 23, 0.12);
  --gold: #c9a43a;
  --gold-soft: #f3e8bc;
  --blue: #1f3a5f;
  --dark: #10151b;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(25, 32, 43, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
body[dir="rtl"] { text-align: right; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section-pad { padding: clamp(72px, 9vw, 128px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(246, 243, 237, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: -0.03em;
}
.dot { color: var(--muted); font-weight: 750; }
.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.82rem;
  font-weight: 720;
}
.nav a:not(.nav-cta) { color: #252931; }
.nav-cta, .lang-toggle {
  border: 1px solid rgba(17, 19, 23, 0.12);
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  box-shadow: 0 10px 22px rgba(17, 19, 23, 0.12);
}
.language-menu { position: relative; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.lang-list {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  min-width: 170px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
body[dir="rtl"] .lang-list { right: auto; left: 0; }
.lang-list.open { display: grid; gap: 4px; }
.lang-list button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink);
}
body[dir="rtl"] .lang-list button { text-align: right; }
.lang-list button:hover { background: #f3f0ea; }

.hero { padding-top: clamp(52px, 7vw, 86px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 860;
  letter-spacing: 0.16em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(1.92rem, 4.64vw, 4.16rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 920;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem,4.4vw,4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 910;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 880;
}
.lead, .section-copy, .center-heading p, .final-box p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  letter-spacing: -0.012em;
}
.lead { max-width: 620px; }

.hero-actions, .final-box, .dark-panel { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 840;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--ink); color: #fff; box-shadow: 0 18px 30px rgba(17, 19, 23, 0.18); }
.btn.primary.light { background: #fff; color: var(--ink); }
.btn.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
  max-width: 500px;
}
.stats-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}
.stats-row strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
}
.hero-media {
  position: relative;
  min-height: 520px;
}
.hero-media img {
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  width: min(270px, 50%);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(17, 19, 23, 0.15);
}
.floating-card span {
  display: block;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.floating-card strong {
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.top-card { top: 28px; left: -28px; }
.bottom-card { bottom: 28px; right: -20px; }

.market-section { background: #fff; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.proof-card {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}
.proof-card span, .buyer-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
}
.proof-card p, .category-card p, .buyer-list p, .dark-panel p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.proof-card.accent { background: var(--gold-soft); }
.proof-card.dark { background: var(--dark); color: #fff; }
.proof-card.dark p { color: rgba(255,255,255,0.72); }
.proof-card.dark span { background: rgba(255,255,255,0.12); }

.center-heading {
  max-width: 760px;
  text-align: center;
  margin-bottom: 42px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.category-card {
  grid-column: span 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(17, 19, 23, 0.08);
}
.category-card.large-card { grid-column: span 3; }
.category-card img {
  height: 320px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-kicker {
  margin-bottom: 12px;
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
}

.buyer-section { background: var(--ink); color: #fff; }
.buyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 20px;
}
.dark-panel {
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(201, 164, 58, 0.24), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
}
.dark-panel h2 { font-size: clamp(2.3rem, 4.4vw, 4.15rem); }
.dark-panel p { color: rgba(255,255,255,0.74); max-width: 640px; }
.buyer-list {
  display: grid;
  gap: 14px;
}
.buyer-list div {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.buyer-list span { margin-bottom: 44px; background: rgba(255,255,255,0.1); }
.buyer-list p { color: rgba(255,255,255,0.68); }

.final-cta { background: var(--paper); }
.final-box {
  flex-direction: column;
  text-align: center;
  max-width: 820px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: calc(var(--radius) + 12px);
  background: #fff;
  box-shadow: var(--shadow);
}
.final-box h2 { margin-bottom: 10px; }
.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}
.footer-grid strong { color: var(--ink); letter-spacing: -0.03em; }
.footer-grid a { color: var(--ink); font-weight: 780; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; }
  .nav { flex-wrap: wrap; justify-content: flex-end; }
  .hero-grid, .split, .buyer-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: auto; }
  .hero-media img { height: min(72vw, 520px); }
  .top-card { left: 18px; }
  .bottom-card { right: 18px; }
  .proof-grid { grid-template-columns: 1fr; }
  .category-card, .category-card.large-card { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { position: static; flex-direction: column; padding: 16px; }
  .nav { width: 100%; justify-content: flex-start; gap: 10px; }
  .nav a:not(.nav-cta) { display: none; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); letter-spacing: -0.07em; }
  h2 { font-size: clamp(2.05rem, 11vw, 3.2rem); }
  .stats-row { grid-template-columns: 1fr; }
  .floating-card { position: static; width: auto; margin: 12px 0 0; }
  .hero-media img, .category-card img { height: 290px; }
  .section-pad { padding: 68px 0; }
}
