<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
  <title>Nitzan Hermon</title>
  <meta name="description" content="Nitzan Hermon — Coach, Writer.">
  <meta name="author" content="Nitzan Hermon">
  <meta name="theme-color" content="#ffffff">
  <link rel="canonical" href="https://nitzan.link/">

  <meta property="og:type" content="website">
  <meta property="og:site_name" content="Nitzan Hermon">
  <meta property="og:title" content="Nitzan Hermon">
  <meta property="og:description" content="Coach. Writer.">
  <meta property="og:url" content="https://nitzan.link/">
  <meta property="og:locale" content="en_US">

  <meta name="twitter:card" content="summary">
  <meta name="twitter:title" content="Nitzan Hermon">
  <meta name="twitter:description" content="Coach. Writer.">

  <link id="favicon" rel="icon" href="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect width='64' height='64' fill='%23dfff00'/></svg>">

  <style>
    /* ── Fonts (same CDN as ai-literacy.space) ──────────────────── */
    @font-face {
      font-family: "Atlas Grotesk";
      font-weight: 400; font-style: normal; font-display: swap;
      src: url("https://freight.cargo.site/m/X2687089187509413654216581604966/Atlas-Grotesk-Regular.woff") format("woff");
    }
    @font-face {
      font-family: "Atlas Grotesk";
      font-weight: 400; font-style: italic; font-display: swap;
      src: url("https://freight.cargo.site/m/C2687089181993837176177425671782/Atlas-Grotesk-Regular-Italic.woff") format("woff");
    }
    @font-face {
      font-family: "Atlas Grotesk";
      font-weight: 700; font-style: normal; font-display: swap;
      src: url("https://freight.cargo.site/m/K2687089174375331873735380854374/Atlas-Grotesk-Bold.woff") format("woff");
    }
    @font-face {
      font-family: "Berlingske Serif XCn";
      font-weight: 400; font-style: normal; font-display: swap;
      src: url("https://freight.cargo.site/m/K2687089210641630722648359331430/BerlingskeSerifXCn-Rg.woff") format("woff");
    }
    @font-face {
      font-family: "Berlingske Serif XCn";
      font-weight: 400; font-style: italic; font-display: swap;
      src: url("https://freight.cargo.site/m/N2687089199315329861390694639206/BerlingskeSerifXCn-It.woff") format("woff");
    }
    @font-face {
      font-family: "Berlingske Serif XCn";
      font-weight: 700; font-style: normal; font-display: swap;
      src: url("https://freight.cargo.site/m/P2687089193615285942614443189862/BerlingskeSerifXCn-Bd.woff") format("woff");
    }

    /* ── Reset ──────────────────────────────────────────────────── */
    * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

    /* ── Day / night mode ───────────────────────────────────────── */
    /* JS sets data-mode="light" between 06:00 and 18:00, data-mode="dark" outside. */
    :root {
      /* defaults match light mode so the page is readable before JS runs */
      --fg: #0a0a0a;
      --fg-muted: rgba(0,0,0,0.55);
      --fg-quiet: rgba(0,0,0,0.4);
      --bg: #ffffff;
      --pill-bg: transparent;
      --pill-border: rgba(0,0,0,0.2);
      --pill-hover-bg: #0a0a0a;
      --pill-hover-fg: #ffffff;
      --hover-rgb: 10,10,10;
      --field-bg: transparent;
    }
    :root[data-mode="dark"] {
      --fg: #ffffff;
      --fg-muted: rgba(255,255,255,0.7);
      --fg-quiet: rgba(255,255,255,0.45);
      --bg: #050505;
      --pill-bg: transparent;
      --pill-border: rgba(255,255,255,0.28);
      --pill-hover-bg: #ffffff;
      --pill-hover-fg: #050505;
      --hover-rgb: 255,255,255;
      --field-bg: transparent;
    }

    html, body {
      min-height: 100%;
      color: var(--fg);
      font-family: "Atlas Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      transition: background-color 0.6s ease, color 0.6s ease;
    }
    html { background: var(--bg); }

    body {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 56px 28px 40px;
      text-align: center;
      background: var(--bg);
    }

    /* ── Layout ─────────────────────────────────────────────────── */
    .inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      width: 100%;
      max-width: 420px;
      padding: 8px 4px 24px;
      text-align: center;
    }

    /* ── Header (name + bio) ────────────────────────────────────── */
    .header { display: flex; flex-direction: column; align-items: center; gap: 6px; }

    .name {
      font-family: "Berlingske Serif XCn", Georgia, serif;
      font-weight: 700;
      font-size: 1.8rem;
      line-height: 1.05;
      color: var(--fg);
    }

    .bio {
      font-family: "Berlingske Serif XCn", Georgia, serif;
      font-weight: 400;
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.25;
      color: var(--fg-muted);
    }

    /* ── Groups (Practice / Writing / Prompts) ──────────────────── */
    .group {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .group-title {
      font-family: "Berlingske Serif XCn", Georgia, serif;
      font-weight: 400;
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.25;
      color: var(--fg-muted);
      margin-bottom: 4px;
      text-align: center;
    }

    .links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: stretch;
    }
    .links li { display: block; }

    /* Linktree-style pill */
    .link {
      display: block;
      width: 100%;
      box-sizing: border-box;
      font-family: "Atlas Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      font-weight: 500;
      font-size: 1.05rem;
      line-height: 1.4;
      color: var(--fg);
      text-decoration: none;
      text-align: center;
      padding: 14px 20px;
      background: var(--pill-bg);
      border: 1.5px solid var(--pill-border);
      border-radius: 14px;
      transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
    }
    .link:hover, .link:focus-visible {
      background: rgba(var(--hover-rgb), var(--step, 1));
      color: var(--pill-hover-fg);
      border-color: rgba(var(--hover-rgb), var(--step, 1));
      transform: translateY(-1px);
      outline: none;
    }

    /* Updates: same pill, with a trailing arrow to read as a current call-to-action */
    .updates .link::after {
      content: " \2192";
      margin-left: 6px;
      color: var(--fg-muted);
      transition: color 0.18s ease;
    }
    .updates .link:hover::after,
    .updates .link:focus-visible::after { color: var(--pill-hover-fg); }

    /* ── Subscribe (Being in Space) ─────────────────────────────── */
    .sub {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .sub-form {
      display: flex;
      gap: 8px;
      margin-top: 0;
      align-items: stretch;
    }

    .sub-input {
      flex: 1 1 0%;
      min-width: 0;
      font-family: "Atlas Grotesk", sans-serif;
      font-size: 1rem;
      color: var(--fg);
      background: var(--field-bg);
      border: 1.5px solid var(--pill-border);
      border-radius: 14px;
      padding: 12px 16px;
      outline: none;
      appearance: none;
      transition: border-color 0.15s, background 0.15s;
    }
    .sub-input::placeholder { color: var(--fg-quiet); }
    .sub-input:focus { border-color: var(--fg); }

    .sub-btn {
      font-family: "Atlas Grotesk", sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--pill-hover-fg);
      background: var(--fg);
      border: 1.5px solid var(--fg);
      border-radius: 14px;
      padding: 12px 22px;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.15s, transform 0.15s;
    }
    .sub-btn:hover, .sub-btn:focus-visible { opacity: 0.88; transform: translateY(-1px); outline: none; }

    /* ── Social row ─────────────────────────────────────────────── */
    .social {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 6px 14px;
      margin-top: 8px;
    }

    .social a {
      font-family: "Atlas Grotesk", sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--fg);
      text-decoration: none;
      padding: 4px 2px;
      border-bottom: 1px solid transparent;
      transition: color 0.15s, border-color 0.15s;
    }
    .social a:hover, .social a:focus-visible {
      border-bottom-color: var(--fg);
      outline: none;
    }

    .social ul { display: contents; list-style: none; }
    .social li { list-style: none; display: inline-flex; align-items: center; }
    .social li + li::before {
      content: "\00B7";
      color: var(--fg-quiet);
      font-weight: 500;
      font-size: 1.05rem;
      margin-right: 8px;
    }

    /* ── Small screens ──────────────────────────────────────────── */
    @media (max-width: 480px) {
      body { padding: 36px 18px 28px; }
      .inner { gap: 28px; max-width: 100%; }
      .name { font-size: 1.7rem; }
      .link { font-size: 1.05rem; padding: 14px 18px; }
      .sub-form { flex-direction: column; }
      .sub-btn { padding: 14px 18px; }
    }

    /* Print: hide form */
    @media print { .sub-form { display: none; } body::before, body::after { display: none; } }
  </style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VZ634J3CPL"></script><script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag("js",new Date());gtag("config","G-VZ634J3CPL");</script></head>
