:root {
  --charcoal: #101820;
  --charcoal-2: #15222b;
  --charcoal-3: #21313b;
  --ink: #0e171d;
  --muted: #5c6872;
  --muted-2: #86939d;
  --line: rgba(16, 24, 32, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --paper: #f7f7f3;
  --paper-2: #ededE7;
  --white: #ffffff;
  --orange: #ff5a1f;
  --orange-2: #ff7b45;
  --orange-soft: rgba(255, 90, 31, 0.13);
  --shadow: 0 26px 70px rgba(16, 24, 32, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 82px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-rendering: geometricPrecision; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--orange); color: var(--white); }

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 44px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 108px 0; }
.section-light { background: var(--paper); }
.section-dark { color: var(--white); background: var(--charcoal); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(247, 247, 243, 0.82);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(22px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { background: rgba(247, 247, 243, 0.96); box-shadow: 0 12px 44px rgba(16, 24, 32, 0.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; width: 168px; }
.brand-logo { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(16, 24, 32, 0.74); font-size: 13px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.main-nav a { transition: color 0.2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: inline-flex; padding: 4px; border: 1px solid rgba(16, 24, 32, 0.12); border-radius: 999px; background: rgba(255, 255, 255, 0.62); }
.lang-btn { min-width: 38px; border: 0; border-radius: 999px; padding: 7px 9px; color: var(--muted); background: transparent; cursor: pointer; font-size: 12px; font-weight: 900; letter-spacing: 0.09em; }
.lang-btn.active { color: var(--white); background: var(--charcoal); box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.34); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(16, 24, 32, 0.13); border-radius: 999px; background: var(--white); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 4px; background: var(--charcoal); }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 18px 38px rgba(255, 90, 31, 0.26); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--orange-2); }
.btn-secondary { border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.06); color: var(--white); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.34); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 11px; }

.hero {
  position: relative;
  min-height: 92svh;
  padding: calc(var(--header-height) + 74px) 0 86px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.26), transparent 32%),
    linear-gradient(135deg, #0a1116 0%, #101820 48%, #172630 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px); background-size: 74px 74px; mask-image: radial-gradient(circle at 50% 36%, black, transparent 70%); }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(10px); opacity: 0.64; }
.hero-orb-a { right: -160px; top: 118px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255, 90, 31, 0.42), transparent 68%); }
.hero-orb-b { left: -160px; bottom: -150px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr); align-items: center; gap: 66px; }
.eyebrow, .section-number { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow { margin: 0; }
.eyebrow span { width: 9px; height: 9px; background: var(--orange); border-radius: 999px; box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.15); }
.hero h1 { margin: 22px 0 0; max-width: 870px; font-size: clamp(48px, 6.9vw, 86px); line-height: 0.96; letter-spacing: -0.068em; font-weight: 950; }
.hero-lead { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,0.76); font-size: clamp(18px, 1.9vw, 22px); line-height: 1.52; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-tags span { border: 1px solid rgba(255,255,255,0.13); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.74); padding: 9px 12px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.hero-panel { border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045)), rgba(255,255,255,0.05); box-shadow: 0 40px 120px rgba(0,0,0,0.3); backdrop-filter: blur(28px); padding: 26px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.panel-head img { width: 52px; height: 52px; }
.panel-head span, .panel-body span, .panel-foot span { color: rgba(255,255,255,0.52); font-size: 11px; font-weight: 950; letter-spacing: 0.16em; text-transform: uppercase; }
.panel-body { display: grid; gap: 14px; margin: 24px 0; }
.panel-body article { padding: 19px; border-radius: 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.panel-body h2 { margin: 8px 0 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.15; letter-spacing: -0.04em; }
.panel-foot { display: flex; justify-content: space-between; gap: 12px; }

.split-grid, .education-grid, .engagements-grid, .contact-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 70px; align-items: start; }
.section-heading h2, .education-card h2, .contact-copy h2, .compliance h2 { margin: 16px 0 0; font-size: clamp(36px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.06em; font-weight: 950; }
.section-heading p, .section-copy p, .education-card p, .contact-copy p, .compliance p { color: var(--muted); font-size: 18px; line-height: 1.72; }
.section-heading p { max-width: 760px; margin: 22px 0 0; }
.section-dark .section-heading p, .section-dark .feature-card p, .section-dark .contact-copy p { color: rgba(255,255,255,0.68); }
.centered { text-align: center; max-width: 920px; margin: 0 auto 48px; }
.centered .section-number { justify-content: center; }
.section-copy p:first-child { margin-top: 0; }
.inline-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.inline-proof span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat-card { min-height: 236px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-md); background: rgba(255,255,255,0.045); }
.stat-label { color: rgba(255,255,255,0.58); font-size: 13px; font-weight: 950; letter-spacing: 0.18em; text-transform: uppercase; }
.stat-value { display: block; margin-top: 8px; font-size: clamp(42px, 4.6vw, 64px); line-height: 0.92; font-weight: 950; letter-spacing: -0.06em; color: var(--orange); white-space: nowrap; }
.stat-card p { margin: 24px 0 0; color: rgba(255,255,255,0.7); font-size: 15px; }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.feature-card { min-height: 318px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 20px 70px rgba(16, 24, 32, 0.06); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,90,31,0.32); box-shadow: var(--shadow); }
.icon-chip { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; background: var(--orange-soft); color: var(--orange); font-weight: 950; font-size: 12px; letter-spacing: 0.1em; }
.feature-card h3, .use-item h3, .track-item h3, .why-item h3, .timeline-item h3, .country-card h3 { margin: 22px 0 0; font-size: 24px; line-height: 1.08; letter-spacing: -0.04em; }
.feature-card p, .use-item p, .track-item p, .why-item p, .timeline-item p, .country-card p { margin: 14px 0 0; color: var(--muted); }

