  :root {
	--bg: #0a0a0a;
	--bg-alt: #141412;
	--fg: #f5f5f0;
	--fg-dim: #b8b7b1;
	--muted: #6b6a66;
	--subtle: #2a2a26;
	--line: rgba(245, 245, 240, 0.08);
	--line-strong: rgba(245, 245, 240, 0.18);
	--accent: #ff3e1f;
	--accent-warm: #ff7a3e;
	--accent-2: #6efe6e;
	--serif: 'Instrument Sans', 'Times New Roman', Georgia, serif;
	--sans: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	--mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-feature-settings: "ss01", "cv11";
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
  }

  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(255, 62, 31, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  }
  .cursor-ring.hover { width: 60px; height: 60px; border-color: var(--accent); }
  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    a, button { cursor: pointer; }
  }

  .scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px; width: 0%;
    background: var(--accent);
    z-index: 1000;
    box-shadow: 0 0 10px var(--accent);
  }

  /* ── nav ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }
  .logo {
    font-family: var(--mono);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-mark {
    width: 28px; height: 28px;
    border: 1.5px solid var(--fg);
    position: relative;
    display: grid;
    place-items: center;
  }
  .logo-mark::before, .logo-mark::after {
    content: '';
    position: absolute;
    background: var(--accent);
  }
  .logo-mark::before { width: 8px; height: 1px; }
  .logo-mark::after { width: 1px; height: 8px; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--fg-dim);
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--fg); }
  .nav-links a.active::after {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
  }
  .nav-cta {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 10px 18px;
    border: 1px solid var(--fg);
    background: var(--fg);
    color: var(--bg);
    text-transform: uppercase;
    transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--accent); color: var(--fg); border-color: var(--accent); }
  .nav-links a.nav-cta {
	color: var(--bg);
  }
  .nav-links a.nav-cta:hover {
	color: var(--fg);
  }

  /* hamburger toggle */
  .nav-toggle {
    display: none;
    width: 28px; height: 28px;
    position: relative;
    border: 1.5px solid var(--fg);
    margin-left: 4px;
    flex-shrink: 0;
    background: transparent;
    transition: border-color 0.3s ease;
  }
  .nav-toggle span {
    position: absolute;
    left: 50%; top: 50%;
    width: 12px; height: 1px;
    background: var(--fg);
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .nav-toggle span:nth-child(1) { transform: translate(-50%, -3px); }
  .nav-toggle span:nth-child(2) { transform: translate(-50%, 3px); }
  .nav-toggle.open { border-color: var(--accent); }
  .nav-toggle.open span { background: var(--accent); }
  .nav-toggle.open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }

  /* mobile menu overlay */
  .mobile-menu {
    position: fixed; inset: 0;
    z-index: 99;
    background: var(--bg);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    overflow-y: auto;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; }
  .mobile-menu-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
    pointer-events: none;
  }
  .mobile-menu-inner {
    position: relative; z-index: 2;
    min-height: 100%;
    display: flex; flex-direction: column;
    padding: 100px 24px 40px;
  }
  .mobile-menu-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu-status {
    display: flex; align-items: center; gap: 8px;
    color: var(--accent-2);
  }
  .mobile-menu-status .pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px var(--accent-2);
    animation: mobile-pulse 1.6s ease-in-out infinite;
  }
  @keyframes mobile-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .mobile-menu-list {
    list-style: none;
    flex-grow: 1;
    margin: 0; padding: 0;
  }
  .mobile-menu-list li {
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .mobile-menu.open .mobile-menu-list li { opacity: 1; transform: translateY(0); }
  .mobile-menu.open .mobile-menu-list li:nth-child(1) { transition-delay: 0.18s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(2) { transition-delay: 0.24s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(3) { transition-delay: 0.30s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(4) { transition-delay: 0.36s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(5) { transition-delay: 0.42s; }
  .mobile-menu-list a {
    display: flex; align-items: baseline; gap: 18px;
    padding: 22px 0;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--fg);
    line-height: 1;
  }
  .mobile-menu-list a .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.15em;
    font-weight: 400;
    flex-shrink: 0;
    width: 28px;
  }
  .mobile-menu-list a .lbl { flex-grow: 1; }
  .mobile-menu-list a .arr {
    font-size: 16px;
    color: var(--muted);
    transition: color 0.2s, transform 0.2s;
  }
  .mobile-menu-list a:active .arr { color: var(--accent); transform: translate(2px, -2px); }
  .mobile-menu-list li.active a .lbl {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .mobile-menu-list li.active a .num { color: var(--accent); }
  .mobile-menu-foot {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
  }
  .mobile-menu.open .mobile-menu-foot {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
  .mobile-menu-foot .lbl {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .mobile-menu-foot a, .mobile-menu-foot span {
    color: var(--fg-dim);
    font-size: 14px;
  }
  body.menu-open { overflow: hidden; }

  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { gap: 12px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-toggle { display: block; }
    .nav-cta {
      padding: 9px 14px;
      font-size: 11px;
      letter-spacing: 0.03em;
    }
    .mobile-menu-list a { font-size: 28px; }
  }

  .container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
  @media (max-width: 768px) { .container { padding: 0 20px; } }

  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
    display: inline-block;
  }

  /* ── hero ── */
  .hero {
    padding: 180px 0 80px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse at top left, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top left, black 20%, transparent 70%);
  }
  .hero-inner { position: relative; z-index: 2; }
  .hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 48px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .hero-meta-item::before { content: '//'; color: var(--accent); margin-right: 6px; }
  .hero h1 {
    font-size: clamp(40px, 7vw, 112px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
  }
  .hero h1 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .hero-sub {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--fg-dim);
  }

  /* ── filter bar ── */
  .filter-wrap {
    border-bottom: 1px solid var(--line);
    background: var(--bg-alt);
    position: sticky;
    top: 73px;
    z-index: 50;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(20, 20, 18, 0.85);
  }
  .filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 24px;
    flex-wrap: wrap;
  }
  .filter-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .chip {
    font-family: var(--mono);
    font-size: 11px;
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    color: var(--fg-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
  }
  .chip:hover { border-color: var(--fg); color: var(--fg); }
  .chip.active {
    background: var(--accent);
    color: var(--fg);
    border-color: var(--accent);
  }
  .filter-count {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  .filter-count span { color: var(--accent); }

  /* ── featured ── */
  .featured-wrap {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
  }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
  }
  .section-head h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .section-head h2 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .section-head .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  .featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg-alt);
    transition: border-color 0.3s;
    cursor: none;
  }
  .featured:hover { border-color: var(--accent); }
  .featured-visual {
    aspect-ratio: 4/3;
    position: relative;
    background:
      radial-gradient(circle at 30% 40%, rgba(255, 62, 31, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(217, 254, 110, 0.08) 0%, transparent 50%),
      linear-gradient(135deg, #1a1815 0%, #0a0a0a 100%);
    overflow: hidden;
    border-right: 1px solid var(--line);
  }
  .featured-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
  }
  .featured-viz-label {
    position: absolute;
    top: 24px; left: 24px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .featured-viz-label::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
  }
  .featured-viz-big {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--fg);
  }
  .featured-viz-big .accent { color: var(--accent); }

  .featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
  }
  .featured-cat {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .featured-cat .sep { color: var(--muted); }
  .featured-cat .date { color: var(--muted); }
  .featured h3 {
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 24px 0;
    font-weight: 500;
  }
  .featured h3 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .featured-excerpt {
    color: var(--fg-dim);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .featured-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .featured-author {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .featured-author .name { color: var(--fg); }
  .read-link {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .read-link:hover { gap: 14px; }
  @media (max-width: 900px) {
    .featured { grid-template-columns: 1fr; }
    .featured-visual { border-right: none; border-bottom: 1px solid var(--line); }
    .featured-content { padding: 32px 24px; }
  }

  /* ── posts grid ── */
  .posts-wrap {
    padding: 80px 0 120px;
  }
  .posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .post {
    padding: 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--bg);
    transition: background 0.3s;
    min-height: 360px;
    position: relative;
  }
  .post:hover { background: var(--bg-alt); }
  .post.hidden { display: none; }
  .post-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .post-cat {
    color: var(--accent);
    padding: 3px 8px;
    background: rgba(255, 62, 31, 0.08);
    border: 1px solid rgba(255, 62, 31, 0.25);
    font-size: 10px;
  }
  .post-cat.product {
    color: var(--accent-2);
    background: rgba(217, 254, 110, 0.05);
    border-color: rgba(217, 254, 110, 0.25);
  }
  .post-cat.company {
    color: var(--fg-dim);
    background: rgba(245, 245, 240, 0.04);
    border-color: var(--line-strong);
  }
  .post-cat.case {
    color: var(--accent-warm);
    background: rgba(255, 122, 62, 0.06);
    border-color: rgba(255, 122, 62, 0.25);
  }
  .post-date { color: var(--muted); }
  .post h3 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 500;
    flex-grow: 1;
  }
  .post h3 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .post-excerpt {
    color: var(--fg-dim);
    font-size: 14px;
    line-height: 1.5;
  }
  .post-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .post-foot .read-arrow {
    color: var(--fg-dim);
    transition: transform 0.2s, color 0.2s;
  }
  .post:hover .read-arrow { color: var(--accent); transform: translateX(4px); }

  @media (max-width: 1100px) {
    .posts { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .posts { grid-template-columns: 1fr; }
    .post { padding: 32px 24px; min-height: auto; }
  }

  /* ── newsletter ── */
  .newsletter {
    padding: 140px 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
    position: relative;
    background:
      radial-gradient(ellipse at center, rgba(255, 62, 31, 0.08) 0%, transparent 60%);
  }
  .newsletter h2 {
    font-size: clamp(42px, 6vw, 80px);
    letter-spacing: -0.04em;
    line-height: 0.98;
    max-width: 900px;
    margin: 0 auto 24px;
    font-weight: 500;
  }
  .newsletter h2 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .newsletter-sub {
    max-width: 520px;
    margin: 0 auto 40px;
    color: var(--fg-dim);
    font-size: 16px;
    line-height: 1.5;
  }
  .newsletter-form {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    border: 1px solid var(--line-strong);
    background: rgba(245, 245, 240, 0.02);
    transition: border-color 0.2s;
  }
  .newsletter-form:focus-within { border-color: var(--accent); }
  .newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 20px;
    color: var(--fg);
    font-family: var(--mono);
    font-size: 14px;
    outline: none;
  }
  .newsletter-form input::placeholder { color: var(--muted); }
  .newsletter-form button {
    padding: 18px 28px;
    background: var(--accent);
    color: var(--fg);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--fg); color: var(--bg); }

  /* ── footer ── */
  footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--line);
  }
  .footer-hero {
    font-size: clamp(60px, 15vw, 220px);
    font-weight: 500;
    line-height: 0.85;
    margin-bottom: 60px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .footer-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col a {
    display: block;
    color: var(--fg-dim);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--fg-dim);
    max-width: 360px;
    line-height: 1.4;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .footer-bottom .accent { color: var(--accent); }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; }
  }