  :root{
    --cream:#FAF7F1;
    --teal:#0F3D3E;
    --teal-dark:#0A2A2B;
    --darkbg:#0D2A26;
    --amber:#E8A33D;
    --ink:#22201C;
    --line:#DAD4C6;
  }
  *{box-sizing:border-box;}
  body{
    margin:0;
    background-color: color-mix(in oklab, var(--amber), white 40%);
    font-family:'Manrope',sans-serif;
    color:var(--ink);
    /* padding:48px 24px 80px; */
  }
  .sheet{
    max-width:820px;
    margin:0 auto;
  }
  .label{
    font-size:13px;
    font-weight:700;
    letter-spacing:0.02em;
    color:var(--teal);
    margin:0 0 14px;
  }
  section{margin-bottom:56px;}
  hr{
    border:none;
    border-top:1px solid var(--line);
    margin:56px 0;
  }

  /* primary lockup */
  .panel{
    background:var(--cream);
    border:1px solid var(--line);
    border-radius:6px;
    padding:26px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .panel.dark{
    background:var(--darkbg);
    border-color:var(--darkbg);
  }
  .lockup{
    display:flex;
    align-items:center;
    gap:20px;
  }
  .lockup.stacked{
    flex-direction:column;
    gap:16px;
  }
  .mark{width:64px;height:64px;flex-shrink:0;}
  .wordmark{
    font-size:44px;
    font-weight:800;
    letter-spacing:-0.01em;
    color:var(--teal);
    display:flex;
    align-items:baseline;
  }
  .wordmark.on-dark{color:var(--cream);}
  .bang{
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    margin-left:2px;
    height:0.72em;
    justify-content:space-between;
  }
  .bang .stem{
    width:6px;
    height:26px;
    background:currentColor;
    border-radius:2px;
  }
  .bang .dot{
    width:11px;
    height:11px;
    background:var(--amber);
    transform:rotate(45deg);
    border-radius:2px;
    margin-top:4px;
  }

  /* icon tile row */
  .tiles{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  .tile{
    width:120px;
    height:120px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line);
  }
  .tile.cream{background:var(--cream);}
  .tile.teal{background:var(--teal);}
  .tile.dark{background:var(--darkbg); border-color:var(--darkbg);}
  .tile.mono-ink{background:var(--ink);}
  .tile .mark{width:56px;height:56px;}

  /* palette */
  .swatches{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  .swatch{
    width:140px;
  }
  .chip{
    height:64px;
    border-radius:6px;
    border:1px solid var(--line);
    margin-bottom:8px;
  }
  .swatch p{
    margin:0;
    font-size:12px;
    font-weight:700;
  }
  .swatch span{
    display:block;
    font-size:12px;
    color:#6B6656;
    font-weight:500;
  }

  .spec{
    font-size:13px;
    color:#54503F;
    line-height:1.7;
    max-width:560px;
  }
  .spec b{color:var(--ink);}