.use-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 76px; align-items: start; }
.sticky-heading { position: sticky; top: calc(var(--header-height) + 38px); }
.use-list { display: grid; gap: 14px; }
.use-item { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 26px; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-md); background: rgba(255,255,255,0.045); }
.use-item > span { color: var(--orange); font-weight: 950; letter-spacing: 0.16em; }
.use-item p { color: rgba(255,255,255,0.66); }

.country-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin-top: 42px; }
.country-card { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 18px 62px rgba(16, 24, 32, 0.05); }
.country-card > span { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; color: var(--orange); background: var(--orange-soft); font-weight: 950; letter-spacing: 0.1em; }

.education { overflow: hidden; }
.education-card { position: sticky; top: calc(var(--header-height) + 38px); padding: 38px; border-radius: var(--radius-lg); color: var(--white); background: var(--charcoal); box-shadow: var(--shadow); }
.education-card img { width: 64px; height: 64px; margin-bottom: 28px; }
.education-card p { color: rgba(255,255,255,0.68); }
.track-list { display: grid; gap: 16px; }
.track-item { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.track-item span { color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: 0.18em; text-transform: uppercase; }

.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.why-item { min-height: 258px; padding: 24px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.13); background: rgba(255,255,255,0.045); }
.why-item p { color: rgba(255,255,255,0.66); }

.timeline { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.timeline-item { min-height: 286px; padding: 28px; border-right: 1px solid var(--line); }
.timeline-item:last-child { border-right: 0; }
.timeline-item span { color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: 0.18em; }

.engagement-table { border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,0.045); }
.table-row { display: grid; grid-template-columns: 0.8fr 0.55fr 1.4fr; min-height: 76px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.table-row:last-child { border-bottom: 0; }
.table-row span { display: flex; align-items: center; padding: 18px 20px; border-right: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.74); }
.table-row span:last-child { border-right: 0; }
.table-head { min-height: 56px; background: rgba(255,255,255,0.08); }
.table-head span { color: var(--white); font-size: 12px; font-weight: 950; letter-spacing: 0.16em; text-transform: uppercase; }