<body>
  <div class="inner">

    <header class="header">
      <h1 class="name">Nitzan H.</h1>
      <!-- TODO: edit the bio line here -->
      <p class="bio">Coach. Writer.</p>
    </header>

    <section class="group updates" aria-labelledby="g-updates">
      <h2 class="group-title" id="g-updates">Updates</h2>
      <ul class="links">
        <li><a class="link" style="--step:1" href="https://luma.com/ai-literacy" target="_blank" rel="noopener">AI Literacy: Master Class</a></li>
        <li><a class="link" style="--step:0.82" href="https://cbs.dfos.com" target="_blank" rel="noopener">CBS community</a></li>
        <li><a class="link" style="--step:0.66" href="https://library.criticalbusinessschool.com" target="_blank" rel="noopener">CBS Library</a></li>
      </ul>
    </section>

    <section class="group" aria-labelledby="g-practice">
      <h2 class="group-title" id="g-practice">Practice</h2>
      <ul class="links">
        <li><a class="link" style="--step:0.52" href="https://in-process.net" target="_blank" rel="noopener">in-process.net</a></li>
        <li><a class="link" style="--step:0.40" href="https://criticalbusinessschool.com" target="_blank" rel="noopener">criticalbusinessschool.com</a></li>
      </ul>
    </section>

    <section class="group" aria-labelledby="g-writing">
      <h2 class="group-title" id="g-writing">Writing</h2>
      <ul class="links">
        <li><a class="link" style="--step:0.30" href="https://being-in.space" target="_blank" rel="noopener">being-in.space</a></li>
      </ul>
    </section>

    <section class="group" aria-labelledby="g-prompts">
      <h2 class="group-title" id="g-prompts">Prompts for People</h2>
      <ul class="links">
        <li><a class="link" style="--step:0.22" href="https://www.creative-surplus.com" target="_blank" rel="noopener">creative-surplus.com</a></li>
      </ul>
    </section>

    <section class="sub" aria-labelledby="sub-title">
      <h2 class="group-title" id="sub-title">Being in Space on Substack</h2>
      <form class="sub-form" action="https://being-in.space/subscribe" method="GET" target="_blank">
        <input class="sub-input" type="email" name="email" placeholder="your@email.com" required aria-label="Email">
        <button class="sub-btn" type="submit">Subscribe</button>
      </form>
    </section>

    <nav class="social" aria-label="Social">
      <ul>
        <li><a href="https://www.instagram.com/nitzan.hermon" target="_blank" rel="noopener">Instagram</a></li>
        <li><a href="https://linkedin.com/in/nitzanhermon" target="_blank" rel="noopener">LinkedIn</a></li>
        <li><a href="https://www.are.na/nitzan-h/" target="_blank" rel="noopener">Are.na</a></li>
        <li><a href="https://www.youtube.com/@shared-in-solitude" target="_blank" rel="noopener">YouTube</a></li>
        <li><a href="https://soundcloud.com/byedit" target="_blank" rel="noopener">Soundcloud</a></li>
        <li><a href="https://byedit.tumblr.com" target="_blank" rel="noopener">Tumblr</a></li>
        <li><a href="https://flickr.com/photos/nitzan_fine_art/" target="_blank" rel="noopener">Flickr</a></li>
      </ul>
    </nav>

  </div>

  <script>
    // ── Time-of-day palettes ────────────────────────────────────
    // 24 palettes (one per hour, local time) curated from the
    // Circular Colour Book (COLOURBOOK V1.0, 2026). The current
    // hour's palette drives the gradient, favicon, and theme-color.
    // Re-evaluates every minute so the page rolls over cleanly.
    (function () {
      // [c1, c2, c3, c4]  — c1 is the dominant; also used for the favicon.
      // 8-color pool (and only these 8):
      //   #490D44 aubergine   #FF5149 coral      #294718 dark olive  #F0DE00 yellow
      //   #E6D8C4 cream       #ED2126 red        #656B20 olive       #24358C navy
      var PALETTES = [
        ["#490D44","#294718","#24358C","#E6D8C4"], // 00 midnight — aubergine + dark olive + navy + cream
        ["#24358C","#490D44","#294718","#656B20"], // 01 — navy + aubergine + dark olive + olive
        ["#294718","#24358C","#490D44","#E6D8C4"], // 02 — dark olive + navy + aubergine + cream
        ["#490D44","#24358C","#656B20","#E6D8C4"], // 03 — aubergine + navy + olive + cream
        ["#294718","#656B20","#24358C","#E6D8C4"], // 04 — pre-dawn olives + navy + cream
        ["#E6D8C4","#294718","#FF5149","#24358C"], // 05 — first light cream + olive + coral + navy
        ["#FF5149","#F0DE00","#E6D8C4","#294718"], // 06 — sunrise coral + yellow + cream + olive
        ["#F0DE00","#FF5149","#E6D8C4","#24358C"], // 07 — fresh yellow + coral + cream + navy
        ["#FF5149","#F0DE00","#656B20","#E6D8C4"], // 08 — coral + yellow + olive + cream
        ["#F0DE00","#294718","#E6D8C4","#FF5149"], // 09 — yellow + dark olive + cream + coral
        ["#F0DE00","#656B20","#ED2126","#24358C"], // 10 — yellow + olive + red + navy
        ["#24358C","#F0DE00","#FF5149","#E6D8C4"], // 11 — navy + yellow + coral + cream
        ["#ED2126","#F0DE00","#294718","#24358C"], // 12 noon — red + yellow + dark olive + navy
        ["#FF5149","#294718","#F0DE00","#E6D8C4"], // 13 — coral + dark olive + yellow + cream
        ["#F0DE00","#656B20","#ED2126","#490D44"], // 14 — yellow + olive + red + aubergine
        ["#ED2126","#656B20","#F0DE00","#294718"], // 15 — red + olive + yellow + dark olive
        ["#FF5149","#656B20","#E6D8C4","#24358C"], // 16 — coral + olive + cream + navy
        ["#F0DE00","#FF5149","#656B20","#490D44"], // 17 — golden hour yellow + coral + olive + aubergine
        ["#FF5149","#ED2126","#294718","#656B20"], // 18 sunset — coral + red + dark olive + olive
        ["#ED2126","#490D44","#F0DE00","#294718"], // 19 late sunset — red + aubergine + yellow + olive
        ["#490D44","#FF5149","#24358C","#E6D8C4"], // 20 dusk — aubergine + coral + navy + cream
        ["#294718","#490D44","#FF5149","#E6D8C4"], // 21 twilight — dark olive + aubergine + coral + cream
        ["#24358C","#490D44","#FF5149","#656B20"], // 22 late evening — navy + aubergine + coral + olive
        ["#490D44","#24358C","#294718","#E6D8C4"]  // 23 night — aubergine + navy + dark olive + cream
      ];

      function applyPalette() {
        var hour = new Date().getHours();

        // Day / night mode: light 06:00–17:59, dark 18:00–05:59
        var isDark = (hour >= 18) || (hour < 6);
        document.documentElement.setAttribute('data-mode', isDark ? 'dark' : 'light');

        // Favicon: tile in the hour's accent color, ring in its companion.
        // (Palettes are not used on the page anymore, but the favicon still
        // cycles through them so each hour has its own mark.)
        var p = PALETTES[hour];
        var svg =
          "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'>" +
            "<rect width='64' height='64' rx='12' fill='" + p[0] + "'/>" +
            "<circle cx='32' cy='32' r='14' fill='none' stroke='" + p[1] + "' stroke-width='3' opacity='0.8'/>" +
          "</svg>";
        var link = document.getElementById('favicon');
        if (link) link.href = 'data:image/svg+xml;utf8,' + encodeURIComponent(svg);

        // Theme color (mobile address bar) — match the page bg so the bar blends.
        var meta = document.querySelector('meta[name="theme-color"]');
        if (meta) meta.setAttribute('content', isDark ? '#050505' : '#ffffff');
      }

      applyPalette();
      // Re-check every 60s so an open tab rolls over to the next hour.
      setInterval(applyPalette, 60 * 1000);
    })();
  </script>
</body>
</html>
