
/* ═══════════════════════════════════════════════════════════════════
   RESET & VARIABLES
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1a1a1a;
  --cream: #E8E4D9;
  --cream2: rgba(232, 228, 217, 0.7);
  --muted: rgba(232, 228, 217, 0.4);
  --blue: #1847c8;
  --blue-h: #1035a0;
  --blue-glow: rgba(24, 71, 200, 0.25);
  --red: #d63a12;
  --border: rgba(232, 228, 217, 0.08);
  --radius: 12px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Golos Text', system-ui, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(232,228,217,0.15); }

::selection { background: var(--blue); color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--blue); }
.nav-logo span { color: var(--blue); }

/* Pill Navigation */
.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(232, 228, 217, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  list-style: none;
  gap: 0;
}

.nav-pill-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: var(--blue);
  border-radius: 999px;
  transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              opacity 0.2s;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.nav-pill li a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream2);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.nav-pill li a:hover,
.nav-pill li a.active { color: #fff; }

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  letter-spacing: 0.3px;
}
.nav-cta:hover { 
  background: var(--blue-h); 
  transform: translateY(-1px); 
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

#shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, 
    rgba(10,10,10,0.7) 0%, 
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.85) 85%,
    rgba(10,10,10,0.95) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 48px 100px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
}
.hero-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--cream);
}

.hero-h1 mark {
  background: none;
  color: var(--blue);
  font-style: italic;
  border-bottom: 3px solid var(--red);
  padding-bottom: 2px;
}

/* Word reveal animation */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: wordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 17px;
  color: var(--cream2);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
}

.hero-trust {
  font-size: 12px;
  color: var(--muted);
  margin: 24px 0 40px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.3px;
  line-height: 1.65;
}
.hero-trust strong { 
  color: var(--cream); 
  font-weight: 700; 
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--blue-glow);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}
.btn-outline:hover { 
  border-color: rgba(232,228,217,0.25); 
  background: rgba(232,228,217,0.03);
  transform: translateY(-2px); 
}

.hero-note { 
  font-size: 12px; 
  color: var(--muted); 
  line-height: 1.5;
}

/* Hero Card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.hc-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
  border: 3px solid var(--border);
  display: block;
}

.hc-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.hc-role { 
  font-size: 12px; 
  color: var(--muted); 
  margin-bottom: 28px;
  line-height: 1.5;
}

.hc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.hcs-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hcs-label { 
  font-size: 11px; 
  color: var(--muted); 
  margin-top: 6px;
  line-height: 1.3;
}

.hc-div { 
  height: 1px; 
  background: var(--border); 
  margin-bottom: 24px; 
}

.hc-tags { 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
}

.htag {
  background: rgba(24,71,200,0.12);
  border: 1px solid rgba(24,71,200,0.3);
  color: #7ea8ff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIPE
   ═══════════════════════════════════════════════════════════════════ */
.stripe {
  background: var(--blue);
  padding: 48px 48px;
  position: relative;
  overflow: hidden;
}

.stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stripe-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stripe-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stripe-num span { 
  color: rgba(255,255,255,0.5); 
}

.stripe-label { 
  font-size: 13px; 
  color: rgba(255,255,255,0.65); 
  line-height: 1.5; 
}

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS BASE
   ═══════════════════════════════════════════════════════════════════ */
section { 
  padding: 120px 48px; 
}