.compliance-inner { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 58px; align-items: start; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 62px rgba(16, 24, 32, 0.06); }
.compliance-copy a { display: inline-flex; margin-top: 8px; color: var(--orange); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.contact { overflow: hidden; }
.contact:before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 10%, rgba(255,90,31,0.24), transparent 28%); pointer-events: none; }
.contact-grid { position: relative; z-index: 2; }
.contact-links { display: grid; gap: 10px; margin-top: 26px; }
.contact-links a { color: var(--white); font-weight: 850; letter-spacing: 0.02em; }
.contact-form { padding: 30px; border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: 0 40px 120px rgba(0,0,0,0.24); }
.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
.form-row label { color: rgba(16,24,32,0.64); font-size: 12px; font-weight: 950; letter-spacing: 0.15em; text-transform: uppercase; }
.form-row input, .form-row textarea, .form-row select { width: 100%; border: 1px solid var(--line); border-radius: 16px; background: #fbfbf8; color: var(--ink); padding: 14px 15px; outline: 0; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.form-row textarea { resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: rgba(255,90,31,0.55); box-shadow: 0 0 0 4px rgba(255,90,31,0.12); }
.form-submit { width: 100%; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; }

.site-footer { color: var(--white); background: #0a1116; padding: 56px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.8fr 0.9fr; gap: 42px; align-items: start; }
.footer-logo { width: 170px; margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,0.62); max-width: 360px; }
.footer-links, .footer-meta { display: grid; gap: 12px; }
.footer-links a, .footer-meta a, .footer-meta span { color: rgba(255,255,255,0.62); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links a:hover, .footer-meta a:hover { color: var(--orange); }

.legal-main { padding-top: calc(var(--header-height) + 50px); }
.legal-hero { padding: 64px 0 34px; }
.legal-hero h1 { margin: 12px 0 0; font-size: clamp(42px, 7vw, 78px); line-height: 0.96; letter-spacing: -0.06em; }
.legal-content { padding: 34px 0 96px; }
.legal-card { max-width: 920px; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 62px rgba(16, 24, 32, 0.06); }
.legal-card h2 { margin: 30px 0 8px; font-size: 26px; letter-spacing: -0.04em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 17px; line-height: 1.72; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (max-width: 1180px) {
  .main-nav { gap: 22px; }
  .country-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .header-cta, .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav.is-open { position: fixed; display: grid; top: var(--header-height); left: 20px; right: 20px; gap: 0; padding: 12px; border: 1px solid rgba(16,24,32,0.12); border-radius: 24px; background: rgba(247,247,243,0.98); box-shadow: var(--shadow); }
  .main-nav.is-open a { padding: 16px; border-bottom: 1px solid rgba(16,24,32,0.08); }
  .main-nav.is-open a:last-child { border-bottom: 0; }
  .hero-inner, .split-grid, .education-grid, .use-grid, .engagements-grid, .contact-grid, .compliance-inner { grid-template-columns: 1fr; }
  .hero-inner { gap: 42px; }
  .sticky-heading, .education-card { position: relative; top: auto; }
  .stats-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .timeline-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .brand { width: 142px; }
  .language-switch { display: none; }
  .hero { min-height: auto; padding: calc(var(--header-height) + 54px) 0 68px; }
  .hero h1 { font-size: clamp(42px, 14vw, 64px); }
  .hero-panel, .education-card, .contact-form, .compliance-inner, .legal-card { border-radius: 24px; padding: 22px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); line-height: 1.02; max-width: 10.6ch; }
  .hero-actions .btn, .btn-secondary, .btn-primary { width: 100%; }
  .stats-grid, .why-grid, .cards-grid, .country-grid { grid-template-columns: 1fr; }
  .feature-card, .country-card { min-height: auto; }
  .use-item { grid-template-columns: 1fr; gap: 8px; }
  .table-row { grid-template-columns: 1fr; }
  .table-row span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .table-row span:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
