:root {
  --indigo: #4f46e5;
  --indigo-dark: #3730a3;
  --indigo-deep: #1e1b4b;
  --violet: #8b5cf6;
  --violet-light: #a78bfa;
  --gold: #fbbf24;
  --gold-soft: #fde68a;
  --plum: #7c3aed;
  --rose: #ec4899;
  --navy: #0f172a;
  --ink: #1e293b;
  --slate: #475569;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --cream: #fefdfb;
  --white: #ffffff;
  --success: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;
  --grad-1: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
  --grad-2: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-3: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --grad-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(139, 92, 246, 0.06) 100%);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 15px 45px rgba(79, 70, 229, 0.4);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font: 'Space Grotesk', -apple-system, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== Ambient Background ===== */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.amb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: drift 35s infinite ease-in-out;
}

.orb-a {
  width: 700px; height: 700px;
  background: var(--indigo);
  top: -250px; left: -200px;
}

.orb-b {
  width: 600px; height: 600px;
  background: var(--violet);
  bottom: -150px; right: -150px;
  animation-delay: -10s;
}

.orb-c {
  width: 450px; height: 450px;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -20s;
  opacity: 0.2;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.5) 1px, transparent 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.5) 1px, transparent 1px, transparent 2px);
  background-size: 4px 4px;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -50px) scale(1.15); }
  66% { transform: translate(-40px, 60px) scale(0.9); }
}

/* ===== Glass Navigation ===== */
.glassbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1280px;
  z-index: 1000;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}

.glassbar.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.glassbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--grad-1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--display);
  overflow: hidden;
}

.brand-drop {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid white;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 1.25rem;
  color: var(--indigo-deep);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name em {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.navlinks {
  display: flex;
  gap: 30px;
}

.navlinks a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad-1);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.navlinks a:hover { color: var(--indigo); }
.navlinks a:hover::after { width: 20px; }

.navphone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: var(--indigo-deep);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}

.navphone:hover {
  background: var(--grad-1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.navphone i { color: var(--gold); }

.mobbtn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobbtn span {
  width: 22px;
  height: 2px;
  background: var(--indigo-deep);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--indigo-deep);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--grad-1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: white;
  color: var(--indigo-deep);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===== Hero Split ===== */
.hero-split {
  min-height: 100vh;
  padding: 160px 0 80px;
  position: relative;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.eyebrow-line {
  width: 50px;
  height: 3px;
  background: var(--grad-1);
  border-radius: 2px;
}

.hero-eyebrow span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.h-top {
  display: block;
  font-size: 0.42em;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  margin-bottom: 16px;
}

.h-main {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.95;
}

.h-script {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-size: 1.15em;
  line-height: 1;
  margin-top: 4px;
}

.h-sub {
  display: block;
  font-size: 0.42em;
  color: var(--indigo-deep);
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.35;
  max-width: 90%;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
}

.pill i { color: var(--indigo); }

/* Hero Right - Visual Card Stack */
.hero-visual {
  position: relative;
  height: 540px;
}

.visual-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.v-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.v-main {
  position: relative;
  z-index: 2;
}

.v-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}

.v-badge i { color: var(--success); }

.v-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all 0.3s var(--ease);
}

.v-row:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.v-row:last-of-type { margin-bottom: 18px; }

.v-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-1);
  color: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.v-row > div {
  flex: 1;
  min-width: 0;
}