.si { 
  max-width: 1240px; 
  margin: 0 auto; 
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.sec-tag::before { 
  content: ''; 
  width: 24px; 
  height: 2px; 
  background: var(--blue); 
}

.sec-h {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.sec-sub { 
  font-size: 17px; 
  color: var(--cream2); 
  max-width: 600px; 
  line-height: 1.75; 
}

/* ═══════════════════════════════════════════════════════════════════
   GLOW CARDS
   ═══════════════════════════════════════════════════════════════════ */
.glow-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s, 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mouse-x) var(--mouse-y),
    rgba(24, 71, 200, 0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.glow-card:hover::before { opacity: 1; }

.glow-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(24,71,200,0.4);
  box-shadow: 0 0 0 1px rgba(24,71,200,0.15), 
              0 24px 48px rgba(0,0,0,0.4),
              0 0 80px rgba(24,71,200,0.15);
}

.glow-card-inner {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════════
   TASKS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.tasks-section { 
  background: var(--bg); 
}

.tasks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.task-card { 
  padding: 36px; 
}

.task-number {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.task-title { 
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.task-desc { 
  font-size: 15px; 
  color: var(--cream2); 
  line-height: 1.7; 
}

/* ═══════════════════════════════════════════════════════════════════
   CASES SECTION
   ═══════════════════════════════════════════════════════════════════ */
.cases-section { 
  background: var(--surface); 
}

.cases-head { 
  display: flex; 
  align-items: flex-end; 
  justify-content: space-between; 
  margin-bottom: 64px; 
}

.see-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
  letter-spacing: 0.3px;
}
.see-all:hover { gap: 10px; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card { 
  cursor: pointer; 
}

.cc-top {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.cc-tags { 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  margin-bottom: 20px; 
}

.cc-tag {
  background: rgba(24,71,200,0.1);
  border: 1px solid rgba(24,71,200,0.25);
  color: #7ea8ff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.cc-res-lbl { 
  font-size: 11px; 
  color: var(--muted); 
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.cc-res-big {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cc-res-meta { 
  font-size: 13px; 
  color: var(--muted); 
}

.cc-bottom { 
  padding: 24px 32px; 
}

.cc-title { 
  font-size: 15px; 
  font-weight: 600; 
  line-height: 1.6; 
  margin-bottom: 18px; 
}

.cc-metrics { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
}

.ccm-val { 
  font-size: 14px; 
  font-weight: 700; 
  font-family: var(--font-serif);
  letter-spacing: -0.3px;
}

.ccm-key { 
  font-size: 11px; 
  color: var(--muted); 
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════════════════════════════════ */
.why-section { 
  background: var(--bg); 
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
  margin-top: 64px;
}

.why-point {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.why-point:first-child { 
  border-top: 1px solid var(--border); 
}

.wp-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: rgba(24,71,200,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  letter-spacing: -0.02em;
}

.wp-title { 
  font-size: 16px; 
  font-weight: 700; 
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.wp-desc { 
  font-size: 15px; 
  color: var(--cream2); 
  line-height: 1.7; 
}

.funnel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.funnel-title { 
  font-size: 12px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  color: var(--muted); 
  margin-bottom: 28px; 
}

.fs { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 16px 0; 
  border-bottom: 1px solid var(--border); 
}

.fs:last-child { 
  border-bottom: none; 
}

.fs-dot { 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  background: var(--blue); 
  flex-shrink: 0; 
}

.fs-label { 
  font-size: 15px; 
  font-weight: 600; 
  flex: 1; 
}

.fs-arr { 
  font-size: 11px; 
  color: var(--muted); 
}

.why-note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(24,71,200,0.06);
  border: 1px solid rgba(24,71,200,0.2);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--cream2);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   SYSTEM SECTION
   ═══════════════════════════════════════════════════════════════════ */
.system-section { 
  background: var(--surface); 
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.sys-card { 
  padding: 36px; 
}

.sys-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: rgba(232,228,217,0.08);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.sys-title { 
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.sys-desc { 
  font-size: 15px; 
  color: var(--cream2); 
  line-height: 1.7; 
}

/* ═══════════════════════════════════════════════════════════════════
   TOOLS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.tools-section { 
  background: var(--bg); 
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.tool-card { 
  padding: 32px; 
  display: flex; 
  flex-direction: column; 
  min-height: 280px;
}

.tc-number {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: rgba(24,71,200,0.5);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.tc-title { 
  font-size: 17px; 
  font-weight: 700; 
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.tc-who { 
  font-size: 12px; 
  font-weight: 600; 
  color: #7ea8ff; 
  margin-bottom: 12px; 
}

.tc-desc { 
  font-size: 14px; 
  color: var(--cream2); 
  line-height: 1.7; 
  flex: 1; 
  margin-bottom: 20px; 
}

.tc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}
.tc-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   HOW I WORK SECTION
   ═══════════════════════════════════════════════════════════════════ */
.how-section { 
  background: var(--surface); 
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 64px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.step-card {
  background: var(--bg);
  padding: 32px;
  position: relative;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
  letter-spacing: -0.02em;
}

.step-title { 
  font-size: 16px; 
  font-weight: 700; 
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-desc { 
  font-size: 14px; 
  color: var(--cream2); 
  line-height: 1.7; 
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.about-section { 
  background: var(--bg); 
}

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 24px;
  border: 2px solid var(--border);
  background: linear-gradient(135deg, var(--blue), var(--surface));
}

.about-text { 
  font-size: 17px; 
  color: var(--cream2); 
  line-height: 1.85; 
  margin: 28px 0 36px; 
}

.about-text p { 
  margin-bottom: 16px; 
}

.about-text strong { 
  color: var(--cream); 
  font-weight: 600; 
}

.af {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.af:first-child { 
  border-top: 1px solid var(--border); 
}

.af-dot { 
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background: var(--blue); 
  margin-top: 9px; 
  flex-shrink: 0; 
}

.af-text { 
  font-size: 15px; 
  color: var(--cream2);
  line-height: 1.6;
}

.about-socials { 
  display: flex; 
  gap: 12px; 
  margin-top: 32px; 
  flex-wrap: wrap; 
}

.asc {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream2);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.3px;
}
.asc:hover { 
  background: var(--surface2); 
  color: var(--cream); 
  border-color: rgba(232,228,217,0.2); 
}

/* ═══════════════════════════════════════════════════════════════════
   ARTICLES SECTION
   ═══════════════════════════════════════════════════════════════════ */
.arts-section { 
  background: var(--surface); 
}

.arts-head { 
  display: flex; 
  align-items: flex-end; 
  justify-content: space-between; 
  margin-bottom: 64px; 
}

.arts-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
}

.art-card { 
  cursor: pointer; 
  overflow: hidden; 
}

.art-img { 
  height: 180px; 
  display: flex; 
  align-items: flex-end; 
  padding: 20px;
  position: relative;
}

.art-cat {
  background: rgba(24,71,200,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.art-body { 
  padding: 24px 28px; 
}

.art-title { 
  font-size: 15px; 
  font-weight: 600; 
  line-height: 1.6; 
  margin-bottom: 12px; 
}

.art-meta { 
  font-size: 12px; 
  color: var(--muted); 
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════ */
.faq-section { 
  background: var(--bg); 
}

.faq-list { 
  margin-top: 64px; 
  display: flex; 
  flex-direction: column; 
}

.faq-item { 
  border-bottom: 1px solid var(--border); 
  overflow: hidden; 
}

.faq-item:first-child { 
  border-top: 1px solid var(--border); 
}

.faq-q {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  gap: 20px;
  user-select: none;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--blue); }

.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.faq-item.open .faq-q-icon { 
  transform: rotate(45deg); 
  background: var(--blue); 
  color: #fff; 
  border-color: var(--blue); 
}

.faq-a { 
  max-height: 0; 
  overflow: hidden; 
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s; 
}

.faq-a-inner { 
  padding-bottom: 24px; 
  font-size: 15px; 
  color: var(--cream2); 
  line-height: 1.75; 
}

.faq-item.open .faq-a { 
  max-height: 300px; 
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2a7a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,255,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .sec-tag { 
  color: rgba(255,255,255,0.6); 
  justify-content: center; 
}

.cta-section .sec-tag::before { 
  background: rgba(255,255,255,0.4); 
}

.cta-section .sec-h { 
  color: #fff; 
  font-size: clamp(38px, 4.5vw, 56px); 
  margin-bottom: 20px; 
}

.cta-desc { 
  font-size: 18px; 
  color: rgba(255,255,255,0.8); 
  max-width: 560px; 
  margin: 0 auto 44px; 
  line-height: 1.75; 
}

.cta-btns { 
  display: flex; 
  gap: 14px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.btn-white {
  background: #fff;
  color: var(--blue);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  letter-spacing: 0.3px;
}
.btn-white:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 36px rgba(0,0,0,0.3); 
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-block;
  letter-spacing: 0.3px;
}
.btn-white-outline:hover { 
  border-color: #fff; 
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px); 
}

.cta-note { 
  font-size: 13px; 
  color: rgba(255,255,255,0.5); 
  margin-top: 20px; 
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 48px 48px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer-brand span { 
  color: var(--blue); 
}

.footer-brand-desc { 
  font-size: 14px; 
  color: var(--muted); 
  line-height: 1.75; 
  margin-bottom: 28px; 
}

.footer-socials { 
  display: flex; 
  gap: 12px; 
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,228,217,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.footer-social:hover { 
  background: var(--blue); 
  color: #fff; 
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-col-title { 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--cream); 
  margin-bottom: 20px; 
  text-transform: uppercase; 
  letter-spacing: 1.2px; 
}

.footer-links { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}

.footer-links a { 
  font-size: 14px; 
  color: var(--muted); 
  text-decoration: none; 
  transition: color 0.2s; 
}
.footer-links a:hover { 
  color: var(--cream); 
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { 
  font-size: 13px; 
  color: var(--muted); 
}

.footer-bottom-links { 
  display: flex; 
  gap: 24px; 
}

.footer-bottom-links a { 
  font-size: 13px; 
  color: var(--muted); 
  text-decoration: none; 
  transition: color 0.2s; 
}
.footer-bottom-links a:hover { 
  color: var(--cream); 
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
  }
  .why-grid,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  nav { 
    padding: 0 24px; 
    height: 64px;
  }
  .nav-pill { 
    display: none; 
  }
  .hero-content { 
    grid-template-columns: 1fr; 
    padding: 120px 24px 72px; 
    gap: 48px;
  }
  .hero-card { 
    display: none; 
  }
  .hero-h1 { 
    font-size: 40px; 
  }
  section { 
    padding: 88px 24px; 
  }
  .stripe { 
    padding: 40px 24px; 
  }
  .stripe-inner { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 28px; 
  }
  .tasks-grid, 
  .system-grid, 
  .cases-grid, 
  .tools-grid, 
  .arts-grid { 
    grid-template-columns: 1fr; 
  }
  .how-steps { 
    grid-template-columns: 1fr; 
    gap: 3px; 
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 36px; 
  }
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
  }
}

/* ═══ INTERIOR PAGE LAYOUT ═══ */
.page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumbs a:hover { color: var(--cream); }
.breadcrumbs span { color: rgba(232,228,217,0.2); }

/* ═══ ARTICLE LAYOUT ═══ */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}
.article-content { min-width: 0; }

.art-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.art-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue); }

.article-h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--cream);
}
.article-lead {
  font-size: 18px;
  color: var(--cream2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.art-top-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.art-top-meta span { display: flex; align-items: center; gap: 6px; }

/* Article body typography */
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin: 48px 0 16px;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--cream);
}
.article-content p {
  font-size: 16px;
  color: var(--cream2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 20px;
  color: var(--cream2);
}
.article-content li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.article-content blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--blue);
  background: rgba(24,71,200,0.06);
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  color: var(--cream);
  line-height: 1.75;
  font-style: italic;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.article-content th {
  background: rgba(232,228,217,0.04);
  border: 1px solid var(--border);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  color: var(--cream);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.article-content td {
  padding: 14px 18px;
  border: 1px solid var(--border);
  color: var(--cream2);
  font-size: 15px;
}
.article-content tr:hover td { background: rgba(232,228,217,0.02); }

.art-img-block {
  margin: 32px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.art-img-block img { width: 100%; display: block; }
.art-img-caption {
  font-size: 12px;
  color: var(--muted);
  padding: 12px 18px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.art-highlight {
  background: rgba(24,71,200,0.06);
  border: 1px solid rgba(24,71,200,0.2);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
}
.art-highlight strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 10px;
}
.art-highlight p { margin-bottom: 0; }

.art-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  margin-top: 56px;
  text-align: center;
}
.art-cta h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
}
.art-cta p { font-size: 15px; color: var(--cream2); margin-bottom: 24px; }

/* ═══ SIDEBAR ═══ */
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.sidebar-box h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 18px;
}
.sidebar-toc a {
  display: block;
  font-size: 14px;
  color: var(--cream2);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  transition: color .2s;
}
.sidebar-toc a:last-child { border-bottom: 0; }
.sidebar-toc a:hover { color: var(--blue); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--blue), #0c2d90);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.sidebar-cta h4 { color: #fff !important; font-family: var(--font-serif); font-size: 17px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,.7); margin: 10px 0 18px; }
.btn-sidebar {
  background: #fff;
  color: var(--blue);
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.btn-sidebar:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

/* ═══ CASES PAGE ═══ */
.cases-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.case-page-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.case-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24,71,200,.4);
  box-shadow: 0 24px 56px rgba(0,0,0,.4), 0 0 80px rgba(24,71,200,.1);
}
.case-top-band {
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--border);
}
.case-bottom-body { padding: 28px 36px; }
.case-h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--cream);
}
.case-excerpt { font-size: 14px; color: var(--cream2); line-height: 1.7; margin-bottom: 18px; }
.case-read { font-size: 13px; font-weight: 700; color: var(--blue); }

/* Case detail page */
.case-detail-h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--cream);
}
.case-kpi-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 40px 0;
}
.case-kpi {
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}
.case-kpi-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.case-kpi-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ═══ ARTICLES PAGE ═══ */
.articles-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.article-page-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.article-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24,71,200,.4);
  box-shadow: 0 24px 56px rgba(0,0,0,.4), 0 0 80px rgba(24,71,200,.1);
}
.apc-img {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  position: relative;
}
.apc-cat {
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.apc-body { padding: 28px 32px; }
.apc-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--cream);
}
.apc-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.apc-read { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ═══ PRIVACY PAGE ═══ */
.privacy-content { max-width: 800px; }
.privacy-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin: 40px 0 14px;
}
.privacy-content p, .privacy-content li {
  font-size: 15px;
  color: var(--cream2);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-content ul { margin: 0 0 16px 20px; }
.privacy-content a { color: var(--blue); }

@media (max-width: 900px) {
  .page-wrap { padding: 100px 20px 60px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .cases-page-grid, .articles-page-grid { grid-template-columns: 1fr; }
  .case-kpi-band { grid-template-columns: repeat(2, 1fr); }
}
