/* MOKSI · main.css · brand book v2 (mai 2026) */

:root {
  --violet: #6E3AFF;
  --violet-dark: #5A2DD9;
  --orange: #E14E1D;
  --green: #00D672;
  --yellow: #FFC233;
  --blue: #1A2BBF;
  --magenta: #FF1F8A;
  --ink: #0A0A0A;
  --ink-2: #333333;
  --paper: #FFFFFF;
  --soft: #F5F5F5;
  --line: #EEEEEE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* TYPO */
.anton, h1.anton, h2.anton {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.95;
  font-weight: 400;
}
.oswald {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}
.label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* WORDMARK */
.wordmark img { height: 32px; width: auto; display: block; }
.wordmark-footer img { height: 64px; width: auto; display: block; margin-bottom: 16px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-links {
  display: flex; gap: 40px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
}
.nav-links a:hover { color: var(--violet); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.lang-switch {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
}
.lang-switch a.active { color: var(--violet); }
.nav-cta {
  background: var(--violet); color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--violet-dark); color: white; }

/* HERO */
.hero {
  padding: 200px 0 120px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero .vague-watermark {
  position: absolute;
  left: -10%; top: -20%;
  transform: rotate(40deg);
  width: 125%;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}
.hero .vague-watermark img { width: 100%; height: auto; display: block; }
.hero .label { color: var(--violet); margin-bottom: 32px; }
.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 1100px;
}
.hero h1 .accent { color: var(--violet); }
.hero-sub {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 640px;
  color: var(--ink-2);
  margin-bottom: 48px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--violet); color: white; }
.btn-primary:hover { background: var(--violet-dark); color: white; }
.btn-secondary { background: transparent; color: var(--violet); border-color: var(--violet); }
.btn-secondary:hover { background: var(--violet); color: white; }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* CLIENTS HERO STRIP */
.hero-clients {
  margin-top: 100px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-clients .label { color: var(--ink-2); margin-bottom: 20px; }
.client-list {
  display: flex; flex-wrap: wrap; gap: 40px;
  align-items: center;
}
.client-list span {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* SECTION SEPARATORS */
.separator {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.separator.orange { background: var(--orange); color: var(--ink); }
.separator.green { background: var(--green); color: var(--ink); }
.separator.yellow { background: var(--yellow); color: var(--ink); }
.separator.blue { background: var(--blue); color: white; }
.separator.magenta { background: var(--magenta); color: white; }

.separator-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 40px;
}
.sep-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(160px, 22vw, 360px);
  font-weight: 700;
  line-height: 0.85;
  text-transform: uppercase;
}
.sep-content .label { margin-bottom: 16px; opacity: 0.8; }
.sep-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sep-content .sep-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.vague-bg {
  position: absolute;
  left: -10%; top: -20%;
  transform: rotate(40deg);
  width: 125%;
  pointer-events: none;
  user-select: none;
}
.vague-bg img { width: 100%; height: auto; display: block; }
.vague-bg.on-light img { opacity: 0.10; }
.vague-bg.on-dark img { opacity: 0.35; }
.vague-bg.on-color-light img { opacity: 0.15; }
.vague-bg.on-color-dark img { opacity: 0.25; }

/* CONTENT SECTION */
.content-section { padding: 120px 0; background: var(--paper); }
.content-section h2.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 1000px;
}
.content-section h2.section-title .accent { color: var(--violet); }
.content-section .lede {
  font-size: 1.125rem;
  color: var(--ink-2);
  max-width: 720px;
  margin-bottom: 80px;
  line-height: 1.55;
}

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 32px;
  transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--violet); }
.pillar .pillar-num {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  margin-bottom: 32px;
}
.pillar h3 {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.pillar p { font-size: 1rem; color: var(--ink-2); line-height: 1.55; }

/* HUB MODEL */
.hub-section {
  background: var(--ink);
  color: white;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.hub-section .label { color: var(--violet); margin-bottom: 32px; }
.hub-quote {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 1100px;
  margin-bottom: 40px;
}
.hub-quote::before { content: '"'; color: var(--violet); }
.hub-quote::after { content: '."'; color: var(--violet); }
.hub-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hub-point .label { color: var(--violet); margin-bottom: 16px; }
.hub-point p { font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.85); }

/* CASES */
.cases-section { background: var(--paper); padding: 120px 0; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
}
.case-card:hover { border-color: var(--violet); }
.case-photo {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.case-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.case-card:hover .case-photo img { transform: scale(1.02); }

.case-body { padding: 32px; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.case-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}
.case-body h3 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.case-body p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.55; }
.case-card::after {
  content: '→';
  position: absolute;
  bottom: 24px; right: 24px;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--violet);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.case-card:hover::after { opacity: 1; transform: translateX(4px); }

/* FUNNEL */
.funnel-section { padding: 120px 0; background: var(--paper); }
.funnel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 80px;
}
.funnel-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 20px;
}
.funnel-step .step-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet);
  margin-bottom: 24px;
}
.funnel-step h4 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.funnel-step p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.45; }

.global-section .sep-content h2 .lime-accent { color: var(--green); }

/* CTA FINAL */
.cta-final {
  background: var(--ink);
  color: white;
  padding: 180px 0 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(72px, 10vw, 200px);
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 32px;
}
.cta-final h2 .accent { color: var(--violet); }
.cta-final p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 48px;
}
.cta-final .btn-primary { font-size: 14px; }

/* FOOTER */
footer {
  background: var(--ink);
  color: white;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-grid h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet);
  margin-bottom: 20px;
}
.footer-grid p, .footer-grid a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}
.footer-grid a:hover { color: var(--violet); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-wrap: wrap; gap: 16px;
}
.social-cartouches { display: flex; gap: 8px; margin-top: 16px; }
.social-cartouches a {
  width: 36px; height: 36px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0;
  color: white !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
}
.cartouche.violet { background: var(--violet); }
.cartouche.orange { background: var(--orange); }
.cartouche.green { background: var(--green); }
.cartouche.yellow { background: var(--yellow); }
.cartouche.blue { background: var(--blue); }
.cartouche.magenta { background: var(--magenta); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pillars, .cases-grid, .funnel-grid, .hub-points, .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .separator-grid { grid-template-columns: 1fr; gap: 0; }
  .sep-num { font-size: 120px; margin-bottom: 24px; }
  .nav-links { display: none; }
  .separator, .content-section, .hub-section, .cases-section, .funnel-section, .cta-final {
    padding: 80px 0;
  }
  .hero { padding: 140px 0 80px; }
}