.v-row strong {
  display: block;
  font-size: 0.9rem;
  color: var(--indigo-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-row span {
  font-size: 0.72rem;
  color: var(--muted);
}

.v-status {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.v-status.done { background: #d1fae5; color: #065f46; }
.v-status.live { background: var(--gold-soft); color: #92400e; animation: pulse-live 2s infinite; }
.v-status.wait { background: #e0e7ff; color: var(--indigo-deep); }

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(251, 191, 36, 0); }
}

.v-foot {
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.v-bar {
  flex: 1;
  height: 8px;
  background: var(--soft);
  border-radius: 100px;
  overflow: hidden;
}

.v-fill {
  width: 60%;
  height: 100%;
  background: var(--grad-1);
  border-radius: 100px;
}

.v-foot span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Float Stats */
.float-stat {
  position: absolute;
  background: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 3;
  animation: float-stat 5s infinite ease-in-out;
}

.fs-1 {
  top: -10px;
  right: -10px;
  animation-delay: -1s;
}

.fs-2 {
  bottom: 20px;
  left: -30px;
  animation-delay: -3s;
}

@keyframes float-stat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fs-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-gold);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.float-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--indigo-deep);
  line-height: 1;
}

.float-stat span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Stats Strip */
.stats-strip {
  max-width: 1100px;
  margin: 80px auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-1);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
  filter: blur(20px);
}

.strip-item { text-align: center; flex: 1; min-width: 140px; }

.strip-item h3 {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--indigo-deep);
  line-height: 1;
  margin-bottom: 4px;
  font-style: italic;
}

.strip-item p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.strip-sep {
  width: 1px;
  height: 50px;
  background: var(--line);
}

/* ===== Section Common ===== */
section { padding: 120px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===== Services Grid ===== */
.svc-section { background: white; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.svc-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--accent, var(--indigo));
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease);
}

.svc-corner span {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: white;
}

.svc-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.svc-card:hover .svc-corner {
  width: 80px;
  height: 80px;
}

.svc-icon {
  width: 64px;
  height: 64px;
  background: var(--accent, var(--indigo));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}

.svc-card:hover .svc-icon {
  transform: rotate(-8deg) scale(1.08);
}

.svc-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.svc-card p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.svc-card ul {
  margin-bottom: 24px;
}

.svc-card ul li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-card ul li i { color: var(--success); font-size: 0.75rem; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--indigo);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.svc-link:hover { gap: 14px; color: var(--accent, var(--indigo)); }

/* ===== Method Section (Zigzag) ===== */
.method-section { background: var(--cream); }

.zigzag {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zig-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
}

.zig-right {
  grid-template-columns: 1fr 100px;
}

.zig-mark {
  width: 100px;
  height: 100px;
  background: var(--grad-1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s var(--ease);
  position: relative;
}

.zig-mark::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(79, 70, 229, 0.3);
  border-radius: 50%;
  animation: rotate-slow 20s infinite linear;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.zig-mark span {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: white;
}

.zig-row:hover .zig-mark {
  transform: scale(1.08);
}

.zig-card {
  background: white;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zig-row:hover .zig-card {
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo);
  transform: translateX(8px);
}

.zig-right:hover .zig-card {
  transform: translateX(-8px);
}

.zig-card i {
  font-size: 1.5rem;
  color: var(--indigo);
  margin-bottom: 4px;
}

.zig-card h3 {
  font-size: 1.3rem;
  color: var(--indigo-deep);
}

.zig-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

/* ===== Work Section ===== */
.work-section { background: white; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.work-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.work-wide {
  grid-column: span 3;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.work-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  overflow: hidden;
}

.work-lg .work-art, .work-wide .work-art {
  position: relative;
  height: 65%;
}

.work-card:not(.work-lg):not(.work-wide) .work-art {
  position: relative;
  height: 60%;
}

.w-shape {
  position: absolute;
}

.ws1 {
  width: 60%;
  height: 60%;
  border: 4px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  top: 15%;
  left: 15%;
}

.ws2 {
  width: 28%;
  height: 28%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  bottom: 20%;
  right: 18%;
  transform: rotate(12deg);
}

.w-stripe {
  position: absolute;
  width: 50%;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  bottom: 18%;
  left: 20%;
  box-shadow: 0 12px 0 rgba(255, 255, 255, 0.5);
}

.work-info {
  padding: 22px;
  background: white;
  flex: 1;
  position: relative;
  z-index: 1;
}

.work-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-soft);
  color: var(--indigo-deep);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.work-info h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.work-info p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ===== Journal Section ===== */
.journal-section { background: var(--cream); }

.journal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.journal-side {
  position: sticky;
  top: 120px;
  align-self: start;
}

.side-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meta-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: center;
}

.meta-row > div {
  padding: 10px;
  background: var(--soft);
  border-radius: var(--radius-sm);
}

.meta-row strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--indigo-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.meta-row span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  font-weight: 600;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-av {
  width: 44px;
  height: 44px;
  background: var(--grad-2);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-box strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.author-box span {
  font-size: 0.75rem;
  color: var(--muted);
}

.toc-box h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--indigo-deep);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.toc-box ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.toc-box ul li:last-child { border-bottom: none; }

.toc-box ul li a {
  color: var(--slate);
  display: block;
  transition: all 0.2s var(--ease);
}

.toc-box ul li a:hover {
  color: var(--indigo);
  padding-left: 6px;
}

.meta-box.cta-box {
  background: var(--indigo-deep);
  color: white;
  border: none;
  text-align: center;
}

.meta-box.cta-box i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.meta-box.cta-box h4 {
  color: white;
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 6px;
}

.meta-box.cta-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.side-cta {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--indigo-deep);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}

.side-cta:hover {
  background: white;
  transform: translateY(-2px);
}

/* Journal Main */
.j-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--indigo-deep);
}

.j-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.j-badge {
  padding: 6px 14px;
  background: var(--indigo-deep);
  color: white;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.j-badge.alt {
  background: var(--gold);
  color: var(--indigo-deep);
}

.j-header h1 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.j-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}

.j-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.j-meta i { color: var(--indigo); }

.j-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.9rem;
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}

.j-body h2::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--grad-1);
  border-radius: 10px;
}

.j-body h2:first-of-type { border-top: none; padding-top: 0; }
.j-body h2:first-of-type::before { display: none; }

.j-body h3 {
  font-size: 1.3rem;
  margin: 36px 0 14px;
  color: var(--indigo-deep);
}

.j-body p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.85;
}

.lead {
  font-size: 1.18rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  font-family: var(--display);
  font-style: italic;
  line-height: 1.6 !important;
}

.j-body a {
  color: var(--indigo);
  font-weight: 600;
  border-bottom: 1.5px solid var(--violet);
}

.j-body a:hover {
  color: var(--violet);
  border-color: var(--violet);
}

/* Pull Quote */
.pull-quote {
  position: relative;
  padding: 40px 40px 40px 70px;
  margin: 40px 0;
  background: var(--indigo-deep);
  color: white;
  border-radius: var(--radius-lg);
}

.pull-quote i {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 2rem;
  color: var(--gold);
}

.pull-quote p {
  color: white !important;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem !important;
  line-height: 1.5 !important;
  margin: 0;
}

/* Info Callout */
.info-callout {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  margin: 28px 0;
  border-left: 4px solid;
}

.info-callout.tip { background: #e0e7ff; border-color: var(--indigo); }
.info-callout.warn { background: #fef3c7; border-color: var(--gold); }

.callout-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.info-callout.tip .callout-icon { color: var(--indigo); }
.info-callout.warn .callout-icon { color: var(--warn); }

.info-callout h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-callout p { margin: 0; font-size: 0.95rem; }

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.mini-stat {
  background: var(--indigo-deep);
  color: white;
  padding: 24px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.mini-stat strong {
  font-family: var(--display);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--gold);
}

.mini-stat span {
  font-size: 0.78rem;
  opacity: 0.9;
  line-height: 1.3;
}

/* Process Box */
.process-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.process-box h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--indigo-deep);
  font-size: 1.05rem;
}

.method-list {
  display: grid;
  gap: 14px;
}

.m-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.m-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.m-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-1);
  color: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.m-item strong {
  display: block;
  color: var(--indigo-deep);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.m-item p {
  margin: 0;
  font-size: 0.85rem;
}

/* Comparison Table */
.comparison-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 16px 20px;
  background: var(--indigo-deep);
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--slate);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--soft); }
.comparison-table td:first-child { color: var(--indigo-deep); font-weight: 600; }

/* Timeline Box */
.timeline-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.timeline-box h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--indigo-deep);
  font-size: 1.05rem;
}

.tl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.tl-item:last-child { border-bottom: none; }

.tl-dot {
  width: 16px;
  height: 16px;
  background: var(--grad-1);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.tl-item strong {
  display: block;
  color: var(--indigo-deep);
 